@siemens/ix-angular 0.0.0-pr-1522-20241022123832 → 0.0.0-pr-1724-20250228145306
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, __awaiter } 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 {
|
|
@@ -2585,6 +2768,193 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2585
2768
|
* LICENSE file in the root directory of this source tree.
|
|
2586
2769
|
*/
|
|
2587
2770
|
|
|
2771
|
+
class ValueAccessor {
|
|
2772
|
+
constructor(injector, elementRef, checkRequiredValidator = false) {
|
|
2773
|
+
this.injector = injector;
|
|
2774
|
+
this.elementRef = elementRef;
|
|
2775
|
+
this.checkRequiredValidator = checkRequiredValidator;
|
|
2776
|
+
this.onChange = () => {
|
|
2777
|
+
/**/
|
|
2778
|
+
};
|
|
2779
|
+
this.onTouched = () => {
|
|
2780
|
+
/**/
|
|
2781
|
+
};
|
|
2782
|
+
this.suppressClassMapping = false;
|
|
2783
|
+
}
|
|
2784
|
+
writeValue(value) {
|
|
2785
|
+
this.elementRef.nativeElement.value = this.lastValue = value;
|
|
2786
|
+
this.setClasses();
|
|
2787
|
+
}
|
|
2788
|
+
handleValueChange(el, value) {
|
|
2789
|
+
if (el === this.elementRef.nativeElement) {
|
|
2790
|
+
if (value !== this.lastValue) {
|
|
2791
|
+
this.lastValue = value;
|
|
2792
|
+
this.onChange(value);
|
|
2793
|
+
}
|
|
2794
|
+
this.setClasses();
|
|
2795
|
+
}
|
|
2796
|
+
}
|
|
2797
|
+
_handleBlurEvent(el) {
|
|
2798
|
+
if (el === this.elementRef.nativeElement) {
|
|
2799
|
+
this.onTouched();
|
|
2800
|
+
this.setClasses();
|
|
2801
|
+
}
|
|
2802
|
+
}
|
|
2803
|
+
registerOnChange(fn) {
|
|
2804
|
+
this.onChange = fn;
|
|
2805
|
+
}
|
|
2806
|
+
registerOnTouched(fn) {
|
|
2807
|
+
this.onTouched = fn;
|
|
2808
|
+
}
|
|
2809
|
+
setDisabledState(isDisabled) {
|
|
2810
|
+
this.elementRef.nativeElement.disabled = isDisabled;
|
|
2811
|
+
}
|
|
2812
|
+
ngOnDestroy() {
|
|
2813
|
+
if (this.statusChanges) {
|
|
2814
|
+
this.statusChanges.unsubscribe();
|
|
2815
|
+
}
|
|
2816
|
+
}
|
|
2817
|
+
ngAfterViewInit() {
|
|
2818
|
+
let ngControl = this.getAssignedNgControl();
|
|
2819
|
+
if (!ngControl) {
|
|
2820
|
+
return;
|
|
2821
|
+
}
|
|
2822
|
+
if (ngControl.statusChanges) {
|
|
2823
|
+
this.statusChanges = ngControl.statusChanges.subscribe(() => {
|
|
2824
|
+
this.setClasses();
|
|
2825
|
+
});
|
|
2826
|
+
}
|
|
2827
|
+
this.detourFormControlMethods(ngControl, this.elementRef);
|
|
2828
|
+
}
|
|
2829
|
+
getAssignedNgControl() {
|
|
2830
|
+
let ngControl = null;
|
|
2831
|
+
try {
|
|
2832
|
+
ngControl = this.injector.get(NgControl);
|
|
2833
|
+
}
|
|
2834
|
+
catch (_a) {
|
|
2835
|
+
/* No FormControl or ngModel binding */
|
|
2836
|
+
}
|
|
2837
|
+
return ngControl;
|
|
2838
|
+
}
|
|
2839
|
+
setClasses() {
|
|
2840
|
+
const ngControl = this.getAssignedNgControl();
|
|
2841
|
+
if (!ngControl) {
|
|
2842
|
+
return;
|
|
2843
|
+
}
|
|
2844
|
+
this.mapNgToIxClassNames(this.elementRef);
|
|
2845
|
+
}
|
|
2846
|
+
detourFormControlMethods(ngControl, elementRef) {
|
|
2847
|
+
const formControl = ngControl.control;
|
|
2848
|
+
if (formControl) {
|
|
2849
|
+
const methodsToPatch = [
|
|
2850
|
+
'markAsTouched',
|
|
2851
|
+
'markAllAsTouched',
|
|
2852
|
+
'markAsUntouched',
|
|
2853
|
+
'markAsDirty',
|
|
2854
|
+
'markAsPristine',
|
|
2855
|
+
];
|
|
2856
|
+
methodsToPatch.forEach((method) => {
|
|
2857
|
+
if (typeof formControl[method] !== 'undefined') {
|
|
2858
|
+
const oldFn = formControl[method].bind(formControl);
|
|
2859
|
+
formControl[method] = (...params) => {
|
|
2860
|
+
oldFn(...params);
|
|
2861
|
+
this.mapNgToIxClassNames(elementRef);
|
|
2862
|
+
};
|
|
2863
|
+
}
|
|
2864
|
+
});
|
|
2865
|
+
}
|
|
2866
|
+
}
|
|
2867
|
+
mapNgToIxClassNames(element) {
|
|
2868
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2869
|
+
if (this.suppressClassMapping) {
|
|
2870
|
+
return;
|
|
2871
|
+
}
|
|
2872
|
+
const input = element.nativeElement;
|
|
2873
|
+
setTimeout(() => __awaiter(this, void 0, void 0, function* () {
|
|
2874
|
+
const classes = this.getClasses(input);
|
|
2875
|
+
const classList = input.classList;
|
|
2876
|
+
classList.remove('ix-valid', 'ix-invalid', 'ix-touched', 'ix-untouched', 'ix-dirty', 'ix-pristine');
|
|
2877
|
+
classList.add(...classes);
|
|
2878
|
+
const ngControl = this.getAssignedNgControl();
|
|
2879
|
+
if (ngControl && this.checkRequiredValidator) {
|
|
2880
|
+
const { errors, touched } = ngControl;
|
|
2881
|
+
const hasOtherErrors = errors && Object.keys(errors).length > 1;
|
|
2882
|
+
const isRequiredButUntouched = (errors === null || errors === void 0 ? void 0 : errors.required) && !touched;
|
|
2883
|
+
if (hasOtherErrors === false && isRequiredButUntouched) {
|
|
2884
|
+
input.classList.remove('ix-invalid');
|
|
2885
|
+
}
|
|
2886
|
+
}
|
|
2887
|
+
}));
|
|
2888
|
+
});
|
|
2889
|
+
}
|
|
2890
|
+
getClasses(element) {
|
|
2891
|
+
const classList = element.classList;
|
|
2892
|
+
const classes = [];
|
|
2893
|
+
for (let i = 0; i < classList.length; i++) {
|
|
2894
|
+
const item = classList.item(i);
|
|
2895
|
+
if (item === null || item === void 0 ? void 0 : item.startsWith(ValueAccessor.ANGULAR_CLASS_PREFIX)) {
|
|
2896
|
+
classes.push(`ix-${item.substring(3)}`);
|
|
2897
|
+
}
|
|
2898
|
+
}
|
|
2899
|
+
return classes;
|
|
2900
|
+
}
|
|
2901
|
+
}
|
|
2902
|
+
ValueAccessor.ANGULAR_CLASS_PREFIX = 'ng-';
|
|
2903
|
+
/** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
2904
|
+
/** @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 });
|
|
2905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
2906
|
+
type: Directive
|
|
2907
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }, { type: undefined }]; }, propDecorators: { suppressClassMapping: [{
|
|
2908
|
+
type: Input
|
|
2909
|
+
}], _handleBlurEvent: [{
|
|
2910
|
+
type: HostListener,
|
|
2911
|
+
args: ['ixBlur', ['$event.target']]
|
|
2912
|
+
}] } });
|
|
2913
|
+
|
|
2914
|
+
/*
|
|
2915
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2916
|
+
*
|
|
2917
|
+
* SPDX-License-Identifier: MIT
|
|
2918
|
+
*
|
|
2919
|
+
* This source code is licensed under the MIT license found in the
|
|
2920
|
+
* LICENSE file in the root directory of this source tree.
|
|
2921
|
+
*/
|
|
2922
|
+
class TextValueAccessorDirective extends ValueAccessor {
|
|
2923
|
+
constructor(injector, el) {
|
|
2924
|
+
super(injector, el, true);
|
|
2925
|
+
}
|
|
2926
|
+
handleInputEvent(el) {
|
|
2927
|
+
super.handleValueChange(el, el.value);
|
|
2928
|
+
}
|
|
2929
|
+
}
|
|
2930
|
+
/** @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 });
|
|
2931
|
+
/** @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: [
|
|
2932
|
+
{
|
|
2933
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2934
|
+
useExisting: TextValueAccessorDirective,
|
|
2935
|
+
multi: true,
|
|
2936
|
+
},
|
|
2937
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
|
|
2939
|
+
type: Directive,
|
|
2940
|
+
args: [{
|
|
2941
|
+
selector: 'ix-input,ix-number-input,ix-textarea',
|
|
2942
|
+
providers: [
|
|
2943
|
+
{
|
|
2944
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2945
|
+
useExisting: TextValueAccessorDirective,
|
|
2946
|
+
multi: true,
|
|
2947
|
+
},
|
|
2948
|
+
],
|
|
2949
|
+
}]
|
|
2950
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
2951
|
+
type: HostListener,
|
|
2952
|
+
args: ['input', ['$event.target']]
|
|
2953
|
+
}, {
|
|
2954
|
+
type: HostListener,
|
|
2955
|
+
args: ['valueChange', ['$event.target']]
|
|
2956
|
+
}] } });
|
|
2957
|
+
|
|
2588
2958
|
let didInitialize = false;
|
|
2589
2959
|
const appInitialize = (doc) => {
|
|
2590
2960
|
return () => __awaiter(void 0, void 0, void 0, function* () {
|
|
@@ -2594,8 +2964,8 @@ const appInitialize = (doc) => {
|
|
|
2594
2964
|
return;
|
|
2595
2965
|
}
|
|
2596
2966
|
didInitialize = true;
|
|
2597
|
-
defineCustomElements();
|
|
2598
|
-
|
|
2967
|
+
yield defineCustomElements();
|
|
2968
|
+
defineCustomElements$1();
|
|
2599
2969
|
}
|
|
2600
2970
|
});
|
|
2601
2971
|
};
|
|
@@ -2616,11 +2986,15 @@ const DIRECTIVES = [
|
|
|
2616
2986
|
IxCardList,
|
|
2617
2987
|
IxCardTitle,
|
|
2618
2988
|
IxCategoryFilter,
|
|
2989
|
+
IxCheckbox,
|
|
2990
|
+
IxCheckboxGroup,
|
|
2619
2991
|
IxChip,
|
|
2620
2992
|
IxCol,
|
|
2621
2993
|
IxContent,
|
|
2622
2994
|
IxContentHeader,
|
|
2995
|
+
IxCustomField,
|
|
2623
2996
|
IxDateDropdown,
|
|
2997
|
+
IxDateInput,
|
|
2624
2998
|
IxDatePicker,
|
|
2625
2999
|
IxDatetimePicker,
|
|
2626
3000
|
IxDivider,
|
|
@@ -2634,19 +3008,22 @@ const DIRECTIVES = [
|
|
|
2634
3008
|
IxEventList,
|
|
2635
3009
|
IxEventListItem,
|
|
2636
3010
|
IxExpandingSearch,
|
|
3011
|
+
IxFieldLabel,
|
|
2637
3012
|
IxFilterChip,
|
|
2638
3013
|
IxFlipTile,
|
|
2639
3014
|
IxFlipTileContent,
|
|
2640
|
-
IxFormField,
|
|
2641
3015
|
IxGroup,
|
|
2642
3016
|
IxGroupContextMenu,
|
|
2643
3017
|
IxGroupItem,
|
|
3018
|
+
IxHelperText,
|
|
2644
3019
|
IxIconButton,
|
|
2645
3020
|
IxIconToggleButton,
|
|
3021
|
+
IxInput,
|
|
2646
3022
|
IxInputGroup,
|
|
2647
3023
|
IxKeyValue,
|
|
2648
3024
|
IxKeyValueList,
|
|
2649
3025
|
IxKpi,
|
|
3026
|
+
IxLayoutAuto,
|
|
2650
3027
|
IxLayoutGrid,
|
|
2651
3028
|
IxLinkButton,
|
|
2652
3029
|
IxMapNavigation,
|
|
@@ -2664,14 +3041,16 @@ const DIRECTIVES = [
|
|
|
2664
3041
|
IxMessageBar,
|
|
2665
3042
|
IxModal,
|
|
2666
3043
|
IxModalContent,
|
|
2667
|
-
IxModalExample,
|
|
2668
3044
|
IxModalFooter,
|
|
2669
3045
|
IxModalHeader,
|
|
3046
|
+
IxNumberInput,
|
|
2670
3047
|
IxPagination,
|
|
2671
3048
|
IxPane,
|
|
2672
3049
|
IxPaneLayout,
|
|
2673
3050
|
IxPill,
|
|
2674
3051
|
IxPushCard,
|
|
3052
|
+
IxRadio,
|
|
3053
|
+
IxRadioGroup,
|
|
2675
3054
|
IxRow,
|
|
2676
3055
|
IxSelect,
|
|
2677
3056
|
IxSelectItem,
|
|
@@ -2681,6 +3060,7 @@ const DIRECTIVES = [
|
|
|
2681
3060
|
IxSplitButtonItem,
|
|
2682
3061
|
IxTabItem,
|
|
2683
3062
|
IxTabs,
|
|
3063
|
+
IxTextarea,
|
|
2684
3064
|
IxTile,
|
|
2685
3065
|
IxTimePicker,
|
|
2686
3066
|
IxToast,
|
|
@@ -2696,37 +3076,6 @@ const DIRECTIVES = [
|
|
|
2696
3076
|
IxWorkflowSteps
|
|
2697
3077
|
];
|
|
2698
3078
|
|
|
2699
|
-
class SelectValueAccessor extends ValueAccessor {
|
|
2700
|
-
constructor(el) {
|
|
2701
|
-
super(el);
|
|
2702
|
-
}
|
|
2703
|
-
}
|
|
2704
|
-
/** @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 });
|
|
2705
|
-
/** @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: [
|
|
2706
|
-
{
|
|
2707
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2708
|
-
useExisting: SelectValueAccessor,
|
|
2709
|
-
multi: true
|
|
2710
|
-
}
|
|
2711
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2713
|
-
type: Directive,
|
|
2714
|
-
args: [{
|
|
2715
|
-
/* tslint:disable-next-line:directive-selector */
|
|
2716
|
-
selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
|
|
2717
|
-
host: {
|
|
2718
|
-
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
2719
|
-
},
|
|
2720
|
-
providers: [
|
|
2721
|
-
{
|
|
2722
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2723
|
-
useExisting: SelectValueAccessor,
|
|
2724
|
-
multi: true
|
|
2725
|
-
}
|
|
2726
|
-
]
|
|
2727
|
-
}]
|
|
2728
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2729
|
-
|
|
2730
3079
|
/*
|
|
2731
3080
|
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2732
3081
|
*
|
|
@@ -2899,6 +3248,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2899
3248
|
* LICENSE file in the root directory of this source tree.
|
|
2900
3249
|
*/
|
|
2901
3250
|
|
|
3251
|
+
/*
|
|
3252
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3253
|
+
*
|
|
3254
|
+
* SPDX-License-Identifier: MIT
|
|
3255
|
+
*
|
|
3256
|
+
* This source code is licensed under the MIT license found in the
|
|
3257
|
+
* LICENSE file in the root directory of this source tree.
|
|
3258
|
+
*/
|
|
3259
|
+
class SelectValueAccessorDirective extends ValueAccessor {
|
|
3260
|
+
constructor(injector, el) {
|
|
3261
|
+
super(injector, el, true);
|
|
3262
|
+
}
|
|
3263
|
+
handleChangeEvent(el) {
|
|
3264
|
+
super.handleValueChange(el, el.value);
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
/** @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 });
|
|
3268
|
+
/** @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: [
|
|
3269
|
+
{
|
|
3270
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3271
|
+
useExisting: SelectValueAccessorDirective,
|
|
3272
|
+
multi: true,
|
|
3273
|
+
},
|
|
3274
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
|
|
3276
|
+
type: Directive,
|
|
3277
|
+
args: [{
|
|
3278
|
+
selector: 'ix-select',
|
|
3279
|
+
providers: [
|
|
3280
|
+
{
|
|
3281
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3282
|
+
useExisting: SelectValueAccessorDirective,
|
|
3283
|
+
multi: true,
|
|
3284
|
+
},
|
|
3285
|
+
],
|
|
3286
|
+
}]
|
|
3287
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
|
|
3288
|
+
type: HostListener,
|
|
3289
|
+
args: ['valueChange', ['$event.target']]
|
|
3290
|
+
}] } });
|
|
3291
|
+
|
|
3292
|
+
/*
|
|
3293
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3294
|
+
*
|
|
3295
|
+
* SPDX-License-Identifier: MIT
|
|
3296
|
+
*
|
|
3297
|
+
* This source code is licensed under the MIT license found in the
|
|
3298
|
+
* LICENSE file in the root directory of this source tree.
|
|
3299
|
+
*/
|
|
3300
|
+
class RadioValueAccessorDirective extends ValueAccessor {
|
|
3301
|
+
constructor(injector, el) {
|
|
3302
|
+
super(injector, el);
|
|
3303
|
+
}
|
|
3304
|
+
writeValue(value) {
|
|
3305
|
+
this.lastValue = value;
|
|
3306
|
+
this.elementRef.nativeElement.checked =
|
|
3307
|
+
this.elementRef.nativeElement.value === value;
|
|
3308
|
+
super.mapNgToIxClassNames(this.elementRef);
|
|
3309
|
+
}
|
|
3310
|
+
handleChangeEvent(el) {
|
|
3311
|
+
super.handleValueChange(el, el.value);
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
/** @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 });
|
|
3315
|
+
/** @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: [
|
|
3316
|
+
{
|
|
3317
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3318
|
+
useExisting: RadioValueAccessorDirective,
|
|
3319
|
+
multi: true,
|
|
3320
|
+
},
|
|
3321
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, decorators: [{
|
|
3323
|
+
type: Directive,
|
|
3324
|
+
args: [{
|
|
3325
|
+
selector: 'ix-radio',
|
|
3326
|
+
providers: [
|
|
3327
|
+
{
|
|
3328
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3329
|
+
useExisting: RadioValueAccessorDirective,
|
|
3330
|
+
multi: true,
|
|
3331
|
+
},
|
|
3332
|
+
],
|
|
3333
|
+
}]
|
|
3334
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
|
|
3335
|
+
type: HostListener,
|
|
3336
|
+
args: ['checkedChange', ['$event.target']]
|
|
3337
|
+
}] } });
|
|
3338
|
+
|
|
3339
|
+
/*
|
|
3340
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3341
|
+
*
|
|
3342
|
+
* SPDX-License-Identifier: MIT
|
|
3343
|
+
*
|
|
3344
|
+
* This source code is licensed under the MIT license found in the
|
|
3345
|
+
* LICENSE file in the root directory of this source tree.
|
|
3346
|
+
*/
|
|
3347
|
+
class BooleanValueAccessorDirective extends ValueAccessor {
|
|
3348
|
+
constructor(injector, el) {
|
|
3349
|
+
super(injector, el, true);
|
|
3350
|
+
}
|
|
3351
|
+
writeValue(value) {
|
|
3352
|
+
this.elementRef.nativeElement.checked = this.lastValue = value;
|
|
3353
|
+
super.mapNgToIxClassNames(this.elementRef);
|
|
3354
|
+
}
|
|
3355
|
+
handleChangeEvent(el) {
|
|
3356
|
+
super.handleValueChange(el, el.checked);
|
|
3357
|
+
}
|
|
3358
|
+
}
|
|
3359
|
+
/** @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 });
|
|
3360
|
+
/** @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: [
|
|
3361
|
+
{
|
|
3362
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3363
|
+
useExisting: BooleanValueAccessorDirective,
|
|
3364
|
+
multi: true,
|
|
3365
|
+
},
|
|
3366
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3367
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
|
|
3368
|
+
type: Directive,
|
|
3369
|
+
args: [{
|
|
3370
|
+
selector: 'ix-checkbox,ix-toggle',
|
|
3371
|
+
providers: [
|
|
3372
|
+
{
|
|
3373
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3374
|
+
useExisting: BooleanValueAccessorDirective,
|
|
3375
|
+
multi: true,
|
|
3376
|
+
},
|
|
3377
|
+
],
|
|
3378
|
+
}]
|
|
3379
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
|
|
3380
|
+
type: HostListener,
|
|
3381
|
+
args: ['checkedChange', ['$event.target']]
|
|
3382
|
+
}] } });
|
|
3383
|
+
|
|
3384
|
+
/*
|
|
3385
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3386
|
+
*
|
|
3387
|
+
* SPDX-License-Identifier: MIT
|
|
3388
|
+
*
|
|
3389
|
+
* This source code is licensed under the MIT license found in the
|
|
3390
|
+
* LICENSE file in the root directory of this source tree.
|
|
3391
|
+
*/
|
|
3392
|
+
class DateValueAccessorDirective extends ValueAccessor {
|
|
3393
|
+
constructor(injector, el) {
|
|
3394
|
+
super(injector, el, true);
|
|
3395
|
+
}
|
|
3396
|
+
handleInputEvent(el) {
|
|
3397
|
+
super.handleValueChange(el, el.value);
|
|
3398
|
+
}
|
|
3399
|
+
}
|
|
3400
|
+
/** @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 });
|
|
3401
|
+
/** @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: [
|
|
3402
|
+
{
|
|
3403
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3404
|
+
useExisting: DateValueAccessorDirective,
|
|
3405
|
+
multi: true,
|
|
3406
|
+
},
|
|
3407
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, decorators: [{
|
|
3409
|
+
type: Directive,
|
|
3410
|
+
args: [{
|
|
3411
|
+
selector: 'ix-date-input',
|
|
3412
|
+
providers: [
|
|
3413
|
+
{
|
|
3414
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3415
|
+
useExisting: DateValueAccessorDirective,
|
|
3416
|
+
multi: true,
|
|
3417
|
+
},
|
|
3418
|
+
],
|
|
3419
|
+
}]
|
|
3420
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
3421
|
+
type: HostListener,
|
|
3422
|
+
args: ['valueChange', ['$event.target']]
|
|
3423
|
+
}] } });
|
|
3424
|
+
|
|
3425
|
+
/*
|
|
3426
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
3427
|
+
*
|
|
3428
|
+
* SPDX-License-Identifier: MIT
|
|
3429
|
+
*
|
|
3430
|
+
* This source code is licensed under the MIT license found in the
|
|
3431
|
+
* LICENSE file in the root directory of this source tree.
|
|
3432
|
+
*/
|
|
3433
|
+
|
|
2902
3434
|
/*
|
|
2903
3435
|
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2904
3436
|
*
|
|
@@ -2912,8 +3444,11 @@ const DECLARATIONS = [
|
|
|
2912
3444
|
IxTree,
|
|
2913
3445
|
IxDropdownTriggerDirective,
|
|
2914
3446
|
IxIcon,
|
|
2915
|
-
|
|
2916
|
-
|
|
3447
|
+
TextValueAccessorDirective,
|
|
3448
|
+
SelectValueAccessorDirective,
|
|
3449
|
+
RadioValueAccessorDirective,
|
|
3450
|
+
BooleanValueAccessorDirective,
|
|
3451
|
+
DateValueAccessorDirective,
|
|
2917
3452
|
];
|
|
2918
3453
|
class IxModule {
|
|
2919
3454
|
static forRoot() {
|
|
@@ -2934,13 +3469,19 @@ class IxModule {
|
|
|
2934
3469
|
}
|
|
2935
3470
|
}
|
|
2936
3471
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2937
|
-
/** @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,
|
|
3472
|
+
/** @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,
|
|
2938
3473
|
IxIcon,
|
|
2939
|
-
|
|
2940
|
-
|
|
3474
|
+
TextValueAccessorDirective,
|
|
3475
|
+
SelectValueAccessorDirective,
|
|
3476
|
+
RadioValueAccessorDirective,
|
|
3477
|
+
BooleanValueAccessorDirective,
|
|
3478
|
+
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,
|
|
2941
3479
|
IxIcon,
|
|
2942
|
-
|
|
2943
|
-
|
|
3480
|
+
TextValueAccessorDirective,
|
|
3481
|
+
SelectValueAccessorDirective,
|
|
3482
|
+
RadioValueAccessorDirective,
|
|
3483
|
+
BooleanValueAccessorDirective,
|
|
3484
|
+
DateValueAccessorDirective] });
|
|
2944
3485
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
|
|
2945
3486
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
|
|
2946
3487
|
type: NgModule,
|
|
@@ -2963,5 +3504,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2963
3504
|
* Generated bundle index. Do not edit.
|
|
2964
3505
|
*/
|
|
2965
3506
|
|
|
2966
|
-
export {
|
|
3507
|
+
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 };
|
|
2967
3508
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|