@lmvz-ds/angular 0.18.2 → 0.20.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 +19 -0
- package/fesm2022/lmvz-ds-angular.mjs +85 -16
- package/fesm2022/lmvz-ds-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/types/lmvz-ds-angular.d.ts +29 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @lmvz-ds/angular
|
|
2
2
|
|
|
3
|
+
## 0.20.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9f1fe1e: Checkbox Komponente hinzugefügt
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [8dac215]
|
|
12
|
+
- Updated dependencies [9f1fe1e]
|
|
13
|
+
- @lmvz-ds/components@0.20.0
|
|
14
|
+
|
|
15
|
+
## 0.19.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [a71b037]
|
|
20
|
+
- @lmvz-ds/components@0.19.0
|
|
21
|
+
|
|
3
22
|
## 0.18.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -5,12 +5,13 @@ import { fromEvent } from 'rxjs';
|
|
|
5
5
|
import { defineCustomElement as defineCustomElement$1 } from '@lmvz-ds/components/components/lmvz-action.js';
|
|
6
6
|
import { defineCustomElement as defineCustomElement$2 } from '@lmvz-ds/components/components/lmvz-button.js';
|
|
7
7
|
import { defineCustomElement as defineCustomElement$3 } from '@lmvz-ds/components/components/lmvz-card.js';
|
|
8
|
-
import { defineCustomElement as defineCustomElement$4 } from '@lmvz-ds/components/components/lmvz-
|
|
9
|
-
import { defineCustomElement as defineCustomElement$5 } from '@lmvz-ds/components/components/lmvz-
|
|
10
|
-
import { defineCustomElement as defineCustomElement$6 } from '@lmvz-ds/components/components/lmvz-
|
|
11
|
-
import { defineCustomElement as defineCustomElement$7 } from '@lmvz-ds/components/components/lmvz-
|
|
12
|
-
import { defineCustomElement as defineCustomElement$8 } from '@lmvz-ds/components/components/lmvz-
|
|
13
|
-
import { defineCustomElement as defineCustomElement$9 } from '@lmvz-ds/components/components/lmvz-
|
|
8
|
+
import { defineCustomElement as defineCustomElement$4 } from '@lmvz-ds/components/components/lmvz-checkbox.js';
|
|
9
|
+
import { defineCustomElement as defineCustomElement$5 } from '@lmvz-ds/components/components/lmvz-chip.js';
|
|
10
|
+
import { defineCustomElement as defineCustomElement$6 } from '@lmvz-ds/components/components/lmvz-header.js';
|
|
11
|
+
import { defineCustomElement as defineCustomElement$7 } from '@lmvz-ds/components/components/lmvz-icon.js';
|
|
12
|
+
import { defineCustomElement as defineCustomElement$8 } from '@lmvz-ds/components/components/lmvz-input.js';
|
|
13
|
+
import { defineCustomElement as defineCustomElement$9 } from '@lmvz-ds/components/components/lmvz-menuitem.js';
|
|
14
|
+
import { defineCustomElement as defineCustomElement$a } from '@lmvz-ds/components/components/lmvz-select.js';
|
|
14
15
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
15
16
|
|
|
16
17
|
class LmvzInputValueChangeHelper {
|
|
@@ -186,6 +187,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
186
187
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { primaryAction: [{
|
|
187
188
|
type: Output
|
|
188
189
|
}] } });
|
|
190
|
+
let LmvzCheckbox = class LmvzCheckbox {
|
|
191
|
+
z;
|
|
192
|
+
el;
|
|
193
|
+
lmvzChange = new EventEmitter();
|
|
194
|
+
constructor(c, r, z) {
|
|
195
|
+
this.z = z;
|
|
196
|
+
c.detach();
|
|
197
|
+
this.el = r.nativeElement;
|
|
198
|
+
}
|
|
199
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LmvzCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
200
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LmvzCheckbox, isStandalone: true, selector: "lmvz-checkbox", inputs: { autofocus: "autofocus", checked: "checked", disabled: "disabled", error: "error", errorMessage: "errorMessage", form: "form", helperText: "helperText", label: "label", name: "name", required: "required", value: "value" }, outputs: { lmvzChange: "lmvzChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
201
|
+
};
|
|
202
|
+
LmvzCheckbox = __decorate([
|
|
203
|
+
ProxyCmp({
|
|
204
|
+
defineCustomElementFn: defineCustomElement$4,
|
|
205
|
+
inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'label', 'name', 'required', 'value'],
|
|
206
|
+
methods: ['focusInput', 'checkValidity', 'reportValidity']
|
|
207
|
+
}),
|
|
208
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
209
|
+
], LmvzCheckbox);
|
|
210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LmvzCheckbox, decorators: [{
|
|
211
|
+
type: Component,
|
|
212
|
+
args: [{
|
|
213
|
+
selector: 'lmvz-checkbox',
|
|
214
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
215
|
+
template: '<ng-content></ng-content>',
|
|
216
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
217
|
+
inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', { name: 'label', required: true }, 'name', 'required', 'value'],
|
|
218
|
+
outputs: ['lmvzChange'],
|
|
219
|
+
}]
|
|
220
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { lmvzChange: [{
|
|
221
|
+
type: Output
|
|
222
|
+
}] } });
|
|
189
223
|
let LmvzChip = class LmvzChip {
|
|
190
224
|
z;
|
|
191
225
|
el;
|
|
@@ -195,12 +229,12 @@ let LmvzChip = class LmvzChip {
|
|
|
195
229
|
this.el = r.nativeElement;
|
|
196
230
|
}
|
|
197
231
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LmvzChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
198
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LmvzChip, isStandalone: true, selector: "lmvz-chip", inputs: {
|
|
232
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LmvzChip, isStandalone: true, selector: "lmvz-chip", inputs: { size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
199
233
|
};
|
|
200
234
|
LmvzChip = __decorate([
|
|
201
235
|
ProxyCmp({
|
|
202
|
-
defineCustomElementFn: defineCustomElement$
|
|
203
|
-
inputs: ['
|
|
236
|
+
defineCustomElementFn: defineCustomElement$5,
|
|
237
|
+
inputs: ['size', 'type']
|
|
204
238
|
}),
|
|
205
239
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
206
240
|
], LmvzChip);
|
|
@@ -211,7 +245,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
211
245
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
212
246
|
template: '<ng-content></ng-content>',
|
|
213
247
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
214
|
-
inputs: [
|
|
248
|
+
inputs: ['size', 'type'],
|
|
215
249
|
}]
|
|
216
250
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
217
251
|
let LmvzHeader = class LmvzHeader {
|
|
@@ -227,7 +261,7 @@ let LmvzHeader = class LmvzHeader {
|
|
|
227
261
|
};
|
|
228
262
|
LmvzHeader = __decorate([
|
|
229
263
|
ProxyCmp({
|
|
230
|
-
defineCustomElementFn: defineCustomElement$
|
|
264
|
+
defineCustomElementFn: defineCustomElement$6,
|
|
231
265
|
inputs: ['lmvzActiveNav', 'role']
|
|
232
266
|
}),
|
|
233
267
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -255,7 +289,7 @@ let LmvzIcon = class LmvzIcon {
|
|
|
255
289
|
};
|
|
256
290
|
LmvzIcon = __decorate([
|
|
257
291
|
ProxyCmp({
|
|
258
|
-
defineCustomElementFn: defineCustomElement$
|
|
292
|
+
defineCustomElementFn: defineCustomElement$7,
|
|
259
293
|
inputs: ['ariaLabel', 'icon', 'iconset', 'size', 'weight']
|
|
260
294
|
}),
|
|
261
295
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -284,7 +318,7 @@ let LmvzInput = class LmvzInput {
|
|
|
284
318
|
};
|
|
285
319
|
LmvzInput = __decorate([
|
|
286
320
|
ProxyCmp({
|
|
287
|
-
defineCustomElementFn: defineCustomElement$
|
|
321
|
+
defineCustomElementFn: defineCustomElement$8,
|
|
288
322
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'inputmode', 'label', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'spellcheck', 'step', 'type', 'value'],
|
|
289
323
|
methods: ['setValue', 'focusInput', 'blurInput', 'select', 'checkValidity', 'reportValidity', 'getInputElement']
|
|
290
324
|
}),
|
|
@@ -317,7 +351,7 @@ let LmvzMenuitem = class LmvzMenuitem {
|
|
|
317
351
|
};
|
|
318
352
|
LmvzMenuitem = __decorate([
|
|
319
353
|
ProxyCmp({
|
|
320
|
-
defineCustomElementFn: defineCustomElement$
|
|
354
|
+
defineCustomElementFn: defineCustomElement$9,
|
|
321
355
|
inputs: ['role', 'ti']
|
|
322
356
|
}),
|
|
323
357
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -349,7 +383,7 @@ let LmvzSelect = class LmvzSelect {
|
|
|
349
383
|
};
|
|
350
384
|
LmvzSelect = __decorate([
|
|
351
385
|
ProxyCmp({
|
|
352
|
-
defineCustomElementFn: defineCustomElement$
|
|
386
|
+
defineCustomElementFn: defineCustomElement$a,
|
|
353
387
|
inputs: ['disabled', 'helperText', 'label', 'name', 'required', 'value']
|
|
354
388
|
}),
|
|
355
389
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -372,6 +406,7 @@ const DIRECTIVES = [
|
|
|
372
406
|
LmvzAction,
|
|
373
407
|
LmvzButton,
|
|
374
408
|
LmvzCard,
|
|
409
|
+
LmvzCheckbox,
|
|
375
410
|
LmvzChip,
|
|
376
411
|
LmvzHeader,
|
|
377
412
|
LmvzIcon,
|
|
@@ -420,6 +455,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
420
455
|
args: ['focusout']
|
|
421
456
|
}] } });
|
|
422
457
|
|
|
458
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
459
|
+
constructor(el) {
|
|
460
|
+
super(el);
|
|
461
|
+
}
|
|
462
|
+
writeValue(value) {
|
|
463
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
464
|
+
}
|
|
465
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
466
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.9", type: BooleanValueAccessor, isStandalone: true, selector: "lmvz-checkbox", host: { listeners: { "lmvzChange": "handleChangeEvent($event.target?.[\"checked\"])" } }, providers: [
|
|
467
|
+
{
|
|
468
|
+
provide: NG_VALUE_ACCESSOR,
|
|
469
|
+
useExisting: forwardRef(() => BooleanValueAccessor),
|
|
470
|
+
multi: true
|
|
471
|
+
}
|
|
472
|
+
], usesInheritance: true, ngImport: i0 });
|
|
473
|
+
}
|
|
474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
475
|
+
type: Directive,
|
|
476
|
+
args: [{
|
|
477
|
+
/* tslint:disable-next-line:directive-selector */
|
|
478
|
+
selector: 'lmvz-checkbox',
|
|
479
|
+
host: {
|
|
480
|
+
'(lmvzChange)': 'handleChangeEvent($event.target?.["checked"])'
|
|
481
|
+
},
|
|
482
|
+
providers: [
|
|
483
|
+
{
|
|
484
|
+
provide: NG_VALUE_ACCESSOR,
|
|
485
|
+
useExisting: forwardRef(() => BooleanValueAccessor),
|
|
486
|
+
multi: true
|
|
487
|
+
}
|
|
488
|
+
]
|
|
489
|
+
}]
|
|
490
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
491
|
+
|
|
423
492
|
class TextValueAccessor extends ValueAccessor {
|
|
424
493
|
constructor(el) {
|
|
425
494
|
super(el);
|
|
@@ -455,5 +524,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
455
524
|
* Generated bundle index. Do not edit.
|
|
456
525
|
*/
|
|
457
526
|
|
|
458
|
-
export { DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, TextValueAccessor, ValueAccessor };
|
|
527
|
+
export { BooleanValueAccessor, DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzCheckbox, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, TextValueAccessor, ValueAccessor };
|
|
459
528
|
//# sourceMappingURL=lmvz-ds-angular.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lmvz-ds-angular.mjs","sources":["../../../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/generated/value-accessor.ts","../../../projects/component-library/src/generated/text-value-accessor.ts","../../../projects/component-library/src/lmvz-ds-angular.ts"],"sourcesContent":["\n\nimport { Directive, EventEmitter, Output } from '@angular/core';\n@Directive({\n selector: 'lmvz-input',\n host: {\n '(lmvzInput)': 'onValueChange($event.detail)',\n },\n})\nexport class LmvzInputValueChangeHelper {\n @Output() valueChange = new EventEmitter<string>();\n onValueChange(value: string) {\n this.valueChange.emit(value);\n }\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 defineLmvzButton } from '@lmvz-ds/components/components/lmvz-button.js';\nimport { defineCustomElement as defineLmvzCard } from '@lmvz-ds/components/components/lmvz-card.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 defineLmvzMenuitem } from '@lmvz-ds/components/components/lmvz-menuitem.js';\nimport { defineCustomElement as defineLmvzSelect } from '@lmvz-ds/components/components/lmvz-select.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: defineLmvzButton,\n inputs: ['disabled', 'form', 'scale', 'ti', 'type', '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: ['disabled', 'form', 'scale', 'ti', 'type', '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: 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: defineLmvzChip,\n inputs: ['text']\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: [{ name: 'text', required: true }],\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', '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', '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 lmvzInput: EventEmitter<CustomEvent<string>>;\n}\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: defineLmvzSelect,\n inputs: ['disabled', 'helperText', 'label', 'name', 'required', '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', { name: 'label', required: true }, 'name', 'required', '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","\nimport * as d from './proxies';\n\nexport const DIRECTIVES = [\n d.LmvzAction,\n d.LmvzButton,\n d.LmvzCard,\n d.LmvzChip,\n d.LmvzHeader,\n d.LmvzIcon,\n d.LmvzInput,\n d.LmvzMenuitem,\n d.LmvzSelect\n];\n","import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Directive({})\nexport class ValueAccessor implements ControlValueAccessor {\n\n private onChange: (value: any) => void = () => {/**/};\n private onTouched: () => void = () => {/**/};\n protected lastValue: any;\n\n constructor(protected el: ElementRef) {}\n\n writeValue(value: any) {\n this.el.nativeElement.value = this.lastValue = value == null ? '' : value;\n }\n\n handleChangeEvent(value: any) {\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: any) => 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","import { Directive, ElementRef, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport { ValueAccessor } from './value-accessor';\n\n@Directive({\n /* tslint:disable-next-line:directive-selector */\n selector: 'lmvz-input',\n host: {\n '(lmvzInput)': 'handleChangeEvent($event.target?.[\"value\"])'\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => TextValueAccessor),\n multi: true\n }\n ]\n})\nexport class TextValueAccessor extends ValueAccessor {\n constructor(el: ElementRef) {\n super(el);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["defineLmvzAction","defineLmvzButton","defineLmvzCard","defineLmvzChip","defineLmvzHeader","defineLmvzIcon","defineLmvzInput","defineLmvzMenuitem","defineLmvzSelect","d.LmvzAction","d.LmvzButton","d.LmvzCard","d.LmvzChip","d.LmvzHeader","d.LmvzIcon","d.LmvzInput","d.LmvzMenuitem","d.LmvzSelect"],"mappings":";;;;;;;;;;;;;;;MASa,0BAA0B,CAAA;AAC3B,IAAA,WAAW,GAAG,IAAI,YAAY,EAAU;AAClD,IAAA,aAAa,CAAC,KAAa,EAAA;AACzB,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC;IAC9B;uGAJW,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAA1B,0BAA0B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,OAAA,EAAA,EAAA,WAAA,EAAA,aAAA,EAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,WAAA,EAAA,8BAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAA1B,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBANtC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,IAAI,EAAE;AACJ,wBAAA,aAAa,EAAE,8BAA8B;AAC9C,qBAAA;AACF,iBAAA;;sBAEE;;;ACVH;AACA;AAGO,MAAM,WAAW,GAAG,CAAC,GAAQ,EAAE,MAAgB,KAAI;AACxD,IAAA,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS;AAC/B,IAAA,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,KAAI;AACtB,QAAA,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,EAAE;YACrC,GAAG,GAAA;AACD,gBAAA,OAAO,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;YACtB,CAAC;AACD,YAAA,GAAG,CAAC,GAAQ,EAAA;AACV,gBAAA,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC,OAAO,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;YACvD,CAAC;AACD;;;;;;AAMG;AACH,YAAA,YAAY,EAAE,IAAI;AACnB,SAAA,CAAC;AACJ,IAAA,CAAC,CAAC;AACJ,CAAC;AAEM,MAAM,YAAY,GAAG,CAAC,GAAQ,EAAE,OAAiB,KAAI;AAC1D,IAAA,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS;AAC/B,IAAA,OAAO,CAAC,OAAO,CAAC,CAAC,UAAU,KAAI;QAC7B,SAAS,CAAC,UAAU,CAAC,GAAG,YAAA;YACtB,MAAM,IAAI,GAAG,SAAS;YACtB,OAAO,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;AACjF,QAAA,CAAC;AACH,IAAA,CAAC,CAAC;AACJ,CAAC;AAEM,MAAM,YAAY,GAAG,CAAC,QAAa,EAAE,EAAO,EAAE,MAAgB,KAAI;IACvE,MAAM,CAAC,OAAO,CAAC,CAAC,SAAS,MAAM,QAAQ,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC,CAAC;AACjF,CAAC;AAEM,MAAM,mBAAmB,GAAG,CAAC,OAAe,EAAE,aAAkB,KAAI;AACzE,IAAA,IAAI,aAAa,KAAK,SAAS,IAAI,OAAO,cAAc,KAAK,WAAW,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;AACxG,QAAA,cAAc,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC;IAC/C;AACF,CAAC;AAED;AACM,SAAU,QAAQ,CAAC,IAAyE,EAAA;IAChG,MAAM,SAAS,GAAG,UAAU,GAAQ,EAAA;QAClC,MAAM,EAAE,qBAAqB,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI;AAEvD,QAAA,IAAI,qBAAqB,KAAK,SAAS,EAAE;AACvC,YAAA,qBAAqB,EAAE;QACzB;QAEA,IAAI,MAAM,EAAE;AACV,YAAA,WAAW,CAAC,GAAG,EAAE,MAAM,CAAC;QAC1B;QACA,IAAI,OAAO,EAAE;AACX,YAAA,YAAY,CAAC,GAAG,EAAE,OAAO,CAAC;QAC5B;AACA,QAAA,OAAO,GAAG;AACZ,IAAA,CAAC;AACD,IAAA,OAAO,SAAS;AAClB;;ACpCO,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAGsC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,WAAW,GAAG,IAAI,YAAY,EAA2B;AACnE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,gHALX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,UAAU,GAAA,UAAA,CAAA;AAXtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEA;KACxB,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,UAAU,CAOtB;2FAPY,UAAU,EAAA,UAAA,EAAA,CAAA;kBARtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,EAAE;oBACV,OAAO,EAAE,CAAC,aAAa,CAAC;AACzB,iBAAA;;sBAGE;;AA0BI,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAGsC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,cAAc,GAAG,IAAI,YAAY,EAAqB;AAChE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,kOALX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,UAAU,GAAA,UAAA,CAAA;AAZtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAgB;AACvC,QAAA,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS;KAC9D,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,UAAU,CAOtB;2FAPY,UAAU,EAAA,UAAA,EAAA,CAAA;kBARtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,CAAC;oBAC9D,OAAO,EAAE,CAAC,gBAAgB,CAAC;AAC5B,iBAAA;;sBAGE;;AA4BI,IAAM,QAAQ,GAAd,MAAM,QAAQ,CAAA;AAGwC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,aAAa,GAAG,IAAI,YAAY,EAA6B;AACvE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,QAAQ,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAR,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,kPALT,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,QAAQ,GAAA,UAAA,CAAA;AAZpB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAc;QACrC,MAAM,EAAE,CAAC,WAAW,EAAE,aAAa,EAAE,UAAU,EAAE,oBAAoB;KACtE,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,QAAQ,CAOpB;2FAPY,QAAQ,EAAA,UAAA,EAAA,CAAA;kBARpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,aAAa,EAAE,UAAU,EAAE,oBAAoB,CAAC;oBAChG,OAAO,EAAE,CAAC,eAAe,CAAC;AAC3B,iBAAA;;sBAGE;;AA2BI,IAAM,QAAQ,GAAd,MAAM,QAAQ,CAAA;AAEwC,IAAA,CAAA;AADjD,IAAA,EAAE;AACZ,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGALW,QAAQ,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAR,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,+FAJT,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAI1B,QAAQ,GAAA,UAAA,CAAA;AAXpB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAc;QACrC,MAAM,EAAE,CAAC,MAAM;KAChB,CAAC;qCAUe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAFzD,CAAA,EAAA,QAAQ,CAMpB;2FANY,QAAQ,EAAA,UAAA,EAAA,CAAA;kBAPpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;oBAErC,MAAM,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;AAC3C,iBAAA;;AAwBM,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAEsC,IAAA,CAAA;AADjD,IAAA,EAAE;AACZ,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGALW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,iIAJX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAI1B,UAAU,GAAA,UAAA,CAAA;AAXtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAgB;AACvC,QAAA,MAAM,EAAE,CAAC,eAAe,EAAE,MAAM;KACjC,CAAC;qCAUe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAFzD,CAAA,EAAA,UAAU,CAMtB;2FANY,UAAU,EAAA,UAAA,EAAA,CAAA;kBAPtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,eAAe,EAAE,MAAM,CAAC;AAClC,iBAAA;;AAwBM,IAAM,QAAQ,GAAd,MAAM,QAAQ,CAAA;AAEwC,IAAA,CAAA;AADjD,IAAA,EAAE;AACZ,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGALW,QAAQ,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAR,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,2KAJT,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAI1B,QAAQ,GAAA,UAAA,CAAA;AAXpB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAc;QACrC,MAAM,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ;KAC1D,CAAC;qCAUe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAFzD,CAAA,EAAA,QAAQ,CAMpB;2FANY,QAAQ,EAAA,UAAA,EAAA,CAAA;kBAPpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC;AACrF,iBAAA;;AA0BM,IAAM,SAAS,GAAf,MAAM,SAAS,CAAA;AAGuC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,SAAS,GAAG,IAAI,YAAY,EAAuB;AAC7D,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,SAAS,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAT,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,SAAS,unBALV,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,SAAS,GAAA,UAAA,CAAA;AAbrB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAe;QACtC,MAAM,EAAE,CAAC,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,UAAU,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;AAChS,QAAA,OAAO,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB,EAAE,iBAAiB;KAChH,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,SAAS,CAOrB;2FAPY,SAAS,EAAA,UAAA,EAAA,CAAA;kBARrB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,YAAY;oBACtB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;oBAErC,MAAM,EAAE,CAAC,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,UAAU,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;oBAC1T,OAAO,EAAE,CAAC,WAAW,CAAC;AACvB,iBAAA;;sBAGE;;AA0BI,IAAM,YAAY,GAAlB,MAAM,YAAY,CAAA;AAGoC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,cAAc,GAAG,IAAI,YAAY,EAAqB;AAChE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,YAAY,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAZ,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,YAAY,4JALb,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,YAAY,GAAA,UAAA,CAAA;AAZxB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAkB;AACzC,QAAA,MAAM,EAAE,CAAC,MAAM,EAAE,IAAI;KACtB,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,YAAY,CAOxB;2FAPY,YAAY,EAAA,UAAA,EAAA,CAAA;kBARxB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;oBACzB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC;oBACtB,OAAO,EAAE,CAAC,gBAAgB,CAAC;AAC5B,iBAAA;;sBAGE;;AA4BI,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAGsC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,UAAU,GAAG,IAAI,YAAY,EAAuB;AAC9D,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,8OALX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,UAAU,GAAA,UAAA,CAAA;AAZtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAgB;AACvC,QAAA,MAAM,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO;KACxE,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,UAAU,CAOtB;2FAPY,UAAU,EAAA,UAAA,EAAA,CAAA;kBARtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;oBAErC,MAAM,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC;oBAClG,OAAO,EAAE,CAAC,YAAY,CAAC;AACxB,iBAAA;;sBAGE;;;ACnPI,MAAM,UAAU,GAAG;AACxB,IAAAC,UAAY;AACZ,IAAAC,UAAY;AACZ,IAAAC,QAAU;AACV,IAAAC,QAAU;AACV,IAAAC,UAAY;AACZ,IAAAC,QAAU;AACV,IAAAC,SAAW;AACX,IAAAC,YAAc;AACd,IAAAC;;;MCRW,aAAa,CAAA;AAMF,IAAA,EAAA;AAJd,IAAA,QAAQ,GAAyB,MAAK,EAAM,CAAC;AAC7C,IAAA,SAAS,GAAe,MAAK,EAAM,CAAC;AAClC,IAAA,SAAS;AAEnB,IAAA,WAAA,CAAsB,EAAc,EAAA;QAAd,IAAA,CAAA,EAAE,GAAF,EAAE;IAAe;AAEvC,IAAA,UAAU,CAAC,KAAU,EAAA;QACnB,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,GAAG,IAAI,CAAC,SAAS,GAAG,KAAK,IAAI,IAAI,GAAG,EAAE,GAAG,KAAK;IAC3E;AAEA,IAAA,iBAAiB,CAAC,KAAU,EAAA;AAC1B,QAAA,IAAI,KAAK,KAAK,IAAI,CAAC,SAAS,EAAE;AAC5B,YAAA,IAAI,CAAC,SAAS,GAAG,KAAK;AACtB,YAAA,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;QACtB;IACF;IAGA,gBAAgB,GAAA;QACd,IAAI,CAAC,SAAS,EAAE;IAClB;AAEA,IAAA,gBAAgB,CAAC,EAAwB,EAAA;AACvC,QAAA,IAAI,CAAC,QAAQ,GAAG,EAAE;IACpB;AACA,IAAA,iBAAiB,CAAC,EAAc,EAAA;AAC9B,QAAA,IAAI,CAAC,SAAS,GAAG,EAAE;IACrB;AAEA,IAAA,gBAAgB,CAAC,UAAmB,EAAA;QAClC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,QAAQ,GAAG,UAAU;IAC7C;uGAjCW,aAAa,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAb,aAAa,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,UAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBADzB,SAAS;mBAAC,EAAE;;sBAoBV,YAAY;uBAAC,UAAU;;;ACJpB,MAAO,iBAAkB,SAAQ,aAAa,CAAA;AAClD,IAAA,WAAA,CAAY,EAAc,EAAA;QACxB,KAAK,CAAC,EAAE,CAAC;IACX;uGAHW,iBAAiB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAjB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,WAAA,EAAA,+CAAA,EAAA,EAAA,EAAA,SAAA,EARjB;AACT,YAAA;AACE,gBAAA,OAAO,EAAE,iBAAiB;AAC1B,gBAAA,WAAW,EAAE,UAAU,CAAC,MAAM,iBAAiB,CAAC;AAChD,gBAAA,KAAK,EAAE;AACR;AACF,SAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAEU,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAd7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;;AAET,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,IAAI,EAAE;AACJ,wBAAA,aAAa,EAAE;AAChB,qBAAA;AACD,oBAAA,SAAS,EAAE;AACT,wBAAA;AACE,4BAAA,OAAO,EAAE,iBAAiB;AAC1B,4BAAA,WAAW,EAAE,UAAU,CAAC,uBAAuB,CAAC;AAChD,4BAAA,KAAK,EAAE;AACR;AACF;AACF,iBAAA;;;AClBD;;AAEG;;;;"}
|
|
1
|
+
{"version":3,"file":"lmvz-ds-angular.mjs","sources":["../../../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/generated/value-accessor.ts","../../../projects/component-library/src/generated/boolean-value-accessor.ts","../../../projects/component-library/src/generated/text-value-accessor.ts","../../../projects/component-library/src/lmvz-ds-angular.ts"],"sourcesContent":["\n\nimport { Directive, EventEmitter, Output } from '@angular/core';\n@Directive({\n selector: 'lmvz-input',\n host: {\n '(lmvzInput)': 'onValueChange($event.detail)',\n },\n})\nexport class LmvzInputValueChangeHelper {\n @Output() valueChange = new EventEmitter<string>();\n onValueChange(value: string) {\n this.valueChange.emit(value);\n }\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 defineLmvzButton } from '@lmvz-ds/components/components/lmvz-button.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 defineLmvzMenuitem } from '@lmvz-ds/components/components/lmvz-menuitem.js';\nimport { defineCustomElement as defineLmvzSelect } from '@lmvz-ds/components/components/lmvz-select.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: defineLmvzButton,\n inputs: ['disabled', 'form', 'scale', 'ti', 'type', '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: ['disabled', 'form', 'scale', 'ti', 'type', '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: 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', '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', '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: 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: defineLmvzSelect,\n inputs: ['disabled', 'helperText', 'label', 'name', 'required', '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', { name: 'label', required: true }, 'name', 'required', '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","\nimport * as d from './proxies';\n\nexport const DIRECTIVES = [\n d.LmvzAction,\n d.LmvzButton,\n d.LmvzCard,\n d.LmvzCheckbox,\n d.LmvzChip,\n d.LmvzHeader,\n d.LmvzIcon,\n d.LmvzInput,\n d.LmvzMenuitem,\n d.LmvzSelect\n];\n","import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Directive({})\nexport class ValueAccessor implements ControlValueAccessor {\n\n private onChange: (value: any) => void = () => {/**/};\n private onTouched: () => void = () => {/**/};\n protected lastValue: any;\n\n constructor(protected el: ElementRef) {}\n\n writeValue(value: any) {\n this.el.nativeElement.value = this.lastValue = value == null ? '' : value;\n }\n\n handleChangeEvent(value: any) {\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: any) => 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","import { Directive, ElementRef, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport { ValueAccessor } from './value-accessor';\n\n@Directive({\n /* tslint:disable-next-line:directive-selector */\n selector: 'lmvz-checkbox',\n host: {\n '(lmvzChange)': 'handleChangeEvent($event.target?.[\"checked\"])'\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => BooleanValueAccessor),\n multi: true\n }\n ]\n})\nexport class BooleanValueAccessor extends ValueAccessor {\n constructor(el: ElementRef) {\n super(el);\n }\n override writeValue(value: any) {\n this.el.nativeElement.checked = this.lastValue = value == null ? false : value;\n }\n}\n","import { Directive, ElementRef, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport { ValueAccessor } from './value-accessor';\n\n@Directive({\n /* tslint:disable-next-line:directive-selector */\n selector: 'lmvz-input',\n host: {\n '(lmvzInput)': 'handleChangeEvent($event.target?.[\"value\"])'\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => TextValueAccessor),\n multi: true\n }\n ]\n})\nexport class TextValueAccessor extends ValueAccessor {\n constructor(el: ElementRef) {\n super(el);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["defineLmvzAction","defineLmvzButton","defineLmvzCard","defineLmvzCheckbox","defineLmvzChip","defineLmvzHeader","defineLmvzIcon","defineLmvzInput","defineLmvzMenuitem","defineLmvzSelect","d.LmvzAction","d.LmvzButton","d.LmvzCard","d.LmvzCheckbox","d.LmvzChip","d.LmvzHeader","d.LmvzIcon","d.LmvzInput","d.LmvzMenuitem","d.LmvzSelect"],"mappings":";;;;;;;;;;;;;;;;MASa,0BAA0B,CAAA;AAC3B,IAAA,WAAW,GAAG,IAAI,YAAY,EAAU;AAClD,IAAA,aAAa,CAAC,KAAa,EAAA;AACzB,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC;IAC9B;uGAJW,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAA1B,0BAA0B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,OAAA,EAAA,EAAA,WAAA,EAAA,aAAA,EAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,WAAA,EAAA,8BAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAA1B,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBANtC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,IAAI,EAAE;AACJ,wBAAA,aAAa,EAAE,8BAA8B;AAC9C,qBAAA;AACF,iBAAA;;sBAEE;;;ACVH;AACA;AAGO,MAAM,WAAW,GAAG,CAAC,GAAQ,EAAE,MAAgB,KAAI;AACxD,IAAA,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS;AAC/B,IAAA,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,KAAI;AACtB,QAAA,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,EAAE;YACrC,GAAG,GAAA;AACD,gBAAA,OAAO,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;YACtB,CAAC;AACD,YAAA,GAAG,CAAC,GAAQ,EAAA;AACV,gBAAA,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC,OAAO,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;YACvD,CAAC;AACD;;;;;;AAMG;AACH,YAAA,YAAY,EAAE,IAAI;AACnB,SAAA,CAAC;AACJ,IAAA,CAAC,CAAC;AACJ,CAAC;AAEM,MAAM,YAAY,GAAG,CAAC,GAAQ,EAAE,OAAiB,KAAI;AAC1D,IAAA,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS;AAC/B,IAAA,OAAO,CAAC,OAAO,CAAC,CAAC,UAAU,KAAI;QAC7B,SAAS,CAAC,UAAU,CAAC,GAAG,YAAA;YACtB,MAAM,IAAI,GAAG,SAAS;YACtB,OAAO,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;AACjF,QAAA,CAAC;AACH,IAAA,CAAC,CAAC;AACJ,CAAC;AAEM,MAAM,YAAY,GAAG,CAAC,QAAa,EAAE,EAAO,EAAE,MAAgB,KAAI;IACvE,MAAM,CAAC,OAAO,CAAC,CAAC,SAAS,MAAM,QAAQ,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC,CAAC;AACjF,CAAC;AAEM,MAAM,mBAAmB,GAAG,CAAC,OAAe,EAAE,aAAkB,KAAI;AACzE,IAAA,IAAI,aAAa,KAAK,SAAS,IAAI,OAAO,cAAc,KAAK,WAAW,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;AACxG,QAAA,cAAc,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC;IAC/C;AACF,CAAC;AAED;AACM,SAAU,QAAQ,CAAC,IAAyE,EAAA;IAChG,MAAM,SAAS,GAAG,UAAU,GAAQ,EAAA;QAClC,MAAM,EAAE,qBAAqB,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI;AAEvD,QAAA,IAAI,qBAAqB,KAAK,SAAS,EAAE;AACvC,YAAA,qBAAqB,EAAE;QACzB;QAEA,IAAI,MAAM,EAAE;AACV,YAAA,WAAW,CAAC,GAAG,EAAE,MAAM,CAAC;QAC1B;QACA,IAAI,OAAO,EAAE;AACX,YAAA,YAAY,CAAC,GAAG,EAAE,OAAO,CAAC;QAC5B;AACA,QAAA,OAAO,GAAG;AACZ,IAAA,CAAC;AACD,IAAA,OAAO,SAAS;AAClB;;ACnCO,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAGsC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,WAAW,GAAG,IAAI,YAAY,EAA2B;AACnE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,gHALX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,UAAU,GAAA,UAAA,CAAA;AAXtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEA;KACxB,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,UAAU,CAOtB;2FAPY,UAAU,EAAA,UAAA,EAAA,CAAA;kBARtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,EAAE;oBACV,OAAO,EAAE,CAAC,aAAa,CAAC;AACzB,iBAAA;;sBAGE;;AA0BI,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAGsC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,cAAc,GAAG,IAAI,YAAY,EAAqB;AAChE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,kOALX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,UAAU,GAAA,UAAA,CAAA;AAZtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAgB;AACvC,QAAA,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS;KAC9D,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,UAAU,CAOtB;2FAPY,UAAU,EAAA,UAAA,EAAA,CAAA;kBARtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,CAAC;oBAC9D,OAAO,EAAE,CAAC,gBAAgB,CAAC;AAC5B,iBAAA;;sBAGE;;AA4BI,IAAM,QAAQ,GAAd,MAAM,QAAQ,CAAA;AAGwC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,aAAa,GAAG,IAAI,YAAY,EAA6B;AACvE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,QAAQ,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAR,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,kPALT,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,QAAQ,GAAA,UAAA,CAAA;AAZpB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAc;QACrC,MAAM,EAAE,CAAC,WAAW,EAAE,aAAa,EAAE,UAAU,EAAE,oBAAoB;KACtE,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,QAAQ,CAOpB;2FAPY,QAAQ,EAAA,UAAA,EAAA,CAAA;kBARpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,aAAa,EAAE,UAAU,EAAE,oBAAoB,CAAC;oBAChG,OAAO,EAAE,CAAC,eAAe,CAAC;AAC3B,iBAAA;;sBAGE;;AA6BI,IAAM,YAAY,GAAlB,MAAM,YAAY,CAAA;AAGoC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,UAAU,GAAG,IAAI,YAAY,EAAwB;AAC/D,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,YAAY,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAZ,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,YAAY,wVALb,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,YAAY,GAAA,UAAA,CAAA;AAbxB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAkB;QACzC,MAAM,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,UAAU,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC;AACjI,QAAA,OAAO,EAAE,CAAC,YAAY,EAAE,eAAe,EAAE,gBAAgB;KAC1D,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,YAAY,CAOxB;2FAPY,YAAY,EAAA,UAAA,EAAA,CAAA;kBARxB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;oBACzB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,UAAU,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC;oBAC3J,OAAO,EAAE,CAAC,YAAY,CAAC;AACxB,iBAAA;;sBAGE;;AA4BI,IAAM,QAAQ,GAAd,MAAM,QAAQ,CAAA;AAEwC,IAAA,CAAA;AADjD,IAAA,EAAE;AACZ,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGALW,QAAQ,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAR,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,6GAJT,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAI1B,QAAQ,GAAA,UAAA,CAAA;AAXpB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAc;AACrC,QAAA,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM;KACxB,CAAC;qCAUe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAFzD,CAAA,EAAA,QAAQ,CAMpB;2FANY,QAAQ,EAAA,UAAA,EAAA,CAAA;kBAPpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;AACzB,iBAAA;;AAwBM,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAEsC,IAAA,CAAA;AADjD,IAAA,EAAE;AACZ,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGALW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,iIAJX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAI1B,UAAU,GAAA,UAAA,CAAA;AAXtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAgB;AACvC,QAAA,MAAM,EAAE,CAAC,eAAe,EAAE,MAAM;KACjC,CAAC;qCAUe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAFzD,CAAA,EAAA,UAAU,CAMtB;2FANY,UAAU,EAAA,UAAA,EAAA,CAAA;kBAPtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,eAAe,EAAE,MAAM,CAAC;AAClC,iBAAA;;AAwBM,IAAM,QAAQ,GAAd,MAAM,QAAQ,CAAA;AAEwC,IAAA,CAAA;AADjD,IAAA,EAAE;AACZ,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGALW,QAAQ,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAR,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAQ,2KAJT,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAI1B,QAAQ,GAAA,UAAA,CAAA;AAXpB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAc;QACrC,MAAM,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ;KAC1D,CAAC;qCAUe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAFzD,CAAA,EAAA,QAAQ,CAMpB;2FANY,QAAQ,EAAA,UAAA,EAAA,CAAA;kBAPpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC;AACrF,iBAAA;;AA0BM,IAAM,SAAS,GAAf,MAAM,SAAS,CAAA;AAGuC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,SAAS,GAAG,IAAI,YAAY,EAAuB;AAC7D,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,SAAS,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAT,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,SAAS,unBALV,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,SAAS,GAAA,UAAA,CAAA;AAbrB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAe;QACtC,MAAM,EAAE,CAAC,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,UAAU,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;AAChS,QAAA,OAAO,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB,EAAE,iBAAiB;KAChH,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,SAAS,CAOrB;2FAPY,SAAS,EAAA,UAAA,EAAA,CAAA;kBARrB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,YAAY;oBACtB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;oBAErC,MAAM,EAAE,CAAC,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,UAAU,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;oBAC1T,OAAO,EAAE,CAAC,WAAW,CAAC;AACvB,iBAAA;;sBAGE;;AA6BI,IAAM,YAAY,GAAlB,MAAM,YAAY,CAAA;AAGoC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,cAAc,GAAG,IAAI,YAAY,EAAqB;AAChE,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,YAAY,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAZ,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,YAAY,4JALb,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,YAAY,GAAA,UAAA,CAAA;AAZxB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAkB;AACzC,QAAA,MAAM,EAAE,CAAC,MAAM,EAAE,IAAI;KACtB,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,YAAY,CAOxB;2FAPY,YAAY,EAAA,UAAA,EAAA,CAAA;kBARxB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;oBACzB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;AAErC,oBAAA,MAAM,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC;oBACtB,OAAO,EAAE,CAAC,gBAAgB,CAAC;AAC5B,iBAAA;;sBAGE;;AA4BI,IAAM,UAAU,GAAhB,MAAM,UAAU,CAAA;AAGsC,IAAA,CAAA;AAFjD,IAAA,EAAE;AACF,IAAA,UAAU,GAAG,IAAI,YAAY,EAAuB;AAC9D,IAAA,WAAA,CAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAA;QAAT,IAAA,CAAA,CAAC,GAAD,CAAC;QAC1D,CAAC,CAAC,MAAM,EAAE;AACV,QAAA,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa;IAC3B;uGANW,UAAU,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,8OALX,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;AAK1B,UAAU,GAAA,UAAA,CAAA;AAZtB,IAAA,QAAQ,CAAC;AACR,QAAA,qBAAqB,EAAEC,qBAAgB;AACvC,QAAA,MAAM,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO;KACxE,CAAC;qCAYe,iBAAiB,EAAK,UAAU,EAAe,MAAM,CAAA;AAHzD,CAAA,EAAA,UAAU,CAOtB;2FAPY,UAAU,EAAA,UAAA,EAAA,CAAA;kBARtB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,QAAQ,EAAE,2BAA2B;;oBAErC,MAAM,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC;oBAClG,OAAO,EAAE,CAAC,YAAY,CAAC;AACxB,iBAAA;;sBAGE;;;ACvRI,MAAM,UAAU,GAAG;AACxB,IAAAC,UAAY;AACZ,IAAAC,UAAY;AACZ,IAAAC,QAAU;AACV,IAAAC,YAAc;AACd,IAAAC,QAAU;AACV,IAAAC,UAAY;AACZ,IAAAC,QAAU;AACV,IAAAC,SAAW;AACX,IAAAC,YAAc;AACd,IAAAC;;;MCTW,aAAa,CAAA;AAMF,IAAA,EAAA;AAJd,IAAA,QAAQ,GAAyB,MAAK,EAAM,CAAC;AAC7C,IAAA,SAAS,GAAe,MAAK,EAAM,CAAC;AAClC,IAAA,SAAS;AAEnB,IAAA,WAAA,CAAsB,EAAc,EAAA;QAAd,IAAA,CAAA,EAAE,GAAF,EAAE;IAAe;AAEvC,IAAA,UAAU,CAAC,KAAU,EAAA;QACnB,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,GAAG,IAAI,CAAC,SAAS,GAAG,KAAK,IAAI,IAAI,GAAG,EAAE,GAAG,KAAK;IAC3E;AAEA,IAAA,iBAAiB,CAAC,KAAU,EAAA;AAC1B,QAAA,IAAI,KAAK,KAAK,IAAI,CAAC,SAAS,EAAE;AAC5B,YAAA,IAAI,CAAC,SAAS,GAAG,KAAK;AACtB,YAAA,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;QACtB;IACF;IAGA,gBAAgB,GAAA;QACd,IAAI,CAAC,SAAS,EAAE;IAClB;AAEA,IAAA,gBAAgB,CAAC,EAAwB,EAAA;AACvC,QAAA,IAAI,CAAC,QAAQ,GAAG,EAAE;IACpB;AACA,IAAA,iBAAiB,CAAC,EAAc,EAAA;AAC9B,QAAA,IAAI,CAAC,SAAS,GAAG,EAAE;IACrB;AAEA,IAAA,gBAAgB,CAAC,UAAmB,EAAA;QAClC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,QAAQ,GAAG,UAAU;IAC7C;uGAjCW,aAAa,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAb,aAAa,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,UAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBADzB,SAAS;mBAAC,EAAE;;sBAoBV,YAAY;uBAAC,UAAU;;;ACJpB,MAAO,oBAAqB,SAAQ,aAAa,CAAA;AACrD,IAAA,WAAA,CAAY,EAAc,EAAA;QACxB,KAAK,CAAC,EAAE,CAAC;IACX;AACS,IAAA,UAAU,CAAC,KAAU,EAAA;QAC5B,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,GAAG,KAAK;IAChF;uGANW,oBAAoB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,eAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,YAAA,EAAA,iDAAA,EAAA,EAAA,EAAA,SAAA,EARpB;AACT,YAAA;AACE,gBAAA,OAAO,EAAE,iBAAiB;AAC1B,gBAAA,WAAW,EAAE,UAAU,CAAC,MAAM,oBAAoB,CAAC;AACnD,gBAAA,KAAK,EAAE;AACR;AACF,SAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAEU,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAdhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;;AAET,oBAAA,QAAQ,EAAE,eAAe;AACzB,oBAAA,IAAI,EAAE;AACJ,wBAAA,cAAc,EAAE;AACjB,qBAAA;AACD,oBAAA,SAAS,EAAE;AACT,wBAAA;AACE,4BAAA,OAAO,EAAE,iBAAiB;AAC1B,4BAAA,WAAW,EAAE,UAAU,CAAC,0BAA0B,CAAC;AACnD,4BAAA,KAAK,EAAE;AACR;AACF;AACF,iBAAA;;;ACCK,MAAO,iBAAkB,SAAQ,aAAa,CAAA;AAClD,IAAA,WAAA,CAAY,EAAc,EAAA;QACxB,KAAK,CAAC,EAAE,CAAC;IACX;uGAHW,iBAAiB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAjB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,WAAA,EAAA,+CAAA,EAAA,EAAA,EAAA,SAAA,EARjB;AACT,YAAA;AACE,gBAAA,OAAO,EAAE,iBAAiB;AAC1B,gBAAA,WAAW,EAAE,UAAU,CAAC,MAAM,iBAAiB,CAAC;AAChD,gBAAA,KAAK,EAAE;AACR;AACF,SAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAEU,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAd7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;;AAET,oBAAA,QAAQ,EAAE,YAAY;AACtB,oBAAA,IAAI,EAAE;AACJ,wBAAA,aAAa,EAAE;AAChB,qBAAA;AACD,oBAAA,SAAS,EAAE;AACT,wBAAA;AACE,4BAAA,OAAO,EAAE,iBAAiB;AAC1B,4BAAA,WAAW,EAAE,UAAU,CAAC,uBAAuB,CAAC;AAChD,4BAAA,KAAK,EAAE;AACR;AACF;AACF,iBAAA;;;AClBD;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmvz-ds/angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.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.
|
|
14
|
+
"@lmvz-ds/components": "~0.20.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.8.1"
|
|
@@ -49,12 +49,27 @@ declare interface LmvzCard extends Components.LmvzCard {
|
|
|
49
49
|
*/
|
|
50
50
|
primaryAction: EventEmitter<CustomEvent<PointerEvent>>;
|
|
51
51
|
}
|
|
52
|
+
declare class LmvzCheckbox {
|
|
53
|
+
protected z: NgZone;
|
|
54
|
+
protected el: HTMLLmvzCheckboxElement;
|
|
55
|
+
lmvzChange: EventEmitter<CustomEvent<boolean>>;
|
|
56
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LmvzCheckbox, never>;
|
|
58
|
+
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>;
|
|
59
|
+
}
|
|
60
|
+
declare interface LmvzCheckbox extends Components.LmvzCheckbox {
|
|
61
|
+
/**
|
|
62
|
+
* Emitted whenever the checkbox checked state changes.
|
|
63
|
+
Event detail contains the new checked boolean value.
|
|
64
|
+
*/
|
|
65
|
+
lmvzChange: EventEmitter<CustomEvent<boolean>>;
|
|
66
|
+
}
|
|
52
67
|
declare class LmvzChip {
|
|
53
68
|
protected z: NgZone;
|
|
54
69
|
protected el: HTMLLmvzChipElement;
|
|
55
70
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
56
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<LmvzChip, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LmvzChip, "lmvz-chip", never, { "
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LmvzChip, "lmvz-chip", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
58
73
|
}
|
|
59
74
|
declare interface LmvzChip extends Components.LmvzChip {
|
|
60
75
|
}
|
|
@@ -85,6 +100,10 @@ declare class LmvzInput {
|
|
|
85
100
|
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; }; "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>;
|
|
86
101
|
}
|
|
87
102
|
declare interface LmvzInput extends Components.LmvzInput {
|
|
103
|
+
/**
|
|
104
|
+
* Emitted whenever the input value changes.
|
|
105
|
+
Event detail contains the current value.
|
|
106
|
+
*/
|
|
88
107
|
lmvzInput: EventEmitter<CustomEvent<string>>;
|
|
89
108
|
}
|
|
90
109
|
declare class LmvzMenuitem {
|
|
@@ -116,7 +135,7 @@ declare interface LmvzSelect extends Components.LmvzSelect {
|
|
|
116
135
|
lmvzChange: EventEmitter<CustomEvent<string>>;
|
|
117
136
|
}
|
|
118
137
|
|
|
119
|
-
declare const DIRECTIVES: (typeof LmvzAction | typeof LmvzButton | typeof LmvzCard | typeof LmvzChip | typeof LmvzHeader | typeof LmvzIcon | typeof LmvzInput | typeof LmvzMenuitem | typeof LmvzSelect)[];
|
|
138
|
+
declare const DIRECTIVES: (typeof LmvzAction | typeof LmvzButton | typeof LmvzCard | typeof LmvzCheckbox | typeof LmvzChip | typeof LmvzHeader | typeof LmvzIcon | typeof LmvzInput | typeof LmvzMenuitem | typeof LmvzSelect)[];
|
|
120
139
|
|
|
121
140
|
declare class ValueAccessor implements ControlValueAccessor {
|
|
122
141
|
protected el: ElementRef;
|
|
@@ -134,10 +153,17 @@ declare class ValueAccessor implements ControlValueAccessor {
|
|
|
134
153
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, {}, {}, never, never, true, never>;
|
|
135
154
|
}
|
|
136
155
|
|
|
156
|
+
declare class BooleanValueAccessor extends ValueAccessor {
|
|
157
|
+
constructor(el: ElementRef);
|
|
158
|
+
writeValue(value: any): void;
|
|
159
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
|
|
160
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "lmvz-checkbox", never, {}, {}, never, never, true, never>;
|
|
161
|
+
}
|
|
162
|
+
|
|
137
163
|
declare class TextValueAccessor extends ValueAccessor {
|
|
138
164
|
constructor(el: ElementRef);
|
|
139
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextValueAccessor, never>;
|
|
140
166
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TextValueAccessor, "lmvz-input", never, {}, {}, never, never, true, never>;
|
|
141
167
|
}
|
|
142
168
|
|
|
143
|
-
export { DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, TextValueAccessor, ValueAccessor };
|
|
169
|
+
export { BooleanValueAccessor, DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzCheckbox, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, TextValueAccessor, ValueAccessor };
|