@siemens/ix-angular 2.6.1 → 3.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +10 -4
  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 +137 -135
  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 +1331 -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 -2631
  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 -125
  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 -3486
  143. package/fesm2015/siemens-ix-angular.mjs.map +0 -1
  144. package/fesm2020/siemens-ix-angular.mjs +0 -3504
  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,3486 +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']);
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", 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', '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', '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", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", to: "to", 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', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'locale', 'maxDate', 'minDate', 'range', 'to', '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', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'locale', 'maxDate', 'minDate', 'range', 'to', '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", icon: "icon", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
955
- IxExpandingSearch = __decorate([
956
- ProxyCmp({
957
- inputs: ['fullWidth', 'icon', 'placeholder', 'value']
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', 'icon', 'placeholder', 'value'],
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
- }
1025
- };
1026
- /** @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 });
1027
- /** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFlipTile, selector: "ix-flip-tile", inputs: { height: "height", state: "state", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1028
- IxFlipTile = __decorate([
1029
- ProxyCmp({
1030
- inputs: ['height', 'state', 'width']
1031
- })
1032
- ], IxFlipTile);
1033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTile, decorators: [{
1034
- type: Component,
1035
- args: [{
1036
- selector: 'ix-flip-tile',
1037
- changeDetection: ChangeDetectionStrategy.OnPush,
1038
- template: '<ng-content></ng-content>',
1039
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1040
- inputs: ['height', 'state', 'width'],
1041
- }]
1042
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1043
- let IxFlipTileContent = class IxFlipTileContent {
1044
- constructor(c, r, z) {
1045
- this.z = z;
1046
- c.detach();
1047
- this.el = r.nativeElement;
1048
- }
1049
- };
1050
- /** @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 });
1051
- /** @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 });
1052
- IxFlipTileContent = __decorate([
1053
- ProxyCmp({})
1054
- ], IxFlipTileContent);
1055
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTileContent, decorators: [{
1056
- type: Component,
1057
- args: [{
1058
- selector: 'ix-flip-tile-content',
1059
- changeDetection: ChangeDetectionStrategy.OnPush,
1060
- template: '<ng-content></ng-content>',
1061
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1062
- inputs: [],
1063
- }]
1064
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1065
- let IxGroup = class IxGroup {
1066
- constructor(c, r, z) {
1067
- this.z = z;
1068
- c.detach();
1069
- this.el = r.nativeElement;
1070
- proxyOutputs(this, this.el, ['selectGroup', 'selectItem', 'collapsedChanged']);
1071
- }
1072
- };
1073
- /** @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 });
1074
- /** @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 });
1075
- IxGroup = __decorate([
1076
- ProxyCmp({
1077
- inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
1078
- })
1079
- ], IxGroup);
1080
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroup, decorators: [{
1081
- type: Component,
1082
- args: [{
1083
- selector: 'ix-group',
1084
- changeDetection: ChangeDetectionStrategy.OnPush,
1085
- template: '<ng-content></ng-content>',
1086
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1087
- inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection'],
1088
- }]
1089
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1090
- let IxGroupContextMenu = class IxGroupContextMenu {
1091
- constructor(c, r, z) {
1092
- this.z = z;
1093
- c.detach();
1094
- this.el = r.nativeElement;
1095
- }
1096
- };
1097
- /** @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 });
1098
- /** @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 });
1099
- IxGroupContextMenu = __decorate([
1100
- ProxyCmp({})
1101
- ], IxGroupContextMenu);
1102
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupContextMenu, decorators: [{
1103
- type: Component,
1104
- args: [{
1105
- selector: 'ix-group-context-menu',
1106
- changeDetection: ChangeDetectionStrategy.OnPush,
1107
- template: '<ng-content></ng-content>',
1108
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1109
- inputs: [],
1110
- }]
1111
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1112
- let IxGroupItem = class IxGroupItem {
1113
- constructor(c, r, z) {
1114
- this.z = z;
1115
- c.detach();
1116
- this.el = r.nativeElement;
1117
- proxyOutputs(this, this.el, ['selectedChanged']);
1118
- }
1119
- };
1120
- /** @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 });
1121
- /** @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 });
1122
- IxGroupItem = __decorate([
1123
- ProxyCmp({
1124
- inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
1125
- })
1126
- ], IxGroupItem);
1127
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupItem, decorators: [{
1128
- type: Component,
1129
- args: [{
1130
- selector: 'ix-group-item',
1131
- changeDetection: ChangeDetectionStrategy.OnPush,
1132
- template: '<ng-content></ng-content>',
1133
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1134
- inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1135
- }]
1136
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1137
- let IxHelperText = class IxHelperText {
1138
- constructor(c, r, z) {
1139
- this.z = z;
1140
- c.detach();
1141
- this.el = r.nativeElement;
1142
- }
1143
- };
1144
- /** @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 });
1145
- /** @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 });
1146
- IxHelperText = __decorate([
1147
- ProxyCmp({
1148
- inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText']
1149
- })
1150
- ], IxHelperText);
1151
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, decorators: [{
1152
- type: Component,
1153
- args: [{
1154
- selector: 'ix-helper-text',
1155
- changeDetection: ChangeDetectionStrategy.OnPush,
1156
- template: '<ng-content></ng-content>',
1157
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1158
- inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText'],
1159
- }]
1160
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1161
- let IxIconButton = class IxIconButton {
1162
- constructor(c, r, z) {
1163
- this.z = z;
1164
- c.detach();
1165
- this.el = r.nativeElement;
1166
- }
1167
- };
1168
- /** @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 });
1169
- /** @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 });
1170
- IxIconButton = __decorate([
1171
- ProxyCmp({
1172
- inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
1173
- })
1174
- ], IxIconButton);
1175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconButton, decorators: [{
1176
- type: Component,
1177
- args: [{
1178
- selector: 'ix-icon-button',
1179
- changeDetection: ChangeDetectionStrategy.OnPush,
1180
- template: '<ng-content></ng-content>',
1181
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1182
- inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
1183
- }]
1184
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1185
- let IxIconToggleButton = class IxIconToggleButton {
1186
- constructor(c, r, z) {
1187
- this.z = z;
1188
- c.detach();
1189
- this.el = r.nativeElement;
1190
- proxyOutputs(this, this.el, ['pressedChange']);
1191
- }
1192
- };
1193
- /** @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 });
1194
- /** @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 });
1195
- IxIconToggleButton = __decorate([
1196
- ProxyCmp({
1197
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant']
1198
- })
1199
- ], IxIconToggleButton);
1200
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconToggleButton, decorators: [{
1201
- type: Component,
1202
- args: [{
1203
- selector: 'ix-icon-toggle-button',
1204
- changeDetection: ChangeDetectionStrategy.OnPush,
1205
- template: '<ng-content></ng-content>',
1206
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1207
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant'],
1208
- }]
1209
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1210
- let IxInput = class IxInput {
1211
- constructor(c, r, z) {
1212
- this.z = z;
1213
- c.detach();
1214
- this.el = r.nativeElement;
1215
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1216
- }
1217
- };
1218
- /** @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 });
1219
- /** @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 });
1220
- IxInput = __decorate([
1221
- ProxyCmp({
1222
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
1223
- methods: ['getNativeInputElement', 'focusInput']
1224
- })
1225
- ], IxInput);
1226
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInput, decorators: [{
1227
- type: Component,
1228
- args: [{
1229
- selector: 'ix-input',
1230
- changeDetection: ChangeDetectionStrategy.OnPush,
1231
- template: '<ng-content></ng-content>',
1232
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1233
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
1234
- }]
1235
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1236
- let IxInputGroup = class IxInputGroup {
1237
- constructor(c, r, z) {
1238
- this.z = z;
1239
- c.detach();
1240
- this.el = r.nativeElement;
1241
- }
1242
- };
1243
- /** @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 });
1244
- /** @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 });
1245
- IxInputGroup = __decorate([
1246
- ProxyCmp({})
1247
- ], IxInputGroup);
1248
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInputGroup, decorators: [{
1249
- type: Component,
1250
- args: [{
1251
- selector: 'ix-input-group',
1252
- changeDetection: ChangeDetectionStrategy.OnPush,
1253
- template: '<ng-content></ng-content>',
1254
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1255
- inputs: [],
1256
- }]
1257
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1258
- let IxKeyValue = class IxKeyValue {
1259
- constructor(c, r, z) {
1260
- this.z = z;
1261
- c.detach();
1262
- this.el = r.nativeElement;
1263
- }
1264
- };
1265
- /** @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 });
1266
- /** @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 });
1267
- IxKeyValue = __decorate([
1268
- ProxyCmp({
1269
- inputs: ['icon', 'label', 'labelPosition', 'value']
1270
- })
1271
- ], IxKeyValue);
1272
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValue, decorators: [{
1273
- type: Component,
1274
- args: [{
1275
- selector: 'ix-key-value',
1276
- changeDetection: ChangeDetectionStrategy.OnPush,
1277
- template: '<ng-content></ng-content>',
1278
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1279
- inputs: ['icon', 'label', 'labelPosition', 'value'],
1280
- }]
1281
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1282
- let IxKeyValueList = class IxKeyValueList {
1283
- constructor(c, r, z) {
1284
- this.z = z;
1285
- c.detach();
1286
- this.el = r.nativeElement;
1287
- }
1288
- };
1289
- /** @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 });
1290
- /** @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 });
1291
- IxKeyValueList = __decorate([
1292
- ProxyCmp({
1293
- inputs: ['striped']
1294
- })
1295
- ], IxKeyValueList);
1296
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValueList, decorators: [{
1297
- type: Component,
1298
- args: [{
1299
- selector: 'ix-key-value-list',
1300
- changeDetection: ChangeDetectionStrategy.OnPush,
1301
- template: '<ng-content></ng-content>',
1302
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1303
- inputs: ['striped'],
1304
- }]
1305
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1306
- let IxKpi = class IxKpi {
1307
- constructor(c, r, z) {
1308
- this.z = z;
1309
- c.detach();
1310
- this.el = r.nativeElement;
1311
- }
1312
- };
1313
- /** @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 });
1314
- /** @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 });
1315
- IxKpi = __decorate([
1316
- ProxyCmp({
1317
- inputs: ['label', 'orientation', 'state', 'unit', 'value']
1318
- })
1319
- ], IxKpi);
1320
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKpi, decorators: [{
1321
- type: Component,
1322
- args: [{
1323
- selector: 'ix-kpi',
1324
- changeDetection: ChangeDetectionStrategy.OnPush,
1325
- template: '<ng-content></ng-content>',
1326
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1327
- inputs: ['label', 'orientation', 'state', 'unit', 'value'],
1328
- }]
1329
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1330
- let IxLayoutAuto = class IxLayoutAuto {
1331
- constructor(c, r, z) {
1332
- this.z = z;
1333
- c.detach();
1334
- this.el = r.nativeElement;
1335
- }
1336
- };
1337
- /** @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 });
1338
- /** @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 });
1339
- IxLayoutAuto = __decorate([
1340
- ProxyCmp({
1341
- inputs: ['layout']
1342
- })
1343
- ], IxLayoutAuto);
1344
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutAuto, decorators: [{
1345
- type: Component,
1346
- args: [{
1347
- selector: 'ix-layout-auto',
1348
- changeDetection: ChangeDetectionStrategy.OnPush,
1349
- template: '<ng-content></ng-content>',
1350
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1351
- inputs: ['layout'],
1352
- }]
1353
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1354
- let IxLayoutGrid = class IxLayoutGrid {
1355
- constructor(c, r, z) {
1356
- this.z = z;
1357
- c.detach();
1358
- this.el = r.nativeElement;
1359
- }
1360
- };
1361
- /** @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 });
1362
- /** @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 });
1363
- IxLayoutGrid = __decorate([
1364
- ProxyCmp({
1365
- inputs: ['columns', 'gap', 'noMargin']
1366
- })
1367
- ], IxLayoutGrid);
1368
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutGrid, decorators: [{
1369
- type: Component,
1370
- args: [{
1371
- selector: 'ix-layout-grid',
1372
- changeDetection: ChangeDetectionStrategy.OnPush,
1373
- template: '<ng-content></ng-content>',
1374
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1375
- inputs: ['columns', 'gap', 'noMargin'],
1376
- }]
1377
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1378
- let IxLinkButton = class IxLinkButton {
1379
- constructor(c, r, z) {
1380
- this.z = z;
1381
- c.detach();
1382
- this.el = r.nativeElement;
1383
- }
1384
- };
1385
- /** @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 });
1386
- /** @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 });
1387
- IxLinkButton = __decorate([
1388
- ProxyCmp({
1389
- inputs: ['disabled', 'target', 'url']
1390
- })
1391
- ], IxLinkButton);
1392
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLinkButton, decorators: [{
1393
- type: Component,
1394
- args: [{
1395
- selector: 'ix-link-button',
1396
- changeDetection: ChangeDetectionStrategy.OnPush,
1397
- template: '<ng-content></ng-content>',
1398
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1399
- inputs: ['disabled', 'target', 'url'],
1400
- }]
1401
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1402
- let IxMapNavigation = class IxMapNavigation {
1403
- constructor(c, r, z) {
1404
- this.z = z;
1405
- c.detach();
1406
- this.el = r.nativeElement;
1407
- proxyOutputs(this, this.el, ['navigationToggled', 'contextMenuClick']);
1408
- }
1409
- };
1410
- /** @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 });
1411
- /** @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 });
1412
- IxMapNavigation = __decorate([
1413
- ProxyCmp({
1414
- inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
1415
- methods: ['toggleSidebar', 'openOverlay', 'closeOverlay']
1416
- })
1417
- ], IxMapNavigation);
1418
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigation, decorators: [{
1419
- type: Component,
1420
- args: [{
1421
- selector: 'ix-map-navigation',
1422
- changeDetection: ChangeDetectionStrategy.OnPush,
1423
- template: '<ng-content></ng-content>',
1424
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1425
- inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
1426
- }]
1427
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1428
- let IxMapNavigationOverlay = class IxMapNavigationOverlay {
1429
- constructor(c, r, z) {
1430
- this.z = z;
1431
- c.detach();
1432
- this.el = r.nativeElement;
1433
- proxyOutputs(this, this.el, ['closeClick']);
1434
- }
1435
- };
1436
- /** @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 });
1437
- /** @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 });
1438
- IxMapNavigationOverlay = __decorate([
1439
- ProxyCmp({
1440
- inputs: ['color', 'icon', 'iconColor', 'name']
1441
- })
1442
- ], IxMapNavigationOverlay);
1443
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
1444
- type: Component,
1445
- args: [{
1446
- selector: 'ix-map-navigation-overlay',
1447
- changeDetection: ChangeDetectionStrategy.OnPush,
1448
- template: '<ng-content></ng-content>',
1449
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1450
- inputs: ['color', 'icon', 'iconColor', 'name'],
1451
- }]
1452
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1453
- let IxMenu = class IxMenu {
1454
- constructor(c, r, z) {
1455
- this.z = z;
1456
- c.detach();
1457
- this.el = r.nativeElement;
1458
- proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange']);
1459
- }
1460
- };
1461
- /** @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 });
1462
- /** @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 });
1463
- IxMenu = __decorate([
1464
- ProxyCmp({
1465
- inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1466
- methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
1467
- })
1468
- ], IxMenu);
1469
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenu, decorators: [{
1470
- type: Component,
1471
- args: [{
1472
- selector: 'ix-menu',
1473
- changeDetection: ChangeDetectionStrategy.OnPush,
1474
- template: '<ng-content></ng-content>',
1475
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1476
- inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1477
- }]
1478
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1479
- let IxMenuAbout = class IxMenuAbout {
1480
- constructor(c, r, z) {
1481
- this.z = z;
1482
- c.detach();
1483
- this.el = r.nativeElement;
1484
- proxyOutputs(this, this.el, ['close']);
1485
- }
1486
- };
1487
- /** @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 });
1488
- /** @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 });
1489
- IxMenuAbout = __decorate([
1490
- ProxyCmp({
1491
- inputs: ['activeTabLabel', 'label', 'show']
1492
- })
1493
- ], IxMenuAbout);
1494
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAbout, decorators: [{
1495
- type: Component,
1496
- args: [{
1497
- selector: 'ix-menu-about',
1498
- changeDetection: ChangeDetectionStrategy.OnPush,
1499
- template: '<ng-content></ng-content>',
1500
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1501
- inputs: ['activeTabLabel', 'label', 'show'],
1502
- }]
1503
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1504
- let IxMenuAboutItem = class IxMenuAboutItem {
1505
- constructor(c, r, z) {
1506
- this.z = z;
1507
- c.detach();
1508
- this.el = r.nativeElement;
1509
- proxyOutputs(this, this.el, ['labelChange']);
1510
- }
1511
- };
1512
- /** @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 });
1513
- /** @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 });
1514
- IxMenuAboutItem = __decorate([
1515
- ProxyCmp({
1516
- inputs: ['label']
1517
- })
1518
- ], IxMenuAboutItem);
1519
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutItem, decorators: [{
1520
- type: Component,
1521
- args: [{
1522
- selector: 'ix-menu-about-item',
1523
- changeDetection: ChangeDetectionStrategy.OnPush,
1524
- template: '<ng-content></ng-content>',
1525
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1526
- inputs: ['label'],
1527
- }]
1528
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1529
- let IxMenuAboutNews = class IxMenuAboutNews {
1530
- constructor(c, r, z) {
1531
- this.z = z;
1532
- c.detach();
1533
- this.el = r.nativeElement;
1534
- proxyOutputs(this, this.el, ['showMore', 'closePopover']);
1535
- }
1536
- };
1537
- /** @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 });
1538
- /** @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 });
1539
- IxMenuAboutNews = __decorate([
1540
- ProxyCmp({
1541
- inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show']
1542
- })
1543
- ], IxMenuAboutNews);
1544
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutNews, decorators: [{
1545
- type: Component,
1546
- args: [{
1547
- selector: 'ix-menu-about-news',
1548
- changeDetection: ChangeDetectionStrategy.OnPush,
1549
- template: '<ng-content></ng-content>',
1550
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1551
- inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show'],
1552
- }]
1553
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1554
- let IxMenuAvatar = class IxMenuAvatar {
1555
- constructor(c, r, z) {
1556
- this.z = z;
1557
- c.detach();
1558
- this.el = r.nativeElement;
1559
- proxyOutputs(this, this.el, ['logoutClick']);
1560
- }
1561
- };
1562
- /** @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 });
1563
- /** @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 });
1564
- IxMenuAvatar = __decorate([
1565
- ProxyCmp({
1566
- inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top']
1567
- })
1568
- ], IxMenuAvatar);
1569
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatar, decorators: [{
1570
- type: Component,
1571
- args: [{
1572
- selector: 'ix-menu-avatar',
1573
- changeDetection: ChangeDetectionStrategy.OnPush,
1574
- template: '<ng-content></ng-content>',
1575
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1576
- inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top'],
1577
- }]
1578
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1579
- let IxMenuAvatarItem = class IxMenuAvatarItem {
1580
- constructor(c, r, z) {
1581
- this.z = z;
1582
- c.detach();
1583
- this.el = r.nativeElement;
1584
- proxyOutputs(this, this.el, ['itemClick']);
1585
- }
1586
- };
1587
- /** @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 });
1588
- /** @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 });
1589
- IxMenuAvatarItem = __decorate([
1590
- ProxyCmp({
1591
- inputs: ['icon', 'label']
1592
- })
1593
- ], IxMenuAvatarItem);
1594
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatarItem, decorators: [{
1595
- type: Component,
1596
- args: [{
1597
- selector: 'ix-menu-avatar-item',
1598
- changeDetection: ChangeDetectionStrategy.OnPush,
1599
- template: '<ng-content></ng-content>',
1600
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1601
- inputs: ['icon', 'label'],
1602
- }]
1603
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1604
- let IxMenuCategory = class IxMenuCategory {
1605
- constructor(c, r, z) {
1606
- this.z = z;
1607
- c.detach();
1608
- this.el = r.nativeElement;
1609
- }
1610
- };
1611
- /** @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 });
1612
- /** @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 });
1613
- IxMenuCategory = __decorate([
1614
- ProxyCmp({
1615
- inputs: ['icon', 'label', 'notifications']
1616
- })
1617
- ], IxMenuCategory);
1618
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuCategory, decorators: [{
1619
- type: Component,
1620
- args: [{
1621
- selector: 'ix-menu-category',
1622
- changeDetection: ChangeDetectionStrategy.OnPush,
1623
- template: '<ng-content></ng-content>',
1624
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1625
- inputs: ['icon', 'label', 'notifications'],
1626
- }]
1627
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1628
- let IxMenuItem = class IxMenuItem {
1629
- constructor(c, r, z) {
1630
- this.z = z;
1631
- c.detach();
1632
- this.el = r.nativeElement;
1633
- }
1634
- };
1635
- /** @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 });
1636
- /** @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 });
1637
- IxMenuItem = __decorate([
1638
- ProxyCmp({
1639
- inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications', 'tabIcon']
1640
- })
1641
- ], IxMenuItem);
1642
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuItem, decorators: [{
1643
- type: Component,
1644
- args: [{
1645
- selector: 'ix-menu-item',
1646
- changeDetection: ChangeDetectionStrategy.OnPush,
1647
- template: '<ng-content></ng-content>',
1648
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1649
- inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications', 'tabIcon'],
1650
- }]
1651
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1652
- let IxMenuSettings = class IxMenuSettings {
1653
- constructor(c, r, z) {
1654
- this.z = z;
1655
- c.detach();
1656
- this.el = r.nativeElement;
1657
- proxyOutputs(this, this.el, ['close']);
1658
- }
1659
- };
1660
- /** @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 });
1661
- /** @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 });
1662
- IxMenuSettings = __decorate([
1663
- ProxyCmp({
1664
- inputs: ['activeTabLabel', 'label', 'show']
1665
- })
1666
- ], IxMenuSettings);
1667
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettings, decorators: [{
1668
- type: Component,
1669
- args: [{
1670
- selector: 'ix-menu-settings',
1671
- changeDetection: ChangeDetectionStrategy.OnPush,
1672
- template: '<ng-content></ng-content>',
1673
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1674
- inputs: ['activeTabLabel', 'label', 'show'],
1675
- }]
1676
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1677
- let IxMenuSettingsItem = class IxMenuSettingsItem {
1678
- constructor(c, r, z) {
1679
- this.z = z;
1680
- c.detach();
1681
- this.el = r.nativeElement;
1682
- proxyOutputs(this, this.el, ['labelChange']);
1683
- }
1684
- };
1685
- /** @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 });
1686
- /** @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 });
1687
- IxMenuSettingsItem = __decorate([
1688
- ProxyCmp({
1689
- inputs: ['label']
1690
- })
1691
- ], IxMenuSettingsItem);
1692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettingsItem, decorators: [{
1693
- type: Component,
1694
- args: [{
1695
- selector: 'ix-menu-settings-item',
1696
- changeDetection: ChangeDetectionStrategy.OnPush,
1697
- template: '<ng-content></ng-content>',
1698
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1699
- inputs: ['label'],
1700
- }]
1701
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1702
- let IxMessageBar = class IxMessageBar {
1703
- constructor(c, r, z) {
1704
- this.z = z;
1705
- c.detach();
1706
- this.el = r.nativeElement;
1707
- proxyOutputs(this, this.el, ['closedChange']);
1708
- }
1709
- };
1710
- /** @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 });
1711
- /** @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 });
1712
- IxMessageBar = __decorate([
1713
- ProxyCmp({
1714
- inputs: ['dismissible', 'type']
1715
- })
1716
- ], IxMessageBar);
1717
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMessageBar, decorators: [{
1718
- type: Component,
1719
- args: [{
1720
- selector: 'ix-message-bar',
1721
- changeDetection: ChangeDetectionStrategy.OnPush,
1722
- template: '<ng-content></ng-content>',
1723
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1724
- inputs: ['dismissible', 'type'],
1725
- }]
1726
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1727
- let IxModal = class IxModal {
1728
- constructor(c, r, z) {
1729
- this.z = z;
1730
- c.detach();
1731
- this.el = r.nativeElement;
1732
- proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
1733
- }
1734
- };
1735
- /** @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 });
1736
- /** @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 });
1737
- IxModal = __decorate([
1738
- ProxyCmp({
1739
- inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
1740
- methods: ['showModal', 'dismissModal', 'closeModal']
1741
- })
1742
- ], IxModal);
1743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModal, decorators: [{
1744
- type: Component,
1745
- args: [{
1746
- selector: 'ix-modal',
1747
- changeDetection: ChangeDetectionStrategy.OnPush,
1748
- template: '<ng-content></ng-content>',
1749
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1750
- inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
1751
- }]
1752
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1753
- let IxModalContent = class IxModalContent {
1754
- constructor(c, r, z) {
1755
- this.z = z;
1756
- c.detach();
1757
- this.el = r.nativeElement;
1758
- }
1759
- };
1760
- /** @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 });
1761
- /** @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 });
1762
- IxModalContent = __decorate([
1763
- ProxyCmp({})
1764
- ], IxModalContent);
1765
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalContent, decorators: [{
1766
- type: Component,
1767
- args: [{
1768
- selector: 'ix-modal-content',
1769
- changeDetection: ChangeDetectionStrategy.OnPush,
1770
- template: '<ng-content></ng-content>',
1771
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1772
- inputs: [],
1773
- }]
1774
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1775
- let IxModalFooter = class IxModalFooter {
1776
- constructor(c, r, z) {
1777
- this.z = z;
1778
- c.detach();
1779
- this.el = r.nativeElement;
1780
- }
1781
- };
1782
- /** @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 });
1783
- /** @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 });
1784
- IxModalFooter = __decorate([
1785
- ProxyCmp({})
1786
- ], IxModalFooter);
1787
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalFooter, decorators: [{
1788
- type: Component,
1789
- args: [{
1790
- selector: 'ix-modal-footer',
1791
- changeDetection: ChangeDetectionStrategy.OnPush,
1792
- template: '<ng-content></ng-content>',
1793
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1794
- inputs: [],
1795
- }]
1796
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1797
- let IxModalHeader = class IxModalHeader {
1798
- constructor(c, r, z) {
1799
- this.z = z;
1800
- c.detach();
1801
- this.el = r.nativeElement;
1802
- proxyOutputs(this, this.el, ['closeClick']);
1803
- }
1804
- };
1805
- /** @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 });
1806
- /** @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 });
1807
- IxModalHeader = __decorate([
1808
- ProxyCmp({
1809
- inputs: ['hideClose', 'icon', 'iconColor']
1810
- })
1811
- ], IxModalHeader);
1812
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalHeader, decorators: [{
1813
- type: Component,
1814
- args: [{
1815
- selector: 'ix-modal-header',
1816
- changeDetection: ChangeDetectionStrategy.OnPush,
1817
- template: '<ng-content></ng-content>',
1818
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1819
- inputs: ['hideClose', 'icon', 'iconColor'],
1820
- }]
1821
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1822
- let IxNumberInput = class IxNumberInput {
1823
- constructor(c, r, z) {
1824
- this.z = z;
1825
- c.detach();
1826
- this.el = r.nativeElement;
1827
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1828
- }
1829
- };
1830
- /** @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 });
1831
- /** @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 });
1832
- IxNumberInput = __decorate([
1833
- ProxyCmp({
1834
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1835
- methods: ['getNativeInputElement', 'focusInput']
1836
- })
1837
- ], IxNumberInput);
1838
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberInput, decorators: [{
1839
- type: Component,
1840
- args: [{
1841
- selector: 'ix-number-input',
1842
- changeDetection: ChangeDetectionStrategy.OnPush,
1843
- template: '<ng-content></ng-content>',
1844
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1845
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1846
- }]
1847
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1848
- let IxPagination = class IxPagination {
1849
- constructor(c, r, z) {
1850
- this.z = z;
1851
- c.detach();
1852
- this.el = r.nativeElement;
1853
- proxyOutputs(this, this.el, ['pageSelected', 'itemCountChanged']);
1854
- }
1855
- };
1856
- /** @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 });
1857
- /** @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 });
1858
- IxPagination = __decorate([
1859
- ProxyCmp({
1860
- inputs: ['advanced', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount']
1861
- })
1862
- ], IxPagination);
1863
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPagination, decorators: [{
1864
- type: Component,
1865
- args: [{
1866
- selector: 'ix-pagination',
1867
- changeDetection: ChangeDetectionStrategy.OnPush,
1868
- template: '<ng-content></ng-content>',
1869
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1870
- inputs: ['advanced', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount'],
1871
- }]
1872
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1873
- let IxPane = class IxPane {
1874
- constructor(c, r, z) {
1875
- this.z = z;
1876
- c.detach();
1877
- this.el = r.nativeElement;
1878
- proxyOutputs(this, this.el, ['expandedChanged', 'variantChanged', 'borderlessChanged']);
1879
- }
1880
- };
1881
- /** @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 });
1882
- /** @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 });
1883
- IxPane = __decorate([
1884
- ProxyCmp({
1885
- inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant']
1886
- })
1887
- ], IxPane);
1888
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPane, decorators: [{
1889
- type: Component,
1890
- args: [{
1891
- selector: 'ix-pane',
1892
- changeDetection: ChangeDetectionStrategy.OnPush,
1893
- template: '<ng-content></ng-content>',
1894
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1895
- inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant'],
1896
- }]
1897
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1898
- let IxPaneLayout = class IxPaneLayout {
1899
- constructor(c, r, z) {
1900
- this.z = z;
1901
- c.detach();
1902
- this.el = r.nativeElement;
1903
- }
1904
- };
1905
- /** @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 });
1906
- /** @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 });
1907
- IxPaneLayout = __decorate([
1908
- ProxyCmp({
1909
- inputs: ['borderless', 'layout', 'variant']
1910
- })
1911
- ], IxPaneLayout);
1912
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPaneLayout, decorators: [{
1913
- type: Component,
1914
- args: [{
1915
- selector: 'ix-pane-layout',
1916
- changeDetection: ChangeDetectionStrategy.OnPush,
1917
- template: '<ng-content></ng-content>',
1918
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1919
- inputs: ['borderless', 'layout', 'variant'],
1920
- }]
1921
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1922
- let IxPill = class IxPill {
1923
- constructor(c, r, z) {
1924
- this.z = z;
1925
- c.detach();
1926
- this.el = r.nativeElement;
1927
- }
1928
- };
1929
- /** @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 });
1930
- /** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPill, selector: "ix-pill", inputs: { alignLeft: "alignLeft", background: "background", color: "color", icon: "icon", outline: "outline", pillColor: "pillColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1931
- IxPill = __decorate([
1932
- ProxyCmp({
1933
- inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant']
1934
- })
1935
- ], IxPill);
1936
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPill, decorators: [{
1937
- type: Component,
1938
- args: [{
1939
- selector: 'ix-pill',
1940
- changeDetection: ChangeDetectionStrategy.OnPush,
1941
- template: '<ng-content></ng-content>',
1942
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1943
- inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant'],
1944
- }]
1945
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1946
- let IxPushCard = class IxPushCard {
1947
- constructor(c, r, z) {
1948
- this.z = z;
1949
- c.detach();
1950
- this.el = r.nativeElement;
1951
- }
1952
- };
1953
- /** @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 });
1954
- /** @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 });
1955
- IxPushCard = __decorate([
1956
- ProxyCmp({
1957
- inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
1958
- })
1959
- ], IxPushCard);
1960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPushCard, decorators: [{
1961
- type: Component,
1962
- args: [{
1963
- selector: 'ix-push-card',
1964
- changeDetection: ChangeDetectionStrategy.OnPush,
1965
- template: '<ng-content></ng-content>',
1966
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1967
- inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
1968
- }]
1969
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1970
- let IxRadio = class IxRadio {
1971
- constructor(c, r, z) {
1972
- this.z = z;
1973
- c.detach();
1974
- this.el = r.nativeElement;
1975
- proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
1976
- }
1977
- };
1978
- /** @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 });
1979
- /** @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 });
1980
- IxRadio = __decorate([
1981
- ProxyCmp({
1982
- inputs: ['checked', 'disabled', 'label', 'name', 'value']
1983
- })
1984
- ], IxRadio);
1985
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, decorators: [{
1986
- type: Component,
1987
- args: [{
1988
- selector: 'ix-radio',
1989
- changeDetection: ChangeDetectionStrategy.OnPush,
1990
- template: '<ng-content></ng-content>',
1991
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1992
- inputs: ['checked', 'disabled', 'label', 'name', 'value'],
1993
- }]
1994
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1995
- let IxRadioGroup = class IxRadioGroup {
1996
- constructor(c, r, z) {
1997
- this.z = z;
1998
- c.detach();
1999
- this.el = r.nativeElement;
2000
- proxyOutputs(this, this.el, ['valueChange']);
2001
- }
2002
- };
2003
- /** @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 });
2004
- /** @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 });
2005
- IxRadioGroup = __decorate([
2006
- ProxyCmp({
2007
- inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
2008
- })
2009
- ], IxRadioGroup);
2010
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, decorators: [{
2011
- type: Component,
2012
- args: [{
2013
- selector: 'ix-radio-group',
2014
- changeDetection: ChangeDetectionStrategy.OnPush,
2015
- template: '<ng-content></ng-content>',
2016
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2017
- inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2018
- }]
2019
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2020
- let IxRow = class IxRow {
2021
- constructor(c, r, z) {
2022
- this.z = z;
2023
- c.detach();
2024
- this.el = r.nativeElement;
2025
- }
2026
- };
2027
- /** @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 });
2028
- /** @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 });
2029
- IxRow = __decorate([
2030
- ProxyCmp({})
2031
- ], IxRow);
2032
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRow, decorators: [{
2033
- type: Component,
2034
- args: [{
2035
- selector: 'ix-row',
2036
- changeDetection: ChangeDetectionStrategy.OnPush,
2037
- template: '<ng-content></ng-content>',
2038
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2039
- inputs: [],
2040
- }]
2041
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2042
- let IxSelect = class IxSelect {
2043
- constructor(c, r, z) {
2044
- this.z = z;
2045
- c.detach();
2046
- this.el = r.nativeElement;
2047
- proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem', 'ixBlur']);
2048
- }
2049
- };
2050
- /** @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 });
2051
- /** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", 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 });
2052
- IxSelect = __decorate([
2053
- ProxyCmp({
2054
- inputs: ['allowClear', 'disabled', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2055
- methods: ['getNativeInputElement', 'focusInput']
2056
- })
2057
- ], IxSelect);
2058
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
2059
- type: Component,
2060
- args: [{
2061
- selector: 'ix-select',
2062
- changeDetection: ChangeDetectionStrategy.OnPush,
2063
- template: '<ng-content></ng-content>',
2064
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2065
- inputs: ['allowClear', 'disabled', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2066
- }]
2067
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2068
- let IxSelectItem = class IxSelectItem {
2069
- constructor(c, r, z) {
2070
- this.z = z;
2071
- c.detach();
2072
- this.el = r.nativeElement;
2073
- proxyOutputs(this, this.el, ['itemClick']);
2074
- }
2075
- };
2076
- /** @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 });
2077
- /** @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 });
2078
- IxSelectItem = __decorate([
2079
- ProxyCmp({
2080
- inputs: ['label', 'selected', 'value']
2081
- })
2082
- ], IxSelectItem);
2083
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelectItem, decorators: [{
2084
- type: Component,
2085
- args: [{
2086
- selector: 'ix-select-item',
2087
- changeDetection: ChangeDetectionStrategy.OnPush,
2088
- template: '<ng-content></ng-content>',
2089
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2090
- inputs: ['label', 'selected', 'value'],
2091
- }]
2092
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2093
- let IxSlider = class IxSlider {
2094
- constructor(c, r, z) {
2095
- this.z = z;
2096
- c.detach();
2097
- this.el = r.nativeElement;
2098
- proxyOutputs(this, this.el, ['valueChange']);
2099
- }
2100
- };
2101
- /** @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 });
2102
- /** @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 });
2103
- IxSlider = __decorate([
2104
- ProxyCmp({
2105
- inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
2106
- })
2107
- ], IxSlider);
2108
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSlider, decorators: [{
2109
- type: Component,
2110
- args: [{
2111
- selector: 'ix-slider',
2112
- changeDetection: ChangeDetectionStrategy.OnPush,
2113
- template: '<ng-content></ng-content>',
2114
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2115
- inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value'],
2116
- }]
2117
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2118
- let IxSpinner = class IxSpinner {
2119
- constructor(c, r, z) {
2120
- this.z = z;
2121
- c.detach();
2122
- this.el = r.nativeElement;
2123
- }
2124
- };
2125
- /** @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 });
2126
- /** @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 });
2127
- IxSpinner = __decorate([
2128
- ProxyCmp({
2129
- inputs: ['size', 'variant']
2130
- })
2131
- ], IxSpinner);
2132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSpinner, decorators: [{
2133
- type: Component,
2134
- args: [{
2135
- selector: 'ix-spinner',
2136
- changeDetection: ChangeDetectionStrategy.OnPush,
2137
- template: '<ng-content></ng-content>',
2138
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2139
- inputs: ['size', 'variant'],
2140
- }]
2141
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2142
- let IxSplitButton = class IxSplitButton {
2143
- constructor(c, r, z) {
2144
- this.z = z;
2145
- c.detach();
2146
- this.el = r.nativeElement;
2147
- proxyOutputs(this, this.el, ['buttonClick']);
2148
- }
2149
- };
2150
- /** @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 });
2151
- /** @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 });
2152
- IxSplitButton = __decorate([
2153
- ProxyCmp({
2154
- inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
2155
- })
2156
- ], IxSplitButton);
2157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButton, decorators: [{
2158
- type: Component,
2159
- args: [{
2160
- selector: 'ix-split-button',
2161
- changeDetection: ChangeDetectionStrategy.OnPush,
2162
- template: '<ng-content></ng-content>',
2163
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2164
- inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
2165
- }]
2166
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2167
- let IxSplitButtonItem = class IxSplitButtonItem {
2168
- constructor(c, r, z) {
2169
- this.z = z;
2170
- c.detach();
2171
- this.el = r.nativeElement;
2172
- proxyOutputs(this, this.el, ['itemClick']);
2173
- }
2174
- };
2175
- /** @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 });
2176
- /** @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 });
2177
- IxSplitButtonItem = __decorate([
2178
- ProxyCmp({
2179
- inputs: ['icon', 'label']
2180
- })
2181
- ], IxSplitButtonItem);
2182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButtonItem, decorators: [{
2183
- type: Component,
2184
- args: [{
2185
- selector: 'ix-split-button-item',
2186
- changeDetection: ChangeDetectionStrategy.OnPush,
2187
- template: '<ng-content></ng-content>',
2188
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2189
- inputs: ['icon', 'label'],
2190
- }]
2191
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2192
- let IxTabItem = class IxTabItem {
2193
- constructor(c, r, z) {
2194
- this.z = z;
2195
- c.detach();
2196
- this.el = r.nativeElement;
2197
- proxyOutputs(this, this.el, ['tabClick']);
2198
- }
2199
- };
2200
- /** @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 });
2201
- /** @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 });
2202
- IxTabItem = __decorate([
2203
- ProxyCmp({
2204
- inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
2205
- })
2206
- ], IxTabItem);
2207
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabItem, decorators: [{
2208
- type: Component,
2209
- args: [{
2210
- selector: 'ix-tab-item',
2211
- changeDetection: ChangeDetectionStrategy.OnPush,
2212
- template: '<ng-content></ng-content>',
2213
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2214
- inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small'],
2215
- }]
2216
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2217
- let IxTabs = class IxTabs {
2218
- constructor(c, r, z) {
2219
- this.z = z;
2220
- c.detach();
2221
- this.el = r.nativeElement;
2222
- proxyOutputs(this, this.el, ['selectedChange']);
2223
- }
2224
- };
2225
- /** @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 });
2226
- /** @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 });
2227
- IxTabs = __decorate([
2228
- ProxyCmp({
2229
- inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
2230
- })
2231
- ], IxTabs);
2232
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabs, decorators: [{
2233
- type: Component,
2234
- args: [{
2235
- selector: 'ix-tabs',
2236
- changeDetection: ChangeDetectionStrategy.OnPush,
2237
- template: '<ng-content></ng-content>',
2238
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2239
- inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
2240
- }]
2241
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2242
- let IxTextarea = class IxTextarea {
2243
- constructor(c, r, z) {
2244
- this.z = z;
2245
- c.detach();
2246
- this.el = r.nativeElement;
2247
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2248
- }
2249
- };
2250
- /** @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 });
2251
- /** @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 });
2252
- IxTextarea = __decorate([
2253
- ProxyCmp({
2254
- inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2255
- methods: ['getNativeInputElement', 'focusInput']
2256
- })
2257
- ], IxTextarea);
2258
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextarea, decorators: [{
2259
- type: Component,
2260
- args: [{
2261
- selector: 'ix-textarea',
2262
- changeDetection: ChangeDetectionStrategy.OnPush,
2263
- template: '<ng-content></ng-content>',
2264
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2265
- inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2266
- }]
2267
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2268
- let IxTile = class IxTile {
2269
- constructor(c, r, z) {
2270
- this.z = z;
2271
- c.detach();
2272
- this.el = r.nativeElement;
2273
- }
2274
- };
2275
- /** @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 });
2276
- /** @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 });
2277
- IxTile = __decorate([
2278
- ProxyCmp({
2279
- inputs: ['size']
2280
- })
2281
- ], IxTile);
2282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTile, decorators: [{
2283
- type: Component,
2284
- args: [{
2285
- selector: 'ix-tile',
2286
- changeDetection: ChangeDetectionStrategy.OnPush,
2287
- template: '<ng-content></ng-content>',
2288
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2289
- inputs: ['size'],
2290
- }]
2291
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2292
- let IxTimePicker = class IxTimePicker {
2293
- constructor(c, r, z) {
2294
- this.z = z;
2295
- c.detach();
2296
- this.el = r.nativeElement;
2297
- proxyOutputs(this, this.el, ['timeSelect', 'done', 'timeChange']);
2298
- }
2299
- };
2300
- /** @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 });
2301
- /** @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 });
2302
- IxTimePicker = __decorate([
2303
- ProxyCmp({
2304
- inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2305
- methods: ['getCurrentTime']
2306
- })
2307
- ], IxTimePicker);
2308
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTimePicker, decorators: [{
2309
- type: Component,
2310
- args: [{
2311
- selector: 'ix-time-picker',
2312
- changeDetection: ChangeDetectionStrategy.OnPush,
2313
- template: '<ng-content></ng-content>',
2314
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2315
- inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2316
- }]
2317
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2318
- let IxToast = class IxToast {
2319
- constructor(c, r, z) {
2320
- this.z = z;
2321
- c.detach();
2322
- this.el = r.nativeElement;
2323
- proxyOutputs(this, this.el, ['closeToast']);
2324
- }
2325
- };
2326
- /** @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 });
2327
- /** @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 });
2328
- IxToast = __decorate([
2329
- ProxyCmp({
2330
- inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
2331
- })
2332
- ], IxToast);
2333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToast, decorators: [{
2334
- type: Component,
2335
- args: [{
2336
- selector: 'ix-toast',
2337
- changeDetection: ChangeDetectionStrategy.OnPush,
2338
- template: '<ng-content></ng-content>',
2339
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2340
- inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type'],
2341
- }]
2342
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2343
- let IxToastContainer = class IxToastContainer {
2344
- constructor(c, r, z) {
2345
- this.z = z;
2346
- c.detach();
2347
- this.el = r.nativeElement;
2348
- }
2349
- };
2350
- /** @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 });
2351
- /** @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 });
2352
- IxToastContainer = __decorate([
2353
- ProxyCmp({
2354
- inputs: ['containerClass', 'containerId', 'position'],
2355
- methods: ['showToast']
2356
- })
2357
- ], IxToastContainer);
2358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToastContainer, decorators: [{
2359
- type: Component,
2360
- args: [{
2361
- selector: 'ix-toast-container',
2362
- changeDetection: ChangeDetectionStrategy.OnPush,
2363
- template: '<ng-content></ng-content>',
2364
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2365
- inputs: ['containerClass', 'containerId', 'position'],
2366
- }]
2367
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2368
- let IxToggle = class IxToggle {
2369
- constructor(c, r, z) {
2370
- this.z = z;
2371
- c.detach();
2372
- this.el = r.nativeElement;
2373
- proxyOutputs(this, this.el, ['checkedChange']);
2374
- }
2375
- };
2376
- /** @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 });
2377
- /** @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 });
2378
- IxToggle = __decorate([
2379
- ProxyCmp({
2380
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2381
- })
2382
- ], IxToggle);
2383
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
2384
- type: Component,
2385
- args: [{
2386
- selector: 'ix-toggle',
2387
- changeDetection: ChangeDetectionStrategy.OnPush,
2388
- template: '<ng-content></ng-content>',
2389
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2390
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2391
- }]
2392
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2393
- let IxToggleButton = class IxToggleButton {
2394
- constructor(c, r, z) {
2395
- this.z = z;
2396
- c.detach();
2397
- this.el = r.nativeElement;
2398
- proxyOutputs(this, this.el, ['pressedChange']);
2399
- }
2400
- };
2401
- /** @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 });
2402
- /** @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 });
2403
- IxToggleButton = __decorate([
2404
- ProxyCmp({
2405
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
2406
- })
2407
- ], IxToggleButton);
2408
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggleButton, decorators: [{
2409
- type: Component,
2410
- args: [{
2411
- selector: 'ix-toggle-button',
2412
- changeDetection: ChangeDetectionStrategy.OnPush,
2413
- template: '<ng-content></ng-content>',
2414
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2415
- inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
2416
- }]
2417
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2418
- let IxTooltip = class IxTooltip {
2419
- constructor(c, r, z) {
2420
- this.z = z;
2421
- c.detach();
2422
- this.el = r.nativeElement;
2423
- }
2424
- };
2425
- /** @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 });
2426
- /** @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 });
2427
- IxTooltip = __decorate([
2428
- ProxyCmp({
2429
- inputs: ['for', 'interactive', 'placement', 'titleContent']
2430
- })
2431
- ], IxTooltip);
2432
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTooltip, decorators: [{
2433
- type: Component,
2434
- args: [{
2435
- selector: 'ix-tooltip',
2436
- changeDetection: ChangeDetectionStrategy.OnPush,
2437
- template: '<ng-content></ng-content>',
2438
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2439
- inputs: ['for', 'interactive', 'placement', 'titleContent'],
2440
- }]
2441
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2442
- let IxTreeItem = class IxTreeItem {
2443
- constructor(c, r, z) {
2444
- this.z = z;
2445
- c.detach();
2446
- this.el = r.nativeElement;
2447
- proxyOutputs(this, this.el, ['toggle', 'itemClick']);
2448
- }
2449
- };
2450
- /** @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 });
2451
- /** @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 });
2452
- IxTreeItem = __decorate([
2453
- ProxyCmp({
2454
- inputs: ['context', 'hasChildren', 'text']
2455
- })
2456
- ], IxTreeItem);
2457
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTreeItem, decorators: [{
2458
- type: Component,
2459
- args: [{
2460
- selector: 'ix-tree-item',
2461
- changeDetection: ChangeDetectionStrategy.OnPush,
2462
- template: '<ng-content></ng-content>',
2463
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2464
- inputs: ['context', 'hasChildren', 'text'],
2465
- }]
2466
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2467
- let IxTypography = class IxTypography {
2468
- constructor(c, r, z) {
2469
- this.z = z;
2470
- c.detach();
2471
- this.el = r.nativeElement;
2472
- }
2473
- };
2474
- /** @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 });
2475
- /** @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 });
2476
- IxTypography = __decorate([
2477
- ProxyCmp({
2478
- inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration']
2479
- })
2480
- ], IxTypography);
2481
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTypography, decorators: [{
2482
- type: Component,
2483
- args: [{
2484
- selector: 'ix-typography',
2485
- changeDetection: ChangeDetectionStrategy.OnPush,
2486
- template: '<ng-content></ng-content>',
2487
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2488
- inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration'],
2489
- }]
2490
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2491
- let IxUpload = class IxUpload {
2492
- constructor(c, r, z) {
2493
- this.z = z;
2494
- c.detach();
2495
- this.el = r.nativeElement;
2496
- proxyOutputs(this, this.el, ['filesChanged']);
2497
- }
2498
- };
2499
- /** @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 });
2500
- /** @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 });
2501
- IxUpload = __decorate([
2502
- ProxyCmp({
2503
- inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2504
- methods: ['setFilesToUpload']
2505
- })
2506
- ], IxUpload);
2507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxUpload, decorators: [{
2508
- type: Component,
2509
- args: [{
2510
- selector: 'ix-upload',
2511
- changeDetection: ChangeDetectionStrategy.OnPush,
2512
- template: '<ng-content></ng-content>',
2513
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2514
- inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2515
- }]
2516
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2517
- let IxValidationTooltip = class IxValidationTooltip {
2518
- constructor(c, r, z) {
2519
- this.z = z;
2520
- c.detach();
2521
- this.el = r.nativeElement;
2522
- }
2523
- };
2524
- /** @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 });
2525
- /** @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 });
2526
- IxValidationTooltip = __decorate([
2527
- ProxyCmp({
2528
- inputs: ['message', 'placement', 'suppressAutomaticPlacement']
2529
- })
2530
- ], IxValidationTooltip);
2531
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxValidationTooltip, decorators: [{
2532
- type: Component,
2533
- args: [{
2534
- selector: 'ix-validation-tooltip',
2535
- changeDetection: ChangeDetectionStrategy.OnPush,
2536
- template: '<ng-content></ng-content>',
2537
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2538
- inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
2539
- }]
2540
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2541
- let IxWorkflowStep = class IxWorkflowStep {
2542
- constructor(c, r, z) {
2543
- this.z = z;
2544
- c.detach();
2545
- this.el = r.nativeElement;
2546
- }
2547
- };
2548
- /** @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 });
2549
- /** @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 });
2550
- IxWorkflowStep = __decorate([
2551
- ProxyCmp({
2552
- inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
2553
- })
2554
- ], IxWorkflowStep);
2555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowStep, decorators: [{
2556
- type: Component,
2557
- args: [{
2558
- selector: 'ix-workflow-step',
2559
- changeDetection: ChangeDetectionStrategy.OnPush,
2560
- template: '<ng-content></ng-content>',
2561
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2562
- inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
2563
- }]
2564
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2565
- let IxWorkflowSteps = class IxWorkflowSteps {
2566
- constructor(c, r, z) {
2567
- this.z = z;
2568
- c.detach();
2569
- this.el = r.nativeElement;
2570
- proxyOutputs(this, this.el, ['stepSelected']);
2571
- }
2572
- };
2573
- /** @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 });
2574
- /** @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 });
2575
- IxWorkflowSteps = __decorate([
2576
- ProxyCmp({
2577
- inputs: ['clickable', 'selectedIndex', 'vertical']
2578
- })
2579
- ], IxWorkflowSteps);
2580
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowSteps, decorators: [{
2581
- type: Component,
2582
- args: [{
2583
- selector: 'ix-workflow-steps',
2584
- changeDetection: ChangeDetectionStrategy.OnPush,
2585
- template: '<ng-content></ng-content>',
2586
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2587
- inputs: ['clickable', 'selectedIndex', 'vertical'],
2588
- }]
2589
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2590
-
2591
- /*
2592
- * SPDX-FileCopyrightText: 2024 Siemens AG
2593
- *
2594
- * SPDX-License-Identifier: MIT
2595
- *
2596
- * This source code is licensed under the MIT license found in the
2597
- * LICENSE file in the root directory of this source tree.
2598
- */
2599
- class IxDropdownTriggerDirective {
2600
- constructor(element) {
2601
- this.element = element;
2602
- }
2603
- ngOnChanges() {
2604
- this.element.nativeElement.trigger = this.ixDropdownTrigger.el;
2605
- }
2606
- }
2607
- /** @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 });
2608
- /** @nocollapse */ IxDropdownTriggerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownTriggerDirective, selector: "[ixDropdownTrigger]", inputs: { ixDropdownTrigger: "ixDropdownTrigger" }, usesOnChanges: true, ngImport: i0 });
2609
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
2610
- type: Directive,
2611
- args: [{
2612
- selector: '[ixDropdownTrigger]',
2613
- }]
2614
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { ixDropdownTrigger: [{
2615
- type: Input
2616
- }] } });
2617
-
2618
- let IxIcon = class IxIcon {
2619
- constructor(c, r, z) {
2620
- this.z = z;
2621
- c.detach();
2622
- this.el = r.nativeElement;
2623
- }
2624
- };
2625
- /** @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 });
2626
- /** @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 });
2627
- IxIcon = __decorate([
2628
- ProxyCmp({
2629
- defineCustomElementFn: undefined,
2630
- inputs: ['color', 'name', 'size'],
2631
- })
2632
- ], IxIcon);
2633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIcon, decorators: [{
2634
- type: Component,
2635
- args: [{
2636
- selector: 'ix-icon',
2637
- changeDetection: ChangeDetectionStrategy.OnPush,
2638
- template: '<ng-content></ng-content>',
2639
- inputs: ['color', 'name', 'size'],
2640
- }]
2641
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2642
-
2643
- /*
2644
- * SPDX-FileCopyrightText: 2024 Siemens AG
2645
- *
2646
- * SPDX-License-Identifier: MIT
2647
- *
2648
- * This source code is licensed under the MIT license found in the
2649
- * LICENSE file in the root directory of this source tree.
2650
- */
2651
- class IxActiveModal {
2652
- constructor(modalData) {
2653
- this.modalData = modalData;
2654
- }
2655
- get data() {
2656
- return this.modalData;
2657
- }
2658
- /**
2659
- * Close the active modal
2660
- *
2661
- * @param reason
2662
- */
2663
- close(reason) {
2664
- closeModal(this.modalElement, reason);
2665
- }
2666
- /**
2667
- * Dismiss the active modal
2668
- *
2669
- * @param reason
2670
- */
2671
- dismiss(reason) {
2672
- dismissModal(this.modalElement, reason);
2673
- }
2674
- }
2675
- class InternalIxActiveModal extends IxActiveModal {
2676
- setModalElement(element) {
2677
- this.modalElement = element;
2678
- }
2679
- }
2680
-
2681
- class ModalService {
2682
- constructor(appRef, componentFactoryResolver, injector) {
2683
- this.appRef = appRef;
2684
- this.componentFactoryResolver = componentFactoryResolver;
2685
- this.injector = injector;
2686
- }
2687
- open(config) {
2688
- return __awaiter(this, void 0, void 0, function* () {
2689
- const context = {
2690
- close: null,
2691
- dismiss: null,
2692
- data: config.data,
2693
- };
2694
- if (config.content instanceof Type) {
2695
- return this.createContentByComponentType(config.content, config, context);
2696
- }
2697
- const modalInstance = yield this.createContentByTemplateRef(config.content, config, context);
2698
- return modalInstance;
2699
- });
2700
- }
2701
- createContentByComponentType(componentType, config, context) {
2702
- return __awaiter(this, void 0, void 0, function* () {
2703
- const activeModal = new InternalIxActiveModal(context.data);
2704
- const modalFactory = this.componentFactoryResolver.resolveComponentFactory(componentType);
2705
- const modalInjector = Injector.create({
2706
- providers: [
2707
- {
2708
- provide: IxActiveModal,
2709
- useValue: activeModal,
2710
- },
2711
- ],
2712
- parent: this.injector,
2713
- });
2714
- const instance = modalFactory.create(modalInjector);
2715
- this.appRef.attachView(instance.hostView);
2716
- const element = instance.injector.get(ElementRef);
2717
- element.nativeElement.style.display = 'contents';
2718
- const modalInstance = yield this.createModalInstance(context, element.nativeElement, instance.hostView, config);
2719
- activeModal.setModalElement(modalInstance.htmlElement);
2720
- return modalInstance;
2721
- });
2722
- }
2723
- createContentByTemplateRef(templateRef, config, context) {
2724
- return __awaiter(this, void 0, void 0, function* () {
2725
- const embeddedView = templateRef.createEmbeddedView({
2726
- $implicit: context,
2727
- });
2728
- this.appRef.attachView(embeddedView);
2729
- return yield this.createModalInstance(context, embeddedView.rootNodes[0], embeddedView, config);
2730
- });
2731
- }
2732
- createModalInstance(context, htmlElement, viewRef, config) {
2733
- return __awaiter(this, void 0, void 0, function* () {
2734
- context.close = (result) => {
2735
- closeModal(htmlElement, result);
2736
- };
2737
- context.dismiss = (result) => {
2738
- dismissModal(htmlElement, result);
2739
- };
2740
- viewRef.detectChanges();
2741
- const modalInstance = yield showModal(Object.assign(Object.assign({}, config), { content: htmlElement }));
2742
- modalInstance.onClose.once(() => {
2743
- viewRef.destroy();
2744
- });
2745
- modalInstance.onDismiss.once(() => {
2746
- viewRef.destroy();
2747
- });
2748
- return modalInstance;
2749
- });
2750
- }
2751
- }
2752
- /** @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 });
2753
- /** @nocollapse */ ModalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, providedIn: 'root' });
2754
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, decorators: [{
2755
- type: Injectable,
2756
- args: [{
2757
- providedIn: 'root',
2758
- }]
2759
- }], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }]; } });
2760
-
2761
- /*
2762
- * SPDX-FileCopyrightText: 2024 Siemens AG
2763
- *
2764
- * SPDX-License-Identifier: MIT
2765
- *
2766
- * This source code is licensed under the MIT license found in the
2767
- * LICENSE file in the root directory of this source tree.
2768
- */
2769
-
2770
- /*
2771
- * SPDX-FileCopyrightText: 2024 Siemens AG
2772
- *
2773
- * SPDX-License-Identifier: MIT
2774
- *
2775
- * This source code is licensed under the MIT license found in the
2776
- * LICENSE file in the root directory of this source tree.
2777
- */
2778
- class ValueAccessor {
2779
- constructor(injector, elementRef) {
2780
- this.injector = injector;
2781
- this.elementRef = elementRef;
2782
- this.onChange = () => {
2783
- /**/
2784
- };
2785
- this.onTouched = () => {
2786
- /**/
2787
- };
2788
- }
2789
- writeValue(value) {
2790
- this.elementRef.nativeElement.value = this.lastValue = value;
2791
- mapNgToIxClassNames(this.elementRef);
2792
- }
2793
- handleValueChange(el, value) {
2794
- if (el === this.elementRef.nativeElement) {
2795
- if (value !== this.lastValue) {
2796
- this.lastValue = value;
2797
- this.onChange(value);
2798
- }
2799
- mapNgToIxClassNames(this.elementRef);
2800
- }
2801
- }
2802
- _handleBlurEvent(el) {
2803
- if (el === this.elementRef.nativeElement) {
2804
- this.onTouched();
2805
- mapNgToIxClassNames(this.elementRef);
2806
- }
2807
- }
2808
- registerOnChange(fn) {
2809
- this.onChange = fn;
2810
- }
2811
- registerOnTouched(fn) {
2812
- this.onTouched = fn;
2813
- }
2814
- setDisabledState(isDisabled) {
2815
- this.elementRef.nativeElement.disabled = isDisabled;
2816
- }
2817
- ngOnDestroy() {
2818
- if (this.statusChanges) {
2819
- this.statusChanges.unsubscribe();
2820
- }
2821
- }
2822
- ngAfterViewInit() {
2823
- let ngControl;
2824
- try {
2825
- ngControl = this.injector.get(NgControl);
2826
- }
2827
- catch (_a) {
2828
- /* No FormControl or ngModel binding */
2829
- }
2830
- if (!ngControl) {
2831
- return;
2832
- }
2833
- if (ngControl.statusChanges) {
2834
- this.statusChanges = ngControl.statusChanges.subscribe(() => {
2835
- mapNgToIxClassNames(this.elementRef);
2836
- });
2837
- }
2838
- detourFormControlMethods(ngControl, this.elementRef);
2839
- }
2840
- }
2841
- ValueAccessor.ANGULAR_CLASS_PREFIX = 'ng-';
2842
- /** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2843
- /** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, host: { listeners: { "ixBlur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
2844
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
2845
- type: Directive
2846
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
2847
- type: HostListener,
2848
- args: ['ixBlur', ['$event.target']]
2849
- }] } });
2850
- const detourFormControlMethods = (ngControl, elementRef) => {
2851
- const formControl = ngControl.control;
2852
- if (formControl) {
2853
- const methodsToPatch = [
2854
- 'markAsTouched',
2855
- 'markAllAsTouched',
2856
- 'markAsUntouched',
2857
- 'markAsDirty',
2858
- 'markAsPristine',
2859
- ];
2860
- methodsToPatch.forEach((method) => {
2861
- if (typeof formControl[method] !== 'undefined') {
2862
- const oldFn = formControl[method].bind(formControl);
2863
- formControl[method] = (...params) => {
2864
- oldFn(...params);
2865
- mapNgToIxClassNames(elementRef);
2866
- };
2867
- }
2868
- });
2869
- }
2870
- };
2871
- const mapNgToIxClassNames = (element) => {
2872
- setTimeout(() => {
2873
- const input = element.nativeElement;
2874
- const classes = 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
- });
2879
- };
2880
- const getClasses = (element) => {
2881
- const classList = element.classList;
2882
- const classes = [];
2883
- for (let i = 0; i < classList.length; i++) {
2884
- const item = classList.item(i);
2885
- if (item === null || item === void 0 ? void 0 : item.startsWith(ValueAccessor.ANGULAR_CLASS_PREFIX)) {
2886
- classes.push(`ix-${item.substring(3)}`);
2887
- }
2888
- }
2889
- return classes;
2890
- };
2891
-
2892
- /*
2893
- * SPDX-FileCopyrightText: 2024 Siemens AG
2894
- *
2895
- * SPDX-License-Identifier: MIT
2896
- *
2897
- * This source code is licensed under the MIT license found in the
2898
- * LICENSE file in the root directory of this source tree.
2899
- */
2900
- class TextValueAccessorDirective extends ValueAccessor {
2901
- constructor(injector, el) {
2902
- super(injector, el);
2903
- }
2904
- handleInputEvent(el) {
2905
- super.handleValueChange(el, el.value);
2906
- }
2907
- }
2908
- /** @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 });
2909
- /** @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: [
2910
- {
2911
- provide: NG_VALUE_ACCESSOR,
2912
- useExisting: TextValueAccessorDirective,
2913
- multi: true,
2914
- },
2915
- ], usesInheritance: true, ngImport: i0 });
2916
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
2917
- type: Directive,
2918
- args: [{
2919
- selector: 'ix-input,ix-number-input,ix-textarea',
2920
- providers: [
2921
- {
2922
- provide: NG_VALUE_ACCESSOR,
2923
- useExisting: TextValueAccessorDirective,
2924
- multi: true,
2925
- },
2926
- ],
2927
- }]
2928
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
2929
- type: HostListener,
2930
- args: ['input', ['$event.target']]
2931
- }, {
2932
- type: HostListener,
2933
- args: ['valueChange', ['$event.target']]
2934
- }] } });
2935
-
2936
- let didInitialize = false;
2937
- const appInitialize = (doc) => {
2938
- return () => __awaiter(void 0, void 0, void 0, function* () {
2939
- const win = doc.defaultView;
2940
- if (win && typeof window !== 'undefined') {
2941
- if (didInitialize) {
2942
- return;
2943
- }
2944
- didInitialize = true;
2945
- yield defineCustomElements();
2946
- defineCustomElements$1();
2947
- }
2948
- });
2949
- };
2950
-
2951
- const DIRECTIVES = [
2952
- IxActionCard,
2953
- IxApplication,
2954
- IxApplicationHeader,
2955
- IxAvatar,
2956
- IxBasicNavigation,
2957
- IxBlind,
2958
- IxBreadcrumb,
2959
- IxBreadcrumbItem,
2960
- IxButton,
2961
- IxCard,
2962
- IxCardAccordion,
2963
- IxCardContent,
2964
- IxCardList,
2965
- IxCardTitle,
2966
- IxCategoryFilter,
2967
- IxCheckbox,
2968
- IxCheckboxGroup,
2969
- IxChip,
2970
- IxCol,
2971
- IxContent,
2972
- IxContentHeader,
2973
- IxCustomField,
2974
- IxDateDropdown,
2975
- IxDateInput,
2976
- IxDatePicker,
2977
- IxDatetimePicker,
2978
- IxDivider,
2979
- IxDrawer,
2980
- IxDropdown,
2981
- IxDropdownButton,
2982
- IxDropdownHeader,
2983
- IxDropdownItem,
2984
- IxDropdownQuickActions,
2985
- IxEmptyState,
2986
- IxEventList,
2987
- IxEventListItem,
2988
- IxExpandingSearch,
2989
- IxFieldLabel,
2990
- IxFilterChip,
2991
- IxFlipTile,
2992
- IxFlipTileContent,
2993
- IxGroup,
2994
- IxGroupContextMenu,
2995
- IxGroupItem,
2996
- IxHelperText,
2997
- IxIconButton,
2998
- IxIconToggleButton,
2999
- IxInput,
3000
- IxInputGroup,
3001
- IxKeyValue,
3002
- IxKeyValueList,
3003
- IxKpi,
3004
- IxLayoutAuto,
3005
- IxLayoutGrid,
3006
- IxLinkButton,
3007
- IxMapNavigation,
3008
- IxMapNavigationOverlay,
3009
- IxMenu,
3010
- IxMenuAbout,
3011
- IxMenuAboutItem,
3012
- IxMenuAboutNews,
3013
- IxMenuAvatar,
3014
- IxMenuAvatarItem,
3015
- IxMenuCategory,
3016
- IxMenuItem,
3017
- IxMenuSettings,
3018
- IxMenuSettingsItem,
3019
- IxMessageBar,
3020
- IxModal,
3021
- IxModalContent,
3022
- IxModalFooter,
3023
- IxModalHeader,
3024
- IxNumberInput,
3025
- IxPagination,
3026
- IxPane,
3027
- IxPaneLayout,
3028
- IxPill,
3029
- IxPushCard,
3030
- IxRadio,
3031
- IxRadioGroup,
3032
- IxRow,
3033
- IxSelect,
3034
- IxSelectItem,
3035
- IxSlider,
3036
- IxSpinner,
3037
- IxSplitButton,
3038
- IxSplitButtonItem,
3039
- IxTabItem,
3040
- IxTabs,
3041
- IxTextarea,
3042
- IxTile,
3043
- IxTimePicker,
3044
- IxToast,
3045
- IxToastContainer,
3046
- IxToggle,
3047
- IxToggleButton,
3048
- IxTooltip,
3049
- IxTreeItem,
3050
- IxTypography,
3051
- IxUpload,
3052
- IxValidationTooltip,
3053
- IxWorkflowStep,
3054
- IxWorkflowSteps
3055
- ];
3056
-
3057
- /*
3058
- * SPDX-FileCopyrightText: 2024 Siemens AG
3059
- *
3060
- * SPDX-License-Identifier: MIT
3061
- *
3062
- * This source code is licensed under the MIT license found in the
3063
- * LICENSE file in the root directory of this source tree.
3064
- */
3065
- /**
3066
- * @deprecated Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
3067
- */
3068
- class ThemeService {
3069
- constructor() {
3070
- this.themeChanged = new EventEmitter();
3071
- this.themeSwitcher = themeSwitcher;
3072
- this.themeSwitcher.themeChanged.on((theme) => this.themeChanged.emit(theme));
3073
- }
3074
- toggleMode() {
3075
- this.themeSwitcher.toggleMode();
3076
- }
3077
- setTheme(themeName) {
3078
- this.themeSwitcher.setTheme(themeName);
3079
- }
3080
- }
3081
- /** @nocollapse */ ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3082
- /** @nocollapse */ ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, providedIn: 'root' });
3083
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, decorators: [{
3084
- type: Injectable,
3085
- args: [{
3086
- providedIn: 'root',
3087
- }]
3088
- }], ctorParameters: function () { return []; }, propDecorators: { themeChanged: [{
3089
- type: Output
3090
- }] } });
3091
-
3092
- /*
3093
- * SPDX-FileCopyrightText: 2024 Siemens AG
3094
- *
3095
- * SPDX-License-Identifier: MIT
3096
- *
3097
- * This source code is licensed under the MIT license found in the
3098
- * LICENSE file in the root directory of this source tree.
3099
- */
3100
-
3101
- class ToastService {
3102
- setPosition(position) {
3103
- getToastContainer().position = position;
3104
- }
3105
- getPosition() {
3106
- return getToastContainer().position;
3107
- }
3108
- show(config) {
3109
- return __awaiter(this, void 0, void 0, function* () {
3110
- if (typeof config.message === 'string') {
3111
- return toast(config);
3112
- }
3113
- const context = {
3114
- close: null,
3115
- };
3116
- const embeddedView = config.message.createEmbeddedView({
3117
- $implicit: context,
3118
- });
3119
- const node = embeddedView.rootNodes[0];
3120
- const instance = yield toast(Object.assign(Object.assign({}, config), { message: node }));
3121
- context.close = () => {
3122
- instance.close();
3123
- };
3124
- embeddedView.detectChanges();
3125
- instance.onClose.once(() => {
3126
- embeddedView.destroy();
3127
- });
3128
- return instance;
3129
- });
3130
- }
3131
- }
3132
- /** @nocollapse */ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3133
- /** @nocollapse */ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, providedIn: 'root' });
3134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, decorators: [{
3135
- type: Injectable,
3136
- args: [{
3137
- providedIn: 'root',
3138
- }]
3139
- }] });
3140
-
3141
- /*
3142
- * SPDX-FileCopyrightText: 2024 Siemens AG
3143
- *
3144
- * SPDX-License-Identifier: MIT
3145
- *
3146
- * This source code is licensed under the MIT license found in the
3147
- * LICENSE file in the root directory of this source tree.
3148
- */
3149
-
3150
- let IxTree = class IxTree {
3151
- constructor(c, r, z) {
3152
- this.z = z;
3153
- this.renderCache = new Map();
3154
- c.detach();
3155
- this.el = r.nativeElement;
3156
- proxyOutputs(this, this.el, ['contextChange', 'nodeRemoved']);
3157
- this.onRemovedSubscription = this.nodeRemoved.subscribe((removedEvent) => {
3158
- const { detail } = removedEvent;
3159
- detail.forEach((removedItemElement) => {
3160
- var _a;
3161
- if (this.renderCache.has(removedItemElement)) {
3162
- (_a = this.renderCache.get(removedItemElement)) === null || _a === void 0 ? void 0 : _a.destroy();
3163
- this.renderCache.delete(removedItemElement);
3164
- }
3165
- });
3166
- });
3167
- }
3168
- set renderItem(template) {
3169
- const itemRenderFunction = this.generateItemRenderer(template);
3170
- this.el.renderItem = itemRenderFunction.bind(this);
3171
- }
3172
- ngOnDestroy() {
3173
- var _a;
3174
- (_a = this.onRemovedSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
3175
- }
3176
- generateItemRenderer(templateRef) {
3177
- return (_, itemData, __, context, update) => {
3178
- const treeItem = document.createElement('ix-tree-item');
3179
- treeItem.hasChildren = itemData.hasChildren;
3180
- treeItem.context = context[itemData.id];
3181
- const embeddedView = templateRef.createEmbeddedView({
3182
- $implicit: itemData.data,
3183
- });
3184
- const container = embeddedView.rootNodes[0];
3185
- embeddedView.detectChanges();
3186
- update((itemData, context) => {
3187
- treeItem.context = context[itemData.id];
3188
- treeItem.hasChildren = itemData.hasChildren;
3189
- embeddedView.context = {
3190
- $implicit: itemData.data,
3191
- };
3192
- embeddedView.detectChanges();
3193
- });
3194
- treeItem.appendChild(container);
3195
- this.renderCache.set(treeItem, embeddedView);
3196
- return treeItem;
3197
- };
3198
- }
3199
- };
3200
- /** @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 });
3201
- /** @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 });
3202
- IxTree = __decorate([
3203
- ProxyCmp({
3204
- defineCustomElementFn: undefined,
3205
- inputs: ['context', 'model', 'root'],
3206
- })
3207
- ], IxTree);
3208
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTree, decorators: [{
3209
- type: Component,
3210
- args: [{
3211
- selector: 'ix-tree',
3212
- changeDetection: ChangeDetectionStrategy.OnPush,
3213
- template: '<ng-content></ng-content>',
3214
- inputs: ['context', 'model', 'root'],
3215
- }]
3216
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { renderItem: [{
3217
- type: Input
3218
- }] } });
3219
-
3220
- /*
3221
- * SPDX-FileCopyrightText: 2024 Siemens AG
3222
- *
3223
- * SPDX-License-Identifier: MIT
3224
- *
3225
- * This source code is licensed under the MIT license found in the
3226
- * LICENSE file in the root directory of this source tree.
3227
- */
3228
-
3229
- /*
3230
- * SPDX-FileCopyrightText: 2024 Siemens AG
3231
- *
3232
- * SPDX-License-Identifier: MIT
3233
- *
3234
- * This source code is licensed under the MIT license found in the
3235
- * LICENSE file in the root directory of this source tree.
3236
- */
3237
- class SelectValueAccessorDirective extends ValueAccessor {
3238
- constructor(injector, el) {
3239
- super(injector, el);
3240
- }
3241
- handleChangeEvent(el) {
3242
- super.handleValueChange(el, el.value);
3243
- }
3244
- }
3245
- /** @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 });
3246
- /** @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: [
3247
- {
3248
- provide: NG_VALUE_ACCESSOR,
3249
- useExisting: SelectValueAccessorDirective,
3250
- multi: true,
3251
- },
3252
- ], usesInheritance: true, ngImport: i0 });
3253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
3254
- type: Directive,
3255
- args: [{
3256
- selector: 'ix-select',
3257
- providers: [
3258
- {
3259
- provide: NG_VALUE_ACCESSOR,
3260
- useExisting: SelectValueAccessorDirective,
3261
- multi: true,
3262
- },
3263
- ],
3264
- }]
3265
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3266
- type: HostListener,
3267
- args: ['valueChange', ['$event.target']]
3268
- }] } });
3269
-
3270
- /*
3271
- * SPDX-FileCopyrightText: 2024 Siemens AG
3272
- *
3273
- * SPDX-License-Identifier: MIT
3274
- *
3275
- * This source code is licensed under the MIT license found in the
3276
- * LICENSE file in the root directory of this source tree.
3277
- */
3278
- class RadioValueAccessorDirective extends ValueAccessor {
3279
- constructor(injector, el) {
3280
- super(injector, el);
3281
- }
3282
- writeValue(value) {
3283
- this.lastValue = value;
3284
- this.elementRef.nativeElement.checked =
3285
- this.elementRef.nativeElement.value === value;
3286
- mapNgToIxClassNames(this.elementRef);
3287
- }
3288
- handleChangeEvent(el) {
3289
- super.handleValueChange(el, el.value);
3290
- }
3291
- }
3292
- /** @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 });
3293
- /** @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: [
3294
- {
3295
- provide: NG_VALUE_ACCESSOR,
3296
- useExisting: RadioValueAccessorDirective,
3297
- multi: true,
3298
- },
3299
- ], usesInheritance: true, ngImport: i0 });
3300
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, decorators: [{
3301
- type: Directive,
3302
- args: [{
3303
- selector: 'ix-radio',
3304
- providers: [
3305
- {
3306
- provide: NG_VALUE_ACCESSOR,
3307
- useExisting: RadioValueAccessorDirective,
3308
- multi: true,
3309
- },
3310
- ],
3311
- }]
3312
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3313
- type: HostListener,
3314
- args: ['checkedChange', ['$event.target']]
3315
- }] } });
3316
-
3317
- /*
3318
- * SPDX-FileCopyrightText: 2024 Siemens AG
3319
- *
3320
- * SPDX-License-Identifier: MIT
3321
- *
3322
- * This source code is licensed under the MIT license found in the
3323
- * LICENSE file in the root directory of this source tree.
3324
- */
3325
- class BooleanValueAccessorDirective extends ValueAccessor {
3326
- constructor(injector, el) {
3327
- super(injector, el);
3328
- }
3329
- writeValue(value) {
3330
- this.elementRef.nativeElement.checked = this.lastValue = value;
3331
- mapNgToIxClassNames(this.elementRef);
3332
- }
3333
- handleChangeEvent(el) {
3334
- super.handleValueChange(el, el.checked);
3335
- }
3336
- }
3337
- /** @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 });
3338
- /** @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: [
3339
- {
3340
- provide: NG_VALUE_ACCESSOR,
3341
- useExisting: BooleanValueAccessorDirective,
3342
- multi: true,
3343
- },
3344
- ], usesInheritance: true, ngImport: i0 });
3345
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
3346
- type: Directive,
3347
- args: [{
3348
- selector: 'ix-checkbox,ix-toggle',
3349
- providers: [
3350
- {
3351
- provide: NG_VALUE_ACCESSOR,
3352
- useExisting: BooleanValueAccessorDirective,
3353
- multi: true,
3354
- },
3355
- ],
3356
- }]
3357
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3358
- type: HostListener,
3359
- args: ['checkedChange', ['$event.target']]
3360
- }] } });
3361
-
3362
- /*
3363
- * SPDX-FileCopyrightText: 2024 Siemens AG
3364
- *
3365
- * SPDX-License-Identifier: MIT
3366
- *
3367
- * This source code is licensed under the MIT license found in the
3368
- * LICENSE file in the root directory of this source tree.
3369
- */
3370
- class DateValueAccessorDirective extends ValueAccessor {
3371
- constructor(injector, el) {
3372
- super(injector, el);
3373
- }
3374
- handleInputEvent(el) {
3375
- super.handleValueChange(el, el.value);
3376
- }
3377
- }
3378
- /** @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 });
3379
- /** @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: [
3380
- {
3381
- provide: NG_VALUE_ACCESSOR,
3382
- useExisting: DateValueAccessorDirective,
3383
- multi: true,
3384
- },
3385
- ], usesInheritance: true, ngImport: i0 });
3386
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, decorators: [{
3387
- type: Directive,
3388
- args: [{
3389
- selector: 'ix-date-input',
3390
- providers: [
3391
- {
3392
- provide: NG_VALUE_ACCESSOR,
3393
- useExisting: DateValueAccessorDirective,
3394
- multi: true,
3395
- },
3396
- ],
3397
- }]
3398
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
3399
- type: HostListener,
3400
- args: ['valueChange', ['$event.target']]
3401
- }] } });
3402
-
3403
- /*
3404
- * SPDX-FileCopyrightText: 2024 Siemens AG
3405
- *
3406
- * SPDX-License-Identifier: MIT
3407
- *
3408
- * This source code is licensed under the MIT license found in the
3409
- * LICENSE file in the root directory of this source tree.
3410
- */
3411
-
3412
- /*
3413
- * SPDX-FileCopyrightText: 2024 Siemens AG
3414
- *
3415
- * SPDX-License-Identifier: MIT
3416
- *
3417
- * This source code is licensed under the MIT license found in the
3418
- * LICENSE file in the root directory of this source tree.
3419
- */
3420
- const DECLARATIONS = [
3421
- ...DIRECTIVES,
3422
- IxTree,
3423
- IxDropdownTriggerDirective,
3424
- IxIcon,
3425
- TextValueAccessorDirective,
3426
- SelectValueAccessorDirective,
3427
- RadioValueAccessorDirective,
3428
- BooleanValueAccessorDirective,
3429
- DateValueAccessorDirective,
3430
- ];
3431
- class IxModule {
3432
- static forRoot() {
3433
- return {
3434
- ngModule: IxModule,
3435
- providers: [
3436
- {
3437
- provide: APP_INITIALIZER,
3438
- useFactory: appInitialize,
3439
- multi: true,
3440
- deps: [DOCUMENT, NgZone],
3441
- },
3442
- ModalService,
3443
- ThemeService,
3444
- ToastService,
3445
- ],
3446
- };
3447
- }
3448
- }
3449
- /** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3450
- /** @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,
3451
- IxIcon,
3452
- TextValueAccessorDirective,
3453
- SelectValueAccessorDirective,
3454
- RadioValueAccessorDirective,
3455
- BooleanValueAccessorDirective,
3456
- 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,
3457
- IxIcon,
3458
- TextValueAccessorDirective,
3459
- SelectValueAccessorDirective,
3460
- RadioValueAccessorDirective,
3461
- BooleanValueAccessorDirective,
3462
- DateValueAccessorDirective] });
3463
- /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
3464
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
3465
- type: NgModule,
3466
- args: [{
3467
- declarations: DECLARATIONS,
3468
- exports: DECLARATIONS,
3469
- }]
3470
- }] });
3471
-
3472
- /*
3473
- * SPDX-FileCopyrightText: 2024 Siemens AG
3474
- *
3475
- * SPDX-License-Identifier: MIT
3476
- *
3477
- * This source code is licensed under the MIT license found in the
3478
- * LICENSE file in the root directory of this source tree.
3479
- */
3480
-
3481
- /**
3482
- * Generated bundle index. Do not edit.
3483
- */
3484
-
3485
- 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 };
3486
- //# sourceMappingURL=siemens-ix-angular.mjs.map