@lmvz-ds/angular 0.32.0 → 0.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @lmvz-ds/angular
2
2
 
3
+ ## 0.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 62ae65a: Plattform und Dependencies aktualisiert (Node 26, TypeScript 6, uvm.)
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [62ae65a]
12
+ - @lmvz-ds/components@0.33.0
13
+
3
14
  ## 0.32.0
4
15
 
5
16
  ### Minor Changes
@@ -1 +1 @@
1
- {"version":3,"file":"lmvz-ds-angular.mjs","sources":["../../../projects/component-library/src/directives/value-accessors.ts","../../../projects/component-library/src/directives/lmvz-input-helpers.ts","../../../projects/component-library/src/generated/angular-component-lib/utils.ts","../../../projects/component-library/src/generated/proxies.ts","../../../projects/component-library/src/generated/index.ts","../../../projects/component-library/src/services/snackbar.service.ts","../../../projects/component-library/src/lmvz-ds-angular.ts"],"sourcesContent":["import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Directive({})\nabstract class ValueAccessor<T> implements ControlValueAccessor {\n private onChange: (value: T | undefined) => void = () => {\n /**/\n };\n private onTouched: () => void = () => {\n /**/\n };\n protected lastValue: T | undefined;\n\n constructor(protected el: ElementRef) {}\n\n abstract writeValue(value: T | undefined): void;\n\n handleChangeEvent(value: T | undefined) {\n if (value !== this.lastValue) {\n this.lastValue = value;\n this.onChange(value);\n }\n }\n\n @HostListener('focusout')\n _handleBlurEvent() {\n this.onTouched();\n }\n\n registerOnChange(fn: (value: T | undefined) => void) {\n this.onChange = fn;\n }\n registerOnTouched(fn: () => void) {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean) {\n this.el.nativeElement.disabled = isDisabled;\n }\n}\n\n/**\n * Use this function to create a writeValue implementation for a ValueAccessor, that writes the provided value or a default value (if provided value is null or undefined) to the native element's value property.\n * @param this provided automatically by TypeScript, instance must extend ValueAccessor\n * @param value the actual value, provided by Angular forms at runtime\n * @param defaultValue the default value to use if the provided value is nullish\n */\nfunction writeValueOrDefaultFactory<T>(defaultValue: T) {\n return function (this: ValueAccessor<T>, value: NoInfer<T | undefined>): void {\n this.el.nativeElement.value = this.lastValue = value ?? defaultValue;\n };\n}\n\n@Directive({})\nexport abstract class BooleanValueAccessor extends ValueAccessor<boolean> {\n override writeValue = writeValueOrDefaultFactory(false);\n\n constructor(el: ElementRef) {\n super(el);\n }\n}\n\n@Directive({})\nexport abstract class StringValueAccessor extends ValueAccessor<string> {\n override writeValue = writeValueOrDefaultFactory('');\n\n constructor(el: ElementRef) {\n super(el);\n }\n}\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { BooleanValueAccessor, StringValueAccessor } from './value-accessors';\n\n@Directive({\n selector: 'lmvz-input',\n host: {\n '(lmvzInput)': 'handleChangeEvent($event.target?.[\"value\"])',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzInputValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzInputValueChangeHelper extends StringValueAccessor {}\n\n@Directive({\n selector: 'lmvz-checkbox',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.detail)',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzCheckboxValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzCheckboxValueChangeHelper extends BooleanValueAccessor {}\n\n@Directive({\n selector: 'lmvz-toggle',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.detail)',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzToggleValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzToggleValueChangeHelper extends BooleanValueAccessor {}\n\n@Directive({\n selector: 'lmvz-radio',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.detail)',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzRadioValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzRadioValueChangeHelper extends BooleanValueAccessor {}\n\nexport const FORM_INPUT_HELPER_DIRECTIVES = [LmvzInputValueChangeHelper, LmvzCheckboxValueChangeHelper, LmvzToggleValueChangeHelper, LmvzRadioValueChangeHelper] as const;\n","/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach((item) => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n },\n /**\n * In the event that proxyInputs is called\n * multiple times re-defining these inputs\n * will cause an error to be thrown. As a result\n * we set configurable: true to indicate these\n * properties can be changed.\n */\n configurable: true,\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach((methodName) => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));\n};\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {\n customElements.define(tagName, customElement);\n }\n};\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void; inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n","/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Output, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@lmvz-ds/components/components';\n\nimport { defineCustomElement as defineLmvzAction } from '@lmvz-ds/components/components/lmvz-action.js';\nimport { defineCustomElement as defineLmvzActionList } from '@lmvz-ds/components/components/lmvz-action-list.js';\nimport { defineCustomElement as defineLmvzButton } from '@lmvz-ds/components/components/lmvz-button.js';\nimport { defineCustomElement as defineLmvzButtonGroup } from '@lmvz-ds/components/components/lmvz-button-group.js';\nimport { defineCustomElement as defineLmvzCard } from '@lmvz-ds/components/components/lmvz-card.js';\nimport { defineCustomElement as defineLmvzCheckbox } from '@lmvz-ds/components/components/lmvz-checkbox.js';\nimport { defineCustomElement as defineLmvzChip } from '@lmvz-ds/components/components/lmvz-chip.js';\nimport { defineCustomElement as defineLmvzHeader } from '@lmvz-ds/components/components/lmvz-header.js';\nimport { defineCustomElement as defineLmvzIcon } from '@lmvz-ds/components/components/lmvz-icon.js';\nimport { defineCustomElement as defineLmvzInput } from '@lmvz-ds/components/components/lmvz-input.js';\nimport { defineCustomElement as defineLmvzLink } from '@lmvz-ds/components/components/lmvz-link.js';\nimport { defineCustomElement as defineLmvzMenuitem } from '@lmvz-ds/components/components/lmvz-menuitem.js';\nimport { defineCustomElement as defineLmvzMessage } from '@lmvz-ds/components/components/lmvz-message.js';\nimport { defineCustomElement as defineLmvzModal } from '@lmvz-ds/components/components/lmvz-modal.js';\nimport { defineCustomElement as defineLmvzRadio } from '@lmvz-ds/components/components/lmvz-radio.js';\nimport { defineCustomElement as defineLmvzSelect } from '@lmvz-ds/components/components/lmvz-select.js';\nimport { defineCustomElement as defineLmvzSnackbar } from '@lmvz-ds/components/components/lmvz-snackbar.js';\nimport { defineCustomElement as defineLmvzSpinner } from '@lmvz-ds/components/components/lmvz-spinner.js';\nimport { defineCustomElement as defineLmvzTab } from '@lmvz-ds/components/components/lmvz-tab.js';\nimport { defineCustomElement as defineLmvzTabs } from '@lmvz-ds/components/components/lmvz-tabs.js';\nimport { defineCustomElement as defineLmvzToggle } from '@lmvz-ds/components/components/lmvz-toggle.js';\n@ProxyCmp({\n defineCustomElementFn: defineLmvzAction\n})\n@Component({\n selector: 'lmvz-action',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [],\n outputs: ['actionClick'],\n})\nexport class LmvzAction {\n protected el: HTMLLmvzActionElement;\n @Output() actionClick = new EventEmitter<CustomEvent<MouseEvent>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzAction extends Components.LmvzAction {\n\n actionClick: EventEmitter<CustomEvent<MouseEvent>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzActionList,\n inputs: ['label']\n})\n@Component({\n selector: 'lmvz-action-list',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['label'],\n})\nexport class LmvzActionList {\n protected el: HTMLLmvzActionListElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzActionList extends Components.LmvzActionList {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzButton,\n inputs: ['buttonRole', 'disabled', 'form', 'formMethod', 'name', 'scale', 'ti', 'type', 'value', 'variant']\n})\n@Component({\n selector: 'lmvz-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['buttonRole', 'disabled', 'form', 'formMethod', 'name', 'scale', 'ti', 'type', 'value', 'variant'],\n outputs: ['lmvzActivation'],\n})\nexport class LmvzButton {\n protected el: HTMLLmvzButtonElement;\n @Output() lmvzActivation = new EventEmitter<CustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzButton extends Components.LmvzButton {\n /**\n * Event emitted when the button is activated, either by a click or by pressing \"Enter\" when the button is focused.\n */\n lmvzActivation: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzButtonGroup,\n inputs: ['hasActions', 'primaryEnabledAction', 'stacked']\n})\n@Component({\n selector: 'lmvz-button-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['hasActions', 'primaryEnabledAction', 'stacked'],\n})\nexport class LmvzButtonGroup {\n protected el: HTMLLmvzButtonGroupElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzButtonGroup extends Components.LmvzButtonGroup {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzCard,\n inputs: ['cardTitle', 'description', 'imageUrl', 'primaryActionLabel']\n})\n@Component({\n selector: 'lmvz-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [{ name: 'cardTitle', required: true }, 'description', 'imageUrl', 'primaryActionLabel'],\n outputs: ['primaryAction'],\n})\nexport class LmvzCard {\n protected el: HTMLLmvzCardElement;\n @Output() primaryAction = new EventEmitter<CustomEvent<PointerEvent>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzCard extends Components.LmvzCard {\n /**\n * Event emitted when primary button is clicked\n */\n primaryAction: EventEmitter<CustomEvent<PointerEvent>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzCheckbox,\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'label', 'name', 'required', 'value'],\n methods: ['focusInput', 'checkValidity', 'reportValidity']\n})\n@Component({\n selector: 'lmvz-checkbox',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', { name: 'label', required: true }, 'name', 'required', 'value'],\n outputs: ['lmvzChange'],\n})\nexport class LmvzCheckbox {\n protected el: HTMLLmvzCheckboxElement;\n @Output() lmvzChange = new EventEmitter<CustomEvent<boolean>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzCheckbox extends Components.LmvzCheckbox {\n /**\n * Emitted whenever the checkbox checked state changes.\nEvent detail contains the new checked boolean value.\n */\n lmvzChange: EventEmitter<CustomEvent<boolean>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzChip,\n inputs: ['size', 'type']\n})\n@Component({\n selector: 'lmvz-chip',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['size', 'type'],\n})\nexport class LmvzChip {\n protected el: HTMLLmvzChipElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzChip extends Components.LmvzChip {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzHeader,\n inputs: ['lmvzActiveNav', 'role']\n})\n@Component({\n selector: 'lmvz-header',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['lmvzActiveNav', 'role'],\n})\nexport class LmvzHeader {\n protected el: HTMLLmvzHeaderElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzHeader extends Components.LmvzHeader {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzIcon,\n inputs: ['ariaLabel', 'icon', 'iconset', 'size', 'weight']\n})\n@Component({\n selector: 'lmvz-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['ariaLabel', { name: 'icon', required: true }, 'iconset', 'size', 'weight'],\n})\nexport class LmvzIcon {\n protected el: HTMLLmvzIconElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzIcon extends Components.LmvzIcon {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzInput,\n inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'inputmode', 'label', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],\n methods: ['setValue', 'focusInput', 'blurInput', 'select', 'checkValidity', 'reportValidity', 'getInputElement']\n})\n@Component({\n selector: 'lmvz-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'inputmode', { name: 'label', required: true }, 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],\n outputs: ['lmvzInput'],\n})\nexport class LmvzInput {\n protected el: HTMLLmvzInputElement;\n @Output() lmvzInput = new EventEmitter<CustomEvent<string>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzInput extends Components.LmvzInput {\n /**\n * Emitted whenever the input value changes.\nEvent detail contains the current value.\n */\n lmvzInput: EventEmitter<CustomEvent<string>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzLink,\n inputs: ['externalLabel', 'href', 'rel', 'target', 'type']\n})\n@Component({\n selector: 'lmvz-link',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['externalLabel', 'href', 'rel', 'target', 'type'],\n})\nexport class LmvzLink {\n protected el: HTMLLmvzLinkElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzLink extends Components.LmvzLink {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzMenuitem,\n inputs: ['role', 'ti']\n})\n@Component({\n selector: 'lmvz-menuitem',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['role', 'ti'],\n outputs: ['lmvzActivation'],\n})\nexport class LmvzMenuitem {\n protected el: HTMLLmvzMenuitemElement;\n @Output() lmvzActivation = new EventEmitter<CustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzMenuitem extends Components.LmvzMenuitem {\n /**\n * Event emitted when the menu item is activated, either by a click or by pressing \"Enter\" or \"Space\" while the menu item is focused.\n */\n lmvzActivation: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzMessage,\n inputs: ['actionLabel', 'closeLabel', 'dismissible', 'leadingIcon', 'live', 'type']\n})\n@Component({\n selector: 'lmvz-message',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['actionLabel', 'closeLabel', 'dismissible', 'leadingIcon', 'live', 'type'],\n outputs: ['lmvzDismiss', 'lmvzAction'],\n})\nexport class LmvzMessage {\n protected el: HTMLLmvzMessageElement;\n @Output() lmvzDismiss = new EventEmitter<CustomEvent<void>>();\n @Output() lmvzAction = new EventEmitter<CustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzMessage extends Components.LmvzMessage {\n\n lmvzDismiss: EventEmitter<CustomEvent<void>>;\n\n lmvzAction: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzModal,\n inputs: ['closeLabel', 'open']\n})\n@Component({\n selector: 'lmvz-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['closeLabel', 'open'],\n outputs: ['close', 'cancel'],\n})\nexport class LmvzModal {\n protected el: HTMLLmvzModalElement;\n @Output() close = new EventEmitter<CustomEvent<void>>();\n @Output() cancel = new EventEmitter<CustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzModal extends Components.LmvzModal {\n /**\n * Re-emitted from the host whenever the native dialog closes so framework wrappers can synchronize bound state.\n */\n close: EventEmitter<CustomEvent<void>>;\n /**\n * Re-emitted from the host whenever the native dialog receives a `cancel` event (e.g. Escape key).\nCall `event.preventDefault()` to keep the dialog open.\n */\n cancel: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzRadio,\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'form', 'helperText', 'label', 'name', 'required', 'value'],\n methods: ['focusInput', 'checkValidity', 'reportValidity']\n})\n@Component({\n selector: 'lmvz-radio',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'form', 'helperText', { name: 'label', required: true }, 'name', 'required', 'value'],\n outputs: ['lmvzChange', 'lmvzActivation'],\n})\nexport class LmvzRadio {\n protected el: HTMLLmvzRadioElement;\n @Output() lmvzChange = new EventEmitter<CustomEvent<boolean>>();\n @Output() lmvzActivation = new EventEmitter<CustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzRadio extends Components.LmvzRadio {\n /**\n * Emitted whenever the radio checked state changes.\nEvent detail contains the new checked boolean value.\n\nEmission contract:\n- Fires `true` on user selection (native `change` event).\n- Fires on programmatic external prop transitions: `true → false` (emits `false`) and\n `false → true` (emits `true`), e.g. `element.checked = false` or `element.checked = true`.\n- Does NOT fire during browser-driven form lifecycle callbacks: `formResetCallback` and\n `formStateRestoreCallback` (autofill / session restore). This matches native `<input type=\"radio\">`\n behaviour, which does not fire `change` on form reset. Note that internal form state\n (`ElementInternals.setFormValue`) is always updated regardless of suppression — only the\n event channel is silenced.\n- Does NOT re-fire from the `@Watch('checked')` watcher during the same tick as the native\n `change` handler, preventing a double-emission when the user clicks the radio.\n */\n lmvzChange: EventEmitter<CustomEvent<boolean>>;\n /**\n * Fired on every explicit user activation of this radio — via click or Space key on the\nnative input. Fires even when the radio is already checked (re-activation). Use this\nevent to react to user intent; use `lmvzChange` to react to state transitions.\n */\n lmvzActivation: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzSelect,\n inputs: ['disabled', 'helperText', 'highlighted', 'label', 'name', 'required', 'size', 'value']\n})\n@Component({\n selector: 'lmvz-select',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'helperText', 'highlighted', { name: 'label', required: true }, 'name', 'required', 'size', 'value'],\n outputs: ['lmvzChange'],\n})\nexport class LmvzSelect {\n protected el: HTMLLmvzSelectElement;\n @Output() lmvzChange = new EventEmitter<CustomEvent<string>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzSelect extends Components.LmvzSelect {\n /**\n * Emitted when the user selects a new option. Detail contains the new value.\n */\n lmvzChange: EventEmitter<CustomEvent<string>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzSnackbar,\n inputs: ['actionLabel', 'duration', 'message', 'priority', 'status'],\n methods: ['show', 'hide']\n})\n@Component({\n selector: 'lmvz-snackbar',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['actionLabel', 'duration', 'message', 'priority', 'status'],\n outputs: ['lmvzClose'],\n})\nexport class LmvzSnackbar {\n protected el: HTMLLmvzSnackbarElement;\n @Output() lmvzClose = new EventEmitter<CustomEvent<{ reason: ILmvzSnackbarSnackbar.DismissReason }>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { Snackbar as ILmvzSnackbarSnackbar } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzSnackbar extends Components.LmvzSnackbar {\n\n lmvzClose: EventEmitter<CustomEvent<{ reason: ILmvzSnackbarSnackbar.DismissReason }>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzSpinner,\n inputs: ['ariaLabel', 'size']\n})\n@Component({\n selector: 'lmvz-spinner',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['ariaLabel', 'size'],\n})\nexport class LmvzSpinner {\n protected el: HTMLLmvzSpinnerElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzSpinner extends Components.LmvzSpinner {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzTab,\n inputs: ['disabled', 'selected', 'value', 'vertical']\n})\n@Component({\n selector: 'lmvz-tab',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'selected', { name: 'value', required: true }, 'vertical'],\n})\nexport class LmvzTab {\n protected el: HTMLLmvzTabElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzTab extends Components.LmvzTab {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzTabs,\n inputs: ['orientation', 'value'],\n methods: ['activateTab', 'getTabElements', 'setTabPanelIds']\n})\n@Component({\n selector: 'lmvz-tabs',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['orientation', { name: 'value', required: true }],\n outputs: ['lmvzChange'],\n})\nexport class LmvzTabs {\n protected el: HTMLLmvzTabsElement;\n @Output() lmvzChange = new EventEmitter<CustomEvent<{ value: string }>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzTabs extends Components.LmvzTabs {\n /**\n * Emitted when a tab is activated.\nDetail: `{ value: string }`.\n */\n lmvzChange: EventEmitter<CustomEvent<{ value: string }>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzToggle,\n inputs: ['checked', 'disabled', 'form', 'label', 'name', 'required', 'value'],\n methods: ['focusToggle', 'blurToggle', 'checkValidity', 'reportValidity', 'getInputElement']\n})\n@Component({\n selector: 'lmvz-toggle',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['checked', 'disabled', 'form', { name: 'label', required: true }, 'name', 'required', 'value'],\n outputs: ['lmvzChange'],\n})\nexport class LmvzToggle {\n protected el: HTMLLmvzToggleElement;\n @Output() lmvzChange = new EventEmitter<CustomEvent<boolean>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzToggle extends Components.LmvzToggle {\n /**\n * Emitted when the toggle is switched. Event detail is the new checked state.\n */\n lmvzChange: EventEmitter<CustomEvent<boolean>>;\n}\n\n\n","\nimport * as d from './proxies';\n\nexport const DIRECTIVES = [\n d.LmvzAction,\n d.LmvzActionList,\n d.LmvzButton,\n d.LmvzButtonGroup,\n d.LmvzCard,\n d.LmvzCheckbox,\n d.LmvzChip,\n d.LmvzHeader,\n d.LmvzIcon,\n d.LmvzInput,\n d.LmvzLink,\n d.LmvzMenuitem,\n d.LmvzMessage,\n d.LmvzModal,\n d.LmvzRadio,\n d.LmvzSelect,\n d.LmvzSnackbar,\n d.LmvzSpinner,\n d.LmvzTab,\n d.LmvzTabs,\n d.LmvzToggle\n];\n","import { Injectable } from '@angular/core';\nimport {\n SnackbarController,\n type SnackbarDismissReason,\n type SnackbarHandle,\n type SnackbarOptions,\n} from '@lmvz-ds/components';\nimport { Observable, from } from 'rxjs';\n\nexport type { SnackbarPriority, SnackbarStatus } from '@lmvz-ds/components';\nexport type { SnackbarDismissReason, SnackbarHandle, SnackbarOptions };\n\n@Injectable({ providedIn: 'root' })\nexport class SnackbarService {\n private readonly controller = new SnackbarController();\n\n open(options: SnackbarOptions): SnackbarHandle {\n return this.controller.open(options);\n }\n\n dismiss(id?: string): void {\n this.controller.dismiss(id);\n }\n\n openSuccess(\n message: string,\n options?: Omit<SnackbarOptions, 'message' | 'status'>,\n ): SnackbarHandle {\n return this.controller.open({ ...options, message, status: 'success' });\n }\n\n openWarning(\n message: string,\n options?: Omit<SnackbarOptions, 'message' | 'status'>,\n ): SnackbarHandle {\n return this.controller.open({ ...options, message, status: 'warning' });\n }\n\n openError(\n message: string,\n options?: Omit<SnackbarOptions, 'message' | 'status'>,\n ): SnackbarHandle {\n return this.controller.open({ ...options, message, status: 'error' });\n }\n\n openAndObserve(options: SnackbarOptions): {\n handle: SnackbarHandle;\n closed$: Observable<{ reason: SnackbarDismissReason }>;\n } {\n const handle = this.controller.open(options);\n return { handle, closed$: from(handle.closed) };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["defineLmvzAction","defineLmvzActionList","defineLmvzButton","defineLmvzButtonGroup","defineLmvzCard","defineLmvzCheckbox","defineLmvzChip","defineLmvzHeader","defineLmvzIcon","defineLmvzInput","defineLmvzLink","defineLmvzMenuitem","defineLmvzMessage","defineLmvzModal","defineLmvzRadio","defineLmvzSelect","defineLmvzSnackbar","defineLmvzSpinner","defineLmvzTab","defineLmvzTabs","defineLmvzToggle","d.LmvzAction","d.LmvzActionList","d.LmvzButton","d.LmvzButtonGroup","d.LmvzCard","d.LmvzCheckbox","d.LmvzChip","d.LmvzHeader","d.LmvzIcon","d.LmvzInput","d.LmvzLink","d.LmvzMenuitem","d.LmvzMessage","d.LmvzModal","d.LmvzRadio","d.LmvzSelect","d.LmvzSnackbar","d.LmvzSpinner","d.LmvzTab","d.LmvzTabs","d.LmvzToggle"],"mappings":"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"}
1
+ {"version":3,"file":"lmvz-ds-angular.mjs","sources":["../../../projects/component-library/src/directives/value-accessors.ts","../../../projects/component-library/src/directives/lmvz-input-helpers.ts","../../../projects/component-library/src/generated/angular-component-lib/utils.ts","../../../projects/component-library/src/generated/proxies.ts","../../../projects/component-library/src/generated/index.ts","../../../projects/component-library/src/services/snackbar.service.ts","../../../projects/component-library/src/lmvz-ds-angular.ts"],"sourcesContent":["import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Directive({})\nabstract class ValueAccessor<T> implements ControlValueAccessor {\n private onChange: (value: T | undefined) => void = () => {\n /**/\n };\n private onTouched: () => void = () => {\n /**/\n };\n protected lastValue: T | undefined;\n\n constructor(protected el: ElementRef) {}\n\n abstract writeValue(value: T | undefined): void;\n\n handleChangeEvent(value: T | undefined) {\n if (value !== this.lastValue) {\n this.lastValue = value;\n this.onChange(value);\n }\n }\n\n @HostListener('focusout')\n _handleBlurEvent() {\n this.onTouched();\n }\n\n registerOnChange(fn: (value: T | undefined) => void) {\n this.onChange = fn;\n }\n registerOnTouched(fn: () => void) {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean) {\n this.el.nativeElement.disabled = isDisabled;\n }\n}\n\n/**\n * Use this function to create a writeValue implementation for a ValueAccessor, that writes the provided value or a default value (if provided value is null or undefined) to the native element's value property.\n * @param this provided automatically by TypeScript, instance must extend ValueAccessor\n * @param value the actual value, provided by Angular forms at runtime\n * @param defaultValue the default value to use if the provided value is nullish\n */\nfunction writeValueOrDefaultFactory<T>(defaultValue: T) {\n return function (this: ValueAccessor<T>, value: NoInfer<T | undefined>): void {\n this.el.nativeElement.value = this.lastValue = value ?? defaultValue;\n };\n}\n\n@Directive({})\nexport abstract class BooleanValueAccessor extends ValueAccessor<boolean> {\n override writeValue = writeValueOrDefaultFactory(false);\n\n constructor(el: ElementRef) {\n super(el);\n }\n}\n\n@Directive({})\nexport abstract class StringValueAccessor extends ValueAccessor<string> {\n override writeValue = writeValueOrDefaultFactory('');\n\n constructor(el: ElementRef) {\n super(el);\n }\n}\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { BooleanValueAccessor, StringValueAccessor } from './value-accessors';\n\n@Directive({\n selector: 'lmvz-input',\n host: {\n '(lmvzInput)': 'handleChangeEvent($event.target?.[\"value\"])',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzInputValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzInputValueChangeHelper extends StringValueAccessor {}\n\n@Directive({\n selector: 'lmvz-checkbox',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.detail)',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzCheckboxValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzCheckboxValueChangeHelper extends BooleanValueAccessor {}\n\n@Directive({\n selector: 'lmvz-toggle',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.detail)',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzToggleValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzToggleValueChangeHelper extends BooleanValueAccessor {}\n\n@Directive({\n selector: 'lmvz-radio',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.detail)',\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LmvzRadioValueChangeHelper),\n multi: true,\n },\n ],\n})\nexport class LmvzRadioValueChangeHelper extends BooleanValueAccessor {}\n\nexport const FORM_INPUT_HELPER_DIRECTIVES = [LmvzInputValueChangeHelper, LmvzCheckboxValueChangeHelper, LmvzToggleValueChangeHelper, LmvzRadioValueChangeHelper] as const;\n","/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach((item) => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n },\n /**\n * In the event that proxyInputs is called\n * multiple times re-defining these inputs\n * will cause an error to be thrown. As a result\n * we set configurable: true to indicate these\n * properties can be changed.\n */\n configurable: true,\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach((methodName) => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));\n};\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {\n customElements.define(tagName, customElement);\n }\n};\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void; inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n","/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Output, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@lmvz-ds/components/components';\n\nimport { defineCustomElement as defineLmvzAction } from '@lmvz-ds/components/components/lmvz-action.js';\nimport { defineCustomElement as defineLmvzActionList } from '@lmvz-ds/components/components/lmvz-action-list.js';\nimport { defineCustomElement as defineLmvzButton } from '@lmvz-ds/components/components/lmvz-button.js';\nimport { defineCustomElement as defineLmvzButtonGroup } from '@lmvz-ds/components/components/lmvz-button-group.js';\nimport { defineCustomElement as defineLmvzCard } from '@lmvz-ds/components/components/lmvz-card.js';\nimport { defineCustomElement as defineLmvzCheckbox } from '@lmvz-ds/components/components/lmvz-checkbox.js';\nimport { defineCustomElement as defineLmvzChip } from '@lmvz-ds/components/components/lmvz-chip.js';\nimport { defineCustomElement as defineLmvzHeader } from '@lmvz-ds/components/components/lmvz-header.js';\nimport { defineCustomElement as defineLmvzIcon } from '@lmvz-ds/components/components/lmvz-icon.js';\nimport { defineCustomElement as defineLmvzInput } from '@lmvz-ds/components/components/lmvz-input.js';\nimport { defineCustomElement as defineLmvzLink } from '@lmvz-ds/components/components/lmvz-link.js';\nimport { defineCustomElement as defineLmvzMenuitem } from '@lmvz-ds/components/components/lmvz-menuitem.js';\nimport { defineCustomElement as defineLmvzMessage } from '@lmvz-ds/components/components/lmvz-message.js';\nimport { defineCustomElement as defineLmvzModal } from '@lmvz-ds/components/components/lmvz-modal.js';\nimport { defineCustomElement as defineLmvzRadio } from '@lmvz-ds/components/components/lmvz-radio.js';\nimport { defineCustomElement as defineLmvzSelect } from '@lmvz-ds/components/components/lmvz-select.js';\nimport { defineCustomElement as defineLmvzSnackbar } from '@lmvz-ds/components/components/lmvz-snackbar.js';\nimport { defineCustomElement as defineLmvzSpinner } from '@lmvz-ds/components/components/lmvz-spinner.js';\nimport { defineCustomElement as defineLmvzTab } from '@lmvz-ds/components/components/lmvz-tab.js';\nimport { defineCustomElement as defineLmvzTabs } from '@lmvz-ds/components/components/lmvz-tabs.js';\nimport { defineCustomElement as defineLmvzToggle } from '@lmvz-ds/components/components/lmvz-toggle.js';\n@ProxyCmp({\n defineCustomElementFn: defineLmvzAction\n})\n@Component({\n selector: 'lmvz-action',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [],\n outputs: ['actionClick'],\n})\nexport class LmvzAction {\n protected el: HTMLLmvzActionElement;\n @Output() actionClick = new EventEmitter<LmvzActionCustomEvent<MouseEvent>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzActionCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzAction extends Components.LmvzAction {\n\n actionClick: EventEmitter<LmvzActionCustomEvent<MouseEvent>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzActionList,\n inputs: ['label']\n})\n@Component({\n selector: 'lmvz-action-list',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['label'],\n})\nexport class LmvzActionList {\n protected el: HTMLLmvzActionListElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzActionList extends Components.LmvzActionList {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzButton,\n inputs: ['buttonRole', 'disabled', 'form', 'formMethod', 'name', 'scale', 'ti', 'type', 'value', 'variant']\n})\n@Component({\n selector: 'lmvz-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['buttonRole', 'disabled', 'form', 'formMethod', 'name', 'scale', 'ti', 'type', 'value', 'variant'],\n outputs: ['lmvzActivation'],\n})\nexport class LmvzButton {\n protected el: HTMLLmvzButtonElement;\n @Output() lmvzActivation = new EventEmitter<LmvzButtonCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzButtonCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzButton extends Components.LmvzButton {\n /**\n * Event emitted when the button is activated, either by a click or by pressing \"Enter\" when the button is focused.\n */\n lmvzActivation: EventEmitter<LmvzButtonCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzButtonGroup,\n inputs: ['hasActions', 'primaryEnabledAction', 'stacked']\n})\n@Component({\n selector: 'lmvz-button-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['hasActions', 'primaryEnabledAction', 'stacked'],\n})\nexport class LmvzButtonGroup {\n protected el: HTMLLmvzButtonGroupElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzButtonGroup extends Components.LmvzButtonGroup {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzCard,\n inputs: ['cardTitle', 'description', 'imageUrl', 'primaryActionLabel']\n})\n@Component({\n selector: 'lmvz-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [{ name: 'cardTitle', required: true }, 'description', 'imageUrl', 'primaryActionLabel'],\n outputs: ['primaryAction'],\n})\nexport class LmvzCard {\n protected el: HTMLLmvzCardElement;\n @Output() primaryAction = new EventEmitter<LmvzCardCustomEvent<PointerEvent>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzCardCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzCard extends Components.LmvzCard {\n /**\n * Event emitted when primary button is clicked\n */\n primaryAction: EventEmitter<LmvzCardCustomEvent<PointerEvent>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzCheckbox,\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'label', 'name', 'required', 'value'],\n methods: ['focusInput', 'checkValidity', 'reportValidity']\n})\n@Component({\n selector: 'lmvz-checkbox',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', { name: 'label', required: true }, 'name', 'required', 'value'],\n outputs: ['lmvzChange'],\n})\nexport class LmvzCheckbox {\n protected el: HTMLLmvzCheckboxElement;\n @Output() lmvzChange = new EventEmitter<LmvzCheckboxCustomEvent<boolean>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzCheckboxCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzCheckbox extends Components.LmvzCheckbox {\n /**\n * Emitted whenever the checkbox checked state changes.\nEvent detail contains the new checked boolean value.\n */\n lmvzChange: EventEmitter<LmvzCheckboxCustomEvent<boolean>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzChip,\n inputs: ['size', 'type']\n})\n@Component({\n selector: 'lmvz-chip',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['size', 'type'],\n})\nexport class LmvzChip {\n protected el: HTMLLmvzChipElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzChip extends Components.LmvzChip {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzHeader,\n inputs: ['lmvzActiveNav', 'role']\n})\n@Component({\n selector: 'lmvz-header',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['lmvzActiveNav', 'role'],\n})\nexport class LmvzHeader {\n protected el: HTMLLmvzHeaderElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzHeader extends Components.LmvzHeader {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzIcon,\n inputs: ['ariaLabel', 'icon', 'iconset', 'size', 'weight']\n})\n@Component({\n selector: 'lmvz-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['ariaLabel', { name: 'icon', required: true }, 'iconset', 'size', 'weight'],\n})\nexport class LmvzIcon {\n protected el: HTMLLmvzIconElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzIcon extends Components.LmvzIcon {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzInput,\n inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'inputmode', 'label', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],\n methods: ['setValue', 'focusInput', 'blurInput', 'select', 'checkValidity', 'reportValidity', 'getInputElement']\n})\n@Component({\n selector: 'lmvz-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'inputmode', { name: 'label', required: true }, 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'type', 'value'],\n outputs: ['lmvzInput'],\n})\nexport class LmvzInput {\n protected el: HTMLLmvzInputElement;\n @Output() lmvzInput = new EventEmitter<LmvzInputCustomEvent<string>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzInputCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzInput extends Components.LmvzInput {\n /**\n * Emitted whenever the input value changes.\nEvent detail contains the current value.\n */\n lmvzInput: EventEmitter<LmvzInputCustomEvent<string>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzLink,\n inputs: ['externalLabel', 'href', 'rel', 'target', 'type']\n})\n@Component({\n selector: 'lmvz-link',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['externalLabel', 'href', 'rel', 'target', 'type'],\n})\nexport class LmvzLink {\n protected el: HTMLLmvzLinkElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzLink extends Components.LmvzLink {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzMenuitem,\n inputs: ['role', 'ti']\n})\n@Component({\n selector: 'lmvz-menuitem',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['role', 'ti'],\n outputs: ['lmvzActivation'],\n})\nexport class LmvzMenuitem {\n protected el: HTMLLmvzMenuitemElement;\n @Output() lmvzActivation = new EventEmitter<LmvzMenuitemCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzMenuitemCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzMenuitem extends Components.LmvzMenuitem {\n /**\n * Event emitted when the menu item is activated, either by a click or by pressing \"Enter\" or \"Space\" while the menu item is focused.\n */\n lmvzActivation: EventEmitter<LmvzMenuitemCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzMessage,\n inputs: ['actionLabel', 'closeLabel', 'dismissible', 'leadingIcon', 'live', 'type']\n})\n@Component({\n selector: 'lmvz-message',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['actionLabel', 'closeLabel', 'dismissible', 'leadingIcon', 'live', 'type'],\n outputs: ['lmvzDismiss', 'lmvzAction'],\n})\nexport class LmvzMessage {\n protected el: HTMLLmvzMessageElement;\n @Output() lmvzDismiss = new EventEmitter<LmvzMessageCustomEvent<void>>();\n @Output() lmvzAction = new EventEmitter<LmvzMessageCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzMessageCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzMessage extends Components.LmvzMessage {\n\n lmvzDismiss: EventEmitter<LmvzMessageCustomEvent<void>>;\n\n lmvzAction: EventEmitter<LmvzMessageCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzModal,\n inputs: ['closeLabel', 'open']\n})\n@Component({\n selector: 'lmvz-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['closeLabel', 'open'],\n outputs: ['close', 'cancel'],\n})\nexport class LmvzModal {\n protected el: HTMLLmvzModalElement;\n @Output() close = new EventEmitter<LmvzModalCustomEvent<void>>();\n @Output() cancel = new EventEmitter<LmvzModalCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzModalCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzModal extends Components.LmvzModal {\n /**\n * Re-emitted from the host whenever the native dialog closes so framework wrappers can synchronize bound state.\n */\n close: EventEmitter<LmvzModalCustomEvent<void>>;\n /**\n * Re-emitted from the host whenever the native dialog receives a `cancel` event (e.g. Escape key).\nCall `event.preventDefault()` to keep the dialog open.\n */\n cancel: EventEmitter<LmvzModalCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzRadio,\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'form', 'helperText', 'label', 'name', 'required', 'value'],\n methods: ['focusInput', 'checkValidity', 'reportValidity']\n})\n@Component({\n selector: 'lmvz-radio',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['autofocus', 'checked', 'disabled', 'error', 'form', 'helperText', { name: 'label', required: true }, 'name', 'required', 'value'],\n outputs: ['lmvzChange', 'lmvzActivation'],\n})\nexport class LmvzRadio {\n protected el: HTMLLmvzRadioElement;\n @Output() lmvzChange = new EventEmitter<LmvzRadioCustomEvent<boolean>>();\n @Output() lmvzActivation = new EventEmitter<LmvzRadioCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzRadioCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzRadio extends Components.LmvzRadio {\n /**\n * Emitted whenever the radio checked state changes.\nEvent detail contains the new checked boolean value.\n\nEmission contract:\n- Fires `true` on user selection (native `change` event).\n- Fires on programmatic external prop transitions: `true → false` (emits `false`) and\n `false → true` (emits `true`), e.g. `element.checked = false` or `element.checked = true`.\n- Does NOT fire during browser-driven form lifecycle callbacks: `formResetCallback` and\n `formStateRestoreCallback` (autofill / session restore). This matches native `<input type=\"radio\">`\n behaviour, which does not fire `change` on form reset. Note that internal form state\n (`ElementInternals.setFormValue`) is always updated regardless of suppression — only the\n event channel is silenced.\n- Does NOT re-fire from the `@Watch('checked')` watcher during the same tick as the native\n `change` handler, preventing a double-emission when the user clicks the radio.\n */\n lmvzChange: EventEmitter<LmvzRadioCustomEvent<boolean>>;\n /**\n * Fired on every explicit user activation of this radio — via click or Space key on the\nnative input. Fires even when the radio is already checked (re-activation). Use this\nevent to react to user intent; use `lmvzChange` to react to state transitions.\n */\n lmvzActivation: EventEmitter<LmvzRadioCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzSelect,\n inputs: ['disabled', 'helperText', 'highlighted', 'label', 'name', 'required', 'size', 'value']\n})\n@Component({\n selector: 'lmvz-select',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'helperText', 'highlighted', { name: 'label', required: true }, 'name', 'required', 'size', 'value'],\n outputs: ['lmvzChange'],\n})\nexport class LmvzSelect {\n protected el: HTMLLmvzSelectElement;\n @Output() lmvzChange = new EventEmitter<LmvzSelectCustomEvent<string>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzSelectCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzSelect extends Components.LmvzSelect {\n /**\n * Emitted when the user selects a new option. Detail contains the new value.\n */\n lmvzChange: EventEmitter<LmvzSelectCustomEvent<string>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzSnackbar,\n inputs: ['actionLabel', 'duration', 'message', 'priority', 'status'],\n methods: ['show', 'hide']\n})\n@Component({\n selector: 'lmvz-snackbar',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['actionLabel', 'duration', 'message', 'priority', 'status'],\n outputs: ['lmvzClose'],\n})\nexport class LmvzSnackbar {\n protected el: HTMLLmvzSnackbarElement;\n @Output() lmvzClose = new EventEmitter<LmvzSnackbarCustomEvent<{ reason: ILmvzSnackbarSnackbar.DismissReason }>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzSnackbarCustomEvent } from '@lmvz-ds/components/components';\nimport type { Snackbar as ILmvzSnackbarSnackbar } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzSnackbar extends Components.LmvzSnackbar {\n\n lmvzClose: EventEmitter<LmvzSnackbarCustomEvent<{ reason: ILmvzSnackbarSnackbar.DismissReason }>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzSpinner,\n inputs: ['ariaLabel', 'size']\n})\n@Component({\n selector: 'lmvz-spinner',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['ariaLabel', 'size'],\n})\nexport class LmvzSpinner {\n protected el: HTMLLmvzSpinnerElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzSpinner extends Components.LmvzSpinner {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzTab,\n inputs: ['disabled', 'selected', 'value', 'vertical']\n})\n@Component({\n selector: 'lmvz-tab',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'selected', { name: 'value', required: true }, 'vertical'],\n})\nexport class LmvzTab {\n protected el: HTMLLmvzTabElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface LmvzTab extends Components.LmvzTab {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzTabs,\n inputs: ['orientation', 'value'],\n methods: ['activateTab', 'getTabElements', 'setTabPanelIds']\n})\n@Component({\n selector: 'lmvz-tabs',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['orientation', { name: 'value', required: true }],\n outputs: ['lmvzChange'],\n})\nexport class LmvzTabs {\n protected el: HTMLLmvzTabsElement;\n @Output() lmvzChange = new EventEmitter<LmvzTabsCustomEvent<{ value: string }>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzTabsCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzTabs extends Components.LmvzTabs {\n /**\n * Emitted when a tab is activated.\nDetail: `{ value: string }`.\n */\n lmvzChange: EventEmitter<LmvzTabsCustomEvent<{ value: string }>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineLmvzToggle,\n inputs: ['checked', 'disabled', 'form', 'label', 'name', 'required', 'value'],\n methods: ['focusToggle', 'blurToggle', 'checkValidity', 'reportValidity', 'getInputElement']\n})\n@Component({\n selector: 'lmvz-toggle',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['checked', 'disabled', 'form', { name: 'label', required: true }, 'name', 'required', 'value'],\n outputs: ['lmvzChange'],\n})\nexport class LmvzToggle {\n protected el: HTMLLmvzToggleElement;\n @Output() lmvzChange = new EventEmitter<LmvzToggleCustomEvent<boolean>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { LmvzToggleCustomEvent } from '@lmvz-ds/components/components';\n\nexport declare interface LmvzToggle extends Components.LmvzToggle {\n /**\n * Emitted when the toggle is switched. Event detail is the new checked state.\n */\n lmvzChange: EventEmitter<LmvzToggleCustomEvent<boolean>>;\n}\n\n\n","\nimport * as d from './proxies';\n\nexport const DIRECTIVES = [\n d.LmvzAction,\n d.LmvzActionList,\n d.LmvzButton,\n d.LmvzButtonGroup,\n d.LmvzCard,\n d.LmvzCheckbox,\n d.LmvzChip,\n d.LmvzHeader,\n d.LmvzIcon,\n d.LmvzInput,\n d.LmvzLink,\n d.LmvzMenuitem,\n d.LmvzMessage,\n d.LmvzModal,\n d.LmvzRadio,\n d.LmvzSelect,\n d.LmvzSnackbar,\n d.LmvzSpinner,\n d.LmvzTab,\n d.LmvzTabs,\n d.LmvzToggle\n];\n","import { Injectable } from '@angular/core';\nimport {\n SnackbarController,\n type SnackbarDismissReason,\n type SnackbarHandle,\n type SnackbarOptions,\n} from '@lmvz-ds/components';\nimport { Observable, from } from 'rxjs';\n\nexport type { SnackbarPriority, SnackbarStatus } from '@lmvz-ds/components';\nexport type { SnackbarDismissReason, SnackbarHandle, SnackbarOptions };\n\n@Injectable({ providedIn: 'root' })\nexport class SnackbarService {\n private readonly controller = new SnackbarController();\n\n open(options: SnackbarOptions): SnackbarHandle {\n return this.controller.open(options);\n }\n\n dismiss(id?: string): void {\n this.controller.dismiss(id);\n }\n\n openSuccess(\n message: string,\n options?: Omit<SnackbarOptions, 'message' | 'status'>,\n ): SnackbarHandle {\n return this.controller.open({ ...options, message, status: 'success' });\n }\n\n openWarning(\n message: string,\n options?: Omit<SnackbarOptions, 'message' | 'status'>,\n ): SnackbarHandle {\n return this.controller.open({ ...options, message, status: 'warning' });\n }\n\n openError(\n message: string,\n options?: Omit<SnackbarOptions, 'message' | 'status'>,\n ): SnackbarHandle {\n return this.controller.open({ ...options, message, status: 'error' });\n }\n\n openAndObserve(options: SnackbarOptions): {\n handle: SnackbarHandle;\n closed$: Observable<{ reason: SnackbarDismissReason }>;\n } {\n const handle = this.controller.open(options);\n return { handle, closed$: from(handle.closed) };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["defineLmvzAction","defineLmvzActionList","defineLmvzButton","defineLmvzButtonGroup","defineLmvzCard","defineLmvzCheckbox","defineLmvzChip","defineLmvzHeader","defineLmvzIcon","defineLmvzInput","defineLmvzLink","defineLmvzMenuitem","defineLmvzMessage","defineLmvzModal","defineLmvzRadio","defineLmvzSelect","defineLmvzSnackbar","defineLmvzSpinner","defineLmvzTab","defineLmvzTabs","defineLmvzToggle","d.LmvzAction","d.LmvzActionList","d.LmvzButton","d.LmvzButtonGroup","d.LmvzCard","d.LmvzCheckbox","d.LmvzChip","d.LmvzHeader","d.LmvzIcon","d.LmvzInput","d.LmvzLink","d.LmvzMenuitem","d.LmvzMessage","d.LmvzModal","d.LmvzRadio","d.LmvzSelect","d.LmvzSnackbar","d.LmvzSpinner","d.LmvzTab","d.LmvzTabs","d.LmvzToggle"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lmvz-ds/angular",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Patrick Nemenz <patrick.nemenz@adesso.at>",
@@ -11,7 +11,7 @@
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^20.3.0",
13
13
  "@angular/core": "^20.3.0",
14
- "@lmvz-ds/components": "~0.32.0"
14
+ "@lmvz-ds/components": "~0.33.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "tslib": "^2.8.1"
@@ -3,7 +3,7 @@ export { SnackbarController, SnackbarDismissReason, SnackbarHandle, SnackbarOpti
3
3
  import * as i0 from '@angular/core';
4
4
  import { ElementRef, NgZone, EventEmitter, ChangeDetectorRef } from '@angular/core';
5
5
  import { ControlValueAccessor } from '@angular/forms';
6
- import { Components, Snackbar } from '@lmvz-ds/components/components';
6
+ import { LmvzActionCustomEvent, Components, LmvzButtonCustomEvent, LmvzCardCustomEvent, LmvzCheckboxCustomEvent, LmvzInputCustomEvent, LmvzMenuitemCustomEvent, LmvzMessageCustomEvent, LmvzModalCustomEvent, LmvzRadioCustomEvent, LmvzSelectCustomEvent, LmvzSnackbarCustomEvent, Snackbar, LmvzTabsCustomEvent, LmvzToggleCustomEvent } from '@lmvz-ds/components/components';
7
7
  import { Observable } from 'rxjs';
8
8
 
9
9
  declare abstract class ValueAccessor<T> implements ControlValueAccessor {
@@ -55,13 +55,13 @@ declare const FORM_INPUT_HELPER_DIRECTIVES: readonly [typeof LmvzInputValueChang
55
55
  declare class LmvzAction {
56
56
  protected z: NgZone;
57
57
  protected el: HTMLLmvzActionElement;
58
- actionClick: EventEmitter<CustomEvent<MouseEvent>>;
58
+ actionClick: EventEmitter<LmvzActionCustomEvent<MouseEvent>>;
59
59
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
60
60
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzAction, never>;
61
61
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzAction, "lmvz-action", never, {}, { "actionClick": "actionClick"; }, never, ["*"], true, never>;
62
62
  }
63
63
  declare interface LmvzAction extends Components.LmvzAction {
64
- actionClick: EventEmitter<CustomEvent<MouseEvent>>;
64
+ actionClick: EventEmitter<LmvzActionCustomEvent<MouseEvent>>;
65
65
  }
66
66
  declare class LmvzActionList {
67
67
  protected z: NgZone;
@@ -75,7 +75,7 @@ declare interface LmvzActionList extends Components.LmvzActionList {
75
75
  declare class LmvzButton {
76
76
  protected z: NgZone;
77
77
  protected el: HTMLLmvzButtonElement;
78
- lmvzActivation: EventEmitter<CustomEvent<void>>;
78
+ lmvzActivation: EventEmitter<LmvzButtonCustomEvent<void>>;
79
79
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
80
80
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzButton, never>;
81
81
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzButton, "lmvz-button", never, { "buttonRole": { "alias": "buttonRole"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formMethod": { "alias": "formMethod"; "required": false; }; "name": { "alias": "name"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; "ti": { "alias": "ti"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "lmvzActivation": "lmvzActivation"; }, never, ["*"], true, never>;
@@ -84,7 +84,7 @@ declare interface LmvzButton extends Components.LmvzButton {
84
84
  /**
85
85
  * Event emitted when the button is activated, either by a click or by pressing "Enter" when the button is focused.
86
86
  */
87
- lmvzActivation: EventEmitter<CustomEvent<void>>;
87
+ lmvzActivation: EventEmitter<LmvzButtonCustomEvent<void>>;
88
88
  }
89
89
  declare class LmvzButtonGroup {
90
90
  protected z: NgZone;
@@ -98,7 +98,7 @@ declare interface LmvzButtonGroup extends Components.LmvzButtonGroup {
98
98
  declare class LmvzCard {
99
99
  protected z: NgZone;
100
100
  protected el: HTMLLmvzCardElement;
101
- primaryAction: EventEmitter<CustomEvent<PointerEvent>>;
101
+ primaryAction: EventEmitter<LmvzCardCustomEvent<PointerEvent>>;
102
102
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
103
103
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzCard, never>;
104
104
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzCard, "lmvz-card", never, { "cardTitle": { "alias": "cardTitle"; "required": true; }; "description": { "alias": "description"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "primaryActionLabel": { "alias": "primaryActionLabel"; "required": false; }; }, { "primaryAction": "primaryAction"; }, never, ["*"], true, never>;
@@ -107,12 +107,12 @@ declare interface LmvzCard extends Components.LmvzCard {
107
107
  /**
108
108
  * Event emitted when primary button is clicked
109
109
  */
110
- primaryAction: EventEmitter<CustomEvent<PointerEvent>>;
110
+ primaryAction: EventEmitter<LmvzCardCustomEvent<PointerEvent>>;
111
111
  }
112
112
  declare class LmvzCheckbox {
113
113
  protected z: NgZone;
114
114
  protected el: HTMLLmvzCheckboxElement;
115
- lmvzChange: EventEmitter<CustomEvent<boolean>>;
115
+ lmvzChange: EventEmitter<LmvzCheckboxCustomEvent<boolean>>;
116
116
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
117
117
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzCheckbox, never>;
118
118
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzCheckbox, "lmvz-checkbox", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "form": { "alias": "form"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "label": { "alias": "label"; "required": true; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "lmvzChange": "lmvzChange"; }, never, ["*"], true, never>;
@@ -122,7 +122,7 @@ declare interface LmvzCheckbox extends Components.LmvzCheckbox {
122
122
  * Emitted whenever the checkbox checked state changes.
123
123
  Event detail contains the new checked boolean value.
124
124
  */
125
- lmvzChange: EventEmitter<CustomEvent<boolean>>;
125
+ lmvzChange: EventEmitter<LmvzCheckboxCustomEvent<boolean>>;
126
126
  }
127
127
  declare class LmvzChip {
128
128
  protected z: NgZone;
@@ -154,7 +154,7 @@ declare interface LmvzIcon extends Components.LmvzIcon {
154
154
  declare class LmvzInput {
155
155
  protected z: NgZone;
156
156
  protected el: HTMLLmvzInputElement;
157
- lmvzInput: EventEmitter<CustomEvent<string>>;
157
+ lmvzInput: EventEmitter<LmvzInputCustomEvent<string>>;
158
158
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
159
159
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzInput, never>;
160
160
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzInput, "lmvz-input", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "form": { "alias": "form"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "label": { "alias": "label"; "required": true; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "lmvzInput": "lmvzInput"; }, never, ["*"], true, never>;
@@ -164,7 +164,7 @@ declare interface LmvzInput extends Components.LmvzInput {
164
164
  * Emitted whenever the input value changes.
165
165
  Event detail contains the current value.
166
166
  */
167
- lmvzInput: EventEmitter<CustomEvent<string>>;
167
+ lmvzInput: EventEmitter<LmvzInputCustomEvent<string>>;
168
168
  }
169
169
  declare class LmvzLink {
170
170
  protected z: NgZone;
@@ -178,7 +178,7 @@ declare interface LmvzLink extends Components.LmvzLink {
178
178
  declare class LmvzMenuitem {
179
179
  protected z: NgZone;
180
180
  protected el: HTMLLmvzMenuitemElement;
181
- lmvzActivation: EventEmitter<CustomEvent<void>>;
181
+ lmvzActivation: EventEmitter<LmvzMenuitemCustomEvent<void>>;
182
182
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
183
183
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzMenuitem, never>;
184
184
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzMenuitem, "lmvz-menuitem", never, { "role": { "alias": "role"; "required": false; }; "ti": { "alias": "ti"; "required": false; }; }, { "lmvzActivation": "lmvzActivation"; }, never, ["*"], true, never>;
@@ -187,26 +187,26 @@ declare interface LmvzMenuitem extends Components.LmvzMenuitem {
187
187
  /**
188
188
  * Event emitted when the menu item is activated, either by a click or by pressing "Enter" or "Space" while the menu item is focused.
189
189
  */
190
- lmvzActivation: EventEmitter<CustomEvent<void>>;
190
+ lmvzActivation: EventEmitter<LmvzMenuitemCustomEvent<void>>;
191
191
  }
192
192
  declare class LmvzMessage {
193
193
  protected z: NgZone;
194
194
  protected el: HTMLLmvzMessageElement;
195
- lmvzDismiss: EventEmitter<CustomEvent<void>>;
196
- lmvzAction: EventEmitter<CustomEvent<void>>;
195
+ lmvzDismiss: EventEmitter<LmvzMessageCustomEvent<void>>;
196
+ lmvzAction: EventEmitter<LmvzMessageCustomEvent<void>>;
197
197
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
198
198
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzMessage, never>;
199
199
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzMessage, "lmvz-message", never, { "actionLabel": { "alias": "actionLabel"; "required": false; }; "closeLabel": { "alias": "closeLabel"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "live": { "alias": "live"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "lmvzDismiss": "lmvzDismiss"; "lmvzAction": "lmvzAction"; }, never, ["*"], true, never>;
200
200
  }
201
201
  declare interface LmvzMessage extends Components.LmvzMessage {
202
- lmvzDismiss: EventEmitter<CustomEvent<void>>;
203
- lmvzAction: EventEmitter<CustomEvent<void>>;
202
+ lmvzDismiss: EventEmitter<LmvzMessageCustomEvent<void>>;
203
+ lmvzAction: EventEmitter<LmvzMessageCustomEvent<void>>;
204
204
  }
205
205
  declare class LmvzModal {
206
206
  protected z: NgZone;
207
207
  protected el: HTMLLmvzModalElement;
208
- close: EventEmitter<CustomEvent<void>>;
209
- cancel: EventEmitter<CustomEvent<void>>;
208
+ close: EventEmitter<LmvzModalCustomEvent<void>>;
209
+ cancel: EventEmitter<LmvzModalCustomEvent<void>>;
210
210
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
211
211
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzModal, never>;
212
212
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzModal, "lmvz-modal", never, { "closeLabel": { "alias": "closeLabel"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "close": "close"; "cancel": "cancel"; }, never, ["*"], true, never>;
@@ -215,18 +215,18 @@ declare interface LmvzModal extends Components.LmvzModal {
215
215
  /**
216
216
  * Re-emitted from the host whenever the native dialog closes so framework wrappers can synchronize bound state.
217
217
  */
218
- close: EventEmitter<CustomEvent<void>>;
218
+ close: EventEmitter<LmvzModalCustomEvent<void>>;
219
219
  /**
220
220
  * Re-emitted from the host whenever the native dialog receives a `cancel` event (e.g. Escape key).
221
221
  Call `event.preventDefault()` to keep the dialog open.
222
222
  */
223
- cancel: EventEmitter<CustomEvent<void>>;
223
+ cancel: EventEmitter<LmvzModalCustomEvent<void>>;
224
224
  }
225
225
  declare class LmvzRadio {
226
226
  protected z: NgZone;
227
227
  protected el: HTMLLmvzRadioElement;
228
- lmvzChange: EventEmitter<CustomEvent<boolean>>;
229
- lmvzActivation: EventEmitter<CustomEvent<void>>;
228
+ lmvzChange: EventEmitter<LmvzRadioCustomEvent<boolean>>;
229
+ lmvzActivation: EventEmitter<LmvzRadioCustomEvent<void>>;
230
230
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
231
231
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzRadio, never>;
232
232
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzRadio, "lmvz-radio", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "form": { "alias": "form"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "label": { "alias": "label"; "required": true; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "lmvzChange": "lmvzChange"; "lmvzActivation": "lmvzActivation"; }, never, ["*"], true, never>;
@@ -248,18 +248,18 @@ declare interface LmvzRadio extends Components.LmvzRadio {
248
248
  - Does NOT re-fire from the `@Watch('checked')` watcher during the same tick as the native
249
249
  `change` handler, preventing a double-emission when the user clicks the radio.
250
250
  */
251
- lmvzChange: EventEmitter<CustomEvent<boolean>>;
251
+ lmvzChange: EventEmitter<LmvzRadioCustomEvent<boolean>>;
252
252
  /**
253
253
  * Fired on every explicit user activation of this radio — via click or Space key on the
254
254
  native input. Fires even when the radio is already checked (re-activation). Use this
255
255
  event to react to user intent; use `lmvzChange` to react to state transitions.
256
256
  */
257
- lmvzActivation: EventEmitter<CustomEvent<void>>;
257
+ lmvzActivation: EventEmitter<LmvzRadioCustomEvent<void>>;
258
258
  }
259
259
  declare class LmvzSelect {
260
260
  protected z: NgZone;
261
261
  protected el: HTMLLmvzSelectElement;
262
- lmvzChange: EventEmitter<CustomEvent<string>>;
262
+ lmvzChange: EventEmitter<LmvzSelectCustomEvent<string>>;
263
263
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
264
264
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzSelect, never>;
265
265
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzSelect, "lmvz-select", never, { "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "highlighted": { "alias": "highlighted"; "required": false; }; "label": { "alias": "label"; "required": true; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "lmvzChange": "lmvzChange"; }, never, ["*"], true, never>;
@@ -268,12 +268,12 @@ declare interface LmvzSelect extends Components.LmvzSelect {
268
268
  /**
269
269
  * Emitted when the user selects a new option. Detail contains the new value.
270
270
  */
271
- lmvzChange: EventEmitter<CustomEvent<string>>;
271
+ lmvzChange: EventEmitter<LmvzSelectCustomEvent<string>>;
272
272
  }
273
273
  declare class LmvzSnackbar {
274
274
  protected z: NgZone;
275
275
  protected el: HTMLLmvzSnackbarElement;
276
- lmvzClose: EventEmitter<CustomEvent<{
276
+ lmvzClose: EventEmitter<LmvzSnackbarCustomEvent<{
277
277
  reason: Snackbar.DismissReason;
278
278
  }>>;
279
279
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -281,7 +281,7 @@ declare class LmvzSnackbar {
281
281
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzSnackbar, "lmvz-snackbar", never, { "actionLabel": { "alias": "actionLabel"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "message": { "alias": "message"; "required": false; }; "priority": { "alias": "priority"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, { "lmvzClose": "lmvzClose"; }, never, ["*"], true, never>;
282
282
  }
283
283
  declare interface LmvzSnackbar extends Components.LmvzSnackbar {
284
- lmvzClose: EventEmitter<CustomEvent<{
284
+ lmvzClose: EventEmitter<LmvzSnackbarCustomEvent<{
285
285
  reason: Snackbar.DismissReason;
286
286
  }>>;
287
287
  }
@@ -306,7 +306,7 @@ declare interface LmvzTab extends Components.LmvzTab {
306
306
  declare class LmvzTabs {
307
307
  protected z: NgZone;
308
308
  protected el: HTMLLmvzTabsElement;
309
- lmvzChange: EventEmitter<CustomEvent<{
309
+ lmvzChange: EventEmitter<LmvzTabsCustomEvent<{
310
310
  value: string;
311
311
  }>>;
312
312
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
@@ -318,14 +318,14 @@ declare interface LmvzTabs extends Components.LmvzTabs {
318
318
  * Emitted when a tab is activated.
319
319
  Detail: `{ value: string }`.
320
320
  */
321
- lmvzChange: EventEmitter<CustomEvent<{
321
+ lmvzChange: EventEmitter<LmvzTabsCustomEvent<{
322
322
  value: string;
323
323
  }>>;
324
324
  }
325
325
  declare class LmvzToggle {
326
326
  protected z: NgZone;
327
327
  protected el: HTMLLmvzToggleElement;
328
- lmvzChange: EventEmitter<CustomEvent<boolean>>;
328
+ lmvzChange: EventEmitter<LmvzToggleCustomEvent<boolean>>;
329
329
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
330
330
  static ɵfac: i0.ɵɵFactoryDeclaration<LmvzToggle, never>;
331
331
  static ɵcmp: i0.ɵɵComponentDeclaration<LmvzToggle, "lmvz-toggle", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "label": { "alias": "label"; "required": true; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "lmvzChange": "lmvzChange"; }, never, ["*"], true, never>;
@@ -334,7 +334,7 @@ declare interface LmvzToggle extends Components.LmvzToggle {
334
334
  /**
335
335
  * Emitted when the toggle is switched. Event detail is the new checked state.
336
336
  */
337
- lmvzChange: EventEmitter<CustomEvent<boolean>>;
337
+ lmvzChange: EventEmitter<LmvzToggleCustomEvent<boolean>>;
338
338
  }
339
339
 
340
340
  declare const DIRECTIVES: (typeof LmvzAction | typeof LmvzActionList | typeof LmvzButton | typeof LmvzButtonGroup | typeof LmvzCard | typeof LmvzCheckbox | typeof LmvzChip | typeof LmvzHeader | typeof LmvzIcon | typeof LmvzInput | typeof LmvzLink | typeof LmvzMenuitem | typeof LmvzMessage | typeof LmvzModal | typeof LmvzRadio | typeof LmvzSelect | typeof LmvzSnackbar | typeof LmvzSpinner | typeof LmvzTab | typeof LmvzTabs | typeof LmvzToggle)[];