@lmvz-ds/angular 0.19.0 → 0.21.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 +23 -0
- package/fesm2022/lmvz-ds-angular.mjs +118 -14
- package/fesm2022/lmvz-ds-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/types/lmvz-ds-angular.d.ts +38 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @lmvz-ds/angular
|
|
2
2
|
|
|
3
|
+
## 0.21.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1cbce93: Toggle Komponente hinzugefügt
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1cbce93]
|
|
12
|
+
- @lmvz-ds/components@0.21.0
|
|
13
|
+
|
|
14
|
+
## 0.20.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 9f1fe1e: Checkbox Komponente hinzugefügt
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [8dac215]
|
|
23
|
+
- Updated dependencies [9f1fe1e]
|
|
24
|
+
- @lmvz-ds/components@0.20.0
|
|
25
|
+
|
|
3
26
|
## 0.19.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -5,12 +5,14 @@ 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';
|
|
15
|
+
import { defineCustomElement as defineCustomElement$b } from '@lmvz-ds/components/components/lmvz-toggle.js';
|
|
14
16
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
15
17
|
|
|
16
18
|
class LmvzInputValueChangeHelper {
|
|
@@ -186,6 +188,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
186
188
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { primaryAction: [{
|
|
187
189
|
type: Output
|
|
188
190
|
}] } });
|
|
191
|
+
let LmvzCheckbox = class LmvzCheckbox {
|
|
192
|
+
z;
|
|
193
|
+
el;
|
|
194
|
+
lmvzChange = new EventEmitter();
|
|
195
|
+
constructor(c, r, z) {
|
|
196
|
+
this.z = z;
|
|
197
|
+
c.detach();
|
|
198
|
+
this.el = r.nativeElement;
|
|
199
|
+
}
|
|
200
|
+
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 });
|
|
201
|
+
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 });
|
|
202
|
+
};
|
|
203
|
+
LmvzCheckbox = __decorate([
|
|
204
|
+
ProxyCmp({
|
|
205
|
+
defineCustomElementFn: defineCustomElement$4,
|
|
206
|
+
inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', 'label', 'name', 'required', 'value'],
|
|
207
|
+
methods: ['focusInput', 'checkValidity', 'reportValidity']
|
|
208
|
+
}),
|
|
209
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
210
|
+
], LmvzCheckbox);
|
|
211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LmvzCheckbox, decorators: [{
|
|
212
|
+
type: Component,
|
|
213
|
+
args: [{
|
|
214
|
+
selector: 'lmvz-checkbox',
|
|
215
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
216
|
+
template: '<ng-content></ng-content>',
|
|
217
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
218
|
+
inputs: ['autofocus', 'checked', 'disabled', 'error', 'errorMessage', 'form', 'helperText', { name: 'label', required: true }, 'name', 'required', 'value'],
|
|
219
|
+
outputs: ['lmvzChange'],
|
|
220
|
+
}]
|
|
221
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { lmvzChange: [{
|
|
222
|
+
type: Output
|
|
223
|
+
}] } });
|
|
189
224
|
let LmvzChip = class LmvzChip {
|
|
190
225
|
z;
|
|
191
226
|
el;
|
|
@@ -199,7 +234,7 @@ let LmvzChip = class LmvzChip {
|
|
|
199
234
|
};
|
|
200
235
|
LmvzChip = __decorate([
|
|
201
236
|
ProxyCmp({
|
|
202
|
-
defineCustomElementFn: defineCustomElement$
|
|
237
|
+
defineCustomElementFn: defineCustomElement$5,
|
|
203
238
|
inputs: ['size', 'type']
|
|
204
239
|
}),
|
|
205
240
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -227,7 +262,7 @@ let LmvzHeader = class LmvzHeader {
|
|
|
227
262
|
};
|
|
228
263
|
LmvzHeader = __decorate([
|
|
229
264
|
ProxyCmp({
|
|
230
|
-
defineCustomElementFn: defineCustomElement$
|
|
265
|
+
defineCustomElementFn: defineCustomElement$6,
|
|
231
266
|
inputs: ['lmvzActiveNav', 'role']
|
|
232
267
|
}),
|
|
233
268
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -255,7 +290,7 @@ let LmvzIcon = class LmvzIcon {
|
|
|
255
290
|
};
|
|
256
291
|
LmvzIcon = __decorate([
|
|
257
292
|
ProxyCmp({
|
|
258
|
-
defineCustomElementFn: defineCustomElement$
|
|
293
|
+
defineCustomElementFn: defineCustomElement$7,
|
|
259
294
|
inputs: ['ariaLabel', 'icon', 'iconset', 'size', 'weight']
|
|
260
295
|
}),
|
|
261
296
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -284,7 +319,7 @@ let LmvzInput = class LmvzInput {
|
|
|
284
319
|
};
|
|
285
320
|
LmvzInput = __decorate([
|
|
286
321
|
ProxyCmp({
|
|
287
|
-
defineCustomElementFn: defineCustomElement$
|
|
322
|
+
defineCustomElementFn: defineCustomElement$8,
|
|
288
323
|
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
324
|
methods: ['setValue', 'focusInput', 'blurInput', 'select', 'checkValidity', 'reportValidity', 'getInputElement']
|
|
290
325
|
}),
|
|
@@ -317,7 +352,7 @@ let LmvzMenuitem = class LmvzMenuitem {
|
|
|
317
352
|
};
|
|
318
353
|
LmvzMenuitem = __decorate([
|
|
319
354
|
ProxyCmp({
|
|
320
|
-
defineCustomElementFn: defineCustomElement$
|
|
355
|
+
defineCustomElementFn: defineCustomElement$9,
|
|
321
356
|
inputs: ['role', 'ti']
|
|
322
357
|
}),
|
|
323
358
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -349,7 +384,7 @@ let LmvzSelect = class LmvzSelect {
|
|
|
349
384
|
};
|
|
350
385
|
LmvzSelect = __decorate([
|
|
351
386
|
ProxyCmp({
|
|
352
|
-
defineCustomElementFn: defineCustomElement$
|
|
387
|
+
defineCustomElementFn: defineCustomElement$a,
|
|
353
388
|
inputs: ['disabled', 'helperText', 'label', 'name', 'required', 'value']
|
|
354
389
|
}),
|
|
355
390
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
@@ -367,17 +402,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
367
402
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { lmvzChange: [{
|
|
368
403
|
type: Output
|
|
369
404
|
}] } });
|
|
405
|
+
let LmvzToggle = class LmvzToggle {
|
|
406
|
+
z;
|
|
407
|
+
el;
|
|
408
|
+
lmvzChange = new EventEmitter();
|
|
409
|
+
constructor(c, r, z) {
|
|
410
|
+
this.z = z;
|
|
411
|
+
c.detach();
|
|
412
|
+
this.el = r.nativeElement;
|
|
413
|
+
}
|
|
414
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LmvzToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
415
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LmvzToggle, isStandalone: true, selector: "lmvz-toggle", inputs: { checked: "checked", disabled: "disabled", form: "form", label: "label", name: "name", required: "required", value: "value" }, outputs: { lmvzChange: "lmvzChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
416
|
+
};
|
|
417
|
+
LmvzToggle = __decorate([
|
|
418
|
+
ProxyCmp({
|
|
419
|
+
defineCustomElementFn: defineCustomElement$b,
|
|
420
|
+
inputs: ['checked', 'disabled', 'form', 'label', 'name', 'required', 'value'],
|
|
421
|
+
methods: ['focusToggle', 'blurToggle', 'checkValidity', 'reportValidity', 'getInputElement']
|
|
422
|
+
}),
|
|
423
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
424
|
+
], LmvzToggle);
|
|
425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LmvzToggle, decorators: [{
|
|
426
|
+
type: Component,
|
|
427
|
+
args: [{
|
|
428
|
+
selector: 'lmvz-toggle',
|
|
429
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
430
|
+
template: '<ng-content></ng-content>',
|
|
431
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
432
|
+
inputs: ['checked', 'disabled', 'form', { name: 'label', required: true }, 'name', 'required', 'value'],
|
|
433
|
+
outputs: ['lmvzChange'],
|
|
434
|
+
}]
|
|
435
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { lmvzChange: [{
|
|
436
|
+
type: Output
|
|
437
|
+
}] } });
|
|
370
438
|
|
|
371
439
|
const DIRECTIVES = [
|
|
372
440
|
LmvzAction,
|
|
373
441
|
LmvzButton,
|
|
374
442
|
LmvzCard,
|
|
443
|
+
LmvzCheckbox,
|
|
375
444
|
LmvzChip,
|
|
376
445
|
LmvzHeader,
|
|
377
446
|
LmvzIcon,
|
|
378
447
|
LmvzInput,
|
|
379
448
|
LmvzMenuitem,
|
|
380
|
-
LmvzSelect
|
|
449
|
+
LmvzSelect,
|
|
450
|
+
LmvzToggle
|
|
381
451
|
];
|
|
382
452
|
|
|
383
453
|
class ValueAccessor {
|
|
@@ -420,6 +490,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
420
490
|
args: ['focusout']
|
|
421
491
|
}] } });
|
|
422
492
|
|
|
493
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
494
|
+
constructor(el) {
|
|
495
|
+
super(el);
|
|
496
|
+
}
|
|
497
|
+
writeValue(value) {
|
|
498
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
499
|
+
}
|
|
500
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
501
|
+
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: [
|
|
502
|
+
{
|
|
503
|
+
provide: NG_VALUE_ACCESSOR,
|
|
504
|
+
useExisting: forwardRef(() => BooleanValueAccessor),
|
|
505
|
+
multi: true
|
|
506
|
+
}
|
|
507
|
+
], usesInheritance: true, ngImport: i0 });
|
|
508
|
+
}
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
510
|
+
type: Directive,
|
|
511
|
+
args: [{
|
|
512
|
+
/* tslint:disable-next-line:directive-selector */
|
|
513
|
+
selector: 'lmvz-checkbox',
|
|
514
|
+
host: {
|
|
515
|
+
'(lmvzChange)': 'handleChangeEvent($event.target?.["checked"])'
|
|
516
|
+
},
|
|
517
|
+
providers: [
|
|
518
|
+
{
|
|
519
|
+
provide: NG_VALUE_ACCESSOR,
|
|
520
|
+
useExisting: forwardRef(() => BooleanValueAccessor),
|
|
521
|
+
multi: true
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
}]
|
|
525
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
526
|
+
|
|
423
527
|
class TextValueAccessor extends ValueAccessor {
|
|
424
528
|
constructor(el) {
|
|
425
529
|
super(el);
|
|
@@ -455,5 +559,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
455
559
|
* Generated bundle index. Do not edit.
|
|
456
560
|
*/
|
|
457
561
|
|
|
458
|
-
export { DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, TextValueAccessor, ValueAccessor };
|
|
562
|
+
export { BooleanValueAccessor, DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzCheckbox, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, LmvzToggle, TextValueAccessor, ValueAccessor };
|
|
459
563
|
//# 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: ['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.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":"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"}
|
|
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';\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: 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@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.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 d.LmvzToggle\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","defineLmvzToggle","d.LmvzAction","d.LmvzButton","d.LmvzCard","d.LmvzCheckbox","d.LmvzChip","d.LmvzHeader","d.LmvzIcon","d.LmvzInput","d.LmvzMenuitem","d.LmvzSelect","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.
|
|
3
|
+
"version": "0.21.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.21.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.8.1"
|
|
@@ -49,6 +49,21 @@ 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;
|
|
@@ -119,8 +134,22 @@ declare interface LmvzSelect extends Components.LmvzSelect {
|
|
|
119
134
|
*/
|
|
120
135
|
lmvzChange: EventEmitter<CustomEvent<string>>;
|
|
121
136
|
}
|
|
137
|
+
declare class LmvzToggle {
|
|
138
|
+
protected z: NgZone;
|
|
139
|
+
protected el: HTMLLmvzToggleElement;
|
|
140
|
+
lmvzChange: EventEmitter<CustomEvent<boolean>>;
|
|
141
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
142
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LmvzToggle, never>;
|
|
143
|
+
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>;
|
|
144
|
+
}
|
|
145
|
+
declare interface LmvzToggle extends Components.LmvzToggle {
|
|
146
|
+
/**
|
|
147
|
+
* Emitted when the toggle is switched. Event detail is the new checked state.
|
|
148
|
+
*/
|
|
149
|
+
lmvzChange: EventEmitter<CustomEvent<boolean>>;
|
|
150
|
+
}
|
|
122
151
|
|
|
123
|
-
declare const DIRECTIVES: (typeof LmvzAction | typeof LmvzButton | typeof LmvzCard | typeof LmvzChip | typeof LmvzHeader | typeof LmvzIcon | typeof LmvzInput | typeof LmvzMenuitem | typeof LmvzSelect)[];
|
|
152
|
+
declare const DIRECTIVES: (typeof LmvzAction | typeof LmvzButton | typeof LmvzCard | typeof LmvzCheckbox | typeof LmvzChip | typeof LmvzHeader | typeof LmvzIcon | typeof LmvzInput | typeof LmvzMenuitem | typeof LmvzSelect | typeof LmvzToggle)[];
|
|
124
153
|
|
|
125
154
|
declare class ValueAccessor implements ControlValueAccessor {
|
|
126
155
|
protected el: ElementRef;
|
|
@@ -138,10 +167,17 @@ declare class ValueAccessor implements ControlValueAccessor {
|
|
|
138
167
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, {}, {}, never, never, true, never>;
|
|
139
168
|
}
|
|
140
169
|
|
|
170
|
+
declare class BooleanValueAccessor extends ValueAccessor {
|
|
171
|
+
constructor(el: ElementRef);
|
|
172
|
+
writeValue(value: any): void;
|
|
173
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
|
|
174
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "lmvz-checkbox", never, {}, {}, never, never, true, never>;
|
|
175
|
+
}
|
|
176
|
+
|
|
141
177
|
declare class TextValueAccessor extends ValueAccessor {
|
|
142
178
|
constructor(el: ElementRef);
|
|
143
179
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextValueAccessor, never>;
|
|
144
180
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TextValueAccessor, "lmvz-input", never, {}, {}, never, never, true, never>;
|
|
145
181
|
}
|
|
146
182
|
|
|
147
|
-
export { DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, TextValueAccessor, ValueAccessor };
|
|
183
|
+
export { BooleanValueAccessor, DIRECTIVES, LmvzAction, LmvzButton, LmvzCard, LmvzCheckbox, LmvzChip, LmvzHeader, LmvzIcon, LmvzInput, LmvzInputValueChangeHelper, LmvzMenuitem, LmvzSelect, LmvzToggle, TextValueAccessor, ValueAccessor };
|