@siemens/ix-angular 0.0.0-pr-1724-20250228145306 → 0.0.0-pr-1642-20250313082857

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.
Files changed (152) hide show
  1. package/{control-value-accessors → common/directives/control-value-accessors}/boolean-value-accessor.d.ts +3 -3
  2. package/common/directives/control-value-accessors/date-value-accessor.d.ts +9 -0
  3. package/{control-value-accessors → common/directives/control-value-accessors}/radio-value-accessor.d.ts +3 -3
  4. package/{control-value-accessors → common/directives/control-value-accessors}/select-value-accessor.d.ts +3 -3
  5. package/common/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  6. package/{control-value-accessors → common/directives/control-value-accessors}/value-accessor.d.ts +1 -1
  7. package/common/directives/dropdown-trigger.d.ts +10 -0
  8. package/{tree → common/directives}/tree.d.ts +5 -5
  9. package/common/index.d.ts +6 -0
  10. package/common/providers/modal/index.d.ts +3 -0
  11. package/{modal → common/providers/modal}/modal.config.d.ts +1 -1
  12. package/{modal → common/providers/modal}/modal.service.d.ts +5 -0
  13. package/{toast → common/providers/toast}/index.d.ts +1 -0
  14. package/{toast → common/providers/toast}/toast.config.d.ts +1 -1
  15. package/common/utils/create-value-accessor-provider.d.ts +2 -0
  16. package/components.d.ts +102 -133
  17. package/declare-components.d.ts +1 -1
  18. package/directives/control-value-accessors/boolean-value-accessor.d.ts +8 -0
  19. package/directives/control-value-accessors/date-value-accessor.d.ts +8 -0
  20. package/directives/control-value-accessors/index.d.ts +5 -0
  21. package/directives/control-value-accessors/radio-value-accessor.d.ts +8 -0
  22. package/directives/control-value-accessors/select-value-accessor.d.ts +8 -0
  23. package/directives/control-value-accessors/text-value-accessor.d.ts +8 -0
  24. package/directives/dropdown-trigger.d.ts +10 -0
  25. package/{esm2020 → esm2022}/angular-component-lib/utils.mjs +1 -1
  26. package/esm2022/common/directives/control-value-accessors/boolean-value-accessor.mjs +32 -0
  27. package/esm2022/common/directives/control-value-accessors/date-value-accessor.mjs +28 -0
  28. package/esm2022/common/directives/control-value-accessors/index.mjs +14 -0
  29. package/esm2022/common/directives/control-value-accessors/radio-value-accessor.mjs +34 -0
  30. package/esm2022/common/directives/control-value-accessors/select-value-accessor.mjs +28 -0
  31. package/esm2022/common/directives/control-value-accessors/text-value-accessor.mjs +31 -0
  32. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +157 -0
  33. package/esm2022/common/directives/dropdown-trigger.mjs +28 -0
  34. package/esm2022/common/directives/tree.mjs +70 -0
  35. package/esm2022/common/index.mjs +15 -0
  36. package/esm2022/common/providers/modal/index.mjs +11 -0
  37. package/esm2022/common/providers/modal/modal-ref.mjs +41 -0
  38. package/esm2022/common/providers/modal/modal.config.mjs +10 -0
  39. package/esm2022/common/providers/modal/modal.service.mjs +90 -0
  40. package/esm2022/common/providers/toast/index.mjs +11 -0
  41. package/esm2022/common/providers/toast/toast.config.mjs +10 -0
  42. package/esm2022/common/providers/toast/toast.service.mjs +52 -0
  43. package/esm2022/common/siemens-ix-angular-common.mjs +5 -0
  44. package/esm2022/common/utils/create-value-accessor-provider.mjs +17 -0
  45. package/esm2022/components.mjs +2809 -0
  46. package/{esm2020 → esm2022}/declare-components.mjs +1 -2
  47. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +26 -0
  48. package/esm2022/directives/control-value-accessors/date-value-accessor.mjs +26 -0
  49. package/esm2022/directives/control-value-accessors/index.mjs +14 -0
  50. package/esm2022/directives/control-value-accessors/radio-value-accessor.mjs +26 -0
  51. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +26 -0
  52. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +26 -0
  53. package/esm2022/directives/dropdown-trigger.mjs +31 -0
  54. package/esm2022/index.mjs +19 -0
  55. package/esm2022/ix-icon.mjs +40 -0
  56. package/esm2022/module.mjs +78 -0
  57. package/esm2022/providers/modal/index.mjs +11 -0
  58. package/esm2022/providers/modal/modal.service.mjs +28 -0
  59. package/esm2022/providers/theme/index.mjs +10 -0
  60. package/esm2022/providers/theme/theme.service.mjs +40 -0
  61. package/esm2022/providers/toast/index.mjs +2 -0
  62. package/esm2022/providers/toast/toast.service.mjs +52 -0
  63. package/esm2022/standalone/angular-component-lib/utils.mjs +59 -0
  64. package/esm2022/standalone/components.mjs +3126 -0
  65. package/esm2022/standalone/directives/control-value-accessors/boolean-value-accessor.mjs +30 -0
  66. package/esm2022/standalone/directives/control-value-accessors/date-value-accessor.mjs +30 -0
  67. package/esm2022/standalone/directives/control-value-accessors/index.mjs +14 -0
  68. package/esm2022/standalone/directives/control-value-accessors/radio-value-accessor.mjs +30 -0
  69. package/esm2022/standalone/directives/control-value-accessors/select-value-accessor.mjs +30 -0
  70. package/esm2022/standalone/directives/control-value-accessors/text-value-accessor.mjs +30 -0
  71. package/esm2022/standalone/directives/dropdown-trigger.mjs +32 -0
  72. package/esm2022/standalone/index.mjs +18 -0
  73. package/esm2022/standalone/internal-components.mjs +19 -0
  74. package/esm2022/standalone/ix-icon.mjs +44 -0
  75. package/esm2022/standalone/providers/modal.mjs +26 -0
  76. package/esm2022/standalone/providers/toast.mjs +31 -0
  77. package/esm2022/standalone/siemens-ix-angular-standalone.mjs +5 -0
  78. package/esm2022/standalone/tree.mjs +41 -0
  79. package/esm2022/standalone/utils/value-accessor-directives.mjs +23 -0
  80. package/esm2022/tree.mjs +39 -0
  81. package/esm2022/utils/app-initialize.mjs +25 -0
  82. package/fesm2022/siemens-ix-angular-common.mjs +633 -0
  83. package/fesm2022/siemens-ix-angular-common.mjs.map +1 -0
  84. package/fesm2022/siemens-ix-angular-standalone.mjs +3415 -0
  85. package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -0
  86. package/fesm2022/siemens-ix-angular.mjs +3307 -0
  87. package/fesm2022/siemens-ix-angular.mjs.map +1 -0
  88. package/index.d.ts +6 -6
  89. package/ix-icon.d.ts +1 -1
  90. package/module.d.ts +9 -9
  91. package/package.json +21 -15
  92. package/providers/modal/index.d.ts +2 -0
  93. package/providers/modal/modal.service.d.ts +15 -0
  94. package/{theme → providers/theme}/theme.service.d.ts +3 -2
  95. package/providers/toast/index.d.ts +2 -0
  96. package/providers/toast/toast.service.d.ts +9 -0
  97. package/standalone/angular-component-lib/utils.d.ts +9 -0
  98. package/standalone/components.d.ts +1330 -0
  99. package/standalone/directives/control-value-accessors/boolean-value-accessor.d.ts +11 -0
  100. package/standalone/directives/control-value-accessors/date-value-accessor.d.ts +11 -0
  101. package/standalone/directives/control-value-accessors/index.d.ts +5 -0
  102. package/standalone/directives/control-value-accessors/radio-value-accessor.d.ts +11 -0
  103. package/standalone/directives/control-value-accessors/select-value-accessor.d.ts +11 -0
  104. package/standalone/directives/control-value-accessors/text-value-accessor.d.ts +11 -0
  105. package/{dropdown/trigger.directive.d.ts → standalone/directives/dropdown-trigger.d.ts} +3 -3
  106. package/standalone/index.d.ts +9 -0
  107. package/standalone/internal-components.d.ts +1 -0
  108. package/standalone/ix-icon.d.ts +9 -0
  109. package/standalone/providers/modal.d.ts +11 -0
  110. package/standalone/providers/toast.d.ts +11 -0
  111. package/standalone/tree.d.ts +9 -0
  112. package/standalone/utils/value-accessor-directives.d.ts +16 -0
  113. package/tree.d.ts +9 -0
  114. package/utils/app-initialize.d.ts +1 -0
  115. package/app-initialize.d.ts +0 -1
  116. package/control-value-accessors/date-value-accessor.d.ts +0 -9
  117. package/control-value-accessors/text-value-accessor.d.ts +0 -9
  118. package/esm2020/app-initialize.mjs +0 -25
  119. package/esm2020/components.mjs +0 -2632
  120. package/esm2020/control-value-accessors/boolean-value-accessor.mjs +0 -49
  121. package/esm2020/control-value-accessors/date-value-accessor.mjs +0 -45
  122. package/esm2020/control-value-accessors/index.mjs +0 -14
  123. package/esm2020/control-value-accessors/radio-value-accessor.mjs +0 -51
  124. package/esm2020/control-value-accessors/select-value-accessor.mjs +0 -45
  125. package/esm2020/control-value-accessors/text-value-accessor.mjs +0 -48
  126. package/esm2020/control-value-accessors/value-accessor.mjs +0 -152
  127. package/esm2020/dropdown/trigger.directive.mjs +0 -29
  128. package/esm2020/index.mjs +0 -19
  129. package/esm2020/ix-icon.mjs +0 -38
  130. package/esm2020/modal/index.mjs +0 -11
  131. package/esm2020/modal/modal-ref.mjs +0 -39
  132. package/esm2020/modal/modal.config.mjs +0 -10
  133. package/esm2020/modal/modal.service.mjs +0 -87
  134. package/esm2020/module.mjs +0 -78
  135. package/esm2020/theme/index.mjs +0 -10
  136. package/esm2020/theme/theme.service.mjs +0 -38
  137. package/esm2020/toast/index.mjs +0 -10
  138. package/esm2020/toast/toast.config.mjs +0 -10
  139. package/esm2020/toast/toast.service.mjs +0 -52
  140. package/esm2020/tree/index.mjs +0 -10
  141. package/esm2020/tree/tree.mjs +0 -81
  142. package/fesm2015/siemens-ix-angular.mjs +0 -3508
  143. package/fesm2015/siemens-ix-angular.mjs.map +0 -1
  144. package/fesm2020/siemens-ix-angular.mjs +0 -3532
  145. package/fesm2020/siemens-ix-angular.mjs.map +0 -1
  146. package/modal/index.d.ts +0 -2
  147. package/tree/index.d.ts +0 -1
  148. /package/{control-value-accessors → common/directives/control-value-accessors}/index.d.ts +0 -0
  149. /package/{modal → common/providers/modal}/modal-ref.d.ts +0 -0
  150. /package/{toast → common/providers/toast}/toast.service.d.ts +0 -0
  151. /package/{esm2020 → esm2022}/siemens-ix-angular.mjs +0 -0
  152. /package/{theme → providers/theme}/index.d.ts +0 -0
