UNPKG

@synergy-design-system/angular

Version:
1 lines 20 kB
{"version":3,"file":"synergy-design-system-angular-components-popup.mjs","sources":["../../components/popup/popup.component.ts","../../components/popup/synergy-design-system-angular-components-popup.ts"],"sourcesContent":["// ---------------------------------------------------------------------\n// 🔒 AUTOGENERATED @synergy-design-system/angular wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport {\n Component,\n ElementRef,\n NgZone,\n Input,\n Output,\n EventEmitter,\n AfterContentInit,\n} from '@angular/core';\nimport type { SynPopup } from '@synergy-design-system/components';\nimport type { SynRepositionEvent } from '@synergy-design-system/components';\nimport '@synergy-design-system/components/components/popup/popup.js';\n\n/**\n * @summary Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.\n * @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-popup--docs\n * @status stable\n * @since 2.0\n *\n * @event syn-reposition - Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive\n * operations in your listener or consider debouncing it.\n *\n * @slot - The popup's content.\n * @slot anchor - The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the\n * `anchor` attribute or property instead.\n *\n * @csspart arrow - The arrow's container. Avoid setting `top|bottom|left|right` properties, as these values are\n * assigned dynamically as the popup moves. This is most useful for applying a background color to match the popup, and\n * maybe a border or box shadow.\n * @csspart popup - The popup's container. Useful for setting a background color, box shadow, etc.\n * @csspart hover-bridge - The hover bridge element. Only available when the `hover-bridge` option is enabled.\n *\n * @cssproperty [--arrow-size=6px] - The size of the arrow. Note that an arrow won't be shown unless the `arrow`\n * attribute is used.\n * @cssproperty [--arrow-color=var(--syn-color-neutral-0)] - The color of the arrow.\n * @cssproperty [--auto-size-available-width] - A read-only custom property that determines the amount of width the\n * popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only\n * available when using `auto-size`.\n * @cssproperty [--auto-size-available-height] - A read-only custom property that determines the amount of height the\n * popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only\n * available when using `auto-size`.\n */\n@Component({\n selector: 'syn-popup',\n standalone: true,\n template: '<ng-content></ng-content>',\n})\nexport class SynPopupComponent {\n public nativeElement: SynPopup;\n private _ngZone: NgZone;\n\n constructor(e: ElementRef, ngZone: NgZone) {\n this.nativeElement = e.nativeElement;\n this._ngZone = ngZone;\n this.nativeElement.addEventListener(\n 'syn-reposition',\n (e: SynRepositionEvent) => {\n this.synRepositionEvent.emit(e);\n },\n );\n }\n\n /**\n* The element the popup will be anchored to.\n* If the anchor lives outside of the popup, you can provide the anchor\nelement `id`, a DOM element reference, or a `VirtualElement`.\n* If the anchor lives inside the popup, use the\n`anchor` slot instead.\n */\n @Input()\n set anchor(v: SynPopup['anchor']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.anchor = v));\n }\n get anchor(): SynPopup['anchor'] {\n return this.nativeElement.anchor;\n }\n\n /**\n* Activates the positioning logic and shows the popup.\n* When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.\n */\n @Input()\n set active(v: '' | SynPopup['active']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.active = v === '' || v),\n );\n }\n get active(): SynPopup['active'] {\n return this.nativeElement.active;\n }\n\n /**\n* The preferred placement of the popup.\n* Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.\n */\n @Input()\n set placement(v: SynPopup['placement']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.placement = v));\n }\n get placement(): SynPopup['placement'] {\n return this.nativeElement.placement;\n }\n\n /**\n* Determines how the popup is positioned.\n* The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.\n */\n @Input()\n set strategy(v: SynPopup['strategy']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.strategy = v));\n }\n get strategy(): SynPopup['strategy'] {\n return this.nativeElement.strategy;\n }\n\n /**\n * The distance in pixels from which to offset the panel away from its anchor.\n */\n @Input()\n set distance(v: SynPopup['distance']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.distance = v));\n }\n get distance(): SynPopup['distance'] {\n return this.nativeElement.distance;\n }\n\n /**\n * The distance in pixels from which to offset the panel along its anchor.\n */\n @Input()\n set skidding(v: SynPopup['skidding']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.skidding = v));\n }\n get skidding(): SynPopup['skidding'] {\n return this.nativeElement.skidding;\n }\n\n /**\n* Attaches an arrow to the popup.\n* The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties.\n* For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.\n */\n @Input()\n set arrow(v: '' | SynPopup['arrow']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.arrow = v === '' || v),\n );\n }\n get arrow(): SynPopup['arrow'] {\n return this.nativeElement.arrow;\n }\n\n /**\n* The placement of the arrow.\n* The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`.\n* A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.\n */\n @Input()\n set arrowPlacement(v: SynPopup['arrowPlacement']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.arrowPlacement = v),\n );\n }\n get arrowPlacement(): SynPopup['arrowPlacement'] {\n return this.nativeElement.arrowPlacement;\n }\n\n /**\n* The amount of padding between the arrow and the edges of the popup.\n* If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.\n */\n @Input()\n set arrowPadding(v: SynPopup['arrowPadding']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.arrowPadding = v));\n }\n get arrowPadding(): SynPopup['arrowPadding'] {\n return this.nativeElement.arrowPadding;\n }\n\n /**\n* When set, placement of the popup will flip to the opposite site to keep it in view.\n* You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.\n */\n @Input()\n set flip(v: '' | SynPopup['flip']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.flip = v === '' || v),\n );\n }\n get flip(): SynPopup['flip'] {\n return this.nativeElement.flip;\n }\n\n /**\n* If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits.\n* Must be a\nstring of any number of placements separated by a space, e.g.\n* \"top bottom left\".\n* If no placement fits, the flip\nfallback strategy will be used instead.\n */\n @Input()\n set flipFallbackPlacements(v: SynPopup['flipFallbackPlacements']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.flipFallbackPlacements = v),\n );\n }\n get flipFallbackPlacements(): SynPopup['flipFallbackPlacements'] {\n return this.nativeElement.flipFallbackPlacements;\n }\n\n /**\n* When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.\n */\n @Input()\n set flipFallbackStrategy(v: SynPopup['flipFallbackStrategy']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.flipFallbackStrategy = v),\n );\n }\n get flipFallbackStrategy(): SynPopup['flipFallbackStrategy'] {\n return this.nativeElement.flipFallbackStrategy;\n }\n\n /**\n* The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping.\n* By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped.\n* If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n */\n @Input()\n set flipBoundary(v: SynPopup['flipBoundary']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.flipBoundary = v));\n }\n get flipBoundary(): SynPopup['flipBoundary'] {\n return this.nativeElement.flipBoundary;\n }\n\n /**\n * The amount of padding, in pixels, to exceed before the flip behavior will occur.\n */\n @Input()\n set flipPadding(v: SynPopup['flipPadding']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.flipPadding = v));\n }\n get flipPadding(): SynPopup['flipPadding'] {\n return this.nativeElement.flipPadding;\n }\n\n /**\n * Moves the popup along the axis to keep it in view when clipped.\n */\n @Input()\n set shift(v: '' | SynPopup['shift']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.shift = v === '' || v),\n );\n }\n get shift(): SynPopup['shift'] {\n return this.nativeElement.shift;\n }\n\n /**\n* The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting.\n* By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped.\n* If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n */\n @Input()\n set shiftBoundary(v: SynPopup['shiftBoundary']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.shiftBoundary = v),\n );\n }\n get shiftBoundary(): SynPopup['shiftBoundary'] {\n return this.nativeElement.shiftBoundary;\n }\n\n /**\n * The amount of padding, in pixels, to exceed before the shift behavior will occur.\n */\n @Input()\n set shiftPadding(v: SynPopup['shiftPadding']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.shiftPadding = v));\n }\n get shiftPadding(): SynPopup['shiftPadding'] {\n return this.nativeElement.shiftPadding;\n }\n\n /**\n * When set, this will cause the popup to automatically resize itself to prevent it from overflowing.\n */\n @Input()\n set autoSize(v: SynPopup['autoSize']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.autoSize = v));\n }\n get autoSize(): SynPopup['autoSize'] {\n return this.nativeElement.autoSize;\n }\n\n /**\n * Syncs the popup's width or height to that of the anchor element.\n */\n @Input()\n set sync(v: SynPopup['sync']) {\n this._ngZone.runOutsideAngular(() => (this.nativeElement.sync = v));\n }\n get sync(): SynPopup['sync'] {\n return this.nativeElement.sync;\n }\n\n /**\n* The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing.\n* By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped.\n* If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.\n */\n @Input()\n set autoSizeBoundary(v: SynPopup['autoSizeBoundary']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.autoSizeBoundary = v),\n );\n }\n get autoSizeBoundary(): SynPopup['autoSizeBoundary'] {\n return this.nativeElement.autoSizeBoundary;\n }\n\n /**\n * The amount of padding, in pixels, to exceed before the auto-size behavior will occur.\n */\n @Input()\n set autoSizePadding(v: SynPopup['autoSizePadding']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.autoSizePadding = v),\n );\n }\n get autoSizePadding(): SynPopup['autoSizePadding'] {\n return this.nativeElement.autoSizePadding;\n }\n\n /**\n* When a gap exists between the anchor and the popup element, this option will add a \"hover bridge\" that fills the\ngap using an invisible element.\n* This makes listening for events such as `mouseenter` and `mouseleave` more sane\nbecause the pointer never technically leaves the element.\n* The hover bridge will only be drawn when the popover is\nactive.\n */\n @Input()\n set hoverBridge(v: '' | SynPopup['hoverBridge']) {\n this._ngZone.runOutsideAngular(\n () => (this.nativeElement.hoverBridge = v === '' || v),\n );\n }\n get hoverBridge(): SynPopup['hoverBridge'] {\n return this.nativeElement.hoverBridge;\n }\n\n /**\n * Emitted when the popup is repositioned.\n * This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it.\n */\n @Output() synRepositionEvent = new EventEmitter<SynRepositionEvent>();\n}\n\nexport type { SynRepositionEvent } from '@synergy-design-system/components';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './popup.component';\n"],"names":[],"mappings":"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"}