@siemens/ix-angular 0.0.0-pr-1522-20241022123832 → 0.0.0-pr-1724-20250305102750
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/components.d.ts +220 -25
- package/control-value-accessors/boolean-value-accessor.d.ts +10 -0
- package/control-value-accessors/date-value-accessor.d.ts +9 -0
- package/control-value-accessors/index.d.ts +5 -0
- package/control-value-accessors/radio-value-accessor.d.ts +10 -0
- package/control-value-accessors/select-value-accessor.d.ts +9 -0
- package/control-value-accessors/text-value-accessor.d.ts +9 -0
- package/control-value-accessors/value-accessor.d.ts +30 -0
- package/declare-components.d.ts +1 -1
- package/esm2020/app-initialize.mjs +2 -2
- package/esm2020/components.mjs +342 -77
- package/esm2020/control-value-accessors/boolean-value-accessor.mjs +49 -0
- package/esm2020/control-value-accessors/date-value-accessor.mjs +45 -0
- package/esm2020/control-value-accessors/index.mjs +14 -0
- package/esm2020/control-value-accessors/radio-value-accessor.mjs +51 -0
- package/esm2020/control-value-accessors/select-value-accessor.mjs +45 -0
- package/esm2020/control-value-accessors/text-value-accessor.mjs +48 -0
- package/esm2020/control-value-accessors/value-accessor.mjs +152 -0
- package/esm2020/declare-components.mjs +13 -3
- package/esm2020/index.mjs +2 -3
- package/esm2020/module.mjs +22 -10
- package/fesm2015/siemens-ix-angular.mjs +735 -194
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +741 -194
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/index.d.ts +1 -2
- package/module.d.ts +6 -3
- package/package.json +2 -2
- package/boolean-value-accessor.d.ts +0 -9
- package/esm2020/boolean-value-accessor.mjs +0 -38
- package/esm2020/select-value-accessor.mjs +0 -35
- package/esm2020/value-accessor.mjs +0 -40
- package/select-value-accessor.d.ts +0 -8
- package/value-accessor.d.ts +0 -18
|
@@ -1,85 +1,13 @@
|
|
|
1
1
|
import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
|
|
2
2
|
export * from '@siemens/ix';
|
|
3
|
-
import * as i0 from '@angular/core';
|
|
4
|
-
import { Directive, HostListener, Component, ChangeDetectionStrategy, Input, Type, Injector, ElementRef, Injectable, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
5
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
6
3
|
import { __decorate } from 'tslib';
|
|
4
|
+
import * as i0 from '@angular/core';
|
|
5
|
+
import { Component, ChangeDetectionStrategy, Directive, Input, Type, Injector, ElementRef, Injectable, HostListener, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
7
6
|
import { fromEvent } from 'rxjs';
|
|
7
|
+
import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
8
8
|
import { DOCUMENT } from '@angular/common';
|
|
9
|
-
import { defineCustomElements
|
|
10
|
-
import { defineCustomElements } from '@siemens/ix/loader';
|
|
11
|
-
|
|
12
|
-
class ValueAccessor {
|
|
13
|
-
constructor(el) {
|
|
14
|
-
this.el = el;
|
|
15
|
-
this.onChange = () => { };
|
|
16
|
-
this.onTouched = () => { };
|
|
17
|
-
}
|
|
18
|
-
writeValue(value) {
|
|
19
|
-
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
20
|
-
}
|
|
21
|
-
handleChangeEvent(value) {
|
|
22
|
-
if (value !== this.lastValue) {
|
|
23
|
-
this.lastValue = value;
|
|
24
|
-
this.onChange(value);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
_handleBlurEvent() {
|
|
28
|
-
this.onTouched();
|
|
29
|
-
}
|
|
30
|
-
registerOnChange(fn) {
|
|
31
|
-
this.onChange = fn;
|
|
32
|
-
}
|
|
33
|
-
registerOnTouched(fn) {
|
|
34
|
-
this.onTouched = fn;
|
|
35
|
-
}
|
|
36
|
-
setDisabledState(isDisabled) {
|
|
37
|
-
this.el.nativeElement.disabled = isDisabled;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
/** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
-
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
43
|
-
type: Directive,
|
|
44
|
-
args: [{}]
|
|
45
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
46
|
-
type: HostListener,
|
|
47
|
-
args: ['focusout']
|
|
48
|
-
}] } });
|
|
49
|
-
|
|
50
|
-
class BooleanValueAccessor extends ValueAccessor {
|
|
51
|
-
constructor(el) {
|
|
52
|
-
super(el);
|
|
53
|
-
}
|
|
54
|
-
writeValue(value) {
|
|
55
|
-
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
/** @nocollapse */ BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
59
|
-
/** @nocollapse */ BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: BooleanValueAccessor, selector: "ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]", host: { listeners: { "checkedChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
60
|
-
{
|
|
61
|
-
provide: NG_VALUE_ACCESSOR,
|
|
62
|
-
useExisting: BooleanValueAccessor,
|
|
63
|
-
multi: true
|
|
64
|
-
}
|
|
65
|
-
], usesInheritance: true, ngImport: i0 });
|
|
66
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
67
|
-
type: Directive,
|
|
68
|
-
args: [{
|
|
69
|
-
/* tslint:disable-next-line:directive-selector */
|
|
70
|
-
selector: 'ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]',
|
|
71
|
-
host: {
|
|
72
|
-
'(checkedChange)': 'handleChangeEvent($event.target.checked)'
|
|
73
|
-
},
|
|
74
|
-
providers: [
|
|
75
|
-
{
|
|
76
|
-
provide: NG_VALUE_ACCESSOR,
|
|
77
|
-
useExisting: BooleanValueAccessor,
|
|
78
|
-
multi: true
|
|
79
|
-
}
|
|
80
|
-
]
|
|
81
|
-
}]
|
|
82
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
9
|
+
import { defineCustomElements } from '@siemens/ix-icons/loader';
|
|
10
|
+
import { defineCustomElements as defineCustomElements$1 } from '@siemens/ix/loader';
|
|
83
11
|
|
|
84
12
|
/* eslint-disable */
|
|
85
13
|
const proxyInputs = (Cmp, inputs) => {
|
|
@@ -191,7 +119,7 @@ let IxApplicationHeader = class IxApplicationHeader {
|
|
|
191
119
|
this.z = z;
|
|
192
120
|
c.detach();
|
|
193
121
|
this.el = r.nativeElement;
|
|
194
|
-
proxyOutputs(this, this.el, ['menuToggle']);
|
|
122
|
+
proxyOutputs(this, this.el, ['menuToggle', 'openAppSwitch']);
|
|
195
123
|
}
|
|
196
124
|
};
|
|
197
125
|
/** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -479,7 +407,7 @@ let IxCategoryFilter = class IxCategoryFilter {
|
|
|
479
407
|
this.z = z;
|
|
480
408
|
c.detach();
|
|
481
409
|
this.el = r.nativeElement;
|
|
482
|
-
proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged']);
|
|
410
|
+
proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged', 'filterCleared']);
|
|
483
411
|
}
|
|
484
412
|
};
|
|
485
413
|
/** @nocollapse */ IxCategoryFilter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCategoryFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -499,6 +427,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
499
427
|
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
|
|
500
428
|
}]
|
|
501
429
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
430
|
+
let IxCheckbox = class IxCheckbox {
|
|
431
|
+
constructor(c, r, z) {
|
|
432
|
+
this.z = z;
|
|
433
|
+
c.detach();
|
|
434
|
+
this.el = r.nativeElement;
|
|
435
|
+
proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
|
|
436
|
+
}
|
|
437
|
+
};
|
|
438
|
+
/** @nocollapse */ IxCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
439
|
+
/** @nocollapse */ IxCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCheckbox, selector: "ix-checkbox", inputs: { checked: "checked", disabled: "disabled", indeterminate: "indeterminate", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
440
|
+
IxCheckbox = __decorate([
|
|
441
|
+
ProxyCmp({
|
|
442
|
+
inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value']
|
|
443
|
+
})
|
|
444
|
+
], IxCheckbox);
|
|
445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckbox, decorators: [{
|
|
446
|
+
type: Component,
|
|
447
|
+
args: [{
|
|
448
|
+
selector: 'ix-checkbox',
|
|
449
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
450
|
+
template: '<ng-content></ng-content>',
|
|
451
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
452
|
+
inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value'],
|
|
453
|
+
}]
|
|
454
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
455
|
+
let IxCheckboxGroup = class IxCheckboxGroup {
|
|
456
|
+
constructor(c, r, z) {
|
|
457
|
+
this.z = z;
|
|
458
|
+
c.detach();
|
|
459
|
+
this.el = r.nativeElement;
|
|
460
|
+
}
|
|
461
|
+
};
|
|
462
|
+
/** @nocollapse */ IxCheckboxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
463
|
+
/** @nocollapse */ IxCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCheckboxGroup, selector: "ix-checkbox-group", inputs: { direction: "direction", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", showTextAsTooltip: "showTextAsTooltip", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
464
|
+
IxCheckboxGroup = __decorate([
|
|
465
|
+
ProxyCmp({
|
|
466
|
+
inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'warningText']
|
|
467
|
+
})
|
|
468
|
+
], IxCheckboxGroup);
|
|
469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckboxGroup, decorators: [{
|
|
470
|
+
type: Component,
|
|
471
|
+
args: [{
|
|
472
|
+
selector: 'ix-checkbox-group',
|
|
473
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
474
|
+
template: '<ng-content></ng-content>',
|
|
475
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
476
|
+
inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'warningText'],
|
|
477
|
+
}]
|
|
478
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
502
479
|
let IxChip = class IxChip {
|
|
503
480
|
constructor(c, r, z) {
|
|
504
481
|
this.z = z;
|
|
@@ -508,10 +485,10 @@ let IxChip = class IxChip {
|
|
|
508
485
|
}
|
|
509
486
|
};
|
|
510
487
|
/** @nocollapse */ IxChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
511
|
-
/** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxChip, selector: "ix-chip", inputs: { active: "active", background: "background", chipColor: "chipColor", closable: "closable", color: "color", icon: "icon", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
488
|
+
/** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxChip, selector: "ix-chip", inputs: { active: "active", background: "background", chipColor: "chipColor", closable: "closable", color: "color", icon: "icon", outline: "outline", tooltipText: "tooltipText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
512
489
|
IxChip = __decorate([
|
|
513
490
|
ProxyCmp({
|
|
514
|
-
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'variant']
|
|
491
|
+
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'tooltipText', 'variant']
|
|
515
492
|
})
|
|
516
493
|
], IxChip);
|
|
517
494
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxChip, decorators: [{
|
|
@@ -521,7 +498,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
521
498
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
522
499
|
template: '<ng-content></ng-content>',
|
|
523
500
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
524
|
-
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'variant'],
|
|
501
|
+
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'tooltipText', 'variant'],
|
|
525
502
|
}]
|
|
526
503
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
527
504
|
let IxCol = class IxCol {
|
|
@@ -595,6 +572,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
595
572
|
inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
|
|
596
573
|
}]
|
|
597
574
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
575
|
+
let IxCustomField = class IxCustomField {
|
|
576
|
+
constructor(c, r, z) {
|
|
577
|
+
this.z = z;
|
|
578
|
+
c.detach();
|
|
579
|
+
this.el = r.nativeElement;
|
|
580
|
+
}
|
|
581
|
+
};
|
|
582
|
+
/** @nocollapse */ IxCustomField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCustomField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
583
|
+
/** @nocollapse */ IxCustomField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCustomField, selector: "ix-custom-field", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
584
|
+
IxCustomField = __decorate([
|
|
585
|
+
ProxyCmp({
|
|
586
|
+
inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText']
|
|
587
|
+
})
|
|
588
|
+
], IxCustomField);
|
|
589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCustomField, decorators: [{
|
|
590
|
+
type: Component,
|
|
591
|
+
args: [{
|
|
592
|
+
selector: 'ix-custom-field',
|
|
593
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
594
|
+
template: '<ng-content></ng-content>',
|
|
595
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
596
|
+
inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText'],
|
|
597
|
+
}]
|
|
598
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
598
599
|
let IxDateDropdown = class IxDateDropdown {
|
|
599
600
|
constructor(c, r, z) {
|
|
600
601
|
this.z = z;
|
|
@@ -604,10 +605,10 @@ let IxDateDropdown = class IxDateDropdown {
|
|
|
604
605
|
}
|
|
605
606
|
};
|
|
606
607
|
/** @nocollapse */ IxDateDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
607
|
-
/** @nocollapse */ IxDateDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDateDropdown, selector: "ix-date-dropdown", inputs: { customRangeAllowed: "customRangeAllowed", dateRangeId: "dateRangeId", dateRangeOptions: "dateRangeOptions", disabled: "disabled", format: "format", from: "from", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", maxDate: "maxDate", minDate: "minDate", range: "range", to: "to" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
608
|
+
/** @nocollapse */ IxDateDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDateDropdown, selector: "ix-date-dropdown", inputs: { customRangeAllowed: "customRangeAllowed", dateRangeId: "dateRangeId", dateRangeOptions: "dateRangeOptions", disabled: "disabled", format: "format", from: "from", ghost: "ghost", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", loading: "loading", locale: "locale", maxDate: "maxDate", minDate: "minDate", outline: "outline", range: "range", to: "to", variant: "variant", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
608
609
|
IxDateDropdown = __decorate([
|
|
609
610
|
ProxyCmp({
|
|
610
|
-
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
|
|
611
|
+
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'to', 'variant', 'weekStartIndex'],
|
|
611
612
|
methods: ['getDateRange']
|
|
612
613
|
})
|
|
613
614
|
], IxDateDropdown);
|
|
@@ -618,7 +619,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
618
619
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
619
620
|
template: '<ng-content></ng-content>',
|
|
620
621
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
621
|
-
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
|
|
622
|
+
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'to', 'variant', 'weekStartIndex'],
|
|
623
|
+
}]
|
|
624
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
625
|
+
let IxDateInput = class IxDateInput {
|
|
626
|
+
constructor(c, r, z) {
|
|
627
|
+
this.z = z;
|
|
628
|
+
c.detach();
|
|
629
|
+
this.el = r.nativeElement;
|
|
630
|
+
proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
|
|
631
|
+
}
|
|
632
|
+
};
|
|
633
|
+
/** @nocollapse */ IxDateInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
634
|
+
/** @nocollapse */ IxDateInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDateInput, selector: "ix-date-input", inputs: { disabled: "disabled", format: "format", helperText: "helperText", i18nErrorDateUnparsable: "i18nErrorDateUnparsable", infoText: "infoText", invalidText: "invalidText", label: "label", locale: "locale", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
635
|
+
IxDateInput = __decorate([
|
|
636
|
+
ProxyCmp({
|
|
637
|
+
inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
638
|
+
methods: ['getNativeInputElement', 'focusInput']
|
|
639
|
+
})
|
|
640
|
+
], IxDateInput);
|
|
641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateInput, decorators: [{
|
|
642
|
+
type: Component,
|
|
643
|
+
args: [{
|
|
644
|
+
selector: 'ix-date-input',
|
|
645
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
646
|
+
template: '<ng-content></ng-content>',
|
|
647
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
648
|
+
inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
622
649
|
}]
|
|
623
650
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
624
651
|
let IxDatePicker = class IxDatePicker {
|
|
@@ -924,10 +951,10 @@ let IxExpandingSearch = class IxExpandingSearch {
|
|
|
924
951
|
}
|
|
925
952
|
};
|
|
926
953
|
/** @nocollapse */ IxExpandingSearch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxExpandingSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
927
|
-
/** @nocollapse */ IxExpandingSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxExpandingSearch, selector: "ix-expanding-search", inputs: { fullWidth: "fullWidth", icon: "icon", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
954
|
+
/** @nocollapse */ IxExpandingSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxExpandingSearch, selector: "ix-expanding-search", inputs: { fullWidth: "fullWidth", ghost: "ghost", icon: "icon", outline: "outline", placeholder: "placeholder", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
928
955
|
IxExpandingSearch = __decorate([
|
|
929
956
|
ProxyCmp({
|
|
930
|
-
inputs: ['fullWidth', 'icon', 'placeholder', 'value']
|
|
957
|
+
inputs: ['fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant']
|
|
931
958
|
})
|
|
932
959
|
], IxExpandingSearch);
|
|
933
960
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxExpandingSearch, decorators: [{
|
|
@@ -937,7 +964,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
937
964
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
938
965
|
template: '<ng-content></ng-content>',
|
|
939
966
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
940
|
-
inputs: ['fullWidth', 'icon', 'placeholder', 'value'],
|
|
967
|
+
inputs: ['fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant'],
|
|
968
|
+
}]
|
|
969
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
970
|
+
let IxFieldLabel = class IxFieldLabel {
|
|
971
|
+
constructor(c, r, z) {
|
|
972
|
+
this.z = z;
|
|
973
|
+
c.detach();
|
|
974
|
+
this.el = r.nativeElement;
|
|
975
|
+
}
|
|
976
|
+
};
|
|
977
|
+
/** @nocollapse */ IxFieldLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
978
|
+
/** @nocollapse */ IxFieldLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFieldLabel, selector: "ix-field-label", inputs: { htmlFor: "htmlFor", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
979
|
+
IxFieldLabel = __decorate([
|
|
980
|
+
ProxyCmp({
|
|
981
|
+
inputs: ['htmlFor', 'required']
|
|
982
|
+
})
|
|
983
|
+
], IxFieldLabel);
|
|
984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFieldLabel, decorators: [{
|
|
985
|
+
type: Component,
|
|
986
|
+
args: [{
|
|
987
|
+
selector: 'ix-field-label',
|
|
988
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
989
|
+
template: '<ng-content></ng-content>',
|
|
990
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
991
|
+
inputs: ['htmlFor', 'required'],
|
|
941
992
|
}]
|
|
942
993
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
943
994
|
let IxFilterChip = class IxFilterChip {
|
|
@@ -970,13 +1021,14 @@ let IxFlipTile = class IxFlipTile {
|
|
|
970
1021
|
this.z = z;
|
|
971
1022
|
c.detach();
|
|
972
1023
|
this.el = r.nativeElement;
|
|
1024
|
+
proxyOutputs(this, this.el, ['toggle']);
|
|
973
1025
|
}
|
|
974
1026
|
};
|
|
975
1027
|
/** @nocollapse */ IxFlipTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
976
|
-
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFlipTile, selector: "ix-flip-tile", inputs: { height: "height", state: "state", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1028
|
+
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFlipTile, selector: "ix-flip-tile", inputs: { height: "height", index: "index", state: "state", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
977
1029
|
IxFlipTile = __decorate([
|
|
978
1030
|
ProxyCmp({
|
|
979
|
-
inputs: ['height', 'state', 'width']
|
|
1031
|
+
inputs: ['height', 'index', 'state', 'width']
|
|
980
1032
|
})
|
|
981
1033
|
], IxFlipTile);
|
|
982
1034
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTile, decorators: [{
|
|
@@ -986,7 +1038,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
986
1038
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
987
1039
|
template: '<ng-content></ng-content>',
|
|
988
1040
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
989
|
-
inputs: ['height', 'state', 'width'],
|
|
1041
|
+
inputs: ['height', 'index', 'state', 'width'],
|
|
990
1042
|
}]
|
|
991
1043
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
992
1044
|
let IxFlipTileContent = class IxFlipTileContent {
|
|
@@ -1011,30 +1063,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1011
1063
|
inputs: [],
|
|
1012
1064
|
}]
|
|
1013
1065
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1014
|
-
let IxFormField = class IxFormField {
|
|
1015
|
-
constructor(c, r, z) {
|
|
1016
|
-
this.z = z;
|
|
1017
|
-
c.detach();
|
|
1018
|
-
this.el = r.nativeElement;
|
|
1019
|
-
}
|
|
1020
|
-
};
|
|
1021
|
-
/** @nocollapse */ IxFormField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1022
|
-
/** @nocollapse */ IxFormField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFormField, selector: "ix-form-field", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1023
|
-
IxFormField = __decorate([
|
|
1024
|
-
ProxyCmp({
|
|
1025
|
-
inputs: ['label']
|
|
1026
|
-
})
|
|
1027
|
-
], IxFormField);
|
|
1028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, decorators: [{
|
|
1029
|
-
type: Component,
|
|
1030
|
-
args: [{
|
|
1031
|
-
selector: 'ix-form-field',
|
|
1032
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1033
|
-
template: '<ng-content></ng-content>',
|
|
1034
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1035
|
-
inputs: ['label'],
|
|
1036
|
-
}]
|
|
1037
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1038
1066
|
let IxGroup = class IxGroup {
|
|
1039
1067
|
constructor(c, r, z) {
|
|
1040
1068
|
this.z = z;
|
|
@@ -1107,6 +1135,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1107
1135
|
inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
|
|
1108
1136
|
}]
|
|
1109
1137
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1138
|
+
let IxHelperText = class IxHelperText {
|
|
1139
|
+
constructor(c, r, z) {
|
|
1140
|
+
this.z = z;
|
|
1141
|
+
c.detach();
|
|
1142
|
+
this.el = r.nativeElement;
|
|
1143
|
+
}
|
|
1144
|
+
};
|
|
1145
|
+
/** @nocollapse */ IxHelperText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1146
|
+
/** @nocollapse */ IxHelperText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxHelperText, selector: "ix-helper-text", inputs: { helperText: "helperText", htmlFor: "htmlFor", infoText: "infoText", invalidText: "invalidText", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1147
|
+
IxHelperText = __decorate([
|
|
1148
|
+
ProxyCmp({
|
|
1149
|
+
inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText']
|
|
1150
|
+
})
|
|
1151
|
+
], IxHelperText);
|
|
1152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, decorators: [{
|
|
1153
|
+
type: Component,
|
|
1154
|
+
args: [{
|
|
1155
|
+
selector: 'ix-helper-text',
|
|
1156
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1157
|
+
template: '<ng-content></ng-content>',
|
|
1158
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1159
|
+
inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText'],
|
|
1160
|
+
}]
|
|
1161
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1110
1162
|
let IxIconButton = class IxIconButton {
|
|
1111
1163
|
constructor(c, r, z) {
|
|
1112
1164
|
this.z = z;
|
|
@@ -1156,6 +1208,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1156
1208
|
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant'],
|
|
1157
1209
|
}]
|
|
1158
1210
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1211
|
+
let IxInput = class IxInput {
|
|
1212
|
+
constructor(c, r, z) {
|
|
1213
|
+
this.z = z;
|
|
1214
|
+
c.detach();
|
|
1215
|
+
this.el = r.nativeElement;
|
|
1216
|
+
proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
|
|
1217
|
+
}
|
|
1218
|
+
};
|
|
1219
|
+
/** @nocollapse */ IxInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1220
|
+
/** @nocollapse */ IxInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxInput, selector: "ix-input", inputs: { allowedCharactersPattern: "allowedCharactersPattern", disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", type: "type", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1221
|
+
IxInput = __decorate([
|
|
1222
|
+
ProxyCmp({
|
|
1223
|
+
inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
|
|
1224
|
+
methods: ['getNativeInputElement', 'focusInput']
|
|
1225
|
+
})
|
|
1226
|
+
], IxInput);
|
|
1227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInput, decorators: [{
|
|
1228
|
+
type: Component,
|
|
1229
|
+
args: [{
|
|
1230
|
+
selector: 'ix-input',
|
|
1231
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1232
|
+
template: '<ng-content></ng-content>',
|
|
1233
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1234
|
+
inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
|
|
1235
|
+
}]
|
|
1236
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1159
1237
|
let IxInputGroup = class IxInputGroup {
|
|
1160
1238
|
constructor(c, r, z) {
|
|
1161
1239
|
this.z = z;
|
|
@@ -1250,6 +1328,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1250
1328
|
inputs: ['label', 'orientation', 'state', 'unit', 'value'],
|
|
1251
1329
|
}]
|
|
1252
1330
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1331
|
+
let IxLayoutAuto = class IxLayoutAuto {
|
|
1332
|
+
constructor(c, r, z) {
|
|
1333
|
+
this.z = z;
|
|
1334
|
+
c.detach();
|
|
1335
|
+
this.el = r.nativeElement;
|
|
1336
|
+
}
|
|
1337
|
+
};
|
|
1338
|
+
/** @nocollapse */ IxLayoutAuto.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutAuto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1339
|
+
/** @nocollapse */ IxLayoutAuto.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLayoutAuto, selector: "ix-layout-auto", inputs: { layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1340
|
+
IxLayoutAuto = __decorate([
|
|
1341
|
+
ProxyCmp({
|
|
1342
|
+
inputs: ['layout']
|
|
1343
|
+
})
|
|
1344
|
+
], IxLayoutAuto);
|
|
1345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutAuto, decorators: [{
|
|
1346
|
+
type: Component,
|
|
1347
|
+
args: [{
|
|
1348
|
+
selector: 'ix-layout-auto',
|
|
1349
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1350
|
+
template: '<ng-content></ng-content>',
|
|
1351
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1352
|
+
inputs: ['layout'],
|
|
1353
|
+
}]
|
|
1354
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1253
1355
|
let IxLayoutGrid = class IxLayoutGrid {
|
|
1254
1356
|
constructor(c, r, z) {
|
|
1255
1357
|
this.z = z;
|
|
@@ -1354,7 +1456,7 @@ let IxMenu = class IxMenu {
|
|
|
1354
1456
|
this.z = z;
|
|
1355
1457
|
c.detach();
|
|
1356
1458
|
this.el = r.nativeElement;
|
|
1357
|
-
proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange']);
|
|
1459
|
+
proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange', 'openAppSwitch', 'openSettings', 'openAbout']);
|
|
1358
1460
|
}
|
|
1359
1461
|
};
|
|
1360
1462
|
/** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1380,7 +1482,7 @@ let IxMenuAbout = class IxMenuAbout {
|
|
|
1380
1482
|
this.z = z;
|
|
1381
1483
|
c.detach();
|
|
1382
1484
|
this.el = r.nativeElement;
|
|
1383
|
-
proxyOutputs(this, this.el, ['close']);
|
|
1485
|
+
proxyOutputs(this, this.el, ['tabChange', 'close']);
|
|
1384
1486
|
}
|
|
1385
1487
|
};
|
|
1386
1488
|
/** @nocollapse */ IxMenuAbout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAbout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1553,7 +1655,7 @@ let IxMenuSettings = class IxMenuSettings {
|
|
|
1553
1655
|
this.z = z;
|
|
1554
1656
|
c.detach();
|
|
1555
1657
|
this.el = r.nativeElement;
|
|
1556
|
-
proxyOutputs(this, this.el, ['close']);
|
|
1658
|
+
proxyOutputs(this, this.el, ['tabChange', 'close']);
|
|
1557
1659
|
}
|
|
1558
1660
|
};
|
|
1559
1661
|
/** @nocollapse */ IxMenuSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1603,7 +1705,7 @@ let IxMessageBar = class IxMessageBar {
|
|
|
1603
1705
|
this.z = z;
|
|
1604
1706
|
c.detach();
|
|
1605
1707
|
this.el = r.nativeElement;
|
|
1606
|
-
proxyOutputs(this, this.el, ['closedChange']);
|
|
1708
|
+
proxyOutputs(this, this.el, ['closedChange', 'closeAnimationCompleted']);
|
|
1607
1709
|
}
|
|
1608
1710
|
};
|
|
1609
1711
|
/** @nocollapse */ IxMessageBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMessageBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1671,28 +1773,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1671
1773
|
inputs: [],
|
|
1672
1774
|
}]
|
|
1673
1775
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1674
|
-
let IxModalExample = class IxModalExample {
|
|
1675
|
-
constructor(c, r, z) {
|
|
1676
|
-
this.z = z;
|
|
1677
|
-
c.detach();
|
|
1678
|
-
this.el = r.nativeElement;
|
|
1679
|
-
}
|
|
1680
|
-
};
|
|
1681
|
-
/** @nocollapse */ IxModalExample.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalExample, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1682
|
-
/** @nocollapse */ IxModalExample.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalExample, selector: "ix-modal-example", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1683
|
-
IxModalExample = __decorate([
|
|
1684
|
-
ProxyCmp({})
|
|
1685
|
-
], IxModalExample);
|
|
1686
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalExample, decorators: [{
|
|
1687
|
-
type: Component,
|
|
1688
|
-
args: [{
|
|
1689
|
-
selector: 'ix-modal-example',
|
|
1690
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1691
|
-
template: '<ng-content></ng-content>',
|
|
1692
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1693
|
-
inputs: [],
|
|
1694
|
-
}]
|
|
1695
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1696
1776
|
let IxModalFooter = class IxModalFooter {
|
|
1697
1777
|
constructor(c, r, z) {
|
|
1698
1778
|
this.z = z;
|
|
@@ -1740,6 +1820,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1740
1820
|
inputs: ['hideClose', 'icon', 'iconColor'],
|
|
1741
1821
|
}]
|
|
1742
1822
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1823
|
+
let IxNumberInput = class IxNumberInput {
|
|
1824
|
+
constructor(c, r, z) {
|
|
1825
|
+
this.z = z;
|
|
1826
|
+
c.detach();
|
|
1827
|
+
this.el = r.nativeElement;
|
|
1828
|
+
proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
|
|
1829
|
+
}
|
|
1830
|
+
};
|
|
1831
|
+
/** @nocollapse */ IxNumberInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1832
|
+
/** @nocollapse */ IxNumberInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxNumberInput, selector: "ix-number-input", inputs: { allowedCharactersPattern: "allowedCharactersPattern", disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", max: "max", min: "min", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showStepperButtons: "showStepperButtons", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1833
|
+
IxNumberInput = __decorate([
|
|
1834
|
+
ProxyCmp({
|
|
1835
|
+
inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
1836
|
+
methods: ['getNativeInputElement', 'focusInput']
|
|
1837
|
+
})
|
|
1838
|
+
], IxNumberInput);
|
|
1839
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberInput, decorators: [{
|
|
1840
|
+
type: Component,
|
|
1841
|
+
args: [{
|
|
1842
|
+
selector: 'ix-number-input',
|
|
1843
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1844
|
+
template: '<ng-content></ng-content>',
|
|
1845
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1846
|
+
inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
1847
|
+
}]
|
|
1848
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1743
1849
|
let IxPagination = class IxPagination {
|
|
1744
1850
|
constructor(c, r, z) {
|
|
1745
1851
|
this.z = z;
|
|
@@ -1822,10 +1928,10 @@ let IxPill = class IxPill {
|
|
|
1822
1928
|
}
|
|
1823
1929
|
};
|
|
1824
1930
|
/** @nocollapse */ IxPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1825
|
-
/** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPill, selector: "ix-pill", inputs: { alignLeft: "alignLeft", background: "background", color: "color", icon: "icon", outline: "outline", pillColor: "pillColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1931
|
+
/** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPill, selector: "ix-pill", inputs: { alignLeft: "alignLeft", background: "background", color: "color", icon: "icon", outline: "outline", pillColor: "pillColor", tooltipText: "tooltipText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1826
1932
|
IxPill = __decorate([
|
|
1827
1933
|
ProxyCmp({
|
|
1828
|
-
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant']
|
|
1934
|
+
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant']
|
|
1829
1935
|
})
|
|
1830
1936
|
], IxPill);
|
|
1831
1937
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPill, decorators: [{
|
|
@@ -1835,7 +1941,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1835
1941
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1836
1942
|
template: '<ng-content></ng-content>',
|
|
1837
1943
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1838
|
-
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant'],
|
|
1944
|
+
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant'],
|
|
1839
1945
|
}]
|
|
1840
1946
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1841
1947
|
let IxPushCard = class IxPushCard {
|
|
@@ -1862,6 +1968,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1862
1968
|
inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
|
|
1863
1969
|
}]
|
|
1864
1970
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1971
|
+
let IxRadio = class IxRadio {
|
|
1972
|
+
constructor(c, r, z) {
|
|
1973
|
+
this.z = z;
|
|
1974
|
+
c.detach();
|
|
1975
|
+
this.el = r.nativeElement;
|
|
1976
|
+
proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
|
|
1977
|
+
}
|
|
1978
|
+
};
|
|
1979
|
+
/** @nocollapse */ IxRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1980
|
+
/** @nocollapse */ IxRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRadio, selector: "ix-radio", inputs: { checked: "checked", disabled: "disabled", label: "label", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1981
|
+
IxRadio = __decorate([
|
|
1982
|
+
ProxyCmp({
|
|
1983
|
+
inputs: ['checked', 'disabled', 'label', 'name', 'value']
|
|
1984
|
+
})
|
|
1985
|
+
], IxRadio);
|
|
1986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, decorators: [{
|
|
1987
|
+
type: Component,
|
|
1988
|
+
args: [{
|
|
1989
|
+
selector: 'ix-radio',
|
|
1990
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1991
|
+
template: '<ng-content></ng-content>',
|
|
1992
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1993
|
+
inputs: ['checked', 'disabled', 'label', 'name', 'value'],
|
|
1994
|
+
}]
|
|
1995
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1996
|
+
let IxRadioGroup = class IxRadioGroup {
|
|
1997
|
+
constructor(c, r, z) {
|
|
1998
|
+
this.z = z;
|
|
1999
|
+
c.detach();
|
|
2000
|
+
this.el = r.nativeElement;
|
|
2001
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
2002
|
+
}
|
|
2003
|
+
};
|
|
2004
|
+
/** @nocollapse */ IxRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2005
|
+
/** @nocollapse */ IxRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRadioGroup, selector: "ix-radio-group", inputs: { direction: "direction", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2006
|
+
IxRadioGroup = __decorate([
|
|
2007
|
+
ProxyCmp({
|
|
2008
|
+
inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
|
|
2009
|
+
})
|
|
2010
|
+
], IxRadioGroup);
|
|
2011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, decorators: [{
|
|
2012
|
+
type: Component,
|
|
2013
|
+
args: [{
|
|
2014
|
+
selector: 'ix-radio-group',
|
|
2015
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2016
|
+
template: '<ng-content></ng-content>',
|
|
2017
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2018
|
+
inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
2019
|
+
}]
|
|
2020
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1865
2021
|
let IxRow = class IxRow {
|
|
1866
2022
|
constructor(c, r, z) {
|
|
1867
2023
|
this.z = z;
|
|
@@ -1889,14 +2045,15 @@ let IxSelect = class IxSelect {
|
|
|
1889
2045
|
this.z = z;
|
|
1890
2046
|
c.detach();
|
|
1891
2047
|
this.el = r.nativeElement;
|
|
1892
|
-
proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
|
|
2048
|
+
proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem', 'ixBlur']);
|
|
1893
2049
|
}
|
|
1894
2050
|
};
|
|
1895
2051
|
/** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1896
|
-
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", mode: "mode", readonly: "readonly", selectedIndices: "selectedIndices", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2052
|
+
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", dropdownMaxWidth: "dropdownMaxWidth", dropdownWidth: "dropdownWidth", editable: "editable", helperText: "helperText", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", infoText: "infoText", invalidText: "invalidText", label: "label", mode: "mode", name: "name", readonly: "readonly", required: "required", selectedIndices: "selectedIndices", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1897
2053
|
IxSelect = __decorate([
|
|
1898
2054
|
ProxyCmp({
|
|
1899
|
-
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
|
|
2055
|
+
inputs: ['allowClear', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
2056
|
+
methods: ['getNativeInputElement', 'focusInput']
|
|
1900
2057
|
})
|
|
1901
2058
|
], IxSelect);
|
|
1902
2059
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
|
|
@@ -1906,7 +2063,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
1906
2063
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1907
2064
|
template: '<ng-content></ng-content>',
|
|
1908
2065
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1909
|
-
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value'],
|
|
2066
|
+
inputs: ['allowClear', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
|
|
1910
2067
|
}]
|
|
1911
2068
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1912
2069
|
let IxSelectItem = class IxSelectItem {
|
|
@@ -2083,6 +2240,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2083
2240
|
inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
|
|
2084
2241
|
}]
|
|
2085
2242
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2243
|
+
let IxTextarea = class IxTextarea {
|
|
2244
|
+
constructor(c, r, z) {
|
|
2245
|
+
this.z = z;
|
|
2246
|
+
c.detach();
|
|
2247
|
+
this.el = r.nativeElement;
|
|
2248
|
+
proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
|
|
2249
|
+
}
|
|
2250
|
+
};
|
|
2251
|
+
/** @nocollapse */ IxTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2252
|
+
/** @nocollapse */ IxTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTextarea, selector: "ix-textarea", inputs: { disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resizeBehavior: "resizeBehavior", showTextAsTooltip: "showTextAsTooltip", textareaCols: "textareaCols", textareaHeight: "textareaHeight", textareaRows: "textareaRows", textareaWidth: "textareaWidth", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2253
|
+
IxTextarea = __decorate([
|
|
2254
|
+
ProxyCmp({
|
|
2255
|
+
inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
|
|
2256
|
+
methods: ['getNativeInputElement', 'focusInput']
|
|
2257
|
+
})
|
|
2258
|
+
], IxTextarea);
|
|
2259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextarea, decorators: [{
|
|
2260
|
+
type: Component,
|
|
2261
|
+
args: [{
|
|
2262
|
+
selector: 'ix-textarea',
|
|
2263
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2264
|
+
template: '<ng-content></ng-content>',
|
|
2265
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2266
|
+
inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
|
|
2267
|
+
}]
|
|
2268
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2086
2269
|
let IxTile = class IxTile {
|
|
2087
2270
|
constructor(c, r, z) {
|
|
2088
2271
|
this.z = z;
|
|
@@ -2192,10 +2375,10 @@ let IxToggle = class IxToggle {
|
|
|
2192
2375
|
}
|
|
2193
2376
|
};
|
|
2194
2377
|
/** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2195
|
-
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2378
|
+
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", name: "name", required: "required", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2196
2379
|
IxToggle = __decorate([
|
|
2197
2380
|
ProxyCmp({
|
|
2198
|
-
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
|
|
2381
|
+
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
|
|
2199
2382
|
})
|
|
2200
2383
|
], IxToggle);
|
|
2201
2384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
|
|
@@ -2205,7 +2388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2205
2388
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2206
2389
|
template: '<ng-content></ng-content>',
|
|
2207
2390
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2208
|
-
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
|
|
2391
|
+
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
|
|
2209
2392
|
}]
|
|
2210
2393
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2211
2394
|
let IxToggleButton = class IxToggleButton {
|
|
@@ -2588,6 +2771,199 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2588
2771
|
* LICENSE file in the root directory of this source tree.
|
|
2589
2772
|
*/
|
|
2590
2773
|
|
|
2774
|
+
/*
|
|
2775
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2776
|
+
*
|
|
2777
|
+
* SPDX-License-Identifier: MIT
|
|
2778
|
+
*
|
|
2779
|
+
* This source code is licensed under the MIT license found in the
|
|
2780
|
+
* LICENSE file in the root directory of this source tree.
|
|
2781
|
+
*/
|
|
2782
|
+
class ValueAccessor {
|
|
2783
|
+
constructor(injector, elementRef, checkRequiredValidator = false) {
|
|
2784
|
+
this.injector = injector;
|
|
2785
|
+
this.elementRef = elementRef;
|
|
2786
|
+
this.checkRequiredValidator = checkRequiredValidator;
|
|
2787
|
+
this.onChange = () => {
|
|
2788
|
+
/**/
|
|
2789
|
+
};
|
|
2790
|
+
this.onTouched = () => {
|
|
2791
|
+
/**/
|
|
2792
|
+
};
|
|
2793
|
+
this.suppressClassMapping = false;
|
|
2794
|
+
}
|
|
2795
|
+
writeValue(value) {
|
|
2796
|
+
this.elementRef.nativeElement.value = this.lastValue = value;
|
|
2797
|
+
this.setClasses();
|
|
2798
|
+
}
|
|
2799
|
+
handleValueChange(el, value) {
|
|
2800
|
+
if (el === this.elementRef.nativeElement) {
|
|
2801
|
+
if (value !== this.lastValue) {
|
|
2802
|
+
this.lastValue = value;
|
|
2803
|
+
this.onChange(value);
|
|
2804
|
+
}
|
|
2805
|
+
this.setClasses();
|
|
2806
|
+
}
|
|
2807
|
+
}
|
|
2808
|
+
_handleBlurEvent(el) {
|
|
2809
|
+
if (el === this.elementRef.nativeElement) {
|
|
2810
|
+
this.onTouched();
|
|
2811
|
+
this.setClasses();
|
|
2812
|
+
}
|
|
2813
|
+
}
|
|
2814
|
+
registerOnChange(fn) {
|
|
2815
|
+
this.onChange = fn;
|
|
2816
|
+
}
|
|
2817
|
+
registerOnTouched(fn) {
|
|
2818
|
+
this.onTouched = fn;
|
|
2819
|
+
}
|
|
2820
|
+
setDisabledState(isDisabled) {
|
|
2821
|
+
this.elementRef.nativeElement.disabled = isDisabled;
|
|
2822
|
+
}
|
|
2823
|
+
ngOnDestroy() {
|
|
2824
|
+
if (this.statusChanges) {
|
|
2825
|
+
this.statusChanges.unsubscribe();
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
2828
|
+
ngAfterViewInit() {
|
|
2829
|
+
let ngControl = this.getAssignedNgControl();
|
|
2830
|
+
if (!ngControl) {
|
|
2831
|
+
return;
|
|
2832
|
+
}
|
|
2833
|
+
if (ngControl.statusChanges) {
|
|
2834
|
+
this.statusChanges = ngControl.statusChanges.subscribe(() => {
|
|
2835
|
+
this.setClasses();
|
|
2836
|
+
});
|
|
2837
|
+
}
|
|
2838
|
+
this.detourFormControlMethods(ngControl, this.elementRef);
|
|
2839
|
+
}
|
|
2840
|
+
getAssignedNgControl() {
|
|
2841
|
+
let ngControl = null;
|
|
2842
|
+
try {
|
|
2843
|
+
ngControl = this.injector.get(NgControl);
|
|
2844
|
+
}
|
|
2845
|
+
catch {
|
|
2846
|
+
/* No FormControl or ngModel binding */
|
|
2847
|
+
}
|
|
2848
|
+
return ngControl;
|
|
2849
|
+
}
|
|
2850
|
+
setClasses() {
|
|
2851
|
+
const ngControl = this.getAssignedNgControl();
|
|
2852
|
+
if (!ngControl) {
|
|
2853
|
+
return;
|
|
2854
|
+
}
|
|
2855
|
+
this.mapNgToIxClassNames(this.elementRef);
|
|
2856
|
+
}
|
|
2857
|
+
detourFormControlMethods(ngControl, elementRef) {
|
|
2858
|
+
const formControl = ngControl.control;
|
|
2859
|
+
if (formControl) {
|
|
2860
|
+
const methodsToPatch = [
|
|
2861
|
+
'markAsTouched',
|
|
2862
|
+
'markAllAsTouched',
|
|
2863
|
+
'markAsUntouched',
|
|
2864
|
+
'markAsDirty',
|
|
2865
|
+
'markAsPristine',
|
|
2866
|
+
];
|
|
2867
|
+
methodsToPatch.forEach((method) => {
|
|
2868
|
+
if (typeof formControl[method] !== 'undefined') {
|
|
2869
|
+
const oldFn = formControl[method].bind(formControl);
|
|
2870
|
+
formControl[method] = (...params) => {
|
|
2871
|
+
oldFn(...params);
|
|
2872
|
+
this.mapNgToIxClassNames(elementRef);
|
|
2873
|
+
};
|
|
2874
|
+
}
|
|
2875
|
+
});
|
|
2876
|
+
}
|
|
2877
|
+
}
|
|
2878
|
+
async mapNgToIxClassNames(element) {
|
|
2879
|
+
if (this.suppressClassMapping) {
|
|
2880
|
+
return;
|
|
2881
|
+
}
|
|
2882
|
+
const input = element.nativeElement;
|
|
2883
|
+
setTimeout(async () => {
|
|
2884
|
+
const classes = this.getClasses(input);
|
|
2885
|
+
const classList = input.classList;
|
|
2886
|
+
classList.remove('ix-valid', 'ix-invalid', 'ix-touched', 'ix-untouched', 'ix-dirty', 'ix-pristine');
|
|
2887
|
+
classList.add(...classes);
|
|
2888
|
+
const ngControl = this.getAssignedNgControl();
|
|
2889
|
+
if (ngControl && this.checkRequiredValidator) {
|
|
2890
|
+
const { errors, touched } = ngControl;
|
|
2891
|
+
const hasOtherErrors = errors && Object.keys(errors).length > 1;
|
|
2892
|
+
const isRequiredButUntouched = errors?.required && !touched;
|
|
2893
|
+
if (hasOtherErrors === false && isRequiredButUntouched) {
|
|
2894
|
+
input.classList.remove('ix-invalid');
|
|
2895
|
+
}
|
|
2896
|
+
}
|
|
2897
|
+
});
|
|
2898
|
+
}
|
|
2899
|
+
getClasses(element) {
|
|
2900
|
+
const classList = element.classList;
|
|
2901
|
+
const classes = [];
|
|
2902
|
+
for (let i = 0; i < classList.length; i++) {
|
|
2903
|
+
const item = classList.item(i);
|
|
2904
|
+
if (item?.startsWith(ValueAccessor.ANGULAR_CLASS_PREFIX)) {
|
|
2905
|
+
classes.push(`ix-${item.substring(3)}`);
|
|
2906
|
+
}
|
|
2907
|
+
}
|
|
2908
|
+
return classes;
|
|
2909
|
+
}
|
|
2910
|
+
}
|
|
2911
|
+
ValueAccessor.ANGULAR_CLASS_PREFIX = 'ng-';
|
|
2912
|
+
/** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
2913
|
+
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, inputs: { suppressClassMapping: "suppressClassMapping" }, host: { listeners: { "ixBlur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
|
|
2914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
2915
|
+
type: Directive
|
|
2916
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }, { type: undefined }]; }, propDecorators: { suppressClassMapping: [{
|
|
2917
|
+
type: Input
|
|
2918
|
+
}], _handleBlurEvent: [{
|
|
2919
|
+
type: HostListener,
|
|
2920
|
+
args: ['ixBlur', ['$event.target']]
|
|
2921
|
+
}] } });
|
|
2922
|
+
|
|
2923
|
+
/*
|
|
2924
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2925
|
+
*
|
|
2926
|
+
* SPDX-License-Identifier: MIT
|
|
2927
|
+
*
|
|
2928
|
+
* This source code is licensed under the MIT license found in the
|
|
2929
|
+
* LICENSE file in the root directory of this source tree.
|
|
2930
|
+
*/
|
|
2931
|
+
class TextValueAccessorDirective extends ValueAccessor {
|
|
2932
|
+
constructor(injector, el) {
|
|
2933
|
+
super(injector, el, true);
|
|
2934
|
+
}
|
|
2935
|
+
handleInputEvent(el) {
|
|
2936
|
+
super.handleValueChange(el, el.value);
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
/** @nocollapse */ TextValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2940
|
+
/** @nocollapse */ TextValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: TextValueAccessorDirective, selector: "ix-input,ix-number-input,ix-textarea", host: { listeners: { "input": "handleInputEvent($event.target)", "valueChange": "handleInputEvent($event.target)" } }, providers: [
|
|
2941
|
+
{
|
|
2942
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2943
|
+
useExisting: TextValueAccessorDirective,
|
|
2944
|
+
multi: true,
|
|
2945
|
+
},
|
|
2946
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2947
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
|
|
2948
|
+
type: Directive,
|
|
2949
|
+
args: [{
|
|
2950
|
+
selector: 'ix-input,ix-number-input,ix-textarea',
|
|
2951
|
+
providers: [
|
|
2952
|
+
{
|
|
2953
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2954
|
+
useExisting: TextValueAccessorDirective,
|
|
2955
|
+
multi: true,
|
|
2956
|
+
},
|
|
2957
|
+
],
|
|
2958
|
+
}]
|
|
2959
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
2960
|
+
type: HostListener,
|
|
2961
|
+
args: ['input', ['$event.target']]
|
|
2962
|
+
}, {
|
|
2963
|
+
type: HostListener,
|
|
2964
|
+
args: ['valueChange', ['$event.target']]
|
|
2965
|
+
}] } });
|
|
2966
|
+
|
|
2591
2967
|
/*
|
|
2592
2968
|
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2593
2969
|
*
|
|
@@ -2605,8 +2981,8 @@ const appInitialize = (doc) => {
|
|
|
2605
2981
|
return;
|
|
2606
2982
|
}
|
|
2607
2983
|
didInitialize = true;
|
|
2608
|
-
defineCustomElements();
|
|
2609
|
-
|
|
2984
|
+
await defineCustomElements();
|
|
2985
|
+
defineCustomElements$1();
|
|
2610
2986
|
}
|
|
2611
2987
|
};
|
|
2612
2988
|
};
|
|
@@ -2627,11 +3003,15 @@ const DIRECTIVES = [
|
|
|
2627
3003
|
IxCardList,
|
|
2628
3004
|
IxCardTitle,
|
|
2629
3005
|
IxCategoryFilter,
|
|
3006
|
+
IxCheckbox,
|
|
3007
|
+
IxCheckboxGroup,
|
|
2630
3008
|
IxChip,
|
|
2631
3009
|
IxCol,
|
|
2632
3010
|
IxContent,
|
|
2633
3011
|
IxContentHeader,
|
|
3012
|
+
IxCustomField,
|
|
2634
3013
|
IxDateDropdown,
|
|
3014
|
+
IxDateInput,
|
|
2635
3015
|
IxDatePicker,
|
|
2636
3016
|
IxDatetimePicker,
|
|
2637
3017
|
IxDivider,
|
|
@@ -2645,19 +3025,22 @@ const DIRECTIVES = [
|
|
|
2645
3025
|
IxEventList,
|
|
2646
3026
|
IxEventListItem,
|
|
2647
3027
|
IxExpandingSearch,
|
|
3028
|
+
IxFieldLabel,
|
|
2648
3029
|
IxFilterChip,
|
|
2649
3030
|
IxFlipTile,
|
|
2650
3031
|
IxFlipTileContent,
|
|
2651
|
-
IxFormField,
|
|
2652
3032
|
IxGroup,
|
|
2653
3033
|
IxGroupContextMenu,
|
|
2654
3034
|
IxGroupItem,
|
|
3035
|
+
IxHelperText,
|
|
2655
3036
|
IxIconButton,
|
|
2656
3037
|
IxIconToggleButton,
|
|
3038
|
+
IxInput,
|
|
2657
3039
|
IxInputGroup,
|
|
2658
3040
|
IxKeyValue,
|
|
2659
3041
|
IxKeyValueList,
|
|
2660
3042
|
IxKpi,
|
|
3043
|
+
IxLayoutAuto,
|
|
2661
3044
|
IxLayoutGrid,
|
|
2662
3045
|
IxLinkButton,
|
|
2663
3046
|
IxMapNavigation,
|
|
@@ -2675,14 +3058,16 @@ const DIRECTIVES = [
|
|
|
2675
3058
|
IxMessageBar,
|
|
2676
3059
|
IxModal,
|
|
2677
3060
|
IxModalContent,
|
|
2678
|
-
IxModalExample,
|
|
2679
3061
|
IxModalFooter,
|
|
2680
3062
|
IxModalHeader,
|
|
3063
|
+
IxNumberInput,
|
|
2681
3064
|
IxPagination,
|
|
2682
3065
|
IxPane,
|
|
2683
3066
|
IxPaneLayout,
|
|
2684
3067
|
IxPill,
|
|
2685
3068
|
IxPushCard,
|
|
3069
|
+
IxRadio,
|
|
3070
|
+
IxRadioGroup,
|
|
2686
3071
|
IxRow,
|
|
2687
3072
|
IxSelect,
|
|
2688
3073
|
IxSelectItem,
|
|
@@ -2692,6 +3077,7 @@ const DIRECTIVES = [
|
|
|
2692
3077
|
IxSplitButtonItem,
|
|
2693
3078
|
IxTabItem,
|
|
2694
3079
|
IxTabs,
|
|
3080
|
+
IxTextarea,
|
|
2695
3081
|
IxTile,
|
|
2696
3082
|
IxTimePicker,
|
|
2697
3083
|
IxToast,
|
|
@@ -2707,37 +3093,6 @@ const DIRECTIVES = [
|
|
|
2707
3093
|
IxWorkflowSteps
|
|
2708
3094
|
];
|
|
2709
3095
|
|
|
2710
|
-
class SelectValueAccessor extends ValueAccessor {
|
|
2711
|
-
constructor(el) {
|
|
2712
|
-
super(el);
|
|
2713
|
-
}
|
|
2714
|
-
}
|
|
2715
|
-
/** @nocollapse */ SelectValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2716
|
-
/** @nocollapse */ SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: SelectValueAccessor, selector: "ix-select[ngModel],ix-select[formControlName],ix-select[formControl]", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2717
|
-
{
|
|
2718
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2719
|
-
useExisting: SelectValueAccessor,
|
|
2720
|
-
multi: true
|
|
2721
|
-
}
|
|
2722
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2724
|
-
type: Directive,
|
|
2725
|
-
args: [{
|
|
2726
|
-
/* tslint:disable-next-line:directive-selector */
|
|
2727
|
-
selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
|
|
2728
|
-
host: {
|
|
2729
|
-
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
2730
|
-
},
|
|
2731
|
-
providers: [
|
|
2732
|
-
{
|
|
2733
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2734
|
-
useExisting: SelectValueAccessor,
|
|
2735
|
-
multi: true
|
|
2736
|
-
}
|
|
2737
|
-
]
|
|
2738
|
-
}]
|
|
2739
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2740
|
-
|
|
2741
3096
|
/*
|
|
2742
3097
|
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2743
3098
|
*
|
|
@@ -2917,6 +3272,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2917
3272
|
* LICENSE file in the root directory of this source tree.
|
|
2918
3273
|
*/
|
|
2919
3274
|
|
|
3275
|
+
/*
|
|
3276
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3277
|
+
*
|
|
3278
|
+
* SPDX-License-Identifier: MIT
|
|
3279
|
+
*
|
|
3280
|
+
* This source code is licensed under the MIT license found in the
|
|
3281
|
+
* LICENSE file in the root directory of this source tree.
|
|
3282
|
+
*/
|
|
3283
|
+
class SelectValueAccessorDirective extends ValueAccessor {
|
|
3284
|
+
constructor(injector, el) {
|
|
3285
|
+
super(injector, el, true);
|
|
3286
|
+
}
|
|
3287
|
+
handleChangeEvent(el) {
|
|
3288
|
+
super.handleValueChange(el, el.value);
|
|
3289
|
+
}
|
|
3290
|
+
}
|
|
3291
|
+
/** @nocollapse */ SelectValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3292
|
+
/** @nocollapse */ SelectValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: SelectValueAccessorDirective, selector: "ix-select", host: { listeners: { "valueChange": "handleChangeEvent($event.target)" } }, providers: [
|
|
3293
|
+
{
|
|
3294
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3295
|
+
useExisting: SelectValueAccessorDirective,
|
|
3296
|
+
multi: true,
|
|
3297
|
+
},
|
|
3298
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
|
|
3300
|
+
type: Directive,
|
|
3301
|
+
args: [{
|
|
3302
|
+
selector: 'ix-select',
|
|
3303
|
+
providers: [
|
|
3304
|
+
{
|
|
3305
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3306
|
+
useExisting: SelectValueAccessorDirective,
|
|
3307
|
+
multi: true,
|
|
3308
|
+
},
|
|
3309
|
+
],
|
|
3310
|
+
}]
|
|
3311
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
|
|
3312
|
+
type: HostListener,
|
|
3313
|
+
args: ['valueChange', ['$event.target']]
|
|
3314
|
+
}] } });
|
|
3315
|
+
|
|
3316
|
+
/*
|
|
3317
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3318
|
+
*
|
|
3319
|
+
* SPDX-License-Identifier: MIT
|
|
3320
|
+
*
|
|
3321
|
+
* This source code is licensed under the MIT license found in the
|
|
3322
|
+
* LICENSE file in the root directory of this source tree.
|
|
3323
|
+
*/
|
|
3324
|
+
class RadioValueAccessorDirective extends ValueAccessor {
|
|
3325
|
+
constructor(injector, el) {
|
|
3326
|
+
super(injector, el);
|
|
3327
|
+
}
|
|
3328
|
+
writeValue(value) {
|
|
3329
|
+
this.lastValue = value;
|
|
3330
|
+
this.elementRef.nativeElement.checked =
|
|
3331
|
+
this.elementRef.nativeElement.value === value;
|
|
3332
|
+
super.mapNgToIxClassNames(this.elementRef);
|
|
3333
|
+
}
|
|
3334
|
+
handleChangeEvent(el) {
|
|
3335
|
+
super.handleValueChange(el, el.value);
|
|
3336
|
+
}
|
|
3337
|
+
}
|
|
3338
|
+
/** @nocollapse */ RadioValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3339
|
+
/** @nocollapse */ RadioValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: RadioValueAccessorDirective, selector: "ix-radio", host: { listeners: { "checkedChange": "handleChangeEvent($event.target)" } }, providers: [
|
|
3340
|
+
{
|
|
3341
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3342
|
+
useExisting: RadioValueAccessorDirective,
|
|
3343
|
+
multi: true,
|
|
3344
|
+
},
|
|
3345
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, decorators: [{
|
|
3347
|
+
type: Directive,
|
|
3348
|
+
args: [{
|
|
3349
|
+
selector: 'ix-radio',
|
|
3350
|
+
providers: [
|
|
3351
|
+
{
|
|
3352
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3353
|
+
useExisting: RadioValueAccessorDirective,
|
|
3354
|
+
multi: true,
|
|
3355
|
+
},
|
|
3356
|
+
],
|
|
3357
|
+
}]
|
|
3358
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
|
|
3359
|
+
type: HostListener,
|
|
3360
|
+
args: ['checkedChange', ['$event.target']]
|
|
3361
|
+
}] } });
|
|
3362
|
+
|
|
3363
|
+
/*
|
|
3364
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3365
|
+
*
|
|
3366
|
+
* SPDX-License-Identifier: MIT
|
|
3367
|
+
*
|
|
3368
|
+
* This source code is licensed under the MIT license found in the
|
|
3369
|
+
* LICENSE file in the root directory of this source tree.
|
|
3370
|
+
*/
|
|
3371
|
+
class BooleanValueAccessorDirective extends ValueAccessor {
|
|
3372
|
+
constructor(injector, el) {
|
|
3373
|
+
super(injector, el, true);
|
|
3374
|
+
}
|
|
3375
|
+
writeValue(value) {
|
|
3376
|
+
this.elementRef.nativeElement.checked = this.lastValue = value;
|
|
3377
|
+
super.mapNgToIxClassNames(this.elementRef);
|
|
3378
|
+
}
|
|
3379
|
+
handleChangeEvent(el) {
|
|
3380
|
+
super.handleValueChange(el, el.checked);
|
|
3381
|
+
}
|
|
3382
|
+
}
|
|
3383
|
+
/** @nocollapse */ BooleanValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3384
|
+
/** @nocollapse */ BooleanValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: BooleanValueAccessorDirective, selector: "ix-checkbox,ix-toggle", host: { listeners: { "checkedChange": "handleChangeEvent($event.target)" } }, providers: [
|
|
3385
|
+
{
|
|
3386
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3387
|
+
useExisting: BooleanValueAccessorDirective,
|
|
3388
|
+
multi: true,
|
|
3389
|
+
},
|
|
3390
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
|
|
3392
|
+
type: Directive,
|
|
3393
|
+
args: [{
|
|
3394
|
+
selector: 'ix-checkbox,ix-toggle',
|
|
3395
|
+
providers: [
|
|
3396
|
+
{
|
|
3397
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3398
|
+
useExisting: BooleanValueAccessorDirective,
|
|
3399
|
+
multi: true,
|
|
3400
|
+
},
|
|
3401
|
+
],
|
|
3402
|
+
}]
|
|
3403
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
|
|
3404
|
+
type: HostListener,
|
|
3405
|
+
args: ['checkedChange', ['$event.target']]
|
|
3406
|
+
}] } });
|
|
3407
|
+
|
|
3408
|
+
/*
|
|
3409
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3410
|
+
*
|
|
3411
|
+
* SPDX-License-Identifier: MIT
|
|
3412
|
+
*
|
|
3413
|
+
* This source code is licensed under the MIT license found in the
|
|
3414
|
+
* LICENSE file in the root directory of this source tree.
|
|
3415
|
+
*/
|
|
3416
|
+
class DateValueAccessorDirective extends ValueAccessor {
|
|
3417
|
+
constructor(injector, el) {
|
|
3418
|
+
super(injector, el, true);
|
|
3419
|
+
}
|
|
3420
|
+
handleInputEvent(el) {
|
|
3421
|
+
super.handleValueChange(el, el.value);
|
|
3422
|
+
}
|
|
3423
|
+
}
|
|
3424
|
+
/** @nocollapse */ DateValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3425
|
+
/** @nocollapse */ DateValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: DateValueAccessorDirective, selector: "ix-date-input", host: { listeners: { "valueChange": "handleInputEvent($event.target)" } }, providers: [
|
|
3426
|
+
{
|
|
3427
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3428
|
+
useExisting: DateValueAccessorDirective,
|
|
3429
|
+
multi: true,
|
|
3430
|
+
},
|
|
3431
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, decorators: [{
|
|
3433
|
+
type: Directive,
|
|
3434
|
+
args: [{
|
|
3435
|
+
selector: 'ix-date-input',
|
|
3436
|
+
providers: [
|
|
3437
|
+
{
|
|
3438
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3439
|
+
useExisting: DateValueAccessorDirective,
|
|
3440
|
+
multi: true,
|
|
3441
|
+
},
|
|
3442
|
+
],
|
|
3443
|
+
}]
|
|
3444
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
3445
|
+
type: HostListener,
|
|
3446
|
+
args: ['valueChange', ['$event.target']]
|
|
3447
|
+
}] } });
|
|
3448
|
+
|
|
3449
|
+
/*
|
|
3450
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3451
|
+
*
|
|
3452
|
+
* SPDX-License-Identifier: MIT
|
|
3453
|
+
*
|
|
3454
|
+
* This source code is licensed under the MIT license found in the
|
|
3455
|
+
* LICENSE file in the root directory of this source tree.
|
|
3456
|
+
*/
|
|
3457
|
+
|
|
2920
3458
|
/*
|
|
2921
3459
|
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2922
3460
|
*
|
|
@@ -2930,8 +3468,11 @@ const DECLARATIONS = [
|
|
|
2930
3468
|
IxTree,
|
|
2931
3469
|
IxDropdownTriggerDirective,
|
|
2932
3470
|
IxIcon,
|
|
2933
|
-
|
|
2934
|
-
|
|
3471
|
+
TextValueAccessorDirective,
|
|
3472
|
+
SelectValueAccessorDirective,
|
|
3473
|
+
RadioValueAccessorDirective,
|
|
3474
|
+
BooleanValueAccessorDirective,
|
|
3475
|
+
DateValueAccessorDirective,
|
|
2935
3476
|
];
|
|
2936
3477
|
class IxModule {
|
|
2937
3478
|
static forRoot() {
|
|
@@ -2952,13 +3493,19 @@ class IxModule {
|
|
|
2952
3493
|
}
|
|
2953
3494
|
}
|
|
2954
3495
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2955
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent,
|
|
3496
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2956
3497
|
IxIcon,
|
|
2957
|
-
|
|
2958
|
-
|
|
3498
|
+
TextValueAccessorDirective,
|
|
3499
|
+
SelectValueAccessorDirective,
|
|
3500
|
+
RadioValueAccessorDirective,
|
|
3501
|
+
BooleanValueAccessorDirective,
|
|
3502
|
+
DateValueAccessorDirective], exports: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2959
3503
|
IxIcon,
|
|
2960
|
-
|
|
2961
|
-
|
|
3504
|
+
TextValueAccessorDirective,
|
|
3505
|
+
SelectValueAccessorDirective,
|
|
3506
|
+
RadioValueAccessorDirective,
|
|
3507
|
+
BooleanValueAccessorDirective,
|
|
3508
|
+
DateValueAccessorDirective] });
|
|
2962
3509
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
|
|
2963
3510
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
|
|
2964
3511
|
type: NgModule,
|
|
@@ -2981,5 +3528,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2981
3528
|
* Generated bundle index. Do not edit.
|
|
2982
3529
|
*/
|
|
2983
3530
|
|
|
2984
|
-
export {
|
|
3531
|
+
export { BooleanValueAccessorDirective, DateValueAccessorDirective, IxActionCard, IxActiveModal, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIcon, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxModule, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, RadioValueAccessorDirective, SelectValueAccessorDirective, TextValueAccessorDirective, ThemeService, ToastService };
|
|
2985
3532
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|