{ "version": 3, "sources": ["libs/galaxy/popover/src/popover-positions.ts", "libs/galaxy/popover/src/popover.component.ts", "libs/galaxy/popover/src/popover.component.html", "libs/galaxy/popover/src/directives/popover-actions.directive.ts", "libs/galaxy/popover/src/directives/popover-title.directive.ts", "libs/galaxy/popover/src/directives/popover.directive.ts", "libs/galaxy/popover/src/popover.module.ts", "libs/galaxy/tooltip/src/tooltip.component.ts", "libs/galaxy/tooltip/src/tooltip.component.html", "libs/galaxy/tooltip/src/directive/tooltip.directive.ts", "libs/galaxy/tooltip/src/tooltip.module.ts"], "sourcesContent": ["import { ConnectedPosition } from '@angular/cdk/overlay';\n\nexport const PopoverPositions: Record = {\n Top: {\n originX: 'center',\n originY: 'top',\n overlayX: 'center',\n overlayY: 'bottom',\n panelClass: ['top'],\n },\n Bottom: {\n originX: 'center',\n originY: 'bottom',\n overlayX: 'center',\n overlayY: 'top',\n panelClass: ['bottom'],\n },\n Left: {\n originX: 'start',\n originY: 'center',\n overlayX: 'end',\n overlayY: 'center',\n panelClass: ['left'],\n },\n Right: {\n originX: 'end',\n originY: 'center',\n overlayX: 'start',\n overlayY: 'center',\n panelClass: ['right'],\n },\n TopRight: {\n originX: 'end',\n originY: 'top',\n overlayX: 'end',\n overlayY: 'bottom',\n panelClass: ['top', 'corner-left'],\n },\n TopLeft: {\n originX: 'start',\n originY: 'top',\n overlayX: 'start',\n overlayY: 'bottom',\n panelClass: ['top', 'corner-right'],\n },\n BottomRight: {\n originX: 'end',\n originY: 'bottom',\n overlayX: 'end',\n overlayY: 'top',\n panelClass: ['bottom', 'corner-left'],\n },\n BottomLeft: {\n originX: 'start',\n originY: 'bottom',\n overlayX: 'start',\n overlayY: 'top',\n panelClass: ['bottom', 'corner-right'],\n },\n};\n\nexport const DEFAULT_POSITIONS: ConnectedPosition[] = [\n {\n ...PopoverPositions.Top,\n },\n {\n ...PopoverPositions.Bottom,\n },\n {\n ...PopoverPositions.Left,\n },\n {\n ...PopoverPositions.Right,\n },\n {\n ...PopoverPositions.TopRight,\n },\n {\n ...PopoverPositions.TopLeft,\n },\n {\n ...PopoverPositions.BottomRight,\n },\n {\n ...PopoverPositions.BottomLeft,\n },\n];\n", "import { coerceCssPixelValue } from '@angular/cdk/coercion';\nimport { CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';\nimport {\n AfterContentInit,\n OnInit,\n Component,\n EventEmitter,\n HostListener,\n Input,\n OnChanges,\n Output,\n SimpleChanges,\n ViewEncapsulation,\n} from '@angular/core';\n\nimport { DEFAULT_POSITIONS } from './popover-positions';\nimport { Observable } from 'rxjs';\nimport { BreakpointObserver } from '@angular/cdk/layout';\nimport { map } from 'rxjs/operators';\n\nexport type PaddingSize = 'large' | 'small' | 'none';\n\n@Component({\n selector: 'glxy-popover',\n templateUrl: './popover.component.html',\n styleUrls: ['./popover.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class PopoverComponent implements OnInit, AfterContentInit, OnChanges {\n _positions?: ConnectedPosition[];\n\n /** Origin that references the component the popover should be created relative to. Comes from CdkOverlayOrigin directive */\n @Input() origin!: CdkOverlayOrigin;\n\n /** Whether the popover is open or closed */\n @Input() isOpen = false;\n\n /** Width and Height of the popover box */\n @Input() maxWidth: number | string = '320px';\n @Input() maxHeight: number | string = 'auto';\n\n /** Option to place a backdrop element behind the popover to allow for click interaction/blocking */\n @Input() hasBackdrop = false;\n\n /** Option to color the backdrop, or leave it transparent, IF hasBackdrop is true */\n @Input() showBackdrop = false;\n\n /** Option to close the popover when the backdrop is clicked */\n /** Will automatically enable the background if enabled */\n @Input() closeOnBackdropClick = false;\n\n /** Option to close the popover when the escape key is pressed */\n @Input() closeOnEscapeKey = false;\n\n /** Whether to show the arrow for the popover */\n @Input() hasArrow = true;\n\n /** Whether to move the popover to keep it on screen **/\n @Input() keepOnScreen = false;\n\n /** Control the amount of padding on the popover */\n @Input() padding: PaddingSize = 'large';\n\n /** Change the background color and text for high contrast with white backgrounds */\n @Input() highContrast = false;\n\n /** If the popover should change to fullscreen on smaller viewports */\n @Input() mobileFullScreen = false;\n\n /** Breakpoint below which the popover becomes fullscreen, if using mobileFullScreen **/\n @Input() breakpoint = '425px';\n\n /** Whether to show a close button on mobileFullScreen popovers */\n @Input() showMobileClose = true;\n\n /**\n * What positioning strategy to use for the popover. By default, the strategy allows for the popover\n * to move to above, below, left, and right of the origin depending on screen size\n */\n @Input() positions: ConnectedPosition[] = DEFAULT_POSITIONS;\n\n @Output() readonly isOpenChange: EventEmitter = new EventEmitter(/* isAsync */ true);\n\n /** Emits when the backdrop has been clicked */\n @Output() backdropClick: EventEmitter = new EventEmitter();\n\n /** Listen to escape key and close popover when closeOnEscapeKey is true */\n @HostListener('document:keydown.escape')\n handleEscapeKey() {\n if (this.closeOnEscapeKey && this.isOpen) this.close();\n }\n\n get _cooercedMaxWidth(): string {\n return coerceCssPixelValue(this.maxWidth);\n }\n get _cooercedMaxHeight(): string {\n return coerceCssPixelValue(this.maxHeight);\n }\n get _popoverClasses(): string[] {\n return ['glxy-popover', this.hasArrow ? 'has-arrow' : ''];\n }\n get _backdropClass(): string {\n return this.showBackdrop ? '' : 'hide-backdrop';\n }\n\n isFullscreen$?: Observable;\n mobileBreakpoint = '';\n\n constructor(private readonly breakpointObserver: BreakpointObserver) {}\n\n ngOnInit(): void {\n this.mobileBreakpoint = `(max-width: ${this.breakpoint})`;\n this.isFullscreen$ = this.breakpointObserver.observe([this.mobileBreakpoint]).pipe(\n map((resp) => {\n return resp.breakpoints[this.mobileBreakpoint];\n }),\n );\n }\n\n ngAfterContentInit(): void {\n this.setupPositions();\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n const { positions } = changes;\n if (positions && positions.previousValue !== this.positions) {\n this.setupPositions();\n }\n }\n\n setupPositions(): void {\n this._positions = this.positions.map((pos: ConnectedPosition) => {\n const newPos = { ...pos };\n return newPos;\n });\n }\n\n /** Used by the popover directive to attach itself to the popover component */\n setOrigin(origin: CdkOverlayOrigin): void {\n this.origin = origin;\n }\n\n onBackdropClick(): void {\n this.backdropClick.emit();\n if (this.closeOnBackdropClick) this.close();\n }\n\n open(): void {\n this.isOpen = true;\n this.isOpenChange.emit(this.isOpen);\n }\n\n close(): void {\n this.isOpen = false;\n this.isOpenChange.emit(this.isOpen);\n }\n\n toggle(): void {\n this.isOpen = !this.isOpen;\n this.isOpenChange.emit(this.isOpen);\n }\n}\n", "\n \n
\n \n
\n \n
\n \n
\n\n
\n\n
\n \n
\n \n\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'glxy-popover-actions, [glxyPopoverActions]',\n})\nexport class PopoverActionsDirective {\n @HostBinding('class') class = 'glxy-popover-actions';\n}\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'glxy-popover-title, [glxyPopoverTitle]',\n})\nexport class PopoverTitleDirective {\n @HostBinding('class') class = 'glxy-popover-title';\n}\n", "import { CdkOverlayOrigin } from '@angular/cdk/overlay';\nimport { Directive, ElementRef, Input, OnInit } from '@angular/core';\nimport { PopoverComponent } from '../popover.component';\n\n@Directive({\n selector: '[glxyPopover]',\n exportAs: 'glxyPopover',\n})\nexport class GalaxyPopoverDirective implements OnInit {\n /** Passed in reference of the popover */\n @Input('glxyPopover') popover?: PopoverComponent;\n\n constructor(private elementRef: ElementRef) {}\n\n ngOnInit(): void {\n this.initPopover();\n }\n\n initPopover(): void {\n const origin = new CdkOverlayOrigin(this.elementRef);\n this.popover?.setOrigin(origin);\n }\n}\n", "import { OverlayModule } from '@angular/cdk/overlay';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { PopoverComponent } from './popover.component';\nexport { PopoverComponent } from './popover.component';\n\nimport { PopoverActionsDirective } from './directives/popover-actions.directive';\nexport { PopoverActionsDirective } from './directives/popover-actions.directive';\n\nimport { PopoverTitleDirective } from './directives/popover-title.directive';\nexport { PopoverTitleDirective } from './directives/popover-title.directive';\n\nimport { GalaxyPopoverDirective } from './directives/popover.directive';\nexport { GalaxyPopoverDirective } from './directives/popover.directive';\n\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\nexport const MODULE_IMPORTS = [CommonModule, OverlayModule, MatIconModule, MatButtonModule];\nexport const MODULE_DECLARATIONS = [\n PopoverComponent,\n PopoverTitleDirective,\n PopoverActionsDirective,\n GalaxyPopoverDirective,\n];\n\n@NgModule({\n declarations: MODULE_DECLARATIONS,\n exports: MODULE_DECLARATIONS,\n imports: [MODULE_IMPORTS],\n})\nexport class GalaxyPopoverModule {}\n", "import { CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';\nimport { Component, ElementRef, HostBinding, Input } from '@angular/core';\nimport { PopoverPositions } from '@vendasta/galaxy/popover';\n\n@Component({\n selector: 'glxy-tooltip,',\n templateUrl: './tooltip.component.html',\n})\nexport class TooltipComponent {\n @HostBinding('class') class = 'glxy-tooltip';\n\n positions = [PopoverPositions.Top, PopoverPositions.Bottom];\n /** Origin that references the component the tooltip should be created relative to. Comes from CdkOverlayOrigin directive */\n @Input() origin!: CdkOverlayOrigin;\n\n /** Optional title for the tooltip */\n @Input() title?: string;\n\n /** text that can be added to the tooltip */\n @Input() text?: string;\n\n /** Change the background color and text for high contrast with page background */\n @Input() highContrast = false;\n\n show = false;\n\n constructor(public elementRef: ElementRef) {}\n\n setOrigin(origin: CdkOverlayOrigin): void {\n this.origin = origin;\n }\n\n setText(text: string): void {\n this.text = text;\n }\n\n setTitle(title: string): void {\n this.title = title;\n }\n\n sethighContrast(mode: boolean): void {\n this.highContrast = mode;\n }\n\n setPositions(positions: ConnectedPosition[]): void {\n this.positions = positions;\n }\n\n showTooltip(): void {\n this.show = true;\n }\n\n hideTooltip(): void {\n this.show = false;\n }\n}\n", "\n \n \n {{ title | translate }}\n \n {{ text | translate }}\n \n\n", "import { CdkOverlayOrigin, ConnectedPosition, Overlay, OverlayRef } from '@angular/cdk/overlay';\nimport { ComponentPortal } from '@angular/cdk/portal';\nimport { Directive, ElementRef, HostListener, Input, OnChanges, OnDestroy, OnInit } from '@angular/core';\nimport { TooltipComponent } from '../tooltip.component';\n\nconst HIDDEN_TEST_WAIT = 500;\n\n@Directive({\n selector: '[glxyTooltip]',\n exportAs: 'glxyTooltip',\n})\nexport class GalaxyTooltipDirective implements OnInit, OnChanges, OnDestroy {\n tooltip?: TooltipComponent;\n origin?: CdkOverlayOrigin;\n show = false;\n\n private overlayRef?: OverlayRef;\n\n /** The text of the tooltip */\n @Input({ required: true }) glxyTooltip = '';\n\n /** An optional title that can be given to the tooltip */\n @Input() tooltipTitle?: string;\n\n /** Disables the tooltip when true */\n @Input() glxyTooltipDisabled = false;\n\n /**\n * What positioning strategy to use for the tooltip. If empty, no positions are applied to the popover (it has a default position set)\n */\n @Input()\n tooltipPositions?: ConnectedPosition[] = [];\n\n /** Change the background color and text for high contrast with white backgrounds */\n @Input() highContrast = true;\n\n private hiddenTestID = 0;\n\n @HostListener('mouseenter') onMouseEnter(): void {\n this.showTooltip();\n\n // Stop any previous tests, if any\n window.clearTimeout(this.hiddenTestID);\n // Kick off a new test loop\n this.testElementHidden();\n }\n\n @HostListener('mouseleave') onMouseLeave(): void {\n this.hideTooltip();\n\n // Stop current test from running\n window.clearTimeout(this.hiddenTestID);\n }\n\n constructor(private elementRef: ElementRef, private overlay: Overlay) {}\n\n ngOnInit(): void {\n this.overlayRef = this.overlay.create({\n hasBackdrop: false,\n });\n this.initTooltip();\n }\n\n ngOnChanges(): void {\n this.updateTooltipValues();\n }\n\n ngOnDestroy(): void {\n this.overlayRef?.dispose();\n }\n\n initTooltip(): void {\n this.tooltip = this.overlayRef?.attach(new ComponentPortal(TooltipComponent)).instance;\n this.updateTooltipValues();\n }\n\n updateTooltipValues(): void {\n if (this.tooltip) {\n this.tooltip.setOrigin(new CdkOverlayOrigin(this.elementRef));\n this.tooltip.setTitle(this.tooltipTitle || '');\n this.tooltip.setText(this.glxyTooltip);\n this.tooltip.sethighContrast(this.highContrast);\n if (this.tooltipPositions?.length) {\n this.tooltip.setPositions(this.tooltipPositions);\n }\n }\n }\n\n showTooltip(): void {\n if (!this.glxyTooltipDisabled) {\n this.tooltip?.showTooltip();\n }\n }\n\n hideTooltip(): void {\n this.tooltip?.hideTooltip();\n }\n\n /**\n * Test to see if the parent element is in the DOM. If not, hide the tooltip\n */\n private testElementHidden(): void {\n if (!this.tooltip?.show) {\n return;\n }\n\n this.hiddenTestID = window.setTimeout(() => {\n if (!document.body.contains(this.elementRef.nativeElement)) {\n this.hideTooltip();\n }\n this.testElementHidden();\n }, HIDDEN_TEST_WAIT);\n }\n}\n", "import { OverlayModule } from '@angular/cdk/overlay';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { GalaxyPopoverModule } from '@vendasta/galaxy/popover';\nimport { GalaxyTooltipDirective } from './directive/tooltip.directive';\nimport { TooltipComponent } from './tooltip.component';\n\nexport const MODULE_IMPORTS = [CommonModule, OverlayModule, GalaxyPopoverModule, TranslateModule];\n\nexport const MODULE_DECLARATIONS = [TooltipComponent, GalaxyTooltipDirective];\n\n@NgModule({\n declarations: MODULE_DECLARATIONS,\n imports: MODULE_IMPORTS,\n exports: [TooltipComponent, GalaxyTooltipDirective],\n})\nexport class GalaxyTooltipModule {}\n"], "mappings": "2jBAEO,IAAMA,EAAsD,CACjEC,IAAK,CACHC,QAAS,SACTC,QAAS,MACTC,SAAU,SACVC,SAAU,SACVC,WAAY,CAAC,KAAK,GAEpBC,OAAQ,CACNL,QAAS,SACTC,QAAS,SACTC,SAAU,SACVC,SAAU,MACVC,WAAY,CAAC,QAAQ,GAEvBE,KAAM,CACJN,QAAS,QACTC,QAAS,SACTC,SAAU,MACVC,SAAU,SACVC,WAAY,CAAC,MAAM,GAErBG,MAAO,CACLP,QAAS,MACTC,QAAS,SACTC,SAAU,QACVC,SAAU,SACVC,WAAY,CAAC,OAAO,GAEtBI,SAAU,CACRR,QAAS,MACTC,QAAS,MACTC,SAAU,MACVC,SAAU,SACVC,WAAY,CAAC,MAAO,aAAa,GAEnCK,QAAS,CACPT,QAAS,QACTC,QAAS,MACTC,SAAU,QACVC,SAAU,SACVC,WAAY,CAAC,MAAO,cAAc,GAEpCM,YAAa,CACXV,QAAS,MACTC,QAAS,SACTC,SAAU,MACVC,SAAU,MACVC,WAAY,CAAC,SAAU,aAAa,GAEtCO,WAAY,CACVX,QAAS,QACTC,QAAS,SACTC,SAAU,QACVC,SAAU,MACVC,WAAY,CAAC,SAAU,cAAc,IAI5BQ,GAAyC,CACpDC,EAAA,GACKf,EAAiBC,KAEtBc,EAAA,GACKf,EAAiBO,QAEtBQ,EAAA,GACKf,EAAiBQ,MAEtBO,EAAA,GACKf,EAAiBS,OAEtBM,EAAA,GACKf,EAAiBU,UAEtBK,EAAA,GACKf,EAAiBW,SAEtBI,EAAA,GACKf,EAAiBY,aAEtBG,EAAA,GACKf,EAAiBa,WACrB,gPEvDCG,EAAA,EAAA,MAAA,CAAA,qCAEAC,EAAA,EAAA,MAAA,CAAA,EAAuG,EAAA,SAAA,CAAA,EAC7EC,EAAA,QAAA,UAAA,CAAAC,EAAAC,CAAA,EAAA,IAAAC,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,MAAA,CAAO,CAAA,CAAA,EAAEP,EAAA,EAAA,UAAA,EAAUQ,EAAA,EAAA,OAAA,EAAKC,EAAA,EAAW,EAAS,6BArBjFT,EAAA,EAAA,MAAA,CAAA,4BAUEA,EAAA,EAAA,MAAA,CAAA,EACEU,EAAA,CAAA,EACAV,EAAA,EAAA,MAAA,CAAA,EACEU,EAAA,EAAA,CAAA,EACFD,EAAA,EACAC,EAAA,EAAA,CAAA,EACFD,EAAA,EAEAE,EAAA,EAAAC,GAAA,EAAA,EAAA,MAAA,CAAA,eAEAD,EAAA,GAAAE,GAAA,EAAA,EAAA,MAAA,CAAA,gBAGFJ,EAAA,kBAhBEK,EAAA,YAAAV,EAAAW,iBAAA,EAAqC,aAAAX,EAAAY,kBAAA,EALrCC,EAAA,gBAAAb,EAAAc,UAAA,OAAA,EAA2C,gBAAAd,EAAAc,UAAA,OAAA,EACA,gBAAAd,EAAAe,YAAA,EACP,YAAAf,EAAAgB,UAAAC,EAAA,EAAA,GAAAjB,EAAAkB,aAAA,IAAA,EAAA,EAC6B,2BAAAlB,EAAAmB,kBAAAF,EAAA,EAAA,GAAAjB,EAAAkB,aAAA,CAAA,EAa3DE,EAAA,CAAA,EAAAC,EAAA,OAAArB,EAAAgB,UAAAC,EAAA,EAAA,GAAAjB,EAAAkB,aAAA,IAAA,EAAA,EAEAE,EAAA,CAAA,EAAAC,EAAA,OAAArB,EAAAmB,kBAAAnB,EAAAsB,iBAAAL,EAAA,GAAA,GAAAjB,EAAAkB,aAAA,CAAA,GDJV,IAAaK,IAAgB,IAAA,CAAvB,IAAOA,EAAP,MAAOA,CAAgB,CA4D3BC,iBAAe,CACT,KAAKC,kBAAoB,KAAKC,QAAQ,KAAKvB,MAAK,CACtD,CAEA,IAAIQ,mBAAiB,CACnB,OAAOgB,EAAoB,KAAKC,QAAQ,CAC1C,CACA,IAAIhB,oBAAkB,CACpB,OAAOe,EAAoB,KAAKE,SAAS,CAC3C,CACA,IAAIC,iBAAe,CACjB,MAAO,CAAC,eAAgB,KAAKd,SAAW,YAAc,EAAE,CAC1D,CACA,IAAIe,gBAAc,CAChB,OAAO,KAAKC,aAAe,GAAK,eAClC,CAKAC,YAA6BC,EAAsC,CAAtC,KAAAA,mBAAAA,EAzEpB,KAAAR,OAAS,GAGT,KAAAE,SAA4B,QAC5B,KAAAC,UAA6B,OAG7B,KAAAM,YAAc,GAGd,KAAAH,aAAe,GAIf,KAAAI,qBAAuB,GAGvB,KAAAX,iBAAmB,GAGnB,KAAAT,SAAW,GAGX,KAAAqB,aAAe,GAGf,KAAAvB,QAAuB,QAGvB,KAAAC,aAAe,GAGf,KAAAI,iBAAmB,GAGnB,KAAAmB,WAAa,QAGb,KAAAhB,gBAAkB,GAMlB,KAAAiB,UAAiCC,GAEvB,KAAAC,aAAsC,IAAIC,EAAoC,EAAI,EAG3F,KAAAC,cAAmC,IAAID,EAsBjD,KAAAE,iBAAmB,EAEmD,CAEtEC,UAAQ,CACN,KAAKD,iBAAmB,eAAe,KAAKN,UAAU,IACtD,KAAKpB,cAAgB,KAAKgB,mBAAmBY,QAAQ,CAAC,KAAKF,gBAAgB,CAAC,EAAEG,KAC5EC,EAAKC,GACIA,EAAKC,YAAY,KAAKN,gBAAgB,CAC9C,CAAC,CAEN,CAEAO,oBAAkB,CAChB,KAAKC,eAAc,CACrB,CAEAC,YAAYC,EAAsB,CAChC,GAAM,CAAEf,UAAAA,CAAS,EAAKe,EAClBf,GAAaA,EAAUgB,gBAAkB,KAAKhB,WAChD,KAAKa,eAAc,CAEvB,CAEAA,gBAAc,CACZ,KAAKI,WAAa,KAAKjB,UAAUS,IAAKS,GACrBC,EAAA,GAAKD,EAErB,CACH,CAGAE,UAAUC,EAAwB,CAChC,KAAKA,OAASA,CAChB,CAEAC,iBAAe,CACb,KAAKlB,cAAcmB,KAAI,EACnB,KAAK1B,sBAAsB,KAAKjC,MAAK,CAC3C,CAEA4D,MAAI,CACF,KAAKrC,OAAS,GACd,KAAKe,aAAaqB,KAAK,KAAKpC,MAAM,CACpC,CAEAvB,OAAK,CACH,KAAKuB,OAAS,GACd,KAAKe,aAAaqB,KAAK,KAAKpC,MAAM,CACpC,CAEAsC,QAAM,CACJ,KAAKtC,OAAS,CAAC,KAAKA,OACpB,KAAKe,aAAaqB,KAAK,KAAKpC,MAAM,CACpC,yCApIWH,GAAgB0C,EAAAC,CAAA,CAAA,CAAA,sBAAhB3C,EAAgB4C,UAAA,CAAA,CAAA,cAAA,CAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAhBxE,EAAA,iBAAA,UAAA,CAAA,OAAAyE,EAAA9C,gBAAA,CAAiB,EAAA,GAAA+C,CAAA,qnCC5B9BhE,EAAA,EAAAiE,GAAA,GAAA,GAAA,cAAA,CAAA,EAUE3E,EAAA,gBAAA,UAAA,CAAA,OAAiByE,EAAAT,gBAAA,CAAiB,CAAA,QARlCxC,EAAA,4BAAAiD,EAAAV,MAAA,EAAoC,0BAAAU,EAAA5C,MAAA,EACF,+BAAA4C,EAAAd,UAAA,EACS,iCAAAc,EAAAnC,aAAAmC,EAAAlC,oBAAA,EAC2B,mCAAAkC,EAAAvC,cAAA,EACnB,gCAAAuC,EAAAxC,eAAA,EACF,kCAAA,EAAA,EACT,0BAAAwC,EAAAjC,YAAA;;qBDoBpC,IAAOd,EAAPkD,SAAOlD,CAAgB,GAAA,EEvB7B,IAAamD,IAAuB,IAAA,CAA9B,IAAOA,EAAP,MAAOA,CAAuB,CAHpCC,aAAA,CAIwB,KAAAC,MAAQ,+DADnBF,EAAuB,sBAAvBA,EAAuBG,UAAA,CAAA,CAAA,sBAAA,EAAA,CAAA,GAAA,qBAAA,EAAA,CAAA,EAAAC,SAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAvBE,EAAAD,EAAAL,KAAA,KAAP,IAAOF,EAAPS,SAAOT,CAAuB,GAAA,ECApC,IAAaU,IAAqB,IAAA,CAA5B,IAAOA,EAAP,MAAOA,CAAqB,CAHlCC,aAAA,CAIwB,KAAAC,MAAQ,6DADnBF,EAAqB,sBAArBA,EAAqBG,UAAA,CAAA,CAAA,oBAAA,EAAA,CAAA,GAAA,mBAAA,EAAA,CAAA,EAAAC,SAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAArBE,EAAAD,EAAAL,KAAA,KAAP,IAAOF,EAAPS,SAAOT,CAAqB,GAAA,ECGlC,IAAaU,IAAsB,IAAA,CAA7B,IAAOA,EAAP,MAAOA,CAAsB,CAIjCC,YAAoBC,EAAsB,CAAtB,KAAAA,WAAAA,CAAyB,CAE7CC,UAAQ,CACN,KAAKC,YAAW,CAClB,CAEAA,aAAW,CACT,IAAMC,EAAS,IAAIC,EAAiB,KAAKJ,UAAU,EACnD,KAAKK,SAASC,UAAUH,CAAM,CAChC,yCAbWL,GAAsBS,EAAAC,CAAA,CAAA,CAAA,sBAAtBV,EAAsBW,UAAA,CAAA,CAAA,GAAA,cAAA,EAAA,CAAA,EAAAC,OAAA,CAAAL,QAAA,CAAAM,EAAAC,KAAA,cAAA,SAAA,CAAA,EAAAC,SAAA,CAAA,aAAA,CAAA,CAAA,EAA7B,IAAOf,EAAPgB,SAAOhB,CAAsB,GAAA,ECW5B,IAAMiB,GAAiB,CAACC,EAAcC,EAAeC,GAAeC,CAAe,EAa1F,IAAaC,IAAmB,IAAA,CAA1B,IAAOA,EAAP,MAAOA,CAAmB,yCAAnBA,EAAmB,sBAAnBA,CAAmB,CAAA,0BAFpBC,EAAc,CAAA,CAAA,EAEpB,IAAOD,EAAPE,SAAOF,CAAmB,GAAA,4BEvB5BG,EAAA,EAAA,oBAAA,EACEC,EAAA,CAAA,mBACFC,EAAA,mBADEC,EAAA,EAAAC,EAAA,IAAAC,EAAA,EAAA,EAAAC,EAAAC,KAAA,EAAA,GAAA,6BAEFP,EAAA,EAAA,MAAA,EAAmBC,EAAA,CAAA,mBAAsBC,EAAA,mBAAtBC,EAAA,EAAAK,EAAAH,EAAA,EAAA,EAAAC,EAAAG,IAAA,CAAA,6BAZvBC,EAAA,CAAA,EACEV,EAAA,EAAA,eAAA,CAAA,EAQEW,EAAA,EAAAC,GAAA,EAAA,EAAA,qBAAA,CAAA,EAAkC,EAAAC,GAAA,EAAA,EAAA,OAAA,CAAA,EAIpCX,EAAA,sBAXEC,EAAA,EAAAW,EAAA,SAAAR,EAAAS,MAAA,EAAiB,SAAAT,EAAAU,IAAA,EACF,YAAAV,EAAAW,SAAA,EACQ,WAAA,EAAA,EACN,UAAAX,EAAAC,MAAA,QAAA,OAAA,EACoB,eAAAD,EAAAY,YAAA,EAGhBf,EAAA,EAAAW,EAAA,OAAAR,EAAAC,KAAA,EAGdJ,EAAA,EAAAW,EAAA,OAAAR,EAAAG,IAAA,GDJX,IAAaU,IAAgB,IAAA,CAAvB,IAAOA,EAAP,MAAOA,CAAgB,CAkB3BC,YAAmBC,EAAsB,CAAtB,KAAAA,WAAAA,EAjBG,KAAAC,MAAQ,eAE9B,KAAAL,UAAY,CAACM,EAAiBC,IAAKD,EAAiBE,MAAM,EAWjD,KAAAP,aAAe,GAExB,KAAAF,KAAO,EAEqC,CAE5CU,UAAUX,EAAwB,CAChC,KAAKA,OAASA,CAChB,CAEAY,QAAQlB,EAAY,CAClB,KAAKA,KAAOA,CACd,CAEAmB,SAASrB,EAAa,CACpB,KAAKA,MAAQA,CACf,CAEAsB,gBAAgBC,EAAa,CAC3B,KAAKZ,aAAeY,CACtB,CAEAC,aAAad,EAA8B,CACzC,KAAKA,UAAYA,CACnB,CAEAe,aAAW,CACT,KAAKhB,KAAO,EACd,CAEAiB,aAAW,CACT,KAAKjB,KAAO,EACd,yCA9CWG,GAAgBe,EAAAC,CAAA,CAAA,CAAA,sBAAhBhB,EAAgBiB,UAAA,CAAA,CAAA,cAAA,EAAA,CAAA,EAAA,CAAA,EAAAC,SAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAhBE,EAAAD,EAAAlB,KAAA,uNCRbX,EAAA,EAAA+B,GAAA,EAAA,EAAA,eAAA,CAAA,OAAe5B,EAAA,OAAA0B,EAAAzB,SAAA,CAAA,CAAAyB,EAAAjC,OAAA,CAAA,CAAAiC,EAAA/B,KAAA,+CDQT,IAAOU,EAAPwB,SAAOxB,CAAgB,GAAA,EEH7B,IAAMyB,GAAmB,IAMZC,IAAsB,IAAA,CAA7B,IAAOA,EAAP,MAAOA,CAAsB,CA2BLC,cAAY,CACtC,KAAKC,YAAW,EAGhBC,OAAOC,aAAa,KAAKC,YAAY,EAErC,KAAKC,kBAAiB,CACxB,CAE4BC,cAAY,CACtC,KAAKC,YAAW,EAGhBL,OAAOC,aAAa,KAAKC,YAAY,CACvC,CAEAI,YAAoBC,EAAgCC,EAAgB,CAAhD,KAAAD,WAAAA,EAAgC,KAAAC,QAAAA,EAxCpD,KAAAC,KAAO,GAKoB,KAAAC,YAAc,GAMhC,KAAAC,oBAAsB,GAM/B,KAAAC,iBAAyC,CAAA,EAGhC,KAAAC,aAAe,GAEhB,KAAAX,aAAe,CAkBgD,CAEvEY,UAAQ,CACN,KAAKC,WAAa,KAAKP,QAAQQ,OAAO,CACpCC,YAAa,GACd,EACD,KAAKC,YAAW,CAClB,CAEAC,aAAW,CACT,KAAKC,oBAAmB,CAC1B,CAEAC,aAAW,CACT,KAAKN,YAAYO,QAAO,CAC1B,CAEAJ,aAAW,CACT,KAAKK,QAAU,KAAKR,YAAYS,OAAO,IAAIC,EAAgBC,EAAgB,CAAC,EAAEC,SAC9E,KAAKP,oBAAmB,CAC1B,CAEAA,qBAAmB,CACb,KAAKG,UACP,KAAKA,QAAQK,UAAU,IAAIC,EAAiB,KAAKtB,UAAU,CAAC,EAC5D,KAAKgB,QAAQO,SAAS,KAAKC,cAAgB,EAAE,EAC7C,KAAKR,QAAQS,QAAQ,KAAKtB,WAAW,EACrC,KAAKa,QAAQU,gBAAgB,KAAKpB,YAAY,EAC1C,KAAKD,kBAAkBsB,QACzB,KAAKX,QAAQY,aAAa,KAAKvB,gBAAgB,EAGrD,CAEAb,aAAW,CACJ,KAAKY,qBACR,KAAKY,SAASxB,YAAW,CAE7B,CAEAM,aAAW,CACT,KAAKkB,SAASlB,YAAW,CAC3B,CAKQF,mBAAiB,CAClB,KAAKoB,SAASd,OAInB,KAAKP,aAAeF,OAAOoC,WAAW,IAAK,CACpCC,SAASC,KAAKC,SAAS,KAAKhC,WAAWiC,aAAa,GACvD,KAAKnC,YAAW,EAElB,KAAKF,kBAAiB,CACxB,EAAGP,EAAgB,EACrB,yCArGWC,GAAsB4C,EAAAC,CAAA,EAAAD,EAAAE,EAAA,CAAA,CAAA,sBAAtB9C,EAAsB+C,UAAA,CAAA,CAAA,GAAA,cAAA,EAAA,CAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAtBE,EAAA,aAAA,UAAA,CAAA,OAAAD,EAAAjD,aAAA,CAAc,CAAA,EAAQ,aAAA,UAAA,CAAA,OAAtBiD,EAAA3C,aAAA,CAAc,CAAA,oNAArB,IAAOP,EAAPoD,SAAOpD,CAAsB,GAAA,ECH5B,IAAMqD,GAAiB,CAACC,EAAcC,EAAeC,GAAqBC,EAAe,EAShG,IAAaC,IAAmB,IAAA,CAA1B,IAAOA,EAAP,MAAOA,CAAmB,yCAAnBA,EAAmB,sBAAnBA,CAAmB,CAAA,0BAHrBC,EAAc,CAAA,CAAA,EAGnB,IAAOD,EAAPE,SAAOF,CAAmB,GAAA", "names": ["PopoverPositions", "Top", "originX", "originY", "overlayX", "overlayY", "panelClass", "Bottom", "Left", "Right", "TopRight", "TopLeft", "BottomRight", "BottomLeft", "DEFAULT_POSITIONS", "__spreadValues", "\u0275\u0275element", "\u0275\u0275elementStart", "\u0275\u0275listener", "\u0275\u0275restoreView", "_r1", "ctx_r1", "\u0275\u0275nextContext", "\u0275\u0275resetView", "close", "\u0275\u0275text", "\u0275\u0275elementEnd", "\u0275\u0275projection", "\u0275\u0275template", "PopoverComponent_ng_template_0_div_8_Template", "PopoverComponent_ng_template_0_div_10_Template", "\u0275\u0275styleProp", "_cooercedMaxWidth", "_cooercedMaxHeight", "\u0275\u0275classProp", "padding", "highContrast", "hasArrow", "\u0275\u0275pipeBind1", "isFullscreen$", "mobileFullScreen", "\u0275\u0275advance", "\u0275\u0275property", "showMobileClose", "PopoverComponent", "handleEscapeKey", "closeOnEscapeKey", "isOpen", "coerceCssPixelValue", "maxWidth", "maxHeight", "_popoverClasses", "_backdropClass", "showBackdrop", "constructor", "breakpointObserver", "hasBackdrop", "closeOnBackdropClick", "keepOnScreen", "breakpoint", "positions", "DEFAULT_POSITIONS", "isOpenChange", "EventEmitter", "backdropClick", "mobileBreakpoint", "ngOnInit", "observe", "pipe", "map", "resp", "breakpoints", "ngAfterContentInit", "setupPositions", "ngOnChanges", "changes", "previousValue", "_positions", "pos", "__spreadValues", "setOrigin", "origin", "onBackdropClick", "emit", "open", "toggle", "\u0275\u0275directiveInject", "BreakpointObserver", "selectors", "hostBindings", "rf", "ctx", "\u0275\u0275resolveDocument", "PopoverComponent_ng_template_0_Template", "_PopoverComponent", "PopoverActionsDirective", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_PopoverActionsDirective", "PopoverTitleDirective", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_PopoverTitleDirective", "GalaxyPopoverDirective", "constructor", "elementRef", "ngOnInit", "initPopover", "origin", "CdkOverlayOrigin", "popover", "setOrigin", "\u0275\u0275directiveInject", "ElementRef", "selectors", "inputs", "\u0275\u0275InputFlags", "None", "exportAs", "_GalaxyPopoverDirective", "MODULE_IMPORTS", "CommonModule", "OverlayModule", "MatIconModule", "MatButtonModule", "GalaxyPopoverModule", "MODULE_IMPORTS", "_GalaxyPopoverModule", "\u0275\u0275elementStart", "\u0275\u0275text", "\u0275\u0275elementEnd", "\u0275\u0275advance", "\u0275\u0275textInterpolate1", "\u0275\u0275pipeBind1", "ctx_r0", "title", "\u0275\u0275textInterpolate", "text", "\u0275\u0275elementContainerStart", "\u0275\u0275template", "TooltipComponent_ng_container_0_glxy_popover_title_2_Template", "TooltipComponent_ng_container_0_span_3_Template", "\u0275\u0275property", "origin", "show", "positions", "highContrast", "TooltipComponent", "constructor", "elementRef", "class", "PopoverPositions", "Top", "Bottom", "setOrigin", "setText", "setTitle", "sethighContrast", "mode", "setPositions", "showTooltip", "hideTooltip", "\u0275\u0275directiveInject", "ElementRef", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "TooltipComponent_ng_container_0_Template", "_TooltipComponent", "HIDDEN_TEST_WAIT", "GalaxyTooltipDirective", "onMouseEnter", "showTooltip", "window", "clearTimeout", "hiddenTestID", "testElementHidden", "onMouseLeave", "hideTooltip", "constructor", "elementRef", "overlay", "show", "glxyTooltip", "glxyTooltipDisabled", "tooltipPositions", "highContrast", "ngOnInit", "overlayRef", "create", "hasBackdrop", "initTooltip", "ngOnChanges", "updateTooltipValues", "ngOnDestroy", "dispose", "tooltip", "attach", "ComponentPortal", "TooltipComponent", "instance", "setOrigin", "CdkOverlayOrigin", "setTitle", "tooltipTitle", "setText", "sethighContrast", "length", "setPositions", "setTimeout", "document", "body", "contains", "nativeElement", "\u0275\u0275directiveInject", "ElementRef", "Overlay", "selectors", "hostBindings", "rf", "ctx", "\u0275\u0275listener", "_GalaxyTooltipDirective", "MODULE_IMPORTS", "CommonModule", "OverlayModule", "GalaxyPopoverModule", "TranslateModule", "GalaxyTooltipModule", "MODULE_IMPORTS", "_GalaxyTooltipModule"] }