@@ -1,3508 +0,0 @@
1
- import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
2
- export * from '@siemens/ix';
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';
6
- import { fromEvent } from 'rxjs';
7
- import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
8
- import { DOCUMENT } from '@angular/common';
9
- import { defineCustomElements } from '@siemens/ix-icons/loader';
10
- import { defineCustomElements as defineCustomElements$1 } from '@siemens/ix/loader';
11
-
12
- /* eslint-disable */
13
- const proxyInputs = (Cmp, inputs) => {
14
- const Prototype = Cmp.prototype;
15
- inputs.forEach((item) => {
16
- Object.defineProperty(Prototype, item, {
17
- get() {
18
- return this.el[item];
19
- },
20
- set(val) {
21
- this.z.runOutsideAngular(() => (this.el[item] = val));
22
- },
23
- /**
24
- * In the event that proxyInputs is called
25
- * multiple times re-defining these inputs
26
- * will cause an error to be thrown. As a result
27
- * we set configurable: true to indicate these
28
- * properties can be changed.
29
- */
30
- configurable: true,
31
- });
32
- });
33
- };
34
- const proxyMethods = (Cmp, methods) => {
35
- const Prototype = Cmp.prototype;
36
- methods.forEach((methodName) => {
37
- Prototype[methodName] = function () {
38
- const args = arguments;
39
- return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
40
- };
41
- });
42
- };
43
- const proxyOutputs = (instance, el, events) => {
44
- events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
45
- };
46
- const defineCustomElement = (tagName, customElement) => {
47
- if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
48
- customElements.define(tagName, customElement);
49
- }
50
- };
51
- // tslint:disable-next-line: only-arrow-functions
52
- function ProxyCmp(opts) {
53
- const decorator = function (cls) {
54
- const { defineCustomElementFn, inputs, methods } = opts;
55
- if (defineCustomElementFn !== undefined) {
56
- defineCustomElementFn();
57
- }
58
- if (inputs) {
59
- proxyInputs(cls, inputs);
60
- }
61
- if (methods) {
62
- proxyMethods(cls, methods);
63
- }
64
- return cls;
65
- };
66
- return decorator;
67
- }
68
-
69
- let IxActionCard = class IxActionCard {
70
- constructor(c, r, z) {
71
- this.z = z;
72
- c.detach();
73
- this.el = r.nativeElement;
74
- }
75
- };
76
- /** @nocollapse */ IxActionCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxActionCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
77
- /** @nocollapse */ IxActionCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxActionCard, selector: "ix-action-card", inputs: { heading: "heading", icon: "icon", selected: "selected", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
78
- IxActionCard = __decorate([
79
- ProxyCmp({
80
- inputs: ['heading', 'icon', 'selected', 'subheading', 'variant']
81
- })
82
- ], IxActionCard);
83
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxActionCard, decorators: [{
84
- type: Component,
85
- args: [{
86
- selector: 'ix-action-card',
87
- changeDetection: ChangeDetectionStrategy.OnPush,
88
- template: '<ng-content></ng-content>',
89
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
90
- inputs: ['heading', 'icon', 'selected', 'subheading', 'variant'],
91
- }]
92
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
93
- let IxApplication = class IxApplication {
94
- constructor(c, r, z) {
95
- this.z = z;
96
- c.detach();
97
- this.el = r.nativeElement;
98
- }
99
- };
100
- /** @nocollapse */ IxApplication.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplication, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
101
- /** @nocollapse */ IxApplication.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplication, selector: "ix-application", inputs: { appSwitchConfig: "appSwitchConfig", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", theme: "theme", themeSystemAppearance: "themeSystemAppearance" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
102
- IxApplication = __decorate([
103
- ProxyCmp({
104
- inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance']
105
- })
106
- ], IxApplication);
107
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplication, decorators: [{
108
- type: Component,
109
- args: [{
110
- selector: 'ix-application',
111
- changeDetection: ChangeDetectionStrategy.OnPush,
112
- template: '<ng-content></ng-content>',
113
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
114
- inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance'],
115
- }]
116
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
117
- let IxApplicationHeader = class IxApplicationHeader {
118
- constructor(c, r, z) {
119
- this.z = z;
120
- c.detach();
121
- this.el = r.nativeElement;
122
- proxyOutputs(this, this.el, ['menuToggle', 'openAppSwitch']);
123
- }
124
- };
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 });
126
- /** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name", showMenu: "showMenu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
127
- IxApplicationHeader = __decorate([
128
- ProxyCmp({
129
- inputs: ['name', 'showMenu']
130
- })
131
- ], IxApplicationHeader);
132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, decorators: [{
133
- type: Component,
134
- args: [{
135
- selector: 'ix-application-header',
136
- changeDetection: ChangeDetectionStrategy.OnPush,
137
- template: '<ng-content></ng-content>',
138
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
139
- inputs: ['name', 'showMenu'],
140
- }]
141
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
142
- let IxAvatar = class IxAvatar {
143
- constructor(c, r, z) {
144
- this.z = z;
145
- c.detach();
146
- this.el = r.nativeElement;
147
- }
148
- };
149
- /** @nocollapse */ IxAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
150
- /** @nocollapse */ IxAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxAvatar, selector: "ix-avatar", inputs: { extra: "extra", image: "image", initials: "initials", username: "username" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
151
- IxAvatar = __decorate([
152
- ProxyCmp({
153
- inputs: ['extra', 'image', 'initials', 'username']
154
- })
155
- ], IxAvatar);
156
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxAvatar, decorators: [{
157
- type: Component,
158
- args: [{
159
- selector: 'ix-avatar',
160
- changeDetection: ChangeDetectionStrategy.OnPush,
161
- template: '<ng-content></ng-content>',
162
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
163
- inputs: ['extra', 'image', 'initials', 'username'],
164
- }]
165
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
166
- let IxBasicNavigation = class IxBasicNavigation {
167
- constructor(c, r, z) {
168
- this.z = z;
169
- c.detach();
170
- this.el = r.nativeElement;
171
- }
172
- };
173
- /** @nocollapse */ IxBasicNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBasicNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
174
- /** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBasicNavigation, selector: "ix-basic-navigation", inputs: { applicationName: "applicationName", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", hideHeader: "hideHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
175
- IxBasicNavigation = __decorate([
176
- ProxyCmp({
177
- inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader']
178
- })
179
- ], IxBasicNavigation);
180
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBasicNavigation, decorators: [{
181
- type: Component,
182
- args: [{
183
- selector: 'ix-basic-navigation',
184
- changeDetection: ChangeDetectionStrategy.OnPush,
185
- template: '<ng-content></ng-content>',
186
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
187
- inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader'],
188
- }]
189
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
190
- let IxBlind = class IxBlind {
191
- constructor(c, r, z) {
192
- this.z = z;
193
- c.detach();
194
- this.el = r.nativeElement;
195
- proxyOutputs(this, this.el, ['collapsedChange']);
196
- }
197
- };
198
- /** @nocollapse */ IxBlind.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBlind, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
199
- /** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBlind, selector: "ix-blind", inputs: { collapsed: "collapsed", icon: "icon", label: "label", sublabel: "sublabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
200
- IxBlind = __decorate([
201
- ProxyCmp({
202
- inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant']
203
- })
204
- ], IxBlind);
205
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBlind, decorators: [{
206
- type: Component,
207
- args: [{
208
- selector: 'ix-blind',
209
- changeDetection: ChangeDetectionStrategy.OnPush,
210
- template: '<ng-content></ng-content>',
211
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
212
- inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant'],
213
- }]
214
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
215
- let IxBreadcrumb = class IxBreadcrumb {
216
- constructor(c, r, z) {
217
- this.z = z;
218
- c.detach();
219
- this.el = r.nativeElement;
220
- proxyOutputs(this, this.el, ['itemClick', 'nextClick']);
221
- }
222
- };
223
- /** @nocollapse */ IxBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
224
- /** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBreadcrumb, selector: "ix-breadcrumb", inputs: { ariaLabelPreviousButton: "ariaLabelPreviousButton", ghost: "ghost", nextItems: "nextItems", visibleItemCount: "visibleItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
225
- IxBreadcrumb = __decorate([
226
- ProxyCmp({
227
- inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount']
228
- })
229
- ], IxBreadcrumb);
230
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumb, decorators: [{
231
- type: Component,
232
- args: [{
233
- selector: 'ix-breadcrumb',
234
- changeDetection: ChangeDetectionStrategy.OnPush,
235
- template: '<ng-content></ng-content>',
236
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
237
- inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount'],
238
- }]
239
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
240
- let IxBreadcrumbItem = class IxBreadcrumbItem {
241
- constructor(c, r, z) {
242
- this.z = z;
243
- c.detach();
244
- this.el = r.nativeElement;
245
- }
246
- };
247
- /** @nocollapse */ IxBreadcrumbItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
248
- /** @nocollapse */ IxBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBreadcrumbItem, selector: "ix-breadcrumb-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
249
- IxBreadcrumbItem = __decorate([
250
- ProxyCmp({
251
- inputs: ['icon', 'label']
252
- })
253
- ], IxBreadcrumbItem);
254
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumbItem, decorators: [{
255
- type: Component,
256
- args: [{
257
- selector: 'ix-breadcrumb-item',
258
- changeDetection: ChangeDetectionStrategy.OnPush,
259
- template: '<ng-content></ng-content>',
260
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
261
- inputs: ['icon', 'label'],
262
- }]
263
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
264
- let IxButton = class IxButton {
265
- constructor(c, r, z) {
266
- this.z = z;
267
- c.detach();
268
- this.el = r.nativeElement;
269
- }
270
- };
271
- /** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
272
- /** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
273
- IxButton = __decorate([
274
- ProxyCmp({
275
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant']
276
- })
277
- ], IxButton);
278
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxButton, decorators: [{
279
- type: Component,
280
- args: [{
281
- selector: 'ix-button',
282
- changeDetection: ChangeDetectionStrategy.OnPush,
283
- template: '<ng-content></ng-content>',
284
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
285
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant'],
286
- }]
287
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
288
- let IxCard = class IxCard {
289
- constructor(c, r, z) {
290
- this.z = z;
291
- c.detach();
292
- this.el = r.nativeElement;
293
- }
294
- };
295
- /** @nocollapse */ IxCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
296
- /** @nocollapse */ IxCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCard, selector: "ix-card", inputs: { selected: "selected", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
297
- IxCard = __decorate([
298
- ProxyCmp({
299
- inputs: ['selected', 'variant']
300
- })
301
- ], IxCard);
302
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCard, decorators: [{
303
- type: Component,
304
- args: [{
305
- selector: 'ix-card',
306
- changeDetection: ChangeDetectionStrategy.OnPush,
307
- template: '<ng-content></ng-content>',
308
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
309
- inputs: ['selected', 'variant'],
310
- }]
311
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
312
- let IxCardAccordion = class IxCardAccordion {
313
- constructor(c, r, z) {
314
- this.z = z;
315
- c.detach();
316
- this.el = r.nativeElement;
317
- }
318
- };
319
- /** @nocollapse */ IxCardAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
320
- /** @nocollapse */ IxCardAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardAccordion, selector: "ix-card-accordion", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
321
- IxCardAccordion = __decorate([
322
- ProxyCmp({
323
- inputs: ['collapse']
324
- })
325
- ], IxCardAccordion);
326
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardAccordion, decorators: [{
327
- type: Component,
328
- args: [{
329
- selector: 'ix-card-accordion',
330
- changeDetection: ChangeDetectionStrategy.OnPush,
331
- template: '<ng-content></ng-content>',
332
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
333
- inputs: ['collapse'],
334
- }]
335
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
336
- let IxCardContent = class IxCardContent {
337
- constructor(c, r, z) {
338
- this.z = z;
339
- c.detach();
340
- this.el = r.nativeElement;
341
- }
342
- };
343
- /** @nocollapse */ IxCardContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
344
- /** @nocollapse */ IxCardContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardContent, selector: "ix-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
345
- IxCardContent = __decorate([
346
- ProxyCmp({})
347
- ], IxCardContent);
348
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardContent, decorators: [{
349
- type: Component,
350
- args: [{
351
- selector: 'ix-card-content',
352
- changeDetection: ChangeDetectionStrategy.OnPush,
353
- template: '<ng-content></ng-content>',
354
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
355
- inputs: [],
356
- }]
357
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
358
- let IxCardList = class IxCardList {
359
- constructor(c, r, z) {
360
- this.z = z;
361
- c.detach();
362
- this.el = r.nativeElement;
363
- proxyOutputs(this, this.el, ['collapseChanged', 'showAllClick', 'showMoreCardClick']);
364
- }
365
- };
366
- /** @nocollapse */ IxCardList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
367
- /** @nocollapse */ IxCardList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardList, selector: "ix-card-list", inputs: { collapse: "collapse", hideShowAll: "hideShowAll", i18nMoreCards: "i18nMoreCards", i18nShowAll: "i18nShowAll", label: "label", listStyle: "listStyle", showAllCount: "showAllCount", suppressOverflowHandling: "suppressOverflowHandling" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
368
- IxCardList = __decorate([
369
- ProxyCmp({
370
- inputs: ['collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling']
371
- })
372
- ], IxCardList);
373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardList, decorators: [{
374
- type: Component,
375
- args: [{
376
- selector: 'ix-card-list',
377
- changeDetection: ChangeDetectionStrategy.OnPush,
378
- template: '<ng-content></ng-content>',
379
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
380
- inputs: ['collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling'],
381
- }]
382
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
383
- let IxCardTitle = class IxCardTitle {
384
- constructor(c, r, z) {
385
- this.z = z;
386
- c.detach();
387
- this.el = r.nativeElement;
388
- }
389
- };
390
- /** @nocollapse */ IxCardTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
391
- /** @nocollapse */ IxCardTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardTitle, selector: "ix-card-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
392
- IxCardTitle = __decorate([
393
- ProxyCmp({})
394
- ], IxCardTitle);
395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardTitle, decorators: [{
396
- type: Component,
397
- args: [{
398
- selector: 'ix-card-title',
399
- changeDetection: ChangeDetectionStrategy.OnPush,
400
- template: '<ng-content></ng-content>',
401
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
402
- inputs: [],
403
- }]
404
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
405
- let IxCategoryFilter = class IxCategoryFilter {
406
- constructor(c, r, z) {
407
- this.z = z;
408
- c.detach();
409
- this.el = r.nativeElement;
410
- proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged', 'filterCleared']);
411
- }
412
- };
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 });
414
- /** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCategoryFilter, selector: "ix-category-filter", inputs: { categories: "categories", disabled: "disabled", filterState: "filterState", hideIcon: "hideIcon", i18nPlainText: "i18nPlainText", icon: "icon", labelCategories: "labelCategories", nonSelectableCategories: "nonSelectableCategories", placeholder: "placeholder", readonly: "readonly", repeatCategories: "repeatCategories", staticOperator: "staticOperator", suggestions: "suggestions" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
415
- IxCategoryFilter = __decorate([
416
- ProxyCmp({
417
- inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions']
418
- })
419
- ], IxCategoryFilter);
420
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCategoryFilter, decorators: [{
421
- type: Component,
422
- args: [{
423
- selector: 'ix-category-filter',
424
- changeDetection: ChangeDetectionStrategy.OnPush,
425
- template: '<ng-content></ng-content>',
426
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
427
- inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
428
- }]
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 }]; } });
479
- let IxChip = class IxChip {
480
- constructor(c, r, z) {
481
- this.z = z;
482
- c.detach();
483
- this.el = r.nativeElement;
484
- proxyOutputs(this, this.el, ['closeChip']);
485
- }
486
- };
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 });
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 });
489
- IxChip = __decorate([
490
- ProxyCmp({
491
- inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'tooltipText', 'variant']
492
- })
493
- ], IxChip);
494
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxChip, decorators: [{
495
- type: Component,
496
- args: [{
497
- selector: 'ix-chip',
498
- changeDetection: ChangeDetectionStrategy.OnPush,
499
- template: '<ng-content></ng-content>',
500
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
501
- inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'tooltipText', 'variant'],
502
- }]
503
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
504
- let IxCol = class IxCol {
505
- constructor(c, r, z) {
506
- this.z = z;
507
- c.detach();
508
- this.el = r.nativeElement;
509
- }
510
- };
511
- /** @nocollapse */ IxCol.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
512
- /** @nocollapse */ IxCol.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCol, selector: "ix-col", inputs: { size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
513
- IxCol = __decorate([
514
- ProxyCmp({
515
- inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm']
516
- })
517
- ], IxCol);
518
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCol, decorators: [{
519
- type: Component,
520
- args: [{
521
- selector: 'ix-col',
522
- changeDetection: ChangeDetectionStrategy.OnPush,
523
- template: '<ng-content></ng-content>',
524
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
525
- inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm'],
526
- }]
527
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
528
- let IxContent = class IxContent {
529
- constructor(c, r, z) {
530
- this.z = z;
531
- c.detach();
532
- this.el = r.nativeElement;
533
- }
534
- };
535
- /** @nocollapse */ IxContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
536
- /** @nocollapse */ IxContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxContent, selector: "ix-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
537
- IxContent = __decorate([
538
- ProxyCmp({})
539
- ], IxContent);
540
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContent, decorators: [{
541
- type: Component,
542
- args: [{
543
- selector: 'ix-content',
544
- changeDetection: ChangeDetectionStrategy.OnPush,
545
- template: '<ng-content></ng-content>',
546
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
547
- inputs: [],
548
- }]
549
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
550
- let IxContentHeader = class IxContentHeader {
551
- constructor(c, r, z) {
552
- this.z = z;
553
- c.detach();
554
- this.el = r.nativeElement;
555
- proxyOutputs(this, this.el, ['backButtonClick']);
556
- }
557
- };
558
- /** @nocollapse */ IxContentHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContentHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
559
- /** @nocollapse */ IxContentHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxContentHeader, selector: "ix-content-header", inputs: { hasBackButton: "hasBackButton", headerSubtitle: "headerSubtitle", headerTitle: "headerTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
560
- IxContentHeader = __decorate([
561
- ProxyCmp({
562
- inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant']
563
- })
564
- ], IxContentHeader);
565
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContentHeader, decorators: [{
566
- type: Component,
567
- args: [{
568
- selector: 'ix-content-header',
569
- changeDetection: ChangeDetectionStrategy.OnPush,
570
- template: '<ng-content></ng-content>',
571
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
572
- inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
573
- }]
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 }]; } });
599
- let IxDateDropdown = class IxDateDropdown {
600
- constructor(c, r, z) {
601
- this.z = z;
602
- c.detach();
603
- this.el = r.nativeElement;
604
- proxyOutputs(this, this.el, ['dateRangeChange']);
605
- }
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 });
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 });
609
- IxDateDropdown = __decorate([
610
- ProxyCmp({
611
- inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'to', 'variant', 'weekStartIndex'],
612
- methods: ['getDateRange']
613
- })
614
- ], IxDateDropdown);
615
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateDropdown, decorators: [{
616
- type: Component,
617
- args: [{
618
- selector: 'ix-date-dropdown',
619
- changeDetection: ChangeDetectionStrategy.OnPush,
620
- template: '<ng-content></ng-content>',
621
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
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'],
649
- }]
650
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
651
- let IxDatePicker = class IxDatePicker {
652
- constructor(c, r, z) {
653
- this.z = z;
654
- c.detach();
655
- this.el = r.nativeElement;
656
- proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', 'dateSelect', 'done']);
657
- }
658
- };
659
- /** @nocollapse */ IxDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
660
- /** @nocollapse */ IxDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDatePicker, selector: "ix-date-picker", inputs: { corners: "corners", eventDelimiter: "eventDelimiter", format: "format", from: "from", i18nDone: "i18nDone", individual: "individual", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", textSelectDate: "textSelectDate", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
661
- IxDatePicker = __decorate([
662
- ProxyCmp({
663
- inputs: ['corners', 'eventDelimiter', 'format', 'from', 'i18nDone', 'individual', 'locale', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to', 'weekStartIndex'],
664
- methods: ['getCurrentDate']
665
- })
666
- ], IxDatePicker);
667
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatePicker, decorators: [{
668
- type: Component,
669
- args: [{
670
- selector: 'ix-date-picker',
671
- changeDetection: ChangeDetectionStrategy.OnPush,
672
- template: '<ng-content></ng-content>',
673
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
674
- inputs: ['corners', 'eventDelimiter', 'format', 'from', 'i18nDone', 'individual', 'locale', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to', 'weekStartIndex'],
675
- }]
676
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
677
- let IxDatetimePicker = class IxDatetimePicker {
678
- constructor(c, r, z) {
679
- this.z = z;
680
- c.detach();
681
- this.el = r.nativeElement;
682
- proxyOutputs(this, this.el, ['done', 'timeChange', 'dateChange', 'dateSelect']);
683
- }
684
- };
685
- /** @nocollapse */ IxDatetimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatetimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
686
- /** @nocollapse */ IxDatetimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDatetimePicker, selector: "ix-datetime-picker", inputs: { dateFormat: "dateFormat", eventDelimiter: "eventDelimiter", from: "from", i18nDone: "i18nDone", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", textSelectDate: "textSelectDate", time: "time", timeFormat: "timeFormat", timeReference: "timeReference", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
687
- IxDatetimePicker = __decorate([
688
- ProxyCmp({
689
- inputs: ['dateFormat', 'eventDelimiter', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex']
690
- })
691
- ], IxDatetimePicker);
692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatetimePicker, decorators: [{
693
- type: Component,
694
- args: [{
695
- selector: 'ix-datetime-picker',
696
- changeDetection: ChangeDetectionStrategy.OnPush,
697
- template: '<ng-content></ng-content>',
698
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
699
- inputs: ['dateFormat', 'eventDelimiter', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex'],
700
- }]
701
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
702
- let IxDivider = class IxDivider {
703
- constructor(c, r, z) {
704
- this.z = z;
705
- c.detach();
706
- this.el = r.nativeElement;
707
- }
708
- };
709
- /** @nocollapse */ IxDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
710
- /** @nocollapse */ IxDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDivider, selector: "ix-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
711
- IxDivider = __decorate([
712
- ProxyCmp({})
713
- ], IxDivider);
714
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDivider, decorators: [{
715
- type: Component,
716
- args: [{
717
- selector: 'ix-divider',
718
- changeDetection: ChangeDetectionStrategy.OnPush,
719
- template: '<ng-content></ng-content>',
720
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
721
- inputs: [],
722
- }]
723
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
724
- let IxDrawer = class IxDrawer {
725
- constructor(c, r, z) {
726
- this.z = z;
727
- c.detach();
728
- this.el = r.nativeElement;
729
- proxyOutputs(this, this.el, ['open', 'drawerClose']);
730
- }
731
- };
732
- /** @nocollapse */ IxDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
733
- /** @nocollapse */ IxDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDrawer, selector: "ix-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", fullHeight: "fullHeight", maxWidth: "maxWidth", minWidth: "minWidth", show: "show", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
734
- IxDrawer = __decorate([
735
- ProxyCmp({
736
- inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
737
- methods: ['toggleDrawer']
738
- })
739
- ], IxDrawer);
740
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDrawer, decorators: [{
741
- type: Component,
742
- args: [{
743
- selector: 'ix-drawer',
744
- changeDetection: ChangeDetectionStrategy.OnPush,
745
- template: '<ng-content></ng-content>',
746
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
747
- inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
748
- }]
749
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
750
- let IxDropdown = class IxDropdown {
751
- constructor(c, r, z) {
752
- this.z = z;
753
- c.detach();
754
- this.el = r.nativeElement;
755
- proxyOutputs(this, this.el, ['showChanged']);
756
- }
757
- };
758
- /** @nocollapse */ IxDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
759
- /** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdown, selector: "ix-dropdown", inputs: { anchor: "anchor", closeBehavior: "closeBehavior", header: "header", placement: "placement", positioningStrategy: "positioningStrategy", show: "show", suppressAutomaticPlacement: "suppressAutomaticPlacement", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
760
- IxDropdown = __decorate([
761
- ProxyCmp({
762
- inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
763
- methods: ['updatePosition']
764
- })
765
- ], IxDropdown);
766
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdown, decorators: [{
767
- type: Component,
768
- args: [{
769
- selector: 'ix-dropdown',
770
- changeDetection: ChangeDetectionStrategy.OnPush,
771
- template: '<ng-content></ng-content>',
772
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
773
- inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
774
- }]
775
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
776
- let IxDropdownButton = class IxDropdownButton {
777
- constructor(c, r, z) {
778
- this.z = z;
779
- c.detach();
780
- this.el = r.nativeElement;
781
- }
782
- };
783
- /** @nocollapse */ IxDropdownButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
784
- /** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { closeBehavior: "closeBehavior", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
785
- IxDropdownButton = __decorate([
786
- ProxyCmp({
787
- inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
788
- })
789
- ], IxDropdownButton);
790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownButton, decorators: [{
791
- type: Component,
792
- args: [{
793
- selector: 'ix-dropdown-button',
794
- changeDetection: ChangeDetectionStrategy.OnPush,
795
- template: '<ng-content></ng-content>',
796
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
797
- inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
798
- }]
799
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
800
- let IxDropdownHeader = class IxDropdownHeader {
801
- constructor(c, r, z) {
802
- this.z = z;
803
- c.detach();
804
- this.el = r.nativeElement;
805
- }
806
- };
807
- /** @nocollapse */ IxDropdownHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
808
- /** @nocollapse */ IxDropdownHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownHeader, selector: "ix-dropdown-header", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
809
- IxDropdownHeader = __decorate([
810
- ProxyCmp({
811
- inputs: ['label']
812
- })
813
- ], IxDropdownHeader);
814
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownHeader, decorators: [{
815
- type: Component,
816
- args: [{
817
- selector: 'ix-dropdown-header',
818
- changeDetection: ChangeDetectionStrategy.OnPush,
819
- template: '<ng-content></ng-content>',
820
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
821
- inputs: ['label'],
822
- }]
823
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
824
- let IxDropdownItem = class IxDropdownItem {
825
- constructor(c, r, z) {
826
- this.z = z;
827
- c.detach();
828
- this.el = r.nativeElement;
829
- }
830
- };
831
- /** @nocollapse */ IxDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
832
- /** @nocollapse */ IxDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownItem, selector: "ix-dropdown-item", inputs: { checked: "checked", disabled: "disabled", hover: "hover", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
833
- IxDropdownItem = __decorate([
834
- ProxyCmp({
835
- inputs: ['checked', 'disabled', 'hover', 'icon', 'label'],
836
- methods: ['emitItemClick']
837
- })
838
- ], IxDropdownItem);
839
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownItem, decorators: [{
840
- type: Component,
841
- args: [{
842
- selector: 'ix-dropdown-item',
843
- changeDetection: ChangeDetectionStrategy.OnPush,
844
- template: '<ng-content></ng-content>',
845
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
846
- inputs: ['checked', 'disabled', 'hover', 'icon', 'label'],
847
- }]
848
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
849
- let IxDropdownQuickActions = class IxDropdownQuickActions {
850
- constructor(c, r, z) {
851
- this.z = z;
852
- c.detach();
853
- this.el = r.nativeElement;
854
- }
855
- };
856
- /** @nocollapse */ IxDropdownQuickActions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownQuickActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
857
- /** @nocollapse */ IxDropdownQuickActions.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownQuickActions, selector: "ix-dropdown-quick-actions", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
858
- IxDropdownQuickActions = __decorate([
859
- ProxyCmp({})
860
- ], IxDropdownQuickActions);
861
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownQuickActions, decorators: [{
862
- type: Component,
863
- args: [{
864
- selector: 'ix-dropdown-quick-actions',
865
- changeDetection: ChangeDetectionStrategy.OnPush,
866
- template: '<ng-content></ng-content>',
867
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
868
- inputs: [],
869
- }]
870
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
871
- let IxEmptyState = class IxEmptyState {
872
- constructor(c, r, z) {
873
- this.z = z;
874
- c.detach();
875
- this.el = r.nativeElement;
876
- proxyOutputs(this, this.el, ['actionClick']);
877
- }
878
- };
879
- /** @nocollapse */ IxEmptyState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
880
- /** @nocollapse */ IxEmptyState.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxEmptyState, selector: "ix-empty-state", inputs: { action: "action", header: "header", icon: "icon", layout: "layout", subHeader: "subHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
881
- IxEmptyState = __decorate([
882
- ProxyCmp({
883
- inputs: ['action', 'header', 'icon', 'layout', 'subHeader']
884
- })
885
- ], IxEmptyState);
886
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEmptyState, decorators: [{
887
- type: Component,
888
- args: [{
889
- selector: 'ix-empty-state',
890
- changeDetection: ChangeDetectionStrategy.OnPush,
891
- template: '<ng-content></ng-content>',
892
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
893
- inputs: ['action', 'header', 'icon', 'layout', 'subHeader'],
894
- }]
895
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
896
- let IxEventList = class IxEventList {
897
- constructor(c, r, z) {
898
- this.z = z;
899
- c.detach();
900
- this.el = r.nativeElement;
901
- }
902
- };
903
- /** @nocollapse */ IxEventList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
904
- /** @nocollapse */ IxEventList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxEventList, selector: "ix-event-list", inputs: { animated: "animated", chevron: "chevron", compact: "compact", itemHeight: "itemHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
905
- IxEventList = __decorate([
906
- ProxyCmp({
907
- inputs: ['animated', 'chevron', 'compact', 'itemHeight']
908
- })
909
- ], IxEventList);
910
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventList, decorators: [{
911
- type: Component,
912
- args: [{
913
- selector: 'ix-event-list',
914
- changeDetection: ChangeDetectionStrategy.OnPush,
915
- template: '<ng-content></ng-content>',
916
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
917
- inputs: ['animated', 'chevron', 'compact', 'itemHeight'],
918
- }]
919
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
920
- let IxEventListItem = class IxEventListItem {
921
- constructor(c, r, z) {
922
- this.z = z;
923
- c.detach();
924
- this.el = r.nativeElement;
925
- proxyOutputs(this, this.el, ['itemClick']);
926
- }
927
- };
928
- /** @nocollapse */ IxEventListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
929
- /** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxEventListItem, selector: "ix-event-list-item", inputs: { chevron: "chevron", color: "color", disabled: "disabled", itemColor: "itemColor", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
930
- IxEventListItem = __decorate([
931
- ProxyCmp({
932
- inputs: ['chevron', 'color', 'disabled', 'itemColor', 'selected']
933
- })
934
- ], IxEventListItem);
935
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventListItem, decorators: [{
936
- type: Component,
937
- args: [{
938
- selector: 'ix-event-list-item',
939
- changeDetection: ChangeDetectionStrategy.OnPush,
940
- template: '<ng-content></ng-content>',
941
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
942
- inputs: ['chevron', 'color', 'disabled', 'itemColor', 'selected'],
943
- }]
944
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
945
- let IxExpandingSearch = class IxExpandingSearch {
946
- constructor(c, r, z) {
947
- this.z = z;
948
- c.detach();
949
- this.el = r.nativeElement;
950
- proxyOutputs(this, this.el, ['valueChange']);
951
- }
952
- };
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 });
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 });
955
- IxExpandingSearch = __decorate([
956
- ProxyCmp({
957
- inputs: ['fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant']
958
- })
959
- ], IxExpandingSearch);
960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxExpandingSearch, decorators: [{
961
- type: Component,
962
- args: [{
963
- selector: 'ix-expanding-search',
964
- changeDetection: ChangeDetectionStrategy.OnPush,
965
- template: '<ng-content></ng-content>',
966
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
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'],
992
- }]
993
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
994
- let IxFilterChip = class IxFilterChip {
995
- constructor(c, r, z) {
996
- this.z = z;
997
- c.detach();
998
- this.el = r.nativeElement;
999
- proxyOutputs(this, this.el, ['closeClick']);
1000
- }
1001
- };
1002
- /** @nocollapse */ IxFilterChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFilterChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1003
- /** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFilterChip, selector: "ix-filter-chip", inputs: { disabled: "disabled", readonly: "readonly" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1004
- IxFilterChip = __decorate([
1005
- ProxyCmp({
1006
- inputs: ['disabled', 'readonly']
1007
- })
1008
- ], IxFilterChip);
1009
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFilterChip, decorators: [{
1010
- type: Component,
1011
- args: [{
1012
- selector: 'ix-filter-chip',
1013
- changeDetection: ChangeDetectionStrategy.OnPush,
1014
- template: '<ng-content></ng-content>',
1015
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1016
- inputs: ['disabled', 'readonly'],
1017
- }]
1018
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1019
- let IxFlipTile = class IxFlipTile {
1020
- constructor(c, r, z) {
1021
- this.z = z;
1022
- c.detach();
1023
- this.el = r.nativeElement;
1024
- proxyOutputs(this, this.el, ['toggle']);
1025
- }
1026
- };
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 });
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 });
1029
- IxFlipTile = __decorate([
1030
- ProxyCmp({
1031
- inputs: ['height', 'index', 'state', 'width']
1032
- })
1033
- ], IxFlipTile);
1034
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTile, decorators: [{
1035
- type: Component,
1036
- args: [{
1037
- selector: 'ix-flip-tile',
1038
- changeDetection: ChangeDetectionStrategy.OnPush,
1039
- template: '<ng-content></ng-content>',
1040
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1041
- inputs: ['height', 'index', 'state', 'width'],
1042
- }]
1043
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1044
- let IxFlipTileContent = class IxFlipTileContent {
1045
- constructor(c, r, z) {
1046
- this.z = z;
1047
- c.detach();
1048
- this.el = r.nativeElement;
1049
- }
1050
- };
1051
- /** @nocollapse */ IxFlipTileContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTileContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1052
- /** @nocollapse */ IxFlipTileContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFlipTileContent, selector: "ix-flip-tile-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1053
- IxFlipTileContent = __decorate([
1054
- ProxyCmp({})
1055
- ], IxFlipTileContent);
1056
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTileContent, decorators: [{
1057
- type: Component,
1058
- args: [{
1059
- selector: 'ix-flip-tile-content',
1060
- changeDetection: ChangeDetectionStrategy.OnPush,
1061
- template: '<ng-content></ng-content>',
1062
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1063
- inputs: [],
1064
- }]
1065
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1066
- let IxGroup = class IxGroup {
1067
- constructor(c, r, z) {
1068
- this.z = z;
1069
- c.detach();
1070
- this.el = r.nativeElement;
1071
- proxyOutputs(this, this.el, ['selectGroup', 'selectItem', 'collapsedChanged']);
1072
- }
1073
- };
1074
- /** @nocollapse */ IxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1075
- /** @nocollapse */ IxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxGroup, selector: "ix-group", inputs: { collapsed: "collapsed", expandOnHeaderClick: "expandOnHeaderClick", header: "header", index: "index", selected: "selected", subHeader: "subHeader", suppressHeaderSelection: "suppressHeaderSelection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1076
- IxGroup = __decorate([
1077
- ProxyCmp({
1078
- inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
1079
- })
1080
- ], IxGroup);
1081
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroup, decorators: [{
1082
- type: Component,
1083
- args: [{
1084
- selector: 'ix-group',
1085
- changeDetection: ChangeDetectionStrategy.OnPush,
1086
- template: '<ng-content></ng-content>',
1087
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1088
- inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection'],
1089
- }]
1090
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1091
- let IxGroupContextMenu = class IxGroupContextMenu {
1092
- constructor(c, r, z) {
1093
- this.z = z;
1094
- c.detach();
1095
- this.el = r.nativeElement;
1096
- }
1097
- };
1098
- /** @nocollapse */ IxGroupContextMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1099
- /** @nocollapse */ IxGroupContextMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxGroupContextMenu, selector: "ix-group-context-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1100
- IxGroupContextMenu = __decorate([
1101
- ProxyCmp({})
1102
- ], IxGroupContextMenu);
1103
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupContextMenu, decorators: [{
1104
- type: Component,
1105
- args: [{
1106
- selector: 'ix-group-context-menu',
1107
- changeDetection: ChangeDetectionStrategy.OnPush,
1108
- template: '<ng-content></ng-content>',
1109
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1110
- inputs: [],
1111
- }]
1112
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1113
- let IxGroupItem = class IxGroupItem {
1114
- constructor(c, r, z) {
1115
- this.z = z;
1116
- c.detach();
1117
- this.el = r.nativeElement;
1118
- proxyOutputs(this, this.el, ['selectedChanged']);
1119
- }
1120
- };
1121
- /** @nocollapse */ IxGroupItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1122
- /** @nocollapse */ IxGroupItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxGroupItem, selector: "ix-group-item", inputs: { focusable: "focusable", icon: "icon", index: "index", secondaryText: "secondaryText", selected: "selected", suppressSelection: "suppressSelection", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1123
- IxGroupItem = __decorate([
1124
- ProxyCmp({
1125
- inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
1126
- })
1127
- ], IxGroupItem);
1128
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupItem, decorators: [{
1129
- type: Component,
1130
- args: [{
1131
- selector: 'ix-group-item',
1132
- changeDetection: ChangeDetectionStrategy.OnPush,
1133
- template: '<ng-content></ng-content>',
1134
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1135
- inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1136
- }]
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 }]; } });
1162
- let IxIconButton = class IxIconButton {
1163
- constructor(c, r, z) {
1164
- this.z = z;
1165
- c.detach();
1166
- this.el = r.nativeElement;
1167
- }
1168
- };
1169
- /** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1170
- /** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxIconButton, selector: "ix-icon-button", inputs: { a11yLabel: "a11yLabel", color: "color", disabled: "disabled", ghost: "ghost", icon: "icon", iconColor: "iconColor", loading: "loading", outline: "outline", oval: "oval", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1171
- IxIconButton = __decorate([
1172
- ProxyCmp({
1173
- inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
1174
- })
1175
- ], IxIconButton);
1176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconButton, decorators: [{
1177
- type: Component,
1178
- args: [{
1179
- selector: 'ix-icon-button',
1180
- changeDetection: ChangeDetectionStrategy.OnPush,
1181
- template: '<ng-content></ng-content>',
1182
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1183
- inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
1184
- }]
1185
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1186
- let IxIconToggleButton = class IxIconToggleButton {
1187
- constructor(c, r, z) {
1188
- this.z = z;
1189
- c.detach();
1190
- this.el = r.nativeElement;
1191
- proxyOutputs(this, this.el, ['pressedChange']);
1192
- }
1193
- };
1194
- /** @nocollapse */ IxIconToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1195
- /** @nocollapse */ IxIconToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxIconToggleButton, selector: "ix-icon-toggle-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", pressed: "pressed", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1196
- IxIconToggleButton = __decorate([
1197
- ProxyCmp({
1198
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant']
1199
- })
1200
- ], IxIconToggleButton);
1201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconToggleButton, decorators: [{
1202
- type: Component,
1203
- args: [{
1204
- selector: 'ix-icon-toggle-button',
1205
- changeDetection: ChangeDetectionStrategy.OnPush,
1206
- template: '<ng-content></ng-content>',
1207
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1208
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant'],
1209
- }]
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 }]; } });
1237
- let IxInputGroup = class IxInputGroup {
1238
- constructor(c, r, z) {
1239
- this.z = z;
1240
- c.detach();
1241
- this.el = r.nativeElement;
1242
- }
1243
- };
1244
- /** @nocollapse */ IxInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1245
- /** @nocollapse */ IxInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxInputGroup, selector: "ix-input-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1246
- IxInputGroup = __decorate([
1247
- ProxyCmp({})
1248
- ], IxInputGroup);
1249
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInputGroup, decorators: [{
1250
- type: Component,
1251
- args: [{
1252
- selector: 'ix-input-group',
1253
- changeDetection: ChangeDetectionStrategy.OnPush,
1254
- template: '<ng-content></ng-content>',
1255
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1256
- inputs: [],
1257
- }]
1258
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1259
- let IxKeyValue = class IxKeyValue {
1260
- constructor(c, r, z) {
1261
- this.z = z;
1262
- c.detach();
1263
- this.el = r.nativeElement;
1264
- }
1265
- };
1266
- /** @nocollapse */ IxKeyValue.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValue, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1267
- /** @nocollapse */ IxKeyValue.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxKeyValue, selector: "ix-key-value", inputs: { icon: "icon", label: "label", labelPosition: "labelPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1268
- IxKeyValue = __decorate([
1269
- ProxyCmp({
1270
- inputs: ['icon', 'label', 'labelPosition', 'value']
1271
- })
1272
- ], IxKeyValue);
1273
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValue, decorators: [{
1274
- type: Component,
1275
- args: [{
1276
- selector: 'ix-key-value',
1277
- changeDetection: ChangeDetectionStrategy.OnPush,
1278
- template: '<ng-content></ng-content>',
1279
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1280
- inputs: ['icon', 'label', 'labelPosition', 'value'],
1281
- }]
1282
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1283
- let IxKeyValueList = class IxKeyValueList {
1284
- constructor(c, r, z) {
1285
- this.z = z;
1286
- c.detach();
1287
- this.el = r.nativeElement;
1288
- }
1289
- };
1290
- /** @nocollapse */ IxKeyValueList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValueList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1291
- /** @nocollapse */ IxKeyValueList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxKeyValueList, selector: "ix-key-value-list", inputs: { striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1292
- IxKeyValueList = __decorate([
1293
- ProxyCmp({
1294
- inputs: ['striped']
1295
- })
1296
- ], IxKeyValueList);
1297
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValueList, decorators: [{
1298
- type: Component,
1299
- args: [{
1300
- selector: 'ix-key-value-list',
1301
- changeDetection: ChangeDetectionStrategy.OnPush,
1302
- template: '<ng-content></ng-content>',
1303
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1304
- inputs: ['striped'],
1305
- }]
1306
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1307
- let IxKpi = class IxKpi {
1308
- constructor(c, r, z) {
1309
- this.z = z;
1310
- c.detach();
1311
- this.el = r.nativeElement;
1312
- }
1313
- };
1314
- /** @nocollapse */ IxKpi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1315
- /** @nocollapse */ IxKpi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxKpi, selector: "ix-kpi", inputs: { label: "label", orientation: "orientation", state: "state", unit: "unit", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1316
- IxKpi = __decorate([
1317
- ProxyCmp({
1318
- inputs: ['label', 'orientation', 'state', 'unit', 'value']
1319
- })
1320
- ], IxKpi);
1321
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKpi, decorators: [{
1322
- type: Component,
1323
- args: [{
1324
- selector: 'ix-kpi',
1325
- changeDetection: ChangeDetectionStrategy.OnPush,
1326
- template: '<ng-content></ng-content>',
1327
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1328
- inputs: ['label', 'orientation', 'state', 'unit', 'value'],
1329
- }]
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 }]; } });
1355
- let IxLayoutGrid = class IxLayoutGrid {
1356
- constructor(c, r, z) {
1357
- this.z = z;
1358
- c.detach();
1359
- this.el = r.nativeElement;
1360
- }
1361
- };
1362
- /** @nocollapse */ IxLayoutGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1363
- /** @nocollapse */ IxLayoutGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLayoutGrid, selector: "ix-layout-grid", inputs: { columns: "columns", gap: "gap", noMargin: "noMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1364
- IxLayoutGrid = __decorate([
1365
- ProxyCmp({
1366
- inputs: ['columns', 'gap', 'noMargin']
1367
- })
1368
- ], IxLayoutGrid);
1369
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutGrid, decorators: [{
1370
- type: Component,
1371
- args: [{
1372
- selector: 'ix-layout-grid',
1373
- changeDetection: ChangeDetectionStrategy.OnPush,
1374
- template: '<ng-content></ng-content>',
1375
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1376
- inputs: ['columns', 'gap', 'noMargin'],
1377
- }]
1378
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1379
- let IxLinkButton = class IxLinkButton {
1380
- constructor(c, r, z) {
1381
- this.z = z;
1382
- c.detach();
1383
- this.el = r.nativeElement;
1384
- }
1385
- };
1386
- /** @nocollapse */ IxLinkButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLinkButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1387
- /** @nocollapse */ IxLinkButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLinkButton, selector: "ix-link-button", inputs: { disabled: "disabled", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1388
- IxLinkButton = __decorate([
1389
- ProxyCmp({
1390
- inputs: ['disabled', 'target', 'url']
1391
- })
1392
- ], IxLinkButton);
1393
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLinkButton, decorators: [{
1394
- type: Component,
1395
- args: [{
1396
- selector: 'ix-link-button',
1397
- changeDetection: ChangeDetectionStrategy.OnPush,
1398
- template: '<ng-content></ng-content>',
1399
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1400
- inputs: ['disabled', 'target', 'url'],
1401
- }]
1402
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1403
- let IxMapNavigation = class IxMapNavigation {
1404
- constructor(c, r, z) {
1405
- this.z = z;
1406
- c.detach();
1407
- this.el = r.nativeElement;
1408
- proxyOutputs(this, this.el, ['navigationToggled', 'contextMenuClick']);
1409
- }
1410
- };
1411
- /** @nocollapse */ IxMapNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1412
- /** @nocollapse */ IxMapNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMapNavigation, selector: "ix-map-navigation", inputs: { applicationName: "applicationName", hideContextMenu: "hideContextMenu", navigationTitle: "navigationTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1413
- IxMapNavigation = __decorate([
1414
- ProxyCmp({
1415
- inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
1416
- methods: ['toggleSidebar', 'openOverlay', 'closeOverlay']
1417
- })
1418
- ], IxMapNavigation);
1419
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigation, decorators: [{
1420
- type: Component,
1421
- args: [{
1422
- selector: 'ix-map-navigation',
1423
- changeDetection: ChangeDetectionStrategy.OnPush,
1424
- template: '<ng-content></ng-content>',
1425
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1426
- inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
1427
- }]
1428
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1429
- let IxMapNavigationOverlay = class IxMapNavigationOverlay {
1430
- constructor(c, r, z) {
1431
- this.z = z;
1432
- c.detach();
1433
- this.el = r.nativeElement;
1434
- proxyOutputs(this, this.el, ['closeClick']);
1435
- }
1436
- };
1437
- /** @nocollapse */ IxMapNavigationOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigationOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1438
- /** @nocollapse */ IxMapNavigationOverlay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMapNavigationOverlay, selector: "ix-map-navigation-overlay", inputs: { color: "color", icon: "icon", iconColor: "iconColor", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1439
- IxMapNavigationOverlay = __decorate([
1440
- ProxyCmp({
1441
- inputs: ['color', 'icon', 'iconColor', 'name']
1442
- })
1443
- ], IxMapNavigationOverlay);
1444
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
1445
- type: Component,
1446
- args: [{
1447
- selector: 'ix-map-navigation-overlay',
1448
- changeDetection: ChangeDetectionStrategy.OnPush,
1449
- template: '<ng-content></ng-content>',
1450
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1451
- inputs: ['color', 'icon', 'iconColor', 'name'],
1452
- }]
1453
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1454
- let IxMenu = class IxMenu {
1455
- constructor(c, r, z) {
1456
- this.z = z;
1457
- c.detach();
1458
- this.el = r.nativeElement;
1459
- proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange', 'openAppSwitch', 'openSettings', 'openAbout']);
1460
- }
1461
- };
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 });
1463
- /** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableMapExpand: "enableMapExpand", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nExpandSidebar: "i18nExpandSidebar", i18nLegal: "i18nLegal", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", maxVisibleMenuItems: "maxVisibleMenuItems", pinned: "pinned", showAbout: "showAbout", showSettings: "showSettings", startExpanded: "startExpanded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1464
- IxMenu = __decorate([
1465
- ProxyCmp({
1466
- inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1467
- methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
1468
- })
1469
- ], IxMenu);
1470
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenu, decorators: [{
1471
- type: Component,
1472
- args: [{
1473
- selector: 'ix-menu',
1474
- changeDetection: ChangeDetectionStrategy.OnPush,
1475
- template: '<ng-content></ng-content>',
1476
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1477
- inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1478
- }]
1479
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1480
- let IxMenuAbout = class IxMenuAbout {
1481
- constructor(c, r, z) {
1482
- this.z = z;
1483
- c.detach();
1484
- this.el = r.nativeElement;
1485
- proxyOutputs(this, this.el, ['tabChange', 'close']);
1486
- }
1487
- };
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 });
1489
- /** @nocollapse */ IxMenuAbout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAbout, selector: "ix-menu-about", inputs: { activeTabLabel: "activeTabLabel", label: "label", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1490
- IxMenuAbout = __decorate([
1491
- ProxyCmp({
1492
- inputs: ['activeTabLabel', 'label', 'show']
1493
- })
1494
- ], IxMenuAbout);
1495
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAbout, decorators: [{
1496
- type: Component,
1497
- args: [{
1498
- selector: 'ix-menu-about',
1499
- changeDetection: ChangeDetectionStrategy.OnPush,
1500
- template: '<ng-content></ng-content>',
1501
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1502
- inputs: ['activeTabLabel', 'label', 'show'],
1503
- }]
1504
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1505
- let IxMenuAboutItem = class IxMenuAboutItem {
1506
- constructor(c, r, z) {
1507
- this.z = z;
1508
- c.detach();
1509
- this.el = r.nativeElement;
1510
- proxyOutputs(this, this.el, ['labelChange']);
1511
- }
1512
- };
1513
- /** @nocollapse */ IxMenuAboutItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1514
- /** @nocollapse */ IxMenuAboutItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAboutItem, selector: "ix-menu-about-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1515
- IxMenuAboutItem = __decorate([
1516
- ProxyCmp({
1517
- inputs: ['label']
1518
- })
1519
- ], IxMenuAboutItem);
1520
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutItem, decorators: [{
1521
- type: Component,
1522
- args: [{
1523
- selector: 'ix-menu-about-item',
1524
- changeDetection: ChangeDetectionStrategy.OnPush,
1525
- template: '<ng-content></ng-content>',
1526
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1527
- inputs: ['label'],
1528
- }]
1529
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1530
- let IxMenuAboutNews = class IxMenuAboutNews {
1531
- constructor(c, r, z) {
1532
- this.z = z;
1533
- c.detach();
1534
- this.el = r.nativeElement;
1535
- proxyOutputs(this, this.el, ['showMore', 'closePopover']);
1536
- }
1537
- };
1538
- /** @nocollapse */ IxMenuAboutNews.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutNews, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1539
- /** @nocollapse */ IxMenuAboutNews.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAboutNews, selector: "ix-menu-about-news", inputs: { aboutItemLabel: "aboutItemLabel", expanded: "expanded", i18nShowMore: "i18nShowMore", label: "label", offsetBottom: "offsetBottom", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1540
- IxMenuAboutNews = __decorate([
1541
- ProxyCmp({
1542
- inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show']
1543
- })
1544
- ], IxMenuAboutNews);
1545
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutNews, decorators: [{
1546
- type: Component,
1547
- args: [{
1548
- selector: 'ix-menu-about-news',
1549
- changeDetection: ChangeDetectionStrategy.OnPush,
1550
- template: '<ng-content></ng-content>',
1551
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1552
- inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show'],
1553
- }]
1554
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1555
- let IxMenuAvatar = class IxMenuAvatar {
1556
- constructor(c, r, z) {
1557
- this.z = z;
1558
- c.detach();
1559
- this.el = r.nativeElement;
1560
- proxyOutputs(this, this.el, ['logoutClick']);
1561
- }
1562
- };
1563
- /** @nocollapse */ IxMenuAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1564
- /** @nocollapse */ IxMenuAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAvatar, selector: "ix-menu-avatar", inputs: { bottom: "bottom", i18nLogout: "i18nLogout", image: "image", initials: "initials", showLogoutButton: "showLogoutButton", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1565
- IxMenuAvatar = __decorate([
1566
- ProxyCmp({
1567
- inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top']
1568
- })
1569
- ], IxMenuAvatar);
1570
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatar, decorators: [{
1571
- type: Component,
1572
- args: [{
1573
- selector: 'ix-menu-avatar',
1574
- changeDetection: ChangeDetectionStrategy.OnPush,
1575
- template: '<ng-content></ng-content>',
1576
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1577
- inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top'],
1578
- }]
1579
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1580
- let IxMenuAvatarItem = class IxMenuAvatarItem {
1581
- constructor(c, r, z) {
1582
- this.z = z;
1583
- c.detach();
1584
- this.el = r.nativeElement;
1585
- proxyOutputs(this, this.el, ['itemClick']);
1586
- }
1587
- };
1588
- /** @nocollapse */ IxMenuAvatarItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1589
- /** @nocollapse */ IxMenuAvatarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAvatarItem, selector: "ix-menu-avatar-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1590
- IxMenuAvatarItem = __decorate([
1591
- ProxyCmp({
1592
- inputs: ['icon', 'label']
1593
- })
1594
- ], IxMenuAvatarItem);
1595
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatarItem, decorators: [{
1596
- type: Component,
1597
- args: [{
1598
- selector: 'ix-menu-avatar-item',
1599
- changeDetection: ChangeDetectionStrategy.OnPush,
1600
- template: '<ng-content></ng-content>',
1601
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1602
- inputs: ['icon', 'label'],
1603
- }]
1604
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1605
- let IxMenuCategory = class IxMenuCategory {
1606
- constructor(c, r, z) {
1607
- this.z = z;
1608
- c.detach();
1609
- this.el = r.nativeElement;
1610
- }
1611
- };
1612
- /** @nocollapse */ IxMenuCategory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuCategory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1613
- /** @nocollapse */ IxMenuCategory.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuCategory, selector: "ix-menu-category", inputs: { icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1614
- IxMenuCategory = __decorate([
1615
- ProxyCmp({
1616
- inputs: ['icon', 'label', 'notifications']
1617
- })
1618
- ], IxMenuCategory);
1619
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuCategory, decorators: [{
1620
- type: Component,
1621
- args: [{
1622
- selector: 'ix-menu-category',
1623
- changeDetection: ChangeDetectionStrategy.OnPush,
1624
- template: '<ng-content></ng-content>',
1625
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1626
- inputs: ['icon', 'label', 'notifications'],
1627
- }]
1628
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1629
- let IxMenuItem = class IxMenuItem {
1630
- constructor(c, r, z) {
1631
- this.z = z;
1632
- c.detach();
1633
- this.el = r.nativeElement;
1634
- }
1635
- };
1636
- /** @nocollapse */ IxMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1637
- /** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuItem, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", icon: "icon", label: "label", notifications: "notifications", tabIcon: "tabIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1638
- IxMenuItem = __decorate([
1639
- ProxyCmp({
1640
- inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications', 'tabIcon']
1641
- })
1642
- ], IxMenuItem);
1643
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuItem, decorators: [{
1644
- type: Component,
1645
- args: [{
1646
- selector: 'ix-menu-item',
1647
- changeDetection: ChangeDetectionStrategy.OnPush,
1648
- template: '<ng-content></ng-content>',
1649
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1650
- inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications', 'tabIcon'],
1651
- }]
1652
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1653
- let IxMenuSettings = class IxMenuSettings {
1654
- constructor(c, r, z) {
1655
- this.z = z;
1656
- c.detach();
1657
- this.el = r.nativeElement;
1658
- proxyOutputs(this, this.el, ['tabChange', 'close']);
1659
- }
1660
- };
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 });
1662
- /** @nocollapse */ IxMenuSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuSettings, selector: "ix-menu-settings", inputs: { activeTabLabel: "activeTabLabel", label: "label", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1663
- IxMenuSettings = __decorate([
1664
- ProxyCmp({
1665
- inputs: ['activeTabLabel', 'label', 'show']
1666
- })
1667
- ], IxMenuSettings);
1668
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettings, decorators: [{
1669
- type: Component,
1670
- args: [{
1671
- selector: 'ix-menu-settings',
1672
- changeDetection: ChangeDetectionStrategy.OnPush,
1673
- template: '<ng-content></ng-content>',
1674
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1675
- inputs: ['activeTabLabel', 'label', 'show'],
1676
- }]
1677
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1678
- let IxMenuSettingsItem = class IxMenuSettingsItem {
1679
- constructor(c, r, z) {
1680
- this.z = z;
1681
- c.detach();
1682
- this.el = r.nativeElement;
1683
- proxyOutputs(this, this.el, ['labelChange']);
1684
- }
1685
- };
1686
- /** @nocollapse */ IxMenuSettingsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettingsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1687
- /** @nocollapse */ IxMenuSettingsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuSettingsItem, selector: "ix-menu-settings-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1688
- IxMenuSettingsItem = __decorate([
1689
- ProxyCmp({
1690
- inputs: ['label']
1691
- })
1692
- ], IxMenuSettingsItem);
1693
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettingsItem, decorators: [{
1694
- type: Component,
1695
- args: [{
1696
- selector: 'ix-menu-settings-item',
1697
- changeDetection: ChangeDetectionStrategy.OnPush,
1698
- template: '<ng-content></ng-content>',
1699
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1700
- inputs: ['label'],
1701
- }]
1702
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1703
- let IxMessageBar = class IxMessageBar {
1704
- constructor(c, r, z) {
1705
- this.z = z;
1706
- c.detach();
1707
- this.el = r.nativeElement;
1708
- proxyOutputs(this, this.el, ['closedChange', 'closeAnimationCompleted']);
1709
- }
1710
- };
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 });
1712
- /** @nocollapse */ IxMessageBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMessageBar, selector: "ix-message-bar", inputs: { dismissible: "dismissible", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1713
- IxMessageBar = __decorate([
1714
- ProxyCmp({
1715
- inputs: ['dismissible', 'type']
1716
- })
1717
- ], IxMessageBar);
1718
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMessageBar, decorators: [{
1719
- type: Component,
1720
- args: [{
1721
- selector: 'ix-message-bar',
1722
- changeDetection: ChangeDetectionStrategy.OnPush,
1723
- template: '<ng-content></ng-content>',
1724
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1725
- inputs: ['dismissible', 'type'],
1726
- }]
1727
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1728
- let IxModal = class IxModal {
1729
- constructor(c, r, z) {
1730
- this.z = z;
1731
- c.detach();
1732
- this.el = r.nativeElement;
1733
- proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
1734
- }
1735
- };
1736
- /** @nocollapse */ IxModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1737
- /** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", closeOnEscape: "closeOnEscape", keyboard: "keyboard", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1738
- IxModal = __decorate([
1739
- ProxyCmp({
1740
- inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
1741
- methods: ['showModal', 'dismissModal', 'closeModal']
1742
- })
1743
- ], IxModal);
1744
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModal, decorators: [{
1745
- type: Component,
1746
- args: [{
1747
- selector: 'ix-modal',
1748
- changeDetection: ChangeDetectionStrategy.OnPush,
1749
- template: '<ng-content></ng-content>',
1750
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1751
- inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
1752
- }]
1753
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1754
- let IxModalContent = class IxModalContent {
1755
- constructor(c, r, z) {
1756
- this.z = z;
1757
- c.detach();
1758
- this.el = r.nativeElement;
1759
- }
1760
- };
1761
- /** @nocollapse */ IxModalContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1762
- /** @nocollapse */ IxModalContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalContent, selector: "ix-modal-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1763
- IxModalContent = __decorate([
1764
- ProxyCmp({})
1765
- ], IxModalContent);
1766
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalContent, decorators: [{
1767
- type: Component,
1768
- args: [{
1769
- selector: 'ix-modal-content',
1770
- changeDetection: ChangeDetectionStrategy.OnPush,
1771
- template: '<ng-content></ng-content>',
1772
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1773
- inputs: [],
1774
- }]
1775
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1776
- let IxModalFooter = class IxModalFooter {
1777
- constructor(c, r, z) {
1778
- this.z = z;
1779
- c.detach();
1780
- this.el = r.nativeElement;
1781
- }
1782
- };
1783
- /** @nocollapse */ IxModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1784
- /** @nocollapse */ IxModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalFooter, selector: "ix-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1785
- IxModalFooter = __decorate([
1786
- ProxyCmp({})
1787
- ], IxModalFooter);
1788
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalFooter, decorators: [{
1789
- type: Component,
1790
- args: [{
1791
- selector: 'ix-modal-footer',
1792
- changeDetection: ChangeDetectionStrategy.OnPush,
1793
- template: '<ng-content></ng-content>',
1794
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1795
- inputs: [],
1796
- }]
1797
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1798
- let IxModalHeader = class IxModalHeader {
1799
- constructor(c, r, z) {
1800
- this.z = z;
1801
- c.detach();
1802
- this.el = r.nativeElement;
1803
- proxyOutputs(this, this.el, ['closeClick']);
1804
- }
1805
- };
1806
- /** @nocollapse */ IxModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1807
- /** @nocollapse */ IxModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalHeader, selector: "ix-modal-header", inputs: { hideClose: "hideClose", icon: "icon", iconColor: "iconColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1808
- IxModalHeader = __decorate([
1809
- ProxyCmp({
1810
- inputs: ['hideClose', 'icon', 'iconColor']
1811
- })
1812
- ], IxModalHeader);
1813
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalHeader, decorators: [{
1814
- type: Component,
1815
- args: [{
1816
- selector: 'ix-modal-header',
1817
- changeDetection: ChangeDetectionStrategy.OnPush,
1818
- template: '<ng-content></ng-content>',
1819
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1820
- inputs: ['hideClose', 'icon', 'iconColor'],
1821
- }]
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 }]; } });
1849
- let IxPagination = class IxPagination {
1850
- constructor(c, r, z) {
1851
- this.z = z;
1852
- c.detach();
1853
- this.el = r.nativeElement;
1854
- proxyOutputs(this, this.el, ['pageSelected', 'itemCountChanged']);
1855
- }
1856
- };
1857
- /** @nocollapse */ IxPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1858
- /** @nocollapse */ IxPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPagination, selector: "ix-pagination", inputs: { advanced: "advanced", count: "count", i18nItems: "i18nItems", i18nOf: "i18nOf", i18nPage: "i18nPage", itemCount: "itemCount", selectedPage: "selectedPage", showItemCount: "showItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1859
- IxPagination = __decorate([
1860
- ProxyCmp({
1861
- inputs: ['advanced', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount']
1862
- })
1863
- ], IxPagination);
1864
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPagination, decorators: [{
1865
- type: Component,
1866
- args: [{
1867
- selector: 'ix-pagination',
1868
- changeDetection: ChangeDetectionStrategy.OnPush,
1869
- template: '<ng-content></ng-content>',
1870
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1871
- inputs: ['advanced', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount'],
1872
- }]
1873
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1874
- let IxPane = class IxPane {
1875
- constructor(c, r, z) {
1876
- this.z = z;
1877
- c.detach();
1878
- this.el = r.nativeElement;
1879
- proxyOutputs(this, this.el, ['expandedChanged', 'variantChanged', 'borderlessChanged']);
1880
- }
1881
- };
1882
- /** @nocollapse */ IxPane.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1883
- /** @nocollapse */ IxPane.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPane, selector: "ix-pane", inputs: { borderless: "borderless", composition: "composition", expanded: "expanded", heading: "heading", hideOnCollapse: "hideOnCollapse", icon: "icon", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1884
- IxPane = __decorate([
1885
- ProxyCmp({
1886
- inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant']
1887
- })
1888
- ], IxPane);
1889
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPane, decorators: [{
1890
- type: Component,
1891
- args: [{
1892
- selector: 'ix-pane',
1893
- changeDetection: ChangeDetectionStrategy.OnPush,
1894
- template: '<ng-content></ng-content>',
1895
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1896
- inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant'],
1897
- }]
1898
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1899
- let IxPaneLayout = class IxPaneLayout {
1900
- constructor(c, r, z) {
1901
- this.z = z;
1902
- c.detach();
1903
- this.el = r.nativeElement;
1904
- }
1905
- };
1906
- /** @nocollapse */ IxPaneLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPaneLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1907
- /** @nocollapse */ IxPaneLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPaneLayout, selector: "ix-pane-layout", inputs: { borderless: "borderless", layout: "layout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1908
- IxPaneLayout = __decorate([
1909
- ProxyCmp({
1910
- inputs: ['borderless', 'layout', 'variant']
1911
- })
1912
- ], IxPaneLayout);
1913
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPaneLayout, decorators: [{
1914
- type: Component,
1915
- args: [{
1916
- selector: 'ix-pane-layout',
1917
- changeDetection: ChangeDetectionStrategy.OnPush,
1918
- template: '<ng-content></ng-content>',
1919
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1920
- inputs: ['borderless', 'layout', 'variant'],
1921
- }]
1922
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1923
- let IxPill = class IxPill {
1924
- constructor(c, r, z) {
1925
- this.z = z;
1926
- c.detach();
1927
- this.el = r.nativeElement;
1928
- }
1929
- };
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 });
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 });
1932
- IxPill = __decorate([
1933
- ProxyCmp({
1934
- inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant']
1935
- })
1936
- ], IxPill);
1937
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPill, decorators: [{
1938
- type: Component,
1939
- args: [{
1940
- selector: 'ix-pill',
1941
- changeDetection: ChangeDetectionStrategy.OnPush,
1942
- template: '<ng-content></ng-content>',
1943
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1944
- inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant'],
1945
- }]
1946
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1947
- let IxPushCard = class IxPushCard {
1948
- constructor(c, r, z) {
1949
- this.z = z;
1950
- c.detach();
1951
- this.el = r.nativeElement;
1952
- }
1953
- };
1954
- /** @nocollapse */ IxPushCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPushCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1955
- /** @nocollapse */ IxPushCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPushCard, selector: "ix-push-card", inputs: { collapse: "collapse", heading: "heading", icon: "icon", notification: "notification", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1956
- IxPushCard = __decorate([
1957
- ProxyCmp({
1958
- inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
1959
- })
1960
- ], IxPushCard);
1961
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPushCard, decorators: [{
1962
- type: Component,
1963
- args: [{
1964
- selector: 'ix-push-card',
1965
- changeDetection: ChangeDetectionStrategy.OnPush,
1966
- template: '<ng-content></ng-content>',
1967
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1968
- inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
1969
- }]
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 }]; } });
2021
- let IxRow = class IxRow {
2022
- constructor(c, r, z) {
2023
- this.z = z;
2024
- c.detach();
2025
- this.el = r.nativeElement;
2026
- }
2027
- };
2028
- /** @nocollapse */ IxRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2029
- /** @nocollapse */ IxRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRow, selector: "ix-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2030
- IxRow = __decorate([
2031
- ProxyCmp({})
2032
- ], IxRow);
2033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRow, decorators: [{
2034
- type: Component,
2035
- args: [{
2036
- selector: 'ix-row',
2037
- changeDetection: ChangeDetectionStrategy.OnPush,
2038
- template: '<ng-content></ng-content>',
2039
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2040
- inputs: [],
2041
- }]
2042
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2043
- let IxSelect = class IxSelect {
2044
- constructor(c, r, z) {
2045
- this.z = z;
2046
- c.detach();
2047
- this.el = r.nativeElement;
2048
- proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem', 'ixBlur']);
2049
- }
2050
- };
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 });
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 });
2053
- IxSelect = __decorate([
2054
- ProxyCmp({
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']
2057
- })
2058
- ], IxSelect);
2059
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
2060
- type: Component,
2061
- args: [{
2062
- selector: 'ix-select',
2063
- changeDetection: ChangeDetectionStrategy.OnPush,
2064
- template: '<ng-content></ng-content>',
2065
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
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'],
2067
- }]
2068
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2069
- let IxSelectItem = class IxSelectItem {
2070
- constructor(c, r, z) {
2071
- this.z = z;
2072
- c.detach();
2073
- this.el = r.nativeElement;
2074
- proxyOutputs(this, this.el, ['itemClick']);
2075
- }
2076
- };
2077
- /** @nocollapse */ IxSelectItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelectItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2078
- /** @nocollapse */ IxSelectItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelectItem, selector: "ix-select-item", inputs: { label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2079
- IxSelectItem = __decorate([
2080
- ProxyCmp({
2081
- inputs: ['label', 'selected', 'value']
2082
- })
2083
- ], IxSelectItem);
2084
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelectItem, decorators: [{
2085
- type: Component,
2086
- args: [{
2087
- selector: 'ix-select-item',
2088
- changeDetection: ChangeDetectionStrategy.OnPush,
2089
- template: '<ng-content></ng-content>',
2090
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2091
- inputs: ['label', 'selected', 'value'],
2092
- }]
2093
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2094
- let IxSlider = class IxSlider {
2095
- constructor(c, r, z) {
2096
- this.z = z;
2097
- c.detach();
2098
- this.el = r.nativeElement;
2099
- proxyOutputs(this, this.el, ['valueChange']);
2100
- }
2101
- };
2102
- /** @nocollapse */ IxSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2103
- /** @nocollapse */ IxSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSlider, selector: "ix-slider", inputs: { disabled: "disabled", error: "error", marker: "marker", max: "max", min: "min", step: "step", trace: "trace", traceReference: "traceReference", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2104
- IxSlider = __decorate([
2105
- ProxyCmp({
2106
- inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
2107
- })
2108
- ], IxSlider);
2109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSlider, decorators: [{
2110
- type: Component,
2111
- args: [{
2112
- selector: 'ix-slider',
2113
- changeDetection: ChangeDetectionStrategy.OnPush,
2114
- template: '<ng-content></ng-content>',
2115
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2116
- inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value'],
2117
- }]
2118
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2119
- let IxSpinner = class IxSpinner {
2120
- constructor(c, r, z) {
2121
- this.z = z;
2122
- c.detach();
2123
- this.el = r.nativeElement;
2124
- }
2125
- };
2126
- /** @nocollapse */ IxSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2127
- /** @nocollapse */ IxSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSpinner, selector: "ix-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2128
- IxSpinner = __decorate([
2129
- ProxyCmp({
2130
- inputs: ['size', 'variant']
2131
- })
2132
- ], IxSpinner);
2133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSpinner, decorators: [{
2134
- type: Component,
2135
- args: [{
2136
- selector: 'ix-spinner',
2137
- changeDetection: ChangeDetectionStrategy.OnPush,
2138
- template: '<ng-content></ng-content>',
2139
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2140
- inputs: ['size', 'variant'],
2141
- }]
2142
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2143
- let IxSplitButton = class IxSplitButton {
2144
- constructor(c, r, z) {
2145
- this.z = z;
2146
- c.detach();
2147
- this.el = r.nativeElement;
2148
- proxyOutputs(this, this.el, ['buttonClick']);
2149
- }
2150
- };
2151
- /** @nocollapse */ IxSplitButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2152
- /** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSplitButton, selector: "ix-split-button", inputs: { closeBehavior: "closeBehavior", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", splitIcon: "splitIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2153
- IxSplitButton = __decorate([
2154
- ProxyCmp({
2155
- inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
2156
- })
2157
- ], IxSplitButton);
2158
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButton, decorators: [{
2159
- type: Component,
2160
- args: [{
2161
- selector: 'ix-split-button',
2162
- changeDetection: ChangeDetectionStrategy.OnPush,
2163
- template: '<ng-content></ng-content>',
2164
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2165
- inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
2166
- }]
2167
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2168
- let IxSplitButtonItem = class IxSplitButtonItem {
2169
- constructor(c, r, z) {
2170
- this.z = z;
2171
- c.detach();
2172
- this.el = r.nativeElement;
2173
- proxyOutputs(this, this.el, ['itemClick']);
2174
- }
2175
- };
2176
- /** @nocollapse */ IxSplitButtonItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButtonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2177
- /** @nocollapse */ IxSplitButtonItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSplitButtonItem, selector: "ix-split-button-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2178
- IxSplitButtonItem = __decorate([
2179
- ProxyCmp({
2180
- inputs: ['icon', 'label']
2181
- })
2182
- ], IxSplitButtonItem);
2183
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButtonItem, decorators: [{
2184
- type: Component,
2185
- args: [{
2186
- selector: 'ix-split-button-item',
2187
- changeDetection: ChangeDetectionStrategy.OnPush,
2188
- template: '<ng-content></ng-content>',
2189
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2190
- inputs: ['icon', 'label'],
2191
- }]
2192
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2193
- let IxTabItem = class IxTabItem {
2194
- constructor(c, r, z) {
2195
- this.z = z;
2196
- c.detach();
2197
- this.el = r.nativeElement;
2198
- proxyOutputs(this, this.el, ['tabClick']);
2199
- }
2200
- };
2201
- /** @nocollapse */ IxTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2202
- /** @nocollapse */ IxTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTabItem, selector: "ix-tab-item", inputs: { counter: "counter", disabled: "disabled", icon: "icon", layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2203
- IxTabItem = __decorate([
2204
- ProxyCmp({
2205
- inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
2206
- })
2207
- ], IxTabItem);
2208
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabItem, decorators: [{
2209
- type: Component,
2210
- args: [{
2211
- selector: 'ix-tab-item',
2212
- changeDetection: ChangeDetectionStrategy.OnPush,
2213
- template: '<ng-content></ng-content>',
2214
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2215
- inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small'],
2216
- }]
2217
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2218
- let IxTabs = class IxTabs {
2219
- constructor(c, r, z) {
2220
- this.z = z;
2221
- c.detach();
2222
- this.el = r.nativeElement;
2223
- proxyOutputs(this, this.el, ['selectedChange']);
2224
- }
2225
- };
2226
- /** @nocollapse */ IxTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2227
- /** @nocollapse */ IxTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTabs, selector: "ix-tabs", inputs: { layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2228
- IxTabs = __decorate([
2229
- ProxyCmp({
2230
- inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
2231
- })
2232
- ], IxTabs);
2233
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabs, decorators: [{
2234
- type: Component,
2235
- args: [{
2236
- selector: 'ix-tabs',
2237
- changeDetection: ChangeDetectionStrategy.OnPush,
2238
- template: '<ng-content></ng-content>',
2239
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2240
- inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
2241
- }]
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 }]; } });
2269
- let IxTile = class IxTile {
2270
- constructor(c, r, z) {
2271
- this.z = z;
2272
- c.detach();
2273
- this.el = r.nativeElement;
2274
- }
2275
- };
2276
- /** @nocollapse */ IxTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2277
- /** @nocollapse */ IxTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTile, selector: "ix-tile", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2278
- IxTile = __decorate([
2279
- ProxyCmp({
2280
- inputs: ['size']
2281
- })
2282
- ], IxTile);
2283
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTile, decorators: [{
2284
- type: Component,
2285
- args: [{
2286
- selector: 'ix-tile',
2287
- changeDetection: ChangeDetectionStrategy.OnPush,
2288
- template: '<ng-content></ng-content>',
2289
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2290
- inputs: ['size'],
2291
- }]
2292
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2293
- let IxTimePicker = class IxTimePicker {
2294
- constructor(c, r, z) {
2295
- this.z = z;
2296
- c.detach();
2297
- this.el = r.nativeElement;
2298
- proxyOutputs(this, this.el, ['timeSelect', 'done', 'timeChange']);
2299
- }
2300
- };
2301
- /** @nocollapse */ IxTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2302
- /** @nocollapse */ IxTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTimePicker, selector: "ix-time-picker", inputs: { corners: "corners", format: "format", individual: "individual", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", standaloneAppearance: "standaloneAppearance", textSelectTime: "textSelectTime", textTime: "textTime", time: "time", timeReference: "timeReference" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2303
- IxTimePicker = __decorate([
2304
- ProxyCmp({
2305
- inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2306
- methods: ['getCurrentTime']
2307
- })
2308
- ], IxTimePicker);
2309
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTimePicker, decorators: [{
2310
- type: Component,
2311
- args: [{
2312
- selector: 'ix-time-picker',
2313
- changeDetection: ChangeDetectionStrategy.OnPush,
2314
- template: '<ng-content></ng-content>',
2315
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2316
- inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2317
- }]
2318
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2319
- let IxToast = class IxToast {
2320
- constructor(c, r, z) {
2321
- this.z = z;
2322
- c.detach();
2323
- this.el = r.nativeElement;
2324
- proxyOutputs(this, this.el, ['closeToast']);
2325
- }
2326
- };
2327
- /** @nocollapse */ IxToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2328
- /** @nocollapse */ IxToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToast, selector: "ix-toast", inputs: { autoClose: "autoClose", autoCloseDelay: "autoCloseDelay", icon: "icon", iconColor: "iconColor", toastTitle: "toastTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2329
- IxToast = __decorate([
2330
- ProxyCmp({
2331
- inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
2332
- })
2333
- ], IxToast);
2334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToast, decorators: [{
2335
- type: Component,
2336
- args: [{
2337
- selector: 'ix-toast',
2338
- changeDetection: ChangeDetectionStrategy.OnPush,
2339
- template: '<ng-content></ng-content>',
2340
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2341
- inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type'],
2342
- }]
2343
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2344
- let IxToastContainer = class IxToastContainer {
2345
- constructor(c, r, z) {
2346
- this.z = z;
2347
- c.detach();
2348
- this.el = r.nativeElement;
2349
- }
2350
- };
2351
- /** @nocollapse */ IxToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToastContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2352
- /** @nocollapse */ IxToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToastContainer, selector: "ix-toast-container", inputs: { containerClass: "containerClass", containerId: "containerId", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2353
- IxToastContainer = __decorate([
2354
- ProxyCmp({
2355
- inputs: ['containerClass', 'containerId', 'position'],
2356
- methods: ['showToast']
2357
- })
2358
- ], IxToastContainer);
2359
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToastContainer, decorators: [{
2360
- type: Component,
2361
- args: [{
2362
- selector: 'ix-toast-container',
2363
- changeDetection: ChangeDetectionStrategy.OnPush,
2364
- template: '<ng-content></ng-content>',
2365
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2366
- inputs: ['containerClass', 'containerId', 'position'],
2367
- }]
2368
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2369
- let IxToggle = class IxToggle {
2370
- constructor(c, r, z) {
2371
- this.z = z;
2372
- c.detach();
2373
- this.el = r.nativeElement;
2374
- proxyOutputs(this, this.el, ['checkedChange']);
2375
- }
2376
- };
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 });
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 });
2379
- IxToggle = __decorate([
2380
- ProxyCmp({
2381
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2382
- })
2383
- ], IxToggle);
2384
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
2385
- type: Component,
2386
- args: [{
2387
- selector: 'ix-toggle',
2388
- changeDetection: ChangeDetectionStrategy.OnPush,
2389
- template: '<ng-content></ng-content>',
2390
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2391
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2392
- }]
2393
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2394
- let IxToggleButton = class IxToggleButton {
2395
- constructor(c, r, z) {
2396
- this.z = z;
2397
- c.detach();
2398
- this.el = r.nativeElement;
2399
- proxyOutputs(this, this.el, ['pressedChange']);
2400
- }
2401
- };
2402
- /** @nocollapse */ IxToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2403
- /** @nocollapse */ IxToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggleButton, selector: "ix-toggle-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", pressed: "pressed", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2404
- IxToggleButton = __decorate([
2405
- ProxyCmp({
2406
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
2407
- })
2408
- ], IxToggleButton);
2409
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggleButton, decorators: [{
2410
- type: Component,
2411
- args: [{
2412
- selector: 'ix-toggle-button',
2413
- changeDetection: ChangeDetectionStrategy.OnPush,
2414
- template: '<ng-content></ng-content>',
2415
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2416
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
2417
- }]
2418
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2419
- let IxTooltip = class IxTooltip {
2420
- constructor(c, r, z) {
2421
- this.z = z;
2422
- c.detach();
2423
- this.el = r.nativeElement;
2424
- }
2425
- };
2426
- /** @nocollapse */ IxTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2427
- /** @nocollapse */ IxTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTooltip, selector: "ix-tooltip", inputs: { for: "for", interactive: "interactive", placement: "placement", titleContent: "titleContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2428
- IxTooltip = __decorate([
2429
- ProxyCmp({
2430
- inputs: ['for', 'interactive', 'placement', 'titleContent']
2431
- })
2432
- ], IxTooltip);
2433
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTooltip, decorators: [{
2434
- type: Component,
2435
- args: [{
2436
- selector: 'ix-tooltip',
2437
- changeDetection: ChangeDetectionStrategy.OnPush,
2438
- template: '<ng-content></ng-content>',
2439
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2440
- inputs: ['for', 'interactive', 'placement', 'titleContent'],
2441
- }]
2442
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2443
- let IxTreeItem = class IxTreeItem {
2444
- constructor(c, r, z) {
2445
- this.z = z;
2446
- c.detach();
2447
- this.el = r.nativeElement;
2448
- proxyOutputs(this, this.el, ['toggle', 'itemClick']);
2449
- }
2450
- };
2451
- /** @nocollapse */ IxTreeItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2452
- /** @nocollapse */ IxTreeItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTreeItem, selector: "ix-tree-item", inputs: { context: "context", hasChildren: "hasChildren", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2453
- IxTreeItem = __decorate([
2454
- ProxyCmp({
2455
- inputs: ['context', 'hasChildren', 'text']
2456
- })
2457
- ], IxTreeItem);
2458
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTreeItem, decorators: [{
2459
- type: Component,
2460
- args: [{
2461
- selector: 'ix-tree-item',
2462
- changeDetection: ChangeDetectionStrategy.OnPush,
2463
- template: '<ng-content></ng-content>',
2464
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2465
- inputs: ['context', 'hasChildren', 'text'],
2466
- }]
2467
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2468
- let IxTypography = class IxTypography {
2469
- constructor(c, r, z) {
2470
- this.z = z;
2471
- c.detach();
2472
- this.el = r.nativeElement;
2473
- }
2474
- };
2475
- /** @nocollapse */ IxTypography.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2476
- /** @nocollapse */ IxTypography.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTypography, selector: "ix-typography", inputs: { bold: "bold", color: "color", format: "format", textColor: "textColor", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2477
- IxTypography = __decorate([
2478
- ProxyCmp({
2479
- inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration']
2480
- })
2481
- ], IxTypography);
2482
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTypography, decorators: [{
2483
- type: Component,
2484
- args: [{
2485
- selector: 'ix-typography',
2486
- changeDetection: ChangeDetectionStrategy.OnPush,
2487
- template: '<ng-content></ng-content>',
2488
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2489
- inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration'],
2490
- }]
2491
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2492
- let IxUpload = class IxUpload {
2493
- constructor(c, r, z) {
2494
- this.z = z;
2495
- c.detach();
2496
- this.el = r.nativeElement;
2497
- proxyOutputs(this, this.el, ['filesChanged']);
2498
- }
2499
- };
2500
- /** @nocollapse */ IxUpload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2501
- /** @nocollapse */ IxUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxUpload, selector: "ix-upload", inputs: { accept: "accept", disabled: "disabled", i18nUploadDisabled: "i18nUploadDisabled", i18nUploadFile: "i18nUploadFile", loadingText: "loadingText", multiline: "multiline", multiple: "multiple", selectFileText: "selectFileText", state: "state", uploadFailedText: "uploadFailedText", uploadSuccessText: "uploadSuccessText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2502
- IxUpload = __decorate([
2503
- ProxyCmp({
2504
- inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2505
- methods: ['setFilesToUpload']
2506
- })
2507
- ], IxUpload);
2508
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxUpload, decorators: [{
2509
- type: Component,
2510
- args: [{
2511
- selector: 'ix-upload',
2512
- changeDetection: ChangeDetectionStrategy.OnPush,
2513
- template: '<ng-content></ng-content>',
2514
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2515
- inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2516
- }]
2517
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2518
- let IxValidationTooltip = class IxValidationTooltip {
2519
- constructor(c, r, z) {
2520
- this.z = z;
2521
- c.detach();
2522
- this.el = r.nativeElement;
2523
- }
2524
- };
2525
- /** @nocollapse */ IxValidationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2526
- /** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement", suppressAutomaticPlacement: "suppressAutomaticPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2527
- IxValidationTooltip = __decorate([
2528
- ProxyCmp({
2529
- inputs: ['message', 'placement', 'suppressAutomaticPlacement']
2530
- })
2531
- ], IxValidationTooltip);
2532
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxValidationTooltip, decorators: [{
2533
- type: Component,
2534
- args: [{
2535
- selector: 'ix-validation-tooltip',
2536
- changeDetection: ChangeDetectionStrategy.OnPush,
2537
- template: '<ng-content></ng-content>',
2538
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2539
- inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
2540
- }]
2541
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2542
- let IxWorkflowStep = class IxWorkflowStep {
2543
- constructor(c, r, z) {
2544
- this.z = z;
2545
- c.detach();
2546
- this.el = r.nativeElement;
2547
- }
2548
- };
2549
- /** @nocollapse */ IxWorkflowStep.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2550
- /** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxWorkflowStep, selector: "ix-workflow-step", inputs: { clickable: "clickable", disabled: "disabled", selected: "selected", status: "status", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2551
- IxWorkflowStep = __decorate([
2552
- ProxyCmp({
2553
- inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
2554
- })
2555
- ], IxWorkflowStep);
2556
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowStep, decorators: [{
2557
- type: Component,
2558
- args: [{
2559
- selector: 'ix-workflow-step',
2560
- changeDetection: ChangeDetectionStrategy.OnPush,
2561
- template: '<ng-content></ng-content>',
2562
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2563
- inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
2564
- }]
2565
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2566
- let IxWorkflowSteps = class IxWorkflowSteps {
2567
- constructor(c, r, z) {
2568
- this.z = z;
2569
- c.detach();
2570
- this.el = r.nativeElement;
2571
- proxyOutputs(this, this.el, ['stepSelected']);
2572
- }
2573
- };
2574
- /** @nocollapse */ IxWorkflowSteps.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2575
- /** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxWorkflowSteps, selector: "ix-workflow-steps", inputs: { clickable: "clickable", selectedIndex: "selectedIndex", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2576
- IxWorkflowSteps = __decorate([
2577
- ProxyCmp({
2578
- inputs: ['clickable', 'selectedIndex', 'vertical']
2579
- })
2580
- ], IxWorkflowSteps);
2581
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowSteps, decorators: [{
2582
- type: Component,
2583
- args: [{
2584
- selector: 'ix-workflow-steps',
2585
- changeDetection: ChangeDetectionStrategy.OnPush,
2586
- template: '<ng-content></ng-content>',
2587
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2588
- inputs: ['clickable', 'selectedIndex', 'vertical'],
2589
- }]
2590
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2591
-
2592
- /*
2593
- * SPDX-FileCopyrightText: 2024 Siemens AG
2594
- *
2595
- * SPDX-License-Identifier: MIT
2596
- *
2597
- * This source code is licensed under the MIT license found in the
2598
- * LICENSE file in the root directory of this source tree.
2599
- */
2600
- class IxDropdownTriggerDirective {
2601
- constructor(element) {
2602
- this.element = element;
2603
- }
2604
- ngOnChanges() {
2605
- this.element.nativeElement.trigger = this.ixDropdownTrigger.el;
2606
- }
2607
- }
2608
- /** @nocollapse */ IxDropdownTriggerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownTriggerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2609
- /** @nocollapse */ IxDropdownTriggerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownTriggerDirective, selector: "[ixDropdownTrigger]", inputs: { ixDropdownTrigger: "ixDropdownTrigger" }, usesOnChanges: true, ngImport: i0 });
2610
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
2611
- type: Directive,
2612
- args: [{
2613
- selector: '[ixDropdownTrigger]',
2614
- }]
2615
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { ixDropdownTrigger: [{
2616
- type: Input
2617
- }] } });
2618
-
2619
- let IxIcon = class IxIcon {
2620
- constructor(c, r, z) {
2621
- this.z = z;
2622
- c.detach();
2623
- this.el = r.nativeElement;
2624
- }
2625
- };
2626
- /** @nocollapse */ IxIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2627
- /** @nocollapse */ IxIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxIcon, selector: "ix-icon", inputs: { color: "color", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2628
- IxIcon = __decorate([
2629
- ProxyCmp({
2630
- defineCustomElementFn: undefined,
2631
- inputs: ['color', 'name', 'size'],
2632
- })
2633
- ], IxIcon);
2634
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIcon, decorators: [{
2635
- type: Component,
2636
- args: [{
2637
- selector: 'ix-icon',
2638
- changeDetection: ChangeDetectionStrategy.OnPush,
2639
- template: '<ng-content></ng-content>',
2640
- inputs: ['color', 'name', 'size'],
2641
- }]
2642
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2643
-
2644
- /*
2645
- * SPDX-FileCopyrightText: 2024 Siemens AG
2646
- *
2647
- * SPDX-License-Identifier: MIT
2648
- *
2649
- * This source code is licensed under the MIT license found in the
2650
- * LICENSE file in the root directory of this source tree.
2651
- */
2652
- class IxActiveModal {
2653
- constructor(modalData) {
2654
- this.modalData = modalData;
2655
- }
2656
- get data() {
2657
- return this.modalData;
2658
- }
2659
- /**
2660
- * Close the active modal
2661
- *
2662
- * @param reason
2663
- */
2664
- close(reason) {
2665
- closeModal(this.modalElement, reason);
2666
- }
2667
- /**
2668
- * Dismiss the active modal
2669
- *
2670
- * @param reason
2671
- */
2672
- dismiss(reason) {
2673
- dismissModal(this.modalElement, reason);
2674
- }
2675
- }
2676
- class InternalIxActiveModal extends IxActiveModal {
2677
- setModalElement(element) {
2678
- this.modalElement = element;
2679
- }
2680
- }
2681
-
2682
- class ModalService {
2683
- constructor(appRef, componentFactoryResolver, injector) {
2684
- this.appRef = appRef;
2685
- this.componentFactoryResolver = componentFactoryResolver;
2686
- this.injector = injector;
2687
- }
2688
- open(config) {
2689
- return __awaiter(this, void 0, void 0, function* () {
2690
- const context = {
2691
- close: null,
2692
- dismiss: null,
2693
- data: config.data,
2694
- };
2695
- if (config.content instanceof Type) {
2696
- return this.createContentByComponentType(config.content, config, context);
2697
- }
2698
- const modalInstance = yield this.createContentByTemplateRef(config.content, config, context);
2699
- return modalInstance;
2700
- });
2701
- }
2702
- createContentByComponentType(componentType, config, context) {
2703
- return __awaiter(this, void 0, void 0, function* () {
2704
- const activeModal = new InternalIxActiveModal(context.data);
2705
- const modalFactory = this.componentFactoryResolver.resolveComponentFactory(componentType);
2706
- const modalInjector = Injector.create({
2707
- providers: [
2708
- {
2709
- provide: IxActiveModal,
2710
- useValue: activeModal,
2711
- },
2712
- ],
2713
- parent: this.injector,
2714
- });
2715
- const instance = modalFactory.create(modalInjector);
2716
- this.appRef.attachView(instance.hostView);
2717
- const element = instance.injector.get(ElementRef);
2718
- element.nativeElement.style.display = 'contents';
2719
- const modalInstance = yield this.createModalInstance(context, element.nativeElement, instance.hostView, config);
2720
- activeModal.setModalElement(modalInstance.htmlElement);
2721
- return modalInstance;
2722
- });
2723
- }
2724
- createContentByTemplateRef(templateRef, config, context) {
2725
- return __awaiter(this, void 0, void 0, function* () {
2726
- const embeddedView = templateRef.createEmbeddedView({
2727
- $implicit: context,
2728
- });
2729
- this.appRef.attachView(embeddedView);
2730
- return yield this.createModalInstance(context, embeddedView.rootNodes[0], embeddedView, config);
2731
- });
2732
- }
2733
- createModalInstance(context, htmlElement, viewRef, config) {
2734
- return __awaiter(this, void 0, void 0, function* () {
2735
- context.close = (result) => {
2736
- closeModal(htmlElement, result);
2737
- };
2738
- context.dismiss = (result) => {
2739
- dismissModal(htmlElement, result);
2740
- };
2741
- viewRef.detectChanges();
2742
- const modalInstance = yield showModal(Object.assign(Object.assign({}, config), { content: htmlElement }));
2743
- modalInstance.onClose.once(() => {
2744
- viewRef.destroy();
2745
- });
2746
- modalInstance.onDismiss.once(() => {
2747
- viewRef.destroy();
2748
- });
2749
- return modalInstance;
2750
- });
2751
- }
2752
- }
2753
- /** @nocollapse */ ModalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
2754
- /** @nocollapse */ ModalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, providedIn: 'root' });
2755
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, decorators: [{
2756
- type: Injectable,
2757
- args: [{
2758
- providedIn: 'root',
2759
- }]
2760
- }], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }]; } });
2761
-
2762
- /*
2763
- * SPDX-FileCopyrightText: 2024 Siemens AG
2764
- *
2765
- * SPDX-License-Identifier: MIT
2766
- *
2767
- * This source code is licensed under the MIT license found in the
2768
- * LICENSE file in the root directory of this source tree.
2769
- */
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
-
2958
- let didInitialize = false;
2959
- const appInitialize = (doc) => {
2960
- return () => __awaiter(void 0, void 0, void 0, function* () {
2961
- const win = doc.defaultView;
2962
- if (win && typeof window !== 'undefined') {
2963
- if (didInitialize) {
2964
- return;
2965
- }
2966
- didInitialize = true;
2967
- yield defineCustomElements();
2968
- defineCustomElements$1();
2969
- }
2970
- });
2971
- };
2972
-
2973
- const DIRECTIVES = [
2974
- IxActionCard,
2975
- IxApplication,
2976
- IxApplicationHeader,
2977
- IxAvatar,
2978
- IxBasicNavigation,
2979
- IxBlind,
2980
- IxBreadcrumb,
2981
- IxBreadcrumbItem,
2982
- IxButton,
2983
- IxCard,
2984
- IxCardAccordion,
2985
- IxCardContent,
2986
- IxCardList,
2987
- IxCardTitle,
2988
- IxCategoryFilter,
2989
- IxCheckbox,
2990
- IxCheckboxGroup,
2991
- IxChip,
2992
- IxCol,
2993
- IxContent,
2994
- IxContentHeader,
2995
- IxCustomField,
2996
- IxDateDropdown,
2997
- IxDateInput,
2998
- IxDatePicker,
2999
- IxDatetimePicker,
3000
- IxDivider,
3001
- IxDrawer,
3002
- IxDropdown,
3003
- IxDropdownButton,
3004
- IxDropdownHeader,
3005
- IxDropdownItem,
3006
- IxDropdownQuickActions,
3007
- IxEmptyState,
3008
- IxEventList,
3009
- IxEventListItem,
3010
- IxExpandingSearch,
3011
- IxFieldLabel,
3012
- IxFilterChip,
3013
- IxFlipTile,
3014
- IxFlipTileContent,
3015
- IxGroup,
3016
- IxGroupContextMenu,
3017
- IxGroupItem,
3018
- IxHelperText,
3019
- IxIconButton,
3020
- IxIconToggleButton,
3021
- IxInput,
3022
- IxInputGroup,
3023
- IxKeyValue,
3024
- IxKeyValueList,
3025
- IxKpi,
3026
- IxLayoutAuto,
3027
- IxLayoutGrid,
3028
- IxLinkButton,
3029
- IxMapNavigation,
3030
- IxMapNavigationOverlay,
3031
- IxMenu,
3032
- IxMenuAbout,
3033
- IxMenuAboutItem,
3034
- IxMenuAboutNews,
3035
- IxMenuAvatar,
3036
- IxMenuAvatarItem,
3037
- IxMenuCategory,
3038
- IxMenuItem,
3039
- IxMenuSettings,
3040
- IxMenuSettingsItem,
3041
- IxMessageBar,
3042
- IxModal,
3043
- IxModalContent,
3044
- IxModalFooter,
3045
- IxModalHeader,
3046
- IxNumberInput,
3047
- IxPagination,
3048
- IxPane,
3049
- IxPaneLayout,
3050
- IxPill,
3051
- IxPushCard,
3052
- IxRadio,
3053
- IxRadioGroup,
3054
- IxRow,
3055
- IxSelect,
3056
- IxSelectItem,
3057
- IxSlider,
3058
- IxSpinner,
3059
- IxSplitButton,
3060
- IxSplitButtonItem,
3061
- IxTabItem,
3062
- IxTabs,
3063
- IxTextarea,
3064
- IxTile,
3065
- IxTimePicker,
3066
- IxToast,
3067
- IxToastContainer,
3068
- IxToggle,
3069
- IxToggleButton,
3070
- IxTooltip,
3071
- IxTreeItem,
3072
- IxTypography,
3073
- IxUpload,
3074
- IxValidationTooltip,
3075
- IxWorkflowStep,
3076
- IxWorkflowSteps
3077
- ];
3078
-
3079
- /*
3080
- * SPDX-FileCopyrightText: 2024 Siemens AG
3081
- *
3082
- * SPDX-License-Identifier: MIT
3083
- *
3084
- * This source code is licensed under the MIT license found in the
3085
- * LICENSE file in the root directory of this source tree.
3086
- */
3087
- /**
3088
- * @deprecated Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
3089
- */
3090
- class ThemeService {
3091
- constructor() {
3092
- this.themeChanged = new EventEmitter();
3093
- this.themeSwitcher = themeSwitcher;
3094
- this.themeSwitcher.themeChanged.on((theme) => this.themeChanged.emit(theme));
3095
- }
3096
- toggleMode() {
3097
- this.themeSwitcher.toggleMode();
3098
- }
3099
- setTheme(themeName) {
3100
- this.themeSwitcher.setTheme(themeName);
3101
- }
3102
- }
3103
- /** @nocollapse */ ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3104
- /** @nocollapse */ ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, providedIn: 'root' });
3105
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, decorators: [{
3106
- type: Injectable,
3107
- args: [{
3108
- providedIn: 'root',
3109
- }]
3110
- }], ctorParameters: function () { return []; }, propDecorators: { themeChanged: [{
3111
- type: Output
3112
- }] } });
3113
-
3114
- /*
3115
- * SPDX-FileCopyrightText: 2024 Siemens AG
3116
- *
3117
- * SPDX-License-Identifier: MIT
3118
- *
3119
- * This source code is licensed under the MIT license found in the
3120
- * LICENSE file in the root directory of this source tree.
3121
- */
3122
-
3123
- class ToastService {
3124
- setPosition(position) {
3125
- getToastContainer().position = position;
3126
- }
3127
- getPosition() {
3128
- return getToastContainer().position;
3129
- }
3130
- show(config) {
3131
- return __awaiter(this, void 0, void 0, function* () {
3132
- if (typeof config.message === 'string') {
3133
- return toast(config);
3134
- }
3135
- const context = {
3136
- close: null,
3137
- };
3138
- const embeddedView = config.message.createEmbeddedView({
3139
- $implicit: context,
3140
- });
3141
- const node = embeddedView.rootNodes[0];
3142
- const instance = yield toast(Object.assign(Object.assign({}, config), { message: node }));
3143
- context.close = () => {
3144
- instance.close();
3145
- };
3146
- embeddedView.detectChanges();
3147
- instance.onClose.once(() => {
3148
- embeddedView.destroy();
3149
- });
3150
- return instance;
3151
- });
3152
- }
3153
- }
3154
- /** @nocollapse */ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3155
- /** @nocollapse */ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, providedIn: 'root' });
3156
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, decorators: [{
3157
- type: Injectable,
3158
- args: [{
3159
- providedIn: 'root',
3160
- }]
3161
- }] });
3162
-
3163
- /*
3164
- * SPDX-FileCopyrightText: 2024 Siemens AG
3165
- *
3166
- * SPDX-License-Identifier: MIT
3167
- *
3168
- * This source code is licensed under the MIT license found in the
3169
- * LICENSE file in the root directory of this source tree.
3170
- */
3171
-
3172
- let IxTree = class IxTree {
3173
- constructor(c, r, z) {
3174
- this.z = z;
3175
- this.renderCache = new Map();
3176
- c.detach();
3177
- this.el = r.nativeElement;
3178
- proxyOutputs(this, this.el, ['contextChange', 'nodeRemoved']);
3179
- this.onRemovedSubscription = this.nodeRemoved.subscribe((removedEvent) => {
3180
- const { detail } = removedEvent;
3181
- detail.forEach((removedItemElement) => {
3182
- var _a;
3183
- if (this.renderCache.has(removedItemElement)) {
3184
- (_a = this.renderCache.get(removedItemElement)) === null || _a === void 0 ? void 0 : _a.destroy();
3185
- this.renderCache.delete(removedItemElement);
3186
- }
3187
- });
3188
- });
3189
- }
3190
- set renderItem(template) {
3191
- const itemRenderFunction = this.generateItemRenderer(template);
3192
- this.el.renderItem = itemRenderFunction.bind(this);
3193
- }
3194
- ngOnDestroy() {
3195
- var _a;
3196
- (_a = this.onRemovedSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
3197
- }
3198
- generateItemRenderer(templateRef) {
3199
- return (_, itemData, __, context, update) => {
3200
- const treeItem = document.createElement('ix-tree-item');
3201
- treeItem.hasChildren = itemData.hasChildren;
3202
- treeItem.context = context[itemData.id];
3203
- const embeddedView = templateRef.createEmbeddedView({
3204
- $implicit: itemData.data,
3205
- });
3206
- const container = embeddedView.rootNodes[0];
3207
- embeddedView.detectChanges();
3208
- update((itemData, context) => {
3209
- treeItem.context = context[itemData.id];
3210
- treeItem.hasChildren = itemData.hasChildren;
3211
- embeddedView.context = {
3212
- $implicit: itemData.data,
3213
- };
3214
- embeddedView.detectChanges();
3215
- });
3216
- treeItem.appendChild(container);
3217
- this.renderCache.set(treeItem, embeddedView);
3218
- return treeItem;
3219
- };
3220
- }
3221
- };
3222
- /** @nocollapse */ IxTree.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3223
- /** @nocollapse */ IxTree.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTree, selector: "ix-tree", inputs: { context: "context", model: "model", root: "root", renderItem: "renderItem" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3224
- IxTree = __decorate([
3225
- ProxyCmp({
3226
- defineCustomElementFn: undefined,
3227
- inputs: ['context', 'model', 'root'],
3228
- })
3229
- ], IxTree);
3230
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTree, decorators: [{
3231
- type: Component,
3232
- args: [{
3233
- selector: 'ix-tree',
3234
- changeDetection: ChangeDetectionStrategy.OnPush,
3235
- template: '<ng-content></ng-content>',
3236
- inputs: ['context', 'model', 'root'],
3237
- }]
3238
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { renderItem: [{
3239
- type: Input
3240
- }] } });
3241
-
3242
- /*
3243
- * SPDX-FileCopyrightText: 2024 Siemens AG
3244
- *
3245
- * SPDX-License-Identifier: MIT
3246
- *
3247
- * This source code is licensed under the MIT license found in the
3248
- * LICENSE file in the root directory of this source tree.
3249
- */
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
-
3434
- /*
3435
- * SPDX-FileCopyrightText: 2024 Siemens AG
3436
- *
3437
- * SPDX-License-Identifier: MIT
3438
- *
3439
- * This source code is licensed under the MIT license found in the
3440
- * LICENSE file in the root directory of this source tree.
3441
- */
3442
- const DECLARATIONS = [
3443
- ...DIRECTIVES,
3444
- IxTree,
3445
- IxDropdownTriggerDirective,
3446
- IxIcon,
3447
- TextValueAccessorDirective,
3448
- SelectValueAccessorDirective,
3449
- RadioValueAccessorDirective,
3450
- BooleanValueAccessorDirective,
3451
- DateValueAccessorDirective,
3452
- ];
3453
- class IxModule {
3454
- static forRoot() {
3455
- return {
3456
- ngModule: IxModule,
3457
- providers: [
3458
- {
3459
- provide: APP_INITIALIZER,
3460
- useFactory: appInitialize,
3461
- multi: true,
3462
- deps: [DOCUMENT, NgZone],
3463
- },
3464
- ModalService,
3465
- ThemeService,
3466
- ToastService,
3467
- ],
3468
- };
3469
- }
3470
- }
3471
- /** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
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,
3473
- IxIcon,
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,
3479
- IxIcon,
3480
- TextValueAccessorDirective,
3481
- SelectValueAccessorDirective,
3482
- RadioValueAccessorDirective,
3483
- BooleanValueAccessorDirective,
3484
- DateValueAccessorDirective] });
3485
- /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
3486
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
3487
- type: NgModule,
3488
- args: [{
3489
- declarations: DECLARATIONS,
3490
- exports: DECLARATIONS,
3491
- }]
3492
- }] });
3493
-
3494
- /*
3495
- * SPDX-FileCopyrightText: 2024 Siemens AG
3496
- *
3497
- * SPDX-License-Identifier: MIT
3498
- *
3499
- * This source code is licensed under the MIT license found in the
3500
- * LICENSE file in the root directory of this source tree.
3501
- */
3502
-
3503
- /**
3504
- * Generated bundle index. Do not edit.
3505
- */
3506
-
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 };
3508
- //# sourceMappingURL=siemens-ix-angular.mjs.map