@siemens/ix-angular 3.1.0 → 3.2.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 (121) hide show
  1. package/READMEOSS.html +10 -61
  2. package/angular-component-lib/utils.d.ts +9 -0
  3. package/common/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
  4. package/common/directives/control-value-accessors/date-value-accessor.d.ts +9 -0
  5. package/common/directives/control-value-accessors/index.d.ts +5 -0
  6. package/common/directives/control-value-accessors/radio-value-accessor.d.ts +14 -0
  7. package/common/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
  8. package/common/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  9. package/common/directives/control-value-accessors/value-accessor.d.ts +30 -0
  10. package/common/directives/dropdown-trigger.d.ts +10 -0
  11. package/common/directives/tree.d.ts +26 -0
  12. package/common/index.d.ts +6 -0
  13. package/common/providers/modal/index.d.ts +3 -0
  14. package/common/providers/modal/modal-ref.d.ts +21 -0
  15. package/common/providers/modal/modal.config.d.ts +6 -0
  16. package/common/providers/modal/modal.service.d.ts +20 -0
  17. package/common/providers/toast/index.d.ts +2 -0
  18. package/common/providers/toast/toast.config.d.ts +6 -0
  19. package/common/providers/toast/toast.service.d.ts +9 -0
  20. package/common/utils/create-value-accessor-provider.d.ts +2 -0
  21. package/components.d.ts +1374 -0
  22. package/declare-components.d.ts +2 -0
  23. package/directives/control-value-accessors/boolean-value-accessor.d.ts +8 -0
  24. package/directives/control-value-accessors/date-value-accessor.d.ts +8 -0
  25. package/directives/control-value-accessors/index.d.ts +5 -0
  26. package/directives/control-value-accessors/radio-value-accessor.d.ts +8 -0
  27. package/directives/control-value-accessors/select-value-accessor.d.ts +8 -0
  28. package/directives/control-value-accessors/text-value-accessor.d.ts +8 -0
  29. package/directives/dropdown-trigger.d.ts +10 -0
  30. package/esm2022/angular-component-lib/utils.mjs +59 -0
  31. package/esm2022/common/directives/control-value-accessors/boolean-value-accessor.mjs +32 -0
  32. package/esm2022/common/directives/control-value-accessors/date-value-accessor.mjs +28 -0
  33. package/esm2022/common/directives/control-value-accessors/index.mjs +14 -0
  34. package/esm2022/common/directives/control-value-accessors/radio-value-accessor.mjs +50 -0
  35. package/esm2022/common/directives/control-value-accessors/select-value-accessor.mjs +28 -0
  36. package/esm2022/common/directives/control-value-accessors/text-value-accessor.mjs +31 -0
  37. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +157 -0
  38. package/esm2022/common/directives/dropdown-trigger.mjs +28 -0
  39. package/esm2022/common/directives/tree.mjs +70 -0
  40. package/esm2022/common/index.mjs +15 -0
  41. package/esm2022/common/providers/modal/index.mjs +11 -0
  42. package/esm2022/common/providers/modal/modal-ref.mjs +41 -0
  43. package/esm2022/common/providers/modal/modal.config.mjs +10 -0
  44. package/esm2022/common/providers/modal/modal.service.mjs +90 -0
  45. package/esm2022/common/providers/toast/index.mjs +11 -0
  46. package/esm2022/common/providers/toast/toast.config.mjs +10 -0
  47. package/esm2022/common/providers/toast/toast.service.mjs +67 -0
  48. package/esm2022/common/siemens-ix-angular-common.mjs +5 -0
  49. package/esm2022/common/utils/create-value-accessor-provider.mjs +17 -0
  50. package/esm2022/components.mjs +2865 -0
  51. package/esm2022/declare-components.mjs +108 -0
  52. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +26 -0
  53. package/esm2022/directives/control-value-accessors/date-value-accessor.mjs +26 -0
  54. package/esm2022/directives/control-value-accessors/index.mjs +14 -0
  55. package/esm2022/directives/control-value-accessors/radio-value-accessor.mjs +26 -0
  56. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +26 -0
  57. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +26 -0
  58. package/esm2022/directives/dropdown-trigger.mjs +31 -0
  59. package/esm2022/index.mjs +19 -0
  60. package/esm2022/ix-icon.mjs +40 -0
  61. package/esm2022/module.mjs +78 -0
  62. package/esm2022/providers/modal/index.mjs +11 -0
  63. package/esm2022/providers/modal/modal.service.mjs +28 -0
  64. package/esm2022/providers/theme/index.mjs +10 -0
  65. package/esm2022/providers/theme/theme.service.mjs +40 -0
  66. package/esm2022/providers/toast/index.mjs +2 -0
  67. package/esm2022/providers/toast/toast.service.mjs +34 -0
  68. package/esm2022/siemens-ix-angular.mjs +5 -0
  69. package/esm2022/standalone/angular-component-lib/utils.mjs +59 -0
  70. package/esm2022/standalone/components.mjs +3188 -0
  71. package/esm2022/standalone/directives/control-value-accessors/boolean-value-accessor.mjs +30 -0
  72. package/esm2022/standalone/directives/control-value-accessors/date-value-accessor.mjs +30 -0
  73. package/esm2022/standalone/directives/control-value-accessors/index.mjs +14 -0
  74. package/esm2022/standalone/directives/control-value-accessors/radio-value-accessor.mjs +30 -0
  75. package/esm2022/standalone/directives/control-value-accessors/select-value-accessor.mjs +30 -0
  76. package/esm2022/standalone/directives/control-value-accessors/text-value-accessor.mjs +30 -0
  77. package/esm2022/standalone/directives/dropdown-trigger.mjs +32 -0
  78. package/esm2022/standalone/index.mjs +18 -0
  79. package/esm2022/standalone/internal-components.mjs +25 -0
  80. package/esm2022/standalone/ix-icon.mjs +44 -0
  81. package/esm2022/standalone/providers/modal.mjs +28 -0
  82. package/esm2022/standalone/providers/toast.mjs +35 -0
  83. package/esm2022/standalone/siemens-ix-angular-standalone.mjs +5 -0
  84. package/esm2022/standalone/tree.mjs +41 -0
  85. package/esm2022/standalone/utils/value-accessor-directives.mjs +23 -0
  86. package/esm2022/tree.mjs +39 -0
  87. package/esm2022/utils/app-initialize.mjs +25 -0
  88. package/fesm2022/siemens-ix-angular-common.mjs +664 -0
  89. package/fesm2022/siemens-ix-angular-common.mjs.map +1 -0
  90. package/fesm2022/siemens-ix-angular-standalone.mjs +3483 -0
  91. package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -0
  92. package/fesm2022/siemens-ix-angular.mjs +3345 -0
  93. package/fesm2022/siemens-ix-angular.mjs.map +1 -0
  94. package/index.d.ts +10 -0
  95. package/ix-icon.d.ts +12 -0
  96. package/module.d.ts +17 -0
  97. package/package.json +2 -7
  98. package/providers/modal/index.d.ts +2 -0
  99. package/providers/modal/modal.service.d.ts +15 -0
  100. package/providers/theme/index.d.ts +1 -0
  101. package/providers/theme/theme.service.d.ts +15 -0
  102. package/providers/toast/index.d.ts +2 -0
  103. package/providers/toast/toast.service.d.ts +11 -0
  104. package/standalone/angular-component-lib/utils.d.ts +9 -0
  105. package/standalone/components.d.ts +1374 -0
  106. package/standalone/directives/control-value-accessors/boolean-value-accessor.d.ts +11 -0
  107. package/standalone/directives/control-value-accessors/date-value-accessor.d.ts +11 -0
  108. package/standalone/directives/control-value-accessors/index.d.ts +5 -0
  109. package/standalone/directives/control-value-accessors/radio-value-accessor.d.ts +11 -0
  110. package/standalone/directives/control-value-accessors/select-value-accessor.d.ts +11 -0
  111. package/standalone/directives/control-value-accessors/text-value-accessor.d.ts +11 -0
  112. package/standalone/directives/dropdown-trigger.d.ts +10 -0
  113. package/standalone/index.d.ts +9 -0
  114. package/standalone/internal-components.d.ts +1 -0
  115. package/standalone/ix-icon.d.ts +9 -0
  116. package/standalone/providers/modal.d.ts +11 -0
  117. package/standalone/providers/toast.d.ts +11 -0
  118. package/standalone/tree.d.ts +9 -0
  119. package/standalone/utils/value-accessor-directives.d.ts +16 -0
  120. package/tree.d.ts +9 -0
  121. package/utils/app-initialize.d.ts +1 -0
@@ -0,0 +1,3483 @@
1
+ import { __decorate } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { ChangeDetectionStrategy, Component, Injectable, Directive, Input } from '@angular/core';
4
+ import { fromEvent } from 'rxjs';
5
+ import { defineCustomElement as defineCustomElement$1 } from '@siemens/ix/components/ix-action-card.js';
6
+ import { defineCustomElement as defineCustomElement$2 } from '@siemens/ix/components/ix-application.js';
7
+ import { defineCustomElement as defineCustomElement$3 } from '@siemens/ix/components/ix-application-header.js';
8
+ import { defineCustomElement as defineCustomElement$4 } from '@siemens/ix/components/ix-avatar.js';
9
+ import { defineCustomElement as defineCustomElement$5 } from '@siemens/ix/components/ix-basic-navigation.js';
10
+ import { defineCustomElement as defineCustomElement$6 } from '@siemens/ix/components/ix-blind.js';
11
+ import { defineCustomElement as defineCustomElement$7 } from '@siemens/ix/components/ix-breadcrumb.js';
12
+ import { defineCustomElement as defineCustomElement$8 } from '@siemens/ix/components/ix-breadcrumb-item.js';
13
+ import { defineCustomElement as defineCustomElement$9 } from '@siemens/ix/components/ix-button.js';
14
+ import { defineCustomElement as defineCustomElement$a } from '@siemens/ix/components/ix-card.js';
15
+ import { defineCustomElement as defineCustomElement$b } from '@siemens/ix/components/ix-card-accordion.js';
16
+ import { defineCustomElement as defineCustomElement$c } from '@siemens/ix/components/ix-card-content.js';
17
+ import { defineCustomElement as defineCustomElement$d } from '@siemens/ix/components/ix-card-list.js';
18
+ import { defineCustomElement as defineCustomElement$e } from '@siemens/ix/components/ix-card-title.js';
19
+ import { defineCustomElement as defineCustomElement$f } from '@siemens/ix/components/ix-category-filter.js';
20
+ import { defineCustomElement as defineCustomElement$g } from '@siemens/ix/components/ix-checkbox.js';
21
+ import { defineCustomElement as defineCustomElement$h } from '@siemens/ix/components/ix-checkbox-group.js';
22
+ import { defineCustomElement as defineCustomElement$i } from '@siemens/ix/components/ix-chip.js';
23
+ import { defineCustomElement as defineCustomElement$j } from '@siemens/ix/components/ix-col.js';
24
+ import { defineCustomElement as defineCustomElement$k } from '@siemens/ix/components/ix-content.js';
25
+ import { defineCustomElement as defineCustomElement$l } from '@siemens/ix/components/ix-content-header.js';
26
+ import { defineCustomElement as defineCustomElement$m } from '@siemens/ix/components/ix-custom-field.js';
27
+ import { defineCustomElement as defineCustomElement$n } from '@siemens/ix/components/ix-date-dropdown.js';
28
+ import { defineCustomElement as defineCustomElement$o } from '@siemens/ix/components/ix-date-input.js';
29
+ import { defineCustomElement as defineCustomElement$p } from '@siemens/ix/components/ix-date-picker.js';
30
+ import { defineCustomElement as defineCustomElement$q } from '@siemens/ix/components/ix-datetime-picker.js';
31
+ import { defineCustomElement as defineCustomElement$r } from '@siemens/ix/components/ix-divider.js';
32
+ import { defineCustomElement as defineCustomElement$s } from '@siemens/ix/components/ix-drawer.js';
33
+ import { defineCustomElement as defineCustomElement$t } from '@siemens/ix/components/ix-dropdown.js';
34
+ import { defineCustomElement as defineCustomElement$u } from '@siemens/ix/components/ix-dropdown-button.js';
35
+ import { defineCustomElement as defineCustomElement$v } from '@siemens/ix/components/ix-dropdown-header.js';
36
+ import { defineCustomElement as defineCustomElement$w } from '@siemens/ix/components/ix-dropdown-item.js';
37
+ import { defineCustomElement as defineCustomElement$x } from '@siemens/ix/components/ix-dropdown-quick-actions.js';
38
+ import { defineCustomElement as defineCustomElement$y } from '@siemens/ix/components/ix-empty-state.js';
39
+ import { defineCustomElement as defineCustomElement$z } from '@siemens/ix/components/ix-event-list.js';
40
+ import { defineCustomElement as defineCustomElement$A } from '@siemens/ix/components/ix-event-list-item.js';
41
+ import { defineCustomElement as defineCustomElement$B } from '@siemens/ix/components/ix-expanding-search.js';
42
+ import { defineCustomElement as defineCustomElement$C } from '@siemens/ix/components/ix-field-label.js';
43
+ import { defineCustomElement as defineCustomElement$D } from '@siemens/ix/components/ix-filter-chip.js';
44
+ import { defineCustomElement as defineCustomElement$E } from '@siemens/ix/components/ix-flip-tile.js';
45
+ import { defineCustomElement as defineCustomElement$F } from '@siemens/ix/components/ix-flip-tile-content.js';
46
+ import { defineCustomElement as defineCustomElement$G } from '@siemens/ix/components/ix-group.js';
47
+ import { defineCustomElement as defineCustomElement$H } from '@siemens/ix/components/ix-group-context-menu.js';
48
+ import { defineCustomElement as defineCustomElement$I } from '@siemens/ix/components/ix-group-item.js';
49
+ import { defineCustomElement as defineCustomElement$J } from '@siemens/ix/components/ix-helper-text.js';
50
+ import { defineCustomElement as defineCustomElement$K } from '@siemens/ix/components/ix-icon-button.js';
51
+ import { defineCustomElement as defineCustomElement$L } from '@siemens/ix/components/ix-icon-toggle-button.js';
52
+ import { defineCustomElement as defineCustomElement$M } from '@siemens/ix/components/ix-input.js';
53
+ import { defineCustomElement as defineCustomElement$N } from '@siemens/ix/components/ix-input-group.js';
54
+ import { defineCustomElement as defineCustomElement$O } from '@siemens/ix/components/ix-key-value.js';
55
+ import { defineCustomElement as defineCustomElement$P } from '@siemens/ix/components/ix-key-value-list.js';
56
+ import { defineCustomElement as defineCustomElement$Q } from '@siemens/ix/components/ix-kpi.js';
57
+ import { defineCustomElement as defineCustomElement$R } from '@siemens/ix/components/ix-layout-auto.js';
58
+ import { defineCustomElement as defineCustomElement$S } from '@siemens/ix/components/ix-layout-grid.js';
59
+ import { defineCustomElement as defineCustomElement$T } from '@siemens/ix/components/ix-link-button.js';
60
+ import { defineCustomElement as defineCustomElement$U } from '@siemens/ix/components/ix-map-navigation.js';
61
+ import { defineCustomElement as defineCustomElement$V } from '@siemens/ix/components/ix-map-navigation-overlay.js';
62
+ import { defineCustomElement as defineCustomElement$W } from '@siemens/ix/components/ix-menu.js';
63
+ import { defineCustomElement as defineCustomElement$X } from '@siemens/ix/components/ix-menu-about.js';
64
+ import { defineCustomElement as defineCustomElement$Y } from '@siemens/ix/components/ix-menu-about-item.js';
65
+ import { defineCustomElement as defineCustomElement$Z } from '@siemens/ix/components/ix-menu-about-news.js';
66
+ import { defineCustomElement as defineCustomElement$_ } from '@siemens/ix/components/ix-menu-avatar.js';
67
+ import { defineCustomElement as defineCustomElement$$ } from '@siemens/ix/components/ix-menu-avatar-item.js';
68
+ import { defineCustomElement as defineCustomElement$10 } from '@siemens/ix/components/ix-menu-category.js';
69
+ import { defineCustomElement as defineCustomElement$11 } from '@siemens/ix/components/ix-menu-item.js';
70
+ import { defineCustomElement as defineCustomElement$12 } from '@siemens/ix/components/ix-menu-settings.js';
71
+ import { defineCustomElement as defineCustomElement$13 } from '@siemens/ix/components/ix-menu-settings-item.js';
72
+ import { defineCustomElement as defineCustomElement$14 } from '@siemens/ix/components/ix-message-bar.js';
73
+ import { defineCustomElement as defineCustomElement$15 } from '@siemens/ix/components/ix-modal.js';
74
+ import { defineCustomElement as defineCustomElement$16 } from '@siemens/ix/components/ix-modal-content.js';
75
+ import { defineCustomElement as defineCustomElement$17 } from '@siemens/ix/components/ix-modal-footer.js';
76
+ import { defineCustomElement as defineCustomElement$18 } from '@siemens/ix/components/ix-modal-header.js';
77
+ import { defineCustomElement as defineCustomElement$19 } from '@siemens/ix/components/ix-number-input.js';
78
+ import { defineCustomElement as defineCustomElement$1a } from '@siemens/ix/components/ix-pagination.js';
79
+ import { defineCustomElement as defineCustomElement$1b } from '@siemens/ix/components/ix-pane.js';
80
+ import { defineCustomElement as defineCustomElement$1c } from '@siemens/ix/components/ix-pane-layout.js';
81
+ import { defineCustomElement as defineCustomElement$1d } from '@siemens/ix/components/ix-pill.js';
82
+ import { defineCustomElement as defineCustomElement$1e } from '@siemens/ix/components/ix-progress-indicator.js';
83
+ import { defineCustomElement as defineCustomElement$1f } from '@siemens/ix/components/ix-push-card.js';
84
+ import { defineCustomElement as defineCustomElement$1g } from '@siemens/ix/components/ix-radio.js';
85
+ import { defineCustomElement as defineCustomElement$1h } from '@siemens/ix/components/ix-radio-group.js';
86
+ import { defineCustomElement as defineCustomElement$1i } from '@siemens/ix/components/ix-row.js';
87
+ import { defineCustomElement as defineCustomElement$1j } from '@siemens/ix/components/ix-select.js';
88
+ import { defineCustomElement as defineCustomElement$1k } from '@siemens/ix/components/ix-select-item.js';
89
+ import { defineCustomElement as defineCustomElement$1l } from '@siemens/ix/components/ix-slider.js';
90
+ import { defineCustomElement as defineCustomElement$1m } from '@siemens/ix/components/ix-spinner.js';
91
+ import { defineCustomElement as defineCustomElement$1n } from '@siemens/ix/components/ix-split-button.js';
92
+ import { defineCustomElement as defineCustomElement$1o } from '@siemens/ix/components/ix-tab-item.js';
93
+ import { defineCustomElement as defineCustomElement$1p } from '@siemens/ix/components/ix-tabs.js';
94
+ import { defineCustomElement as defineCustomElement$1q } from '@siemens/ix/components/ix-textarea.js';
95
+ import { defineCustomElement as defineCustomElement$1r } from '@siemens/ix/components/ix-tile.js';
96
+ import { defineCustomElement as defineCustomElement$1s } from '@siemens/ix/components/ix-time-input.js';
97
+ import { defineCustomElement as defineCustomElement$1t } from '@siemens/ix/components/ix-time-picker.js';
98
+ import { defineCustomElement as defineCustomElement$1u } from '@siemens/ix/components/ix-toast.js';
99
+ import { defineCustomElement as defineCustomElement$1v } from '@siemens/ix/components/ix-toast-container.js';
100
+ import { defineCustomElement as defineCustomElement$1w } from '@siemens/ix/components/ix-toggle.js';
101
+ import { defineCustomElement as defineCustomElement$1x } from '@siemens/ix/components/ix-toggle-button.js';
102
+ import { defineCustomElement as defineCustomElement$1y } from '@siemens/ix/components/ix-tooltip.js';
103
+ import { defineCustomElement as defineCustomElement$1z } from '@siemens/ix/components/ix-tree-item.js';
104
+ import { defineCustomElement as defineCustomElement$1A } from '@siemens/ix/components/ix-typography.js';
105
+ import { defineCustomElement as defineCustomElement$1B } from '@siemens/ix/components/ix-upload.js';
106
+ import { defineCustomElement as defineCustomElement$1C } from '@siemens/ix/components/ix-validation-tooltip.js';
107
+ import { defineCustomElement as defineCustomElement$1D } from '@siemens/ix/components/ix-workflow-step.js';
108
+ import { defineCustomElement as defineCustomElement$1E } from '@siemens/ix/components/ix-workflow-steps.js';
109
+ import { defineCustomElement as defineCustomElement$1G } from '@siemens/ix/components/ix-application-sidebar.js';
110
+ import { defineCustomElement as defineCustomElement$1F } from '@siemens/ix/components/ix-application-switch-modal.js';
111
+ import { defineCustomElement as defineCustomElement$1I } from '@siemens/ix/components/ix-menu-expand-icon.js';
112
+ import { defineCustomElement as defineCustomElement$1H } from '@siemens/ix/components/ix-date-time-card.js';
113
+ import { defineCustomElement as defineCustomElement$1J } from '@siemens/ix/components/ix-modal-loading.js';
114
+ import { defineCustomElement as defineCustomElement$1K } from '@siemens/ix-icons/components/ix-icon.js';
115
+ import { defineCustomElement as defineCustomElement$1L } from '@siemens/ix/components/ix-tree.js';
116
+ import { TreeBaseDirective, ModalService as ModalService$1, ToastService as ToastService$1, BooleanValueAccessorBaseDirective, createValueAccessorProvider, RadioValueAccessorBaseDirective, SelectValueAccessorBaseDirective, TextValueAccessorBaseDirective, DateValueAccessorBaseDirective, DropdownTriggerBaseDirective } from '@siemens/ix-angular/common';
117
+ export { IxActiveModal } from '@siemens/ix-angular/common';
118
+
119
+ /* eslint-disable */
120
+ /* tslint:disable */
121
+ const proxyInputs = (Cmp, inputs) => {
122
+ const Prototype = Cmp.prototype;
123
+ inputs.forEach((item) => {
124
+ Object.defineProperty(Prototype, item, {
125
+ get() {
126
+ return this.el[item];
127
+ },
128
+ set(val) {
129
+ this.z.runOutsideAngular(() => (this.el[item] = val));
130
+ },
131
+ /**
132
+ * In the event that proxyInputs is called
133
+ * multiple times re-defining these inputs
134
+ * will cause an error to be thrown. As a result
135
+ * we set configurable: true to indicate these
136
+ * properties can be changed.
137
+ */
138
+ configurable: true,
139
+ });
140
+ });
141
+ };
142
+ const proxyMethods = (Cmp, methods) => {
143
+ const Prototype = Cmp.prototype;
144
+ methods.forEach((methodName) => {
145
+ Prototype[methodName] = function () {
146
+ const args = arguments;
147
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
148
+ };
149
+ });
150
+ };
151
+ const proxyOutputs = (instance, el, events) => {
152
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
153
+ };
154
+ const defineCustomElement = (tagName, customElement) => {
155
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
156
+ customElements.define(tagName, customElement);
157
+ }
158
+ };
159
+ // tslint:disable-next-line: only-arrow-functions
160
+ function ProxyCmp(opts) {
161
+ const decorator = function (cls) {
162
+ const { defineCustomElementFn, inputs, methods } = opts;
163
+ if (defineCustomElementFn !== undefined) {
164
+ defineCustomElementFn();
165
+ }
166
+ if (inputs) {
167
+ proxyInputs(cls, inputs);
168
+ }
169
+ if (methods) {
170
+ proxyMethods(cls, methods);
171
+ }
172
+ return cls;
173
+ };
174
+ return decorator;
175
+ }
176
+
177
+ let IxActionCard = class IxActionCard {
178
+ z;
179
+ el;
180
+ constructor(c, r, z) {
181
+ this.z = z;
182
+ c.detach();
183
+ this.el = r.nativeElement;
184
+ }
185
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxActionCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
186
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxActionCard, isStandalone: true, selector: "ix-action-card", inputs: { ariaLabelCard: "ariaLabelCard", ariaLabelIcon: "ariaLabelIcon", heading: "heading", icon: "icon", selected: "selected", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
187
+ };
188
+ IxActionCard = __decorate([
189
+ ProxyCmp({
190
+ defineCustomElementFn: defineCustomElement$1,
191
+ inputs: ['ariaLabelCard', 'ariaLabelIcon', 'heading', 'icon', 'selected', 'subheading', 'variant']
192
+ })
193
+ ], IxActionCard);
194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxActionCard, decorators: [{
195
+ type: Component,
196
+ args: [{
197
+ selector: 'ix-action-card',
198
+ changeDetection: ChangeDetectionStrategy.OnPush,
199
+ template: '<ng-content></ng-content>',
200
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
201
+ inputs: ['ariaLabelCard', 'ariaLabelIcon', 'heading', 'icon', 'selected', 'subheading', 'variant'],
202
+ standalone: true
203
+ }]
204
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
205
+ let IxApplication = class IxApplication {
206
+ z;
207
+ el;
208
+ constructor(c, r, z) {
209
+ this.z = z;
210
+ c.detach();
211
+ this.el = r.nativeElement;
212
+ }
213
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplication, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
214
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxApplication, isStandalone: true, 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 });
215
+ };
216
+ IxApplication = __decorate([
217
+ ProxyCmp({
218
+ defineCustomElementFn: defineCustomElement$2,
219
+ inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance']
220
+ })
221
+ ], IxApplication);
222
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplication, decorators: [{
223
+ type: Component,
224
+ args: [{
225
+ selector: 'ix-application',
226
+ changeDetection: ChangeDetectionStrategy.OnPush,
227
+ template: '<ng-content></ng-content>',
228
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
229
+ inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance'],
230
+ standalone: true
231
+ }]
232
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
233
+ let IxApplicationHeader = class IxApplicationHeader {
234
+ z;
235
+ el;
236
+ constructor(c, r, z) {
237
+ this.z = z;
238
+ c.detach();
239
+ this.el = r.nativeElement;
240
+ proxyOutputs(this, this.el, ['menuToggle', 'openAppSwitch']);
241
+ }
242
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
243
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxApplicationHeader, isStandalone: true, selector: "ix-application-header", inputs: { ariaLabelAppSwitchIconButton: "ariaLabelAppSwitchIconButton", ariaLabelMenuExpandIconButton: "ariaLabelMenuExpandIconButton", ariaLabelMoreMenuIconButton: "ariaLabelMoreMenuIconButton", name: "name", showMenu: "showMenu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
244
+ };
245
+ IxApplicationHeader = __decorate([
246
+ ProxyCmp({
247
+ defineCustomElementFn: defineCustomElement$3,
248
+ inputs: ['ariaLabelAppSwitchIconButton', 'ariaLabelMenuExpandIconButton', 'ariaLabelMoreMenuIconButton', 'name', 'showMenu']
249
+ })
250
+ ], IxApplicationHeader);
251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplicationHeader, decorators: [{
252
+ type: Component,
253
+ args: [{
254
+ selector: 'ix-application-header',
255
+ changeDetection: ChangeDetectionStrategy.OnPush,
256
+ template: '<ng-content></ng-content>',
257
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
258
+ inputs: ['ariaLabelAppSwitchIconButton', 'ariaLabelMenuExpandIconButton', 'ariaLabelMoreMenuIconButton', 'name', 'showMenu'],
259
+ standalone: true
260
+ }]
261
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
262
+ let IxAvatar = class IxAvatar {
263
+ z;
264
+ el;
265
+ constructor(c, r, z) {
266
+ this.z = z;
267
+ c.detach();
268
+ this.el = r.nativeElement;
269
+ }
270
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
271
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxAvatar, isStandalone: true, selector: "ix-avatar", inputs: { a11yLabel: "a11yLabel", extra: "extra", image: "image", initials: "initials", username: "username" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
272
+ };
273
+ IxAvatar = __decorate([
274
+ ProxyCmp({
275
+ defineCustomElementFn: defineCustomElement$4,
276
+ inputs: ['a11yLabel', 'extra', 'image', 'initials', 'username']
277
+ })
278
+ ], IxAvatar);
279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxAvatar, decorators: [{
280
+ type: Component,
281
+ args: [{
282
+ selector: 'ix-avatar',
283
+ changeDetection: ChangeDetectionStrategy.OnPush,
284
+ template: '<ng-content></ng-content>',
285
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
286
+ inputs: ['a11yLabel', 'extra', 'image', 'initials', 'username'],
287
+ standalone: true
288
+ }]
289
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
290
+ let IxBasicNavigation = class IxBasicNavigation {
291
+ z;
292
+ el;
293
+ constructor(c, r, z) {
294
+ this.z = z;
295
+ c.detach();
296
+ this.el = r.nativeElement;
297
+ }
298
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBasicNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
299
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBasicNavigation, isStandalone: true, 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 });
300
+ };
301
+ IxBasicNavigation = __decorate([
302
+ ProxyCmp({
303
+ defineCustomElementFn: defineCustomElement$5,
304
+ inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader']
305
+ })
306
+ ], IxBasicNavigation);
307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBasicNavigation, decorators: [{
308
+ type: Component,
309
+ args: [{
310
+ selector: 'ix-basic-navigation',
311
+ changeDetection: ChangeDetectionStrategy.OnPush,
312
+ template: '<ng-content></ng-content>',
313
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
314
+ inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader'],
315
+ standalone: true
316
+ }]
317
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
318
+ let IxBlind = class IxBlind {
319
+ z;
320
+ el;
321
+ constructor(c, r, z) {
322
+ this.z = z;
323
+ c.detach();
324
+ this.el = r.nativeElement;
325
+ proxyOutputs(this, this.el, ['collapsedChange']);
326
+ }
327
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBlind, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
328
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBlind, isStandalone: true, 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 });
329
+ };
330
+ IxBlind = __decorate([
331
+ ProxyCmp({
332
+ defineCustomElementFn: defineCustomElement$6,
333
+ inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant']
334
+ })
335
+ ], IxBlind);
336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBlind, decorators: [{
337
+ type: Component,
338
+ args: [{
339
+ selector: 'ix-blind',
340
+ changeDetection: ChangeDetectionStrategy.OnPush,
341
+ template: '<ng-content></ng-content>',
342
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
343
+ inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant'],
344
+ standalone: true
345
+ }]
346
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
347
+ let IxBreadcrumb = class IxBreadcrumb {
348
+ z;
349
+ el;
350
+ constructor(c, r, z) {
351
+ this.z = z;
352
+ c.detach();
353
+ this.el = r.nativeElement;
354
+ proxyOutputs(this, this.el, ['itemClick', 'nextClick']);
355
+ }
356
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
357
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBreadcrumb, isStandalone: true, 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 });
358
+ };
359
+ IxBreadcrumb = __decorate([
360
+ ProxyCmp({
361
+ defineCustomElementFn: defineCustomElement$7,
362
+ inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount']
363
+ })
364
+ ], IxBreadcrumb);
365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumb, decorators: [{
366
+ type: Component,
367
+ args: [{
368
+ selector: 'ix-breadcrumb',
369
+ changeDetection: ChangeDetectionStrategy.OnPush,
370
+ template: '<ng-content></ng-content>',
371
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
372
+ inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount'],
373
+ standalone: true
374
+ }]
375
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
376
+ let IxBreadcrumbItem = class IxBreadcrumbItem {
377
+ z;
378
+ el;
379
+ constructor(c, r, z) {
380
+ this.z = z;
381
+ c.detach();
382
+ this.el = r.nativeElement;
383
+ }
384
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
385
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBreadcrumbItem, isStandalone: true, selector: "ix-breadcrumb-item", inputs: { ariaLabelButton: "ariaLabelButton", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
386
+ };
387
+ IxBreadcrumbItem = __decorate([
388
+ ProxyCmp({
389
+ defineCustomElementFn: defineCustomElement$8,
390
+ inputs: ['ariaLabelButton', 'icon', 'label']
391
+ })
392
+ ], IxBreadcrumbItem);
393
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumbItem, decorators: [{
394
+ type: Component,
395
+ args: [{
396
+ selector: 'ix-breadcrumb-item',
397
+ changeDetection: ChangeDetectionStrategy.OnPush,
398
+ template: '<ng-content></ng-content>',
399
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
400
+ inputs: ['ariaLabelButton', 'icon', 'label'],
401
+ standalone: true
402
+ }]
403
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
404
+ let IxButton = class IxButton {
405
+ z;
406
+ el;
407
+ constructor(c, r, z) {
408
+ this.z = z;
409
+ c.detach();
410
+ this.el = r.nativeElement;
411
+ }
412
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
413
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxButton, isStandalone: true, selector: "ix-button", inputs: { ariaLabelButton: "ariaLabelButton", disabled: "disabled", form: "form", 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 });
414
+ };
415
+ IxButton = __decorate([
416
+ ProxyCmp({
417
+ defineCustomElementFn: defineCustomElement$9,
418
+ inputs: ['ariaLabelButton', 'disabled', 'form', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant']
419
+ })
420
+ ], IxButton);
421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxButton, decorators: [{
422
+ type: Component,
423
+ args: [{
424
+ selector: 'ix-button',
425
+ changeDetection: ChangeDetectionStrategy.OnPush,
426
+ template: '<ng-content></ng-content>',
427
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
428
+ inputs: ['ariaLabelButton', 'disabled', 'form', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant'],
429
+ standalone: true
430
+ }]
431
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
432
+ let IxCard = class IxCard {
433
+ z;
434
+ el;
435
+ constructor(c, r, z) {
436
+ this.z = z;
437
+ c.detach();
438
+ this.el = r.nativeElement;
439
+ }
440
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
441
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCard, isStandalone: true, selector: "ix-card", inputs: { selected: "selected", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
442
+ };
443
+ IxCard = __decorate([
444
+ ProxyCmp({
445
+ defineCustomElementFn: defineCustomElement$a,
446
+ inputs: ['selected', 'variant']
447
+ })
448
+ ], IxCard);
449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCard, decorators: [{
450
+ type: Component,
451
+ args: [{
452
+ selector: 'ix-card',
453
+ changeDetection: ChangeDetectionStrategy.OnPush,
454
+ template: '<ng-content></ng-content>',
455
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
456
+ inputs: ['selected', 'variant'],
457
+ standalone: true
458
+ }]
459
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
460
+ let IxCardAccordion = class IxCardAccordion {
461
+ z;
462
+ el;
463
+ constructor(c, r, z) {
464
+ this.z = z;
465
+ c.detach();
466
+ this.el = r.nativeElement;
467
+ }
468
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
469
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardAccordion, isStandalone: true, selector: "ix-card-accordion", inputs: { ariaLabelExpandButton: "ariaLabelExpandButton", collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
470
+ };
471
+ IxCardAccordion = __decorate([
472
+ ProxyCmp({
473
+ defineCustomElementFn: defineCustomElement$b,
474
+ inputs: ['ariaLabelExpandButton', 'collapse']
475
+ })
476
+ ], IxCardAccordion);
477
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardAccordion, decorators: [{
478
+ type: Component,
479
+ args: [{
480
+ selector: 'ix-card-accordion',
481
+ changeDetection: ChangeDetectionStrategy.OnPush,
482
+ template: '<ng-content></ng-content>',
483
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
484
+ inputs: ['ariaLabelExpandButton', 'collapse'],
485
+ standalone: true
486
+ }]
487
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
488
+ let IxCardContent = class IxCardContent {
489
+ z;
490
+ el;
491
+ constructor(c, r, z) {
492
+ this.z = z;
493
+ c.detach();
494
+ this.el = r.nativeElement;
495
+ }
496
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
497
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardContent, isStandalone: true, selector: "ix-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
498
+ };
499
+ IxCardContent = __decorate([
500
+ ProxyCmp({
501
+ defineCustomElementFn: defineCustomElement$c
502
+ })
503
+ ], IxCardContent);
504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardContent, decorators: [{
505
+ type: Component,
506
+ args: [{
507
+ selector: 'ix-card-content',
508
+ changeDetection: ChangeDetectionStrategy.OnPush,
509
+ template: '<ng-content></ng-content>',
510
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
511
+ inputs: [],
512
+ standalone: true
513
+ }]
514
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
515
+ let IxCardList = class IxCardList {
516
+ z;
517
+ el;
518
+ constructor(c, r, z) {
519
+ this.z = z;
520
+ c.detach();
521
+ this.el = r.nativeElement;
522
+ proxyOutputs(this, this.el, ['collapseChanged', 'showAllClick', 'showMoreCardClick']);
523
+ }
524
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
525
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardList, isStandalone: true, selector: "ix-card-list", inputs: { ariaLabelExpandButton: "ariaLabelExpandButton", 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 });
526
+ };
527
+ IxCardList = __decorate([
528
+ ProxyCmp({
529
+ defineCustomElementFn: defineCustomElement$d,
530
+ inputs: ['ariaLabelExpandButton', 'collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling']
531
+ })
532
+ ], IxCardList);
533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardList, decorators: [{
534
+ type: Component,
535
+ args: [{
536
+ selector: 'ix-card-list',
537
+ changeDetection: ChangeDetectionStrategy.OnPush,
538
+ template: '<ng-content></ng-content>',
539
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
540
+ inputs: ['ariaLabelExpandButton', 'collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling'],
541
+ standalone: true
542
+ }]
543
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
544
+ let IxCardTitle = class IxCardTitle {
545
+ z;
546
+ el;
547
+ constructor(c, r, z) {
548
+ this.z = z;
549
+ c.detach();
550
+ this.el = r.nativeElement;
551
+ }
552
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
553
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardTitle, isStandalone: true, selector: "ix-card-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
554
+ };
555
+ IxCardTitle = __decorate([
556
+ ProxyCmp({
557
+ defineCustomElementFn: defineCustomElement$e
558
+ })
559
+ ], IxCardTitle);
560
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardTitle, decorators: [{
561
+ type: Component,
562
+ args: [{
563
+ selector: 'ix-card-title',
564
+ changeDetection: ChangeDetectionStrategy.OnPush,
565
+ template: '<ng-content></ng-content>',
566
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
567
+ inputs: [],
568
+ standalone: true
569
+ }]
570
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
571
+ let IxCategoryFilter = class IxCategoryFilter {
572
+ z;
573
+ el;
574
+ constructor(c, r, z) {
575
+ this.z = z;
576
+ c.detach();
577
+ this.el = r.nativeElement;
578
+ proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged', 'filterCleared']);
579
+ }
580
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCategoryFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
581
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCategoryFilter, isStandalone: true, selector: "ix-category-filter", inputs: { ariaLabelFilterInput: "ariaLabelFilterInput", ariaLabelOperatorButton: "ariaLabelOperatorButton", ariaLabelResetButton: "ariaLabelResetButton", 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 });
582
+ };
583
+ IxCategoryFilter = __decorate([
584
+ ProxyCmp({
585
+ defineCustomElementFn: defineCustomElement$f,
586
+ inputs: ['ariaLabelFilterInput', 'ariaLabelOperatorButton', 'ariaLabelResetButton', 'categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions']
587
+ })
588
+ ], IxCategoryFilter);
589
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCategoryFilter, decorators: [{
590
+ type: Component,
591
+ args: [{
592
+ selector: 'ix-category-filter',
593
+ changeDetection: ChangeDetectionStrategy.OnPush,
594
+ template: '<ng-content></ng-content>',
595
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
596
+ inputs: ['ariaLabelFilterInput', 'ariaLabelOperatorButton', 'ariaLabelResetButton', 'categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
597
+ standalone: true
598
+ }]
599
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
600
+ let IxCheckbox = class IxCheckbox {
601
+ z;
602
+ el;
603
+ constructor(c, r, z) {
604
+ this.z = z;
605
+ c.detach();
606
+ this.el = r.nativeElement;
607
+ proxyOutputs(this, this.el, ['checkedChange', 'valueChange', 'ixBlur']);
608
+ }
609
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
610
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCheckbox, isStandalone: true, 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 });
611
+ };
612
+ IxCheckbox = __decorate([
613
+ ProxyCmp({
614
+ defineCustomElementFn: defineCustomElement$g,
615
+ inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value']
616
+ })
617
+ ], IxCheckbox);
618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckbox, decorators: [{
619
+ type: Component,
620
+ args: [{
621
+ selector: 'ix-checkbox',
622
+ changeDetection: ChangeDetectionStrategy.OnPush,
623
+ template: '<ng-content></ng-content>',
624
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
625
+ inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value'],
626
+ standalone: true
627
+ }]
628
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
629
+ let IxCheckboxGroup = class IxCheckboxGroup {
630
+ z;
631
+ el;
632
+ constructor(c, r, z) {
633
+ this.z = z;
634
+ c.detach();
635
+ this.el = r.nativeElement;
636
+ }
637
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
638
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCheckboxGroup, isStandalone: true, 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 });
639
+ };
640
+ IxCheckboxGroup = __decorate([
641
+ ProxyCmp({
642
+ defineCustomElementFn: defineCustomElement$h,
643
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'warningText']
644
+ })
645
+ ], IxCheckboxGroup);
646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckboxGroup, decorators: [{
647
+ type: Component,
648
+ args: [{
649
+ selector: 'ix-checkbox-group',
650
+ changeDetection: ChangeDetectionStrategy.OnPush,
651
+ template: '<ng-content></ng-content>',
652
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
653
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'warningText'],
654
+ standalone: true
655
+ }]
656
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
657
+ let IxChip = class IxChip {
658
+ z;
659
+ el;
660
+ constructor(c, r, z) {
661
+ this.z = z;
662
+ c.detach();
663
+ this.el = r.nativeElement;
664
+ proxyOutputs(this, this.el, ['closeChip']);
665
+ }
666
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
667
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxChip, isStandalone: true, selector: "ix-chip", inputs: { active: "active", ariaLabelCloseButton: "ariaLabelCloseButton", background: "background", centerContent: "centerContent", chipColor: "chipColor", closable: "closable", icon: "icon", outline: "outline", tooltipText: "tooltipText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
668
+ };
669
+ IxChip = __decorate([
670
+ ProxyCmp({
671
+ defineCustomElementFn: defineCustomElement$i,
672
+ inputs: ['active', 'ariaLabelCloseButton', 'background', 'centerContent', 'chipColor', 'closable', 'icon', 'outline', 'tooltipText', 'variant']
673
+ })
674
+ ], IxChip);
675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxChip, decorators: [{
676
+ type: Component,
677
+ args: [{
678
+ selector: 'ix-chip',
679
+ changeDetection: ChangeDetectionStrategy.OnPush,
680
+ template: '<ng-content></ng-content>',
681
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
682
+ inputs: ['active', 'ariaLabelCloseButton', 'background', 'centerContent', 'chipColor', 'closable', 'icon', 'outline', 'tooltipText', 'variant'],
683
+ standalone: true
684
+ }]
685
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
686
+ let IxCol = class IxCol {
687
+ z;
688
+ el;
689
+ constructor(c, r, z) {
690
+ this.z = z;
691
+ c.detach();
692
+ this.el = r.nativeElement;
693
+ }
694
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
695
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCol, isStandalone: true, 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 });
696
+ };
697
+ IxCol = __decorate([
698
+ ProxyCmp({
699
+ defineCustomElementFn: defineCustomElement$j,
700
+ inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm']
701
+ })
702
+ ], IxCol);
703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCol, decorators: [{
704
+ type: Component,
705
+ args: [{
706
+ selector: 'ix-col',
707
+ changeDetection: ChangeDetectionStrategy.OnPush,
708
+ template: '<ng-content></ng-content>',
709
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
710
+ inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm'],
711
+ standalone: true
712
+ }]
713
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
714
+ let IxContent = class IxContent {
715
+ z;
716
+ el;
717
+ constructor(c, r, z) {
718
+ this.z = z;
719
+ c.detach();
720
+ this.el = r.nativeElement;
721
+ }
722
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
723
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxContent, isStandalone: true, selector: "ix-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
724
+ };
725
+ IxContent = __decorate([
726
+ ProxyCmp({
727
+ defineCustomElementFn: defineCustomElement$k
728
+ })
729
+ ], IxContent);
730
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContent, decorators: [{
731
+ type: Component,
732
+ args: [{
733
+ selector: 'ix-content',
734
+ changeDetection: ChangeDetectionStrategy.OnPush,
735
+ template: '<ng-content></ng-content>',
736
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
737
+ inputs: [],
738
+ standalone: true
739
+ }]
740
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
741
+ let IxContentHeader = class IxContentHeader {
742
+ z;
743
+ el;
744
+ constructor(c, r, z) {
745
+ this.z = z;
746
+ c.detach();
747
+ this.el = r.nativeElement;
748
+ proxyOutputs(this, this.el, ['backButtonClick']);
749
+ }
750
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContentHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
751
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxContentHeader, isStandalone: true, 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 });
752
+ };
753
+ IxContentHeader = __decorate([
754
+ ProxyCmp({
755
+ defineCustomElementFn: defineCustomElement$l,
756
+ inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant']
757
+ })
758
+ ], IxContentHeader);
759
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContentHeader, decorators: [{
760
+ type: Component,
761
+ args: [{
762
+ selector: 'ix-content-header',
763
+ changeDetection: ChangeDetectionStrategy.OnPush,
764
+ template: '<ng-content></ng-content>',
765
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
766
+ inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
767
+ standalone: true
768
+ }]
769
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
770
+ let IxCustomField = class IxCustomField {
771
+ z;
772
+ el;
773
+ constructor(c, r, z) {
774
+ this.z = z;
775
+ c.detach();
776
+ this.el = r.nativeElement;
777
+ }
778
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCustomField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
779
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCustomField, isStandalone: true, 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 });
780
+ };
781
+ IxCustomField = __decorate([
782
+ ProxyCmp({
783
+ defineCustomElementFn: defineCustomElement$m,
784
+ inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText']
785
+ })
786
+ ], IxCustomField);
787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCustomField, decorators: [{
788
+ type: Component,
789
+ args: [{
790
+ selector: 'ix-custom-field',
791
+ changeDetection: ChangeDetectionStrategy.OnPush,
792
+ template: '<ng-content></ng-content>',
793
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
794
+ inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText'],
795
+ standalone: true
796
+ }]
797
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
798
+ let IxDateDropdown = class IxDateDropdown {
799
+ z;
800
+ el;
801
+ constructor(c, r, z) {
802
+ this.z = z;
803
+ c.detach();
804
+ this.el = r.nativeElement;
805
+ proxyOutputs(this, this.el, ['dateRangeChange']);
806
+ }
807
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
808
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDateDropdown, isStandalone: true, selector: "ix-date-dropdown", inputs: { ariaLabelDropdownButton: "ariaLabelDropdownButton", customRangeAllowed: "customRangeAllowed", dateRangeId: "dateRangeId", dateRangeOptions: "dateRangeOptions", disabled: "disabled", format: "format", from: "from", ghost: "ghost", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", loading: "loading", locale: "locale", maxDate: "maxDate", minDate: "minDate", outline: "outline", range: "range", showWeekNumbers: "showWeekNumbers", to: "to", variant: "variant", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
809
+ };
810
+ IxDateDropdown = __decorate([
811
+ ProxyCmp({
812
+ defineCustomElementFn: defineCustomElement$n,
813
+ inputs: ['ariaLabelDropdownButton', 'customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'showWeekNumbers', 'to', 'variant', 'weekStartIndex'],
814
+ methods: ['getDateRange']
815
+ })
816
+ ], IxDateDropdown);
817
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateDropdown, decorators: [{
818
+ type: Component,
819
+ args: [{
820
+ selector: 'ix-date-dropdown',
821
+ changeDetection: ChangeDetectionStrategy.OnPush,
822
+ template: '<ng-content></ng-content>',
823
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
824
+ inputs: ['ariaLabelDropdownButton', 'customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'showWeekNumbers', 'to', 'variant', 'weekStartIndex'],
825
+ standalone: true
826
+ }]
827
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
828
+ let IxDateInput = class IxDateInput {
829
+ z;
830
+ el;
831
+ constructor(c, r, z) {
832
+ this.z = z;
833
+ c.detach();
834
+ this.el = r.nativeElement;
835
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
836
+ }
837
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
838
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDateInput, isStandalone: true, selector: "ix-date-input", inputs: { ariaLabelCalendarButton: "ariaLabelCalendarButton", ariaLabelNextMonthButton: "ariaLabelNextMonthButton", ariaLabelPreviousMonthButton: "ariaLabelPreviousMonthButton", disabled: "disabled", format: "format", helperText: "helperText", i18nErrorDateUnparsable: "i18nErrorDateUnparsable", infoText: "infoText", invalidText: "invalidText", label: "label", locale: "locale", maxDate: "maxDate", minDate: "minDate", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", showWeekNumbers: "showWeekNumbers", validText: "validText", value: "value", warningText: "warningText", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
839
+ };
840
+ IxDateInput = __decorate([
841
+ ProxyCmp({
842
+ defineCustomElementFn: defineCustomElement$o,
843
+ inputs: ['ariaLabelCalendarButton', 'ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'maxDate', 'minDate', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'showWeekNumbers', 'validText', 'value', 'warningText', 'weekStartIndex'],
844
+ methods: ['getNativeInputElement', 'focusInput']
845
+ })
846
+ ], IxDateInput);
847
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateInput, decorators: [{
848
+ type: Component,
849
+ args: [{
850
+ selector: 'ix-date-input',
851
+ changeDetection: ChangeDetectionStrategy.OnPush,
852
+ template: '<ng-content></ng-content>',
853
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
854
+ inputs: ['ariaLabelCalendarButton', 'ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'maxDate', 'minDate', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'showWeekNumbers', 'validText', 'value', 'warningText', 'weekStartIndex'],
855
+ standalone: true
856
+ }]
857
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
858
+ let IxDatePicker = class IxDatePicker {
859
+ z;
860
+ el;
861
+ constructor(c, r, z) {
862
+ this.z = z;
863
+ c.detach();
864
+ this.el = r.nativeElement;
865
+ proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', 'dateSelect']);
866
+ }
867
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
868
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDatePicker, isStandalone: true, selector: "ix-date-picker", inputs: { ariaLabelNextMonthButton: "ariaLabelNextMonthButton", ariaLabelPreviousMonthButton: "ariaLabelPreviousMonthButton", corners: "corners", format: "format", from: "from", i18nDone: "i18nDone", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showWeekNumbers: "showWeekNumbers", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
869
+ };
870
+ IxDatePicker = __decorate([
871
+ ProxyCmp({
872
+ defineCustomElementFn: defineCustomElement$p,
873
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'corners', 'format', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showWeekNumbers', 'to', 'weekStartIndex'],
874
+ methods: ['getCurrentDate']
875
+ })
876
+ ], IxDatePicker);
877
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatePicker, decorators: [{
878
+ type: Component,
879
+ args: [{
880
+ selector: 'ix-date-picker',
881
+ changeDetection: ChangeDetectionStrategy.OnPush,
882
+ template: '<ng-content></ng-content>',
883
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
884
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'corners', 'format', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showWeekNumbers', 'to', 'weekStartIndex'],
885
+ standalone: true
886
+ }]
887
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
888
+ let IxDatetimePicker = class IxDatetimePicker {
889
+ z;
890
+ el;
891
+ constructor(c, r, z) {
892
+ this.z = z;
893
+ c.detach();
894
+ this.el = r.nativeElement;
895
+ proxyOutputs(this, this.el, ['timeChange', 'dateChange', 'dateSelect']);
896
+ }
897
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatetimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
898
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDatetimePicker, isStandalone: true, selector: "ix-datetime-picker", inputs: { ariaLabelNextMonthButton: "ariaLabelNextMonthButton", ariaLabelPreviousMonthButton: "ariaLabelPreviousMonthButton", dateFormat: "dateFormat", from: "from", i18nDone: "i18nDone", i18nTime: "i18nTime", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", showWeekNumbers: "showWeekNumbers", time: "time", timeFormat: "timeFormat", timeReference: "timeReference", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
899
+ };
900
+ IxDatetimePicker = __decorate([
901
+ ProxyCmp({
902
+ defineCustomElementFn: defineCustomElement$q,
903
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'dateFormat', 'from', 'i18nDone', 'i18nTime', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'showWeekNumbers', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex']
904
+ })
905
+ ], IxDatetimePicker);
906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatetimePicker, decorators: [{
907
+ type: Component,
908
+ args: [{
909
+ selector: 'ix-datetime-picker',
910
+ changeDetection: ChangeDetectionStrategy.OnPush,
911
+ template: '<ng-content></ng-content>',
912
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
913
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'dateFormat', 'from', 'i18nDone', 'i18nTime', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'showWeekNumbers', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex'],
914
+ standalone: true
915
+ }]
916
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
917
+ let IxDivider = class IxDivider {
918
+ z;
919
+ el;
920
+ constructor(c, r, z) {
921
+ this.z = z;
922
+ c.detach();
923
+ this.el = r.nativeElement;
924
+ }
925
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
926
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDivider, isStandalone: true, selector: "ix-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
927
+ };
928
+ IxDivider = __decorate([
929
+ ProxyCmp({
930
+ defineCustomElementFn: defineCustomElement$r
931
+ })
932
+ ], IxDivider);
933
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDivider, decorators: [{
934
+ type: Component,
935
+ args: [{
936
+ selector: 'ix-divider',
937
+ changeDetection: ChangeDetectionStrategy.OnPush,
938
+ template: '<ng-content></ng-content>',
939
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
940
+ inputs: [],
941
+ standalone: true
942
+ }]
943
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
944
+ let IxDrawer = class IxDrawer {
945
+ z;
946
+ el;
947
+ constructor(c, r, z) {
948
+ this.z = z;
949
+ c.detach();
950
+ this.el = r.nativeElement;
951
+ proxyOutputs(this, this.el, ['open', 'drawerClose']);
952
+ }
953
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
954
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDrawer, isStandalone: true, selector: "ix-drawer", inputs: { ariaLabelCloseButton: "ariaLabelCloseButton", 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 });
955
+ };
956
+ IxDrawer = __decorate([
957
+ ProxyCmp({
958
+ defineCustomElementFn: defineCustomElement$s,
959
+ inputs: ['ariaLabelCloseButton', 'closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
960
+ methods: ['toggleDrawer']
961
+ })
962
+ ], IxDrawer);
963
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDrawer, decorators: [{
964
+ type: Component,
965
+ args: [{
966
+ selector: 'ix-drawer',
967
+ changeDetection: ChangeDetectionStrategy.OnPush,
968
+ template: '<ng-content></ng-content>',
969
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
970
+ inputs: ['ariaLabelCloseButton', 'closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
971
+ standalone: true
972
+ }]
973
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
974
+ let IxDropdown = class IxDropdown {
975
+ z;
976
+ el;
977
+ constructor(c, r, z) {
978
+ this.z = z;
979
+ c.detach();
980
+ this.el = r.nativeElement;
981
+ proxyOutputs(this, this.el, ['showChanged']);
982
+ }
983
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
984
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdown, isStandalone: true, 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 });
985
+ };
986
+ IxDropdown = __decorate([
987
+ ProxyCmp({
988
+ defineCustomElementFn: defineCustomElement$t,
989
+ inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
990
+ methods: ['updatePosition']
991
+ })
992
+ ], IxDropdown);
993
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdown, decorators: [{
994
+ type: Component,
995
+ args: [{
996
+ selector: 'ix-dropdown',
997
+ changeDetection: ChangeDetectionStrategy.OnPush,
998
+ template: '<ng-content></ng-content>',
999
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1000
+ inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
1001
+ standalone: true
1002
+ }]
1003
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1004
+ let IxDropdownButton = class IxDropdownButton {
1005
+ z;
1006
+ el;
1007
+ constructor(c, r, z) {
1008
+ this.z = z;
1009
+ c.detach();
1010
+ this.el = r.nativeElement;
1011
+ }
1012
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1013
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownButton, isStandalone: true, selector: "ix-dropdown-button", inputs: { ariaLabelDropdownButton: "ariaLabelDropdownButton", 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 });
1014
+ };
1015
+ IxDropdownButton = __decorate([
1016
+ ProxyCmp({
1017
+ defineCustomElementFn: defineCustomElement$u,
1018
+ inputs: ['ariaLabelDropdownButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
1019
+ })
1020
+ ], IxDropdownButton);
1021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownButton, decorators: [{
1022
+ type: Component,
1023
+ args: [{
1024
+ selector: 'ix-dropdown-button',
1025
+ changeDetection: ChangeDetectionStrategy.OnPush,
1026
+ template: '<ng-content></ng-content>',
1027
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1028
+ inputs: ['ariaLabelDropdownButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
1029
+ standalone: true
1030
+ }]
1031
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1032
+ let IxDropdownHeader = class IxDropdownHeader {
1033
+ z;
1034
+ el;
1035
+ constructor(c, r, z) {
1036
+ this.z = z;
1037
+ c.detach();
1038
+ this.el = r.nativeElement;
1039
+ }
1040
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1041
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownHeader, isStandalone: true, selector: "ix-dropdown-header", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1042
+ };
1043
+ IxDropdownHeader = __decorate([
1044
+ ProxyCmp({
1045
+ defineCustomElementFn: defineCustomElement$v,
1046
+ inputs: ['label']
1047
+ })
1048
+ ], IxDropdownHeader);
1049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownHeader, decorators: [{
1050
+ type: Component,
1051
+ args: [{
1052
+ selector: 'ix-dropdown-header',
1053
+ changeDetection: ChangeDetectionStrategy.OnPush,
1054
+ template: '<ng-content></ng-content>',
1055
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1056
+ inputs: ['label'],
1057
+ standalone: true
1058
+ }]
1059
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1060
+ let IxDropdownItem = class IxDropdownItem {
1061
+ z;
1062
+ el;
1063
+ constructor(c, r, z) {
1064
+ this.z = z;
1065
+ c.detach();
1066
+ this.el = r.nativeElement;
1067
+ }
1068
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1069
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownItem, isStandalone: true, selector: "ix-dropdown-item", inputs: { ariaLabelButton: "ariaLabelButton", ariaLabelIcon: "ariaLabelIcon", checked: "checked", disabled: "disabled", hover: "hover", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1070
+ };
1071
+ IxDropdownItem = __decorate([
1072
+ ProxyCmp({
1073
+ defineCustomElementFn: defineCustomElement$w,
1074
+ inputs: ['ariaLabelButton', 'ariaLabelIcon', 'checked', 'disabled', 'hover', 'icon', 'label']
1075
+ })
1076
+ ], IxDropdownItem);
1077
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownItem, decorators: [{
1078
+ type: Component,
1079
+ args: [{
1080
+ selector: 'ix-dropdown-item',
1081
+ changeDetection: ChangeDetectionStrategy.OnPush,
1082
+ template: '<ng-content></ng-content>',
1083
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1084
+ inputs: ['ariaLabelButton', 'ariaLabelIcon', 'checked', 'disabled', 'hover', 'icon', 'label'],
1085
+ standalone: true
1086
+ }]
1087
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1088
+ let IxDropdownQuickActions = class IxDropdownQuickActions {
1089
+ z;
1090
+ el;
1091
+ constructor(c, r, z) {
1092
+ this.z = z;
1093
+ c.detach();
1094
+ this.el = r.nativeElement;
1095
+ }
1096
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownQuickActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1097
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownQuickActions, isStandalone: true, selector: "ix-dropdown-quick-actions", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1098
+ };
1099
+ IxDropdownQuickActions = __decorate([
1100
+ ProxyCmp({
1101
+ defineCustomElementFn: defineCustomElement$x
1102
+ })
1103
+ ], IxDropdownQuickActions);
1104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownQuickActions, decorators: [{
1105
+ type: Component,
1106
+ args: [{
1107
+ selector: 'ix-dropdown-quick-actions',
1108
+ changeDetection: ChangeDetectionStrategy.OnPush,
1109
+ template: '<ng-content></ng-content>',
1110
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1111
+ inputs: [],
1112
+ standalone: true
1113
+ }]
1114
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1115
+ let IxEmptyState = class IxEmptyState {
1116
+ z;
1117
+ el;
1118
+ constructor(c, r, z) {
1119
+ this.z = z;
1120
+ c.detach();
1121
+ this.el = r.nativeElement;
1122
+ proxyOutputs(this, this.el, ['actionClick']);
1123
+ }
1124
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1125
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxEmptyState, isStandalone: true, selector: "ix-empty-state", inputs: { action: "action", ariaLabelEmptyStateIcon: "ariaLabelEmptyStateIcon", header: "header", icon: "icon", layout: "layout", subHeader: "subHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1126
+ };
1127
+ IxEmptyState = __decorate([
1128
+ ProxyCmp({
1129
+ defineCustomElementFn: defineCustomElement$y,
1130
+ inputs: ['action', 'ariaLabelEmptyStateIcon', 'header', 'icon', 'layout', 'subHeader']
1131
+ })
1132
+ ], IxEmptyState);
1133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEmptyState, decorators: [{
1134
+ type: Component,
1135
+ args: [{
1136
+ selector: 'ix-empty-state',
1137
+ changeDetection: ChangeDetectionStrategy.OnPush,
1138
+ template: '<ng-content></ng-content>',
1139
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1140
+ inputs: ['action', 'ariaLabelEmptyStateIcon', 'header', 'icon', 'layout', 'subHeader'],
1141
+ standalone: true
1142
+ }]
1143
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1144
+ let IxEventList = class IxEventList {
1145
+ z;
1146
+ el;
1147
+ constructor(c, r, z) {
1148
+ this.z = z;
1149
+ c.detach();
1150
+ this.el = r.nativeElement;
1151
+ }
1152
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1153
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxEventList, isStandalone: true, 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 });
1154
+ };
1155
+ IxEventList = __decorate([
1156
+ ProxyCmp({
1157
+ defineCustomElementFn: defineCustomElement$z,
1158
+ inputs: ['animated', 'chevron', 'compact', 'itemHeight']
1159
+ })
1160
+ ], IxEventList);
1161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventList, decorators: [{
1162
+ type: Component,
1163
+ args: [{
1164
+ selector: 'ix-event-list',
1165
+ changeDetection: ChangeDetectionStrategy.OnPush,
1166
+ template: '<ng-content></ng-content>',
1167
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1168
+ inputs: ['animated', 'chevron', 'compact', 'itemHeight'],
1169
+ standalone: true
1170
+ }]
1171
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1172
+ let IxEventListItem = class IxEventListItem {
1173
+ z;
1174
+ el;
1175
+ constructor(c, r, z) {
1176
+ this.z = z;
1177
+ c.detach();
1178
+ this.el = r.nativeElement;
1179
+ proxyOutputs(this, this.el, ['itemClick']);
1180
+ }
1181
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1182
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxEventListItem, isStandalone: true, selector: "ix-event-list-item", inputs: { chevron: "chevron", disabled: "disabled", itemColor: "itemColor", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1183
+ };
1184
+ IxEventListItem = __decorate([
1185
+ ProxyCmp({
1186
+ defineCustomElementFn: defineCustomElement$A,
1187
+ inputs: ['chevron', 'disabled', 'itemColor', 'selected']
1188
+ })
1189
+ ], IxEventListItem);
1190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventListItem, decorators: [{
1191
+ type: Component,
1192
+ args: [{
1193
+ selector: 'ix-event-list-item',
1194
+ changeDetection: ChangeDetectionStrategy.OnPush,
1195
+ template: '<ng-content></ng-content>',
1196
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1197
+ inputs: ['chevron', 'disabled', 'itemColor', 'selected'],
1198
+ standalone: true
1199
+ }]
1200
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1201
+ let IxExpandingSearch = class IxExpandingSearch {
1202
+ z;
1203
+ el;
1204
+ constructor(c, r, z) {
1205
+ this.z = z;
1206
+ c.detach();
1207
+ this.el = r.nativeElement;
1208
+ proxyOutputs(this, this.el, ['valueChange']);
1209
+ }
1210
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxExpandingSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1211
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxExpandingSearch, isStandalone: true, selector: "ix-expanding-search", inputs: { ariaLabelClearIconButton: "ariaLabelClearIconButton", ariaLabelSearchIconButton: "ariaLabelSearchIconButton", ariaLabelSearchInput: "ariaLabelSearchInput", fullWidth: "fullWidth", ghost: "ghost", icon: "icon", outline: "outline", placeholder: "placeholder", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1212
+ };
1213
+ IxExpandingSearch = __decorate([
1214
+ ProxyCmp({
1215
+ defineCustomElementFn: defineCustomElement$B,
1216
+ inputs: ['ariaLabelClearIconButton', 'ariaLabelSearchIconButton', 'ariaLabelSearchInput', 'fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant']
1217
+ })
1218
+ ], IxExpandingSearch);
1219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxExpandingSearch, decorators: [{
1220
+ type: Component,
1221
+ args: [{
1222
+ selector: 'ix-expanding-search',
1223
+ changeDetection: ChangeDetectionStrategy.OnPush,
1224
+ template: '<ng-content></ng-content>',
1225
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1226
+ inputs: ['ariaLabelClearIconButton', 'ariaLabelSearchIconButton', 'ariaLabelSearchInput', 'fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant'],
1227
+ standalone: true
1228
+ }]
1229
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1230
+ let IxFieldLabel = class IxFieldLabel {
1231
+ z;
1232
+ el;
1233
+ constructor(c, r, z) {
1234
+ this.z = z;
1235
+ c.detach();
1236
+ this.el = r.nativeElement;
1237
+ }
1238
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1239
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFieldLabel, isStandalone: true, selector: "ix-field-label", inputs: { htmlFor: "htmlFor", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1240
+ };
1241
+ IxFieldLabel = __decorate([
1242
+ ProxyCmp({
1243
+ defineCustomElementFn: defineCustomElement$C,
1244
+ inputs: ['htmlFor', 'required']
1245
+ })
1246
+ ], IxFieldLabel);
1247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFieldLabel, decorators: [{
1248
+ type: Component,
1249
+ args: [{
1250
+ selector: 'ix-field-label',
1251
+ changeDetection: ChangeDetectionStrategy.OnPush,
1252
+ template: '<ng-content></ng-content>',
1253
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1254
+ inputs: ['htmlFor', 'required'],
1255
+ standalone: true
1256
+ }]
1257
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1258
+ let IxFilterChip = class IxFilterChip {
1259
+ z;
1260
+ el;
1261
+ constructor(c, r, z) {
1262
+ this.z = z;
1263
+ c.detach();
1264
+ this.el = r.nativeElement;
1265
+ proxyOutputs(this, this.el, ['closeClick']);
1266
+ }
1267
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFilterChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1268
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFilterChip, isStandalone: true, selector: "ix-filter-chip", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", disabled: "disabled", readonly: "readonly" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1269
+ };
1270
+ IxFilterChip = __decorate([
1271
+ ProxyCmp({
1272
+ defineCustomElementFn: defineCustomElement$D,
1273
+ inputs: ['ariaLabelCloseIconButton', 'disabled', 'readonly']
1274
+ })
1275
+ ], IxFilterChip);
1276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFilterChip, decorators: [{
1277
+ type: Component,
1278
+ args: [{
1279
+ selector: 'ix-filter-chip',
1280
+ changeDetection: ChangeDetectionStrategy.OnPush,
1281
+ template: '<ng-content></ng-content>',
1282
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1283
+ inputs: ['ariaLabelCloseIconButton', 'disabled', 'readonly'],
1284
+ standalone: true
1285
+ }]
1286
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1287
+ let IxFlipTile = class IxFlipTile {
1288
+ z;
1289
+ el;
1290
+ constructor(c, r, z) {
1291
+ this.z = z;
1292
+ c.detach();
1293
+ this.el = r.nativeElement;
1294
+ proxyOutputs(this, this.el, ['toggle']);
1295
+ }
1296
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1297
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFlipTile, isStandalone: true, selector: "ix-flip-tile", inputs: { ariaLabelEyeIconButton: "ariaLabelEyeIconButton", height: "height", index: "index", state: "state", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1298
+ };
1299
+ IxFlipTile = __decorate([
1300
+ ProxyCmp({
1301
+ defineCustomElementFn: defineCustomElement$E,
1302
+ inputs: ['ariaLabelEyeIconButton', 'height', 'index', 'state', 'width']
1303
+ })
1304
+ ], IxFlipTile);
1305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTile, decorators: [{
1306
+ type: Component,
1307
+ args: [{
1308
+ selector: 'ix-flip-tile',
1309
+ changeDetection: ChangeDetectionStrategy.OnPush,
1310
+ template: '<ng-content></ng-content>',
1311
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1312
+ inputs: ['ariaLabelEyeIconButton', 'height', 'index', 'state', 'width'],
1313
+ standalone: true
1314
+ }]
1315
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1316
+ let IxFlipTileContent = class IxFlipTileContent {
1317
+ z;
1318
+ el;
1319
+ constructor(c, r, z) {
1320
+ this.z = z;
1321
+ c.detach();
1322
+ this.el = r.nativeElement;
1323
+ }
1324
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTileContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1325
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFlipTileContent, isStandalone: true, selector: "ix-flip-tile-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1326
+ };
1327
+ IxFlipTileContent = __decorate([
1328
+ ProxyCmp({
1329
+ defineCustomElementFn: defineCustomElement$F
1330
+ })
1331
+ ], IxFlipTileContent);
1332
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTileContent, decorators: [{
1333
+ type: Component,
1334
+ args: [{
1335
+ selector: 'ix-flip-tile-content',
1336
+ changeDetection: ChangeDetectionStrategy.OnPush,
1337
+ template: '<ng-content></ng-content>',
1338
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1339
+ inputs: [],
1340
+ standalone: true
1341
+ }]
1342
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1343
+ let IxGroup = class IxGroup {
1344
+ z;
1345
+ el;
1346
+ constructor(c, r, z) {
1347
+ this.z = z;
1348
+ c.detach();
1349
+ this.el = r.nativeElement;
1350
+ proxyOutputs(this, this.el, ['selectGroup', 'selectItem', 'collapsedChanged']);
1351
+ }
1352
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1353
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxGroup, isStandalone: true, 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 });
1354
+ };
1355
+ IxGroup = __decorate([
1356
+ ProxyCmp({
1357
+ defineCustomElementFn: defineCustomElement$G,
1358
+ inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
1359
+ })
1360
+ ], IxGroup);
1361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroup, decorators: [{
1362
+ type: Component,
1363
+ args: [{
1364
+ selector: 'ix-group',
1365
+ changeDetection: ChangeDetectionStrategy.OnPush,
1366
+ template: '<ng-content></ng-content>',
1367
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1368
+ inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection'],
1369
+ standalone: true
1370
+ }]
1371
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1372
+ let IxGroupContextMenu = class IxGroupContextMenu {
1373
+ z;
1374
+ el;
1375
+ constructor(c, r, z) {
1376
+ this.z = z;
1377
+ c.detach();
1378
+ this.el = r.nativeElement;
1379
+ }
1380
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1381
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxGroupContextMenu, isStandalone: true, selector: "ix-group-context-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1382
+ };
1383
+ IxGroupContextMenu = __decorate([
1384
+ ProxyCmp({
1385
+ defineCustomElementFn: defineCustomElement$H
1386
+ })
1387
+ ], IxGroupContextMenu);
1388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupContextMenu, decorators: [{
1389
+ type: Component,
1390
+ args: [{
1391
+ selector: 'ix-group-context-menu',
1392
+ changeDetection: ChangeDetectionStrategy.OnPush,
1393
+ template: '<ng-content></ng-content>',
1394
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1395
+ inputs: [],
1396
+ standalone: true
1397
+ }]
1398
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1399
+ let IxGroupItem = class IxGroupItem {
1400
+ z;
1401
+ el;
1402
+ constructor(c, r, z) {
1403
+ this.z = z;
1404
+ c.detach();
1405
+ this.el = r.nativeElement;
1406
+ proxyOutputs(this, this.el, ['selectedChanged']);
1407
+ }
1408
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1409
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxGroupItem, isStandalone: true, selector: "ix-group-item", inputs: { ariaLabelIcon: "ariaLabelIcon", 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 });
1410
+ };
1411
+ IxGroupItem = __decorate([
1412
+ ProxyCmp({
1413
+ defineCustomElementFn: defineCustomElement$I,
1414
+ inputs: ['ariaLabelIcon', 'focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
1415
+ })
1416
+ ], IxGroupItem);
1417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupItem, decorators: [{
1418
+ type: Component,
1419
+ args: [{
1420
+ selector: 'ix-group-item',
1421
+ changeDetection: ChangeDetectionStrategy.OnPush,
1422
+ template: '<ng-content></ng-content>',
1423
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1424
+ inputs: ['ariaLabelIcon', 'focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1425
+ standalone: true
1426
+ }]
1427
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1428
+ let IxHelperText = class IxHelperText {
1429
+ z;
1430
+ el;
1431
+ constructor(c, r, z) {
1432
+ this.z = z;
1433
+ c.detach();
1434
+ this.el = r.nativeElement;
1435
+ }
1436
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxHelperText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1437
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxHelperText, isStandalone: true, 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 });
1438
+ };
1439
+ IxHelperText = __decorate([
1440
+ ProxyCmp({
1441
+ defineCustomElementFn: defineCustomElement$J,
1442
+ inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText']
1443
+ })
1444
+ ], IxHelperText);
1445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxHelperText, decorators: [{
1446
+ type: Component,
1447
+ args: [{
1448
+ selector: 'ix-helper-text',
1449
+ changeDetection: ChangeDetectionStrategy.OnPush,
1450
+ template: '<ng-content></ng-content>',
1451
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1452
+ inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText'],
1453
+ standalone: true
1454
+ }]
1455
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1456
+ let IxIconButton = class IxIconButton {
1457
+ z;
1458
+ el;
1459
+ constructor(c, r, z) {
1460
+ this.z = z;
1461
+ c.detach();
1462
+ this.el = r.nativeElement;
1463
+ }
1464
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1465
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxIconButton, isStandalone: true, selector: "ix-icon-button", inputs: { a11yLabel: "a11yLabel", 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 });
1466
+ };
1467
+ IxIconButton = __decorate([
1468
+ ProxyCmp({
1469
+ defineCustomElementFn: defineCustomElement$K,
1470
+ inputs: ['a11yLabel', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
1471
+ })
1472
+ ], IxIconButton);
1473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconButton, decorators: [{
1474
+ type: Component,
1475
+ args: [{
1476
+ selector: 'ix-icon-button',
1477
+ changeDetection: ChangeDetectionStrategy.OnPush,
1478
+ template: '<ng-content></ng-content>',
1479
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1480
+ inputs: ['a11yLabel', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
1481
+ standalone: true
1482
+ }]
1483
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1484
+ let IxIconToggleButton = class IxIconToggleButton {
1485
+ z;
1486
+ el;
1487
+ constructor(c, r, z) {
1488
+ this.z = z;
1489
+ c.detach();
1490
+ this.el = r.nativeElement;
1491
+ proxyOutputs(this, this.el, ['pressedChange']);
1492
+ }
1493
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1494
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxIconToggleButton, isStandalone: true, selector: "ix-icon-toggle-button", inputs: { ariaLabelIconButton: "ariaLabelIconButton", disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", oval: "oval", pressed: "pressed", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1495
+ };
1496
+ IxIconToggleButton = __decorate([
1497
+ ProxyCmp({
1498
+ defineCustomElementFn: defineCustomElement$L,
1499
+ inputs: ['ariaLabelIconButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'pressed', 'size', 'variant']
1500
+ })
1501
+ ], IxIconToggleButton);
1502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconToggleButton, decorators: [{
1503
+ type: Component,
1504
+ args: [{
1505
+ selector: 'ix-icon-toggle-button',
1506
+ changeDetection: ChangeDetectionStrategy.OnPush,
1507
+ template: '<ng-content></ng-content>',
1508
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1509
+ inputs: ['ariaLabelIconButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'pressed', 'size', 'variant'],
1510
+ standalone: true
1511
+ }]
1512
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1513
+ let IxInput = class IxInput {
1514
+ z;
1515
+ el;
1516
+ constructor(c, r, z) {
1517
+ this.z = z;
1518
+ c.detach();
1519
+ this.el = r.nativeElement;
1520
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1521
+ }
1522
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1523
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxInput, isStandalone: true, 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 });
1524
+ };
1525
+ IxInput = __decorate([
1526
+ ProxyCmp({
1527
+ defineCustomElementFn: defineCustomElement$M,
1528
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
1529
+ methods: ['getNativeInputElement', 'getValidityState', 'focusInput']
1530
+ })
1531
+ ], IxInput);
1532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInput, decorators: [{
1533
+ type: Component,
1534
+ args: [{
1535
+ selector: 'ix-input',
1536
+ changeDetection: ChangeDetectionStrategy.OnPush,
1537
+ template: '<ng-content></ng-content>',
1538
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1539
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
1540
+ standalone: true
1541
+ }]
1542
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1543
+ let IxInputGroup = class IxInputGroup {
1544
+ z;
1545
+ el;
1546
+ constructor(c, r, z) {
1547
+ this.z = z;
1548
+ c.detach();
1549
+ this.el = r.nativeElement;
1550
+ }
1551
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1552
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxInputGroup, isStandalone: true, selector: "ix-input-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1553
+ };
1554
+ IxInputGroup = __decorate([
1555
+ ProxyCmp({
1556
+ defineCustomElementFn: defineCustomElement$N
1557
+ })
1558
+ ], IxInputGroup);
1559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInputGroup, decorators: [{
1560
+ type: Component,
1561
+ args: [{
1562
+ selector: 'ix-input-group',
1563
+ changeDetection: ChangeDetectionStrategy.OnPush,
1564
+ template: '<ng-content></ng-content>',
1565
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1566
+ inputs: [],
1567
+ standalone: true
1568
+ }]
1569
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1570
+ let IxKeyValue = class IxKeyValue {
1571
+ z;
1572
+ el;
1573
+ constructor(c, r, z) {
1574
+ this.z = z;
1575
+ c.detach();
1576
+ this.el = r.nativeElement;
1577
+ }
1578
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValue, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1579
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxKeyValue, isStandalone: true, selector: "ix-key-value", inputs: { ariaLabelIcon: "ariaLabelIcon", icon: "icon", label: "label", labelPosition: "labelPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1580
+ };
1581
+ IxKeyValue = __decorate([
1582
+ ProxyCmp({
1583
+ defineCustomElementFn: defineCustomElement$O,
1584
+ inputs: ['ariaLabelIcon', 'icon', 'label', 'labelPosition', 'value']
1585
+ })
1586
+ ], IxKeyValue);
1587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValue, decorators: [{
1588
+ type: Component,
1589
+ args: [{
1590
+ selector: 'ix-key-value',
1591
+ changeDetection: ChangeDetectionStrategy.OnPush,
1592
+ template: '<ng-content></ng-content>',
1593
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1594
+ inputs: ['ariaLabelIcon', 'icon', 'label', 'labelPosition', 'value'],
1595
+ standalone: true
1596
+ }]
1597
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1598
+ let IxKeyValueList = class IxKeyValueList {
1599
+ z;
1600
+ el;
1601
+ constructor(c, r, z) {
1602
+ this.z = z;
1603
+ c.detach();
1604
+ this.el = r.nativeElement;
1605
+ }
1606
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValueList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1607
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxKeyValueList, isStandalone: true, selector: "ix-key-value-list", inputs: { striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1608
+ };
1609
+ IxKeyValueList = __decorate([
1610
+ ProxyCmp({
1611
+ defineCustomElementFn: defineCustomElement$P,
1612
+ inputs: ['striped']
1613
+ })
1614
+ ], IxKeyValueList);
1615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValueList, decorators: [{
1616
+ type: Component,
1617
+ args: [{
1618
+ selector: 'ix-key-value-list',
1619
+ changeDetection: ChangeDetectionStrategy.OnPush,
1620
+ template: '<ng-content></ng-content>',
1621
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1622
+ inputs: ['striped'],
1623
+ standalone: true
1624
+ }]
1625
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1626
+ let IxKpi = class IxKpi {
1627
+ z;
1628
+ el;
1629
+ constructor(c, r, z) {
1630
+ this.z = z;
1631
+ c.detach();
1632
+ this.el = r.nativeElement;
1633
+ }
1634
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1635
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxKpi, isStandalone: true, selector: "ix-kpi", inputs: { ariaLabelAlarmIcon: "ariaLabelAlarmIcon", ariaLabelWarningIcon: "ariaLabelWarningIcon", label: "label", orientation: "orientation", state: "state", unit: "unit", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1636
+ };
1637
+ IxKpi = __decorate([
1638
+ ProxyCmp({
1639
+ defineCustomElementFn: defineCustomElement$Q,
1640
+ inputs: ['ariaLabelAlarmIcon', 'ariaLabelWarningIcon', 'label', 'orientation', 'state', 'unit', 'value']
1641
+ })
1642
+ ], IxKpi);
1643
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKpi, decorators: [{
1644
+ type: Component,
1645
+ args: [{
1646
+ selector: 'ix-kpi',
1647
+ changeDetection: ChangeDetectionStrategy.OnPush,
1648
+ template: '<ng-content></ng-content>',
1649
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1650
+ inputs: ['ariaLabelAlarmIcon', 'ariaLabelWarningIcon', 'label', 'orientation', 'state', 'unit', 'value'],
1651
+ standalone: true
1652
+ }]
1653
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1654
+ let IxLayoutAuto = class IxLayoutAuto {
1655
+ z;
1656
+ el;
1657
+ constructor(c, r, z) {
1658
+ this.z = z;
1659
+ c.detach();
1660
+ this.el = r.nativeElement;
1661
+ }
1662
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutAuto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1663
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxLayoutAuto, isStandalone: true, selector: "ix-layout-auto", inputs: { layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1664
+ };
1665
+ IxLayoutAuto = __decorate([
1666
+ ProxyCmp({
1667
+ defineCustomElementFn: defineCustomElement$R,
1668
+ inputs: ['layout']
1669
+ })
1670
+ ], IxLayoutAuto);
1671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutAuto, decorators: [{
1672
+ type: Component,
1673
+ args: [{
1674
+ selector: 'ix-layout-auto',
1675
+ changeDetection: ChangeDetectionStrategy.OnPush,
1676
+ template: '<ng-content></ng-content>',
1677
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1678
+ inputs: ['layout'],
1679
+ standalone: true
1680
+ }]
1681
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1682
+ let IxLayoutGrid = class IxLayoutGrid {
1683
+ z;
1684
+ el;
1685
+ constructor(c, r, z) {
1686
+ this.z = z;
1687
+ c.detach();
1688
+ this.el = r.nativeElement;
1689
+ }
1690
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1691
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxLayoutGrid, isStandalone: true, selector: "ix-layout-grid", inputs: { columns: "columns", gap: "gap", noMargin: "noMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1692
+ };
1693
+ IxLayoutGrid = __decorate([
1694
+ ProxyCmp({
1695
+ defineCustomElementFn: defineCustomElement$S,
1696
+ inputs: ['columns', 'gap', 'noMargin']
1697
+ })
1698
+ ], IxLayoutGrid);
1699
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutGrid, decorators: [{
1700
+ type: Component,
1701
+ args: [{
1702
+ selector: 'ix-layout-grid',
1703
+ changeDetection: ChangeDetectionStrategy.OnPush,
1704
+ template: '<ng-content></ng-content>',
1705
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1706
+ inputs: ['columns', 'gap', 'noMargin'],
1707
+ standalone: true
1708
+ }]
1709
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1710
+ let IxLinkButton = class IxLinkButton {
1711
+ z;
1712
+ el;
1713
+ constructor(c, r, z) {
1714
+ this.z = z;
1715
+ c.detach();
1716
+ this.el = r.nativeElement;
1717
+ }
1718
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLinkButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1719
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxLinkButton, isStandalone: true, selector: "ix-link-button", inputs: { disabled: "disabled", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1720
+ };
1721
+ IxLinkButton = __decorate([
1722
+ ProxyCmp({
1723
+ defineCustomElementFn: defineCustomElement$T,
1724
+ inputs: ['disabled', 'target', 'url']
1725
+ })
1726
+ ], IxLinkButton);
1727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLinkButton, decorators: [{
1728
+ type: Component,
1729
+ args: [{
1730
+ selector: 'ix-link-button',
1731
+ changeDetection: ChangeDetectionStrategy.OnPush,
1732
+ template: '<ng-content></ng-content>',
1733
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1734
+ inputs: ['disabled', 'target', 'url'],
1735
+ standalone: true
1736
+ }]
1737
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1738
+ let IxMapNavigation = class IxMapNavigation {
1739
+ z;
1740
+ el;
1741
+ constructor(c, r, z) {
1742
+ this.z = z;
1743
+ c.detach();
1744
+ this.el = r.nativeElement;
1745
+ proxyOutputs(this, this.el, ['navigationToggled', 'contextMenuClick']);
1746
+ }
1747
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1748
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMapNavigation, isStandalone: true, selector: "ix-map-navigation", inputs: { applicationName: "applicationName", ariaLabelContextIconButton: "ariaLabelContextIconButton", hideContextMenu: "hideContextMenu", navigationTitle: "navigationTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1749
+ };
1750
+ IxMapNavigation = __decorate([
1751
+ ProxyCmp({
1752
+ defineCustomElementFn: defineCustomElement$U,
1753
+ inputs: ['applicationName', 'ariaLabelContextIconButton', 'hideContextMenu', 'navigationTitle'],
1754
+ methods: ['toggleSidebar', 'openOverlay', 'closeOverlay']
1755
+ })
1756
+ ], IxMapNavigation);
1757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigation, decorators: [{
1758
+ type: Component,
1759
+ args: [{
1760
+ selector: 'ix-map-navigation',
1761
+ changeDetection: ChangeDetectionStrategy.OnPush,
1762
+ template: '<ng-content></ng-content>',
1763
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1764
+ inputs: ['applicationName', 'ariaLabelContextIconButton', 'hideContextMenu', 'navigationTitle'],
1765
+ standalone: true
1766
+ }]
1767
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1768
+ let IxMapNavigationOverlay = class IxMapNavigationOverlay {
1769
+ z;
1770
+ el;
1771
+ constructor(c, r, z) {
1772
+ this.z = z;
1773
+ c.detach();
1774
+ this.el = r.nativeElement;
1775
+ proxyOutputs(this, this.el, ['closeClick']);
1776
+ }
1777
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigationOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1778
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMapNavigationOverlay, isStandalone: true, selector: "ix-map-navigation-overlay", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", ariaLabelIcon: "ariaLabelIcon", color: "color", icon: "icon", iconColor: "iconColor", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1779
+ };
1780
+ IxMapNavigationOverlay = __decorate([
1781
+ ProxyCmp({
1782
+ defineCustomElementFn: defineCustomElement$V,
1783
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'color', 'icon', 'iconColor', 'name']
1784
+ })
1785
+ ], IxMapNavigationOverlay);
1786
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
1787
+ type: Component,
1788
+ args: [{
1789
+ selector: 'ix-map-navigation-overlay',
1790
+ changeDetection: ChangeDetectionStrategy.OnPush,
1791
+ template: '<ng-content></ng-content>',
1792
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1793
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'color', 'icon', 'iconColor', 'name'],
1794
+ standalone: true
1795
+ }]
1796
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1797
+ let IxMenu = class IxMenu {
1798
+ z;
1799
+ el;
1800
+ constructor(c, r, z) {
1801
+ this.z = z;
1802
+ c.detach();
1803
+ this.el = r.nativeElement;
1804
+ proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange', 'openAppSwitch', 'openSettings', 'openAbout']);
1805
+ }
1806
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1807
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenu, isStandalone: true, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nExpandSidebar: "i18nExpandSidebar", i18nLegal: "i18nLegal", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", pinned: "pinned", showAbout: "showAbout", showSettings: "showSettings", startExpanded: "startExpanded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1808
+ };
1809
+ IxMenu = __decorate([
1810
+ ProxyCmp({
1811
+ defineCustomElementFn: defineCustomElement$W,
1812
+ inputs: ['applicationDescription', 'applicationName', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1813
+ methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
1814
+ })
1815
+ ], IxMenu);
1816
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenu, decorators: [{
1817
+ type: Component,
1818
+ args: [{
1819
+ selector: 'ix-menu',
1820
+ changeDetection: ChangeDetectionStrategy.OnPush,
1821
+ template: '<ng-content></ng-content>',
1822
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1823
+ inputs: ['applicationDescription', 'applicationName', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1824
+ standalone: true
1825
+ }]
1826
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1827
+ let IxMenuAbout = class IxMenuAbout {
1828
+ z;
1829
+ el;
1830
+ constructor(c, r, z) {
1831
+ this.z = z;
1832
+ c.detach();
1833
+ this.el = r.nativeElement;
1834
+ proxyOutputs(this, this.el, ['tabChange', 'close']);
1835
+ }
1836
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAbout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1837
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAbout, isStandalone: true, selector: "ix-menu-about", inputs: { activeTabLabel: "activeTabLabel", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1838
+ };
1839
+ IxMenuAbout = __decorate([
1840
+ ProxyCmp({
1841
+ defineCustomElementFn: defineCustomElement$X,
1842
+ inputs: ['activeTabLabel', 'label']
1843
+ })
1844
+ ], IxMenuAbout);
1845
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAbout, decorators: [{
1846
+ type: Component,
1847
+ args: [{
1848
+ selector: 'ix-menu-about',
1849
+ changeDetection: ChangeDetectionStrategy.OnPush,
1850
+ template: '<ng-content></ng-content>',
1851
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1852
+ inputs: ['activeTabLabel', 'label'],
1853
+ standalone: true
1854
+ }]
1855
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1856
+ let IxMenuAboutItem = class IxMenuAboutItem {
1857
+ z;
1858
+ el;
1859
+ constructor(c, r, z) {
1860
+ this.z = z;
1861
+ c.detach();
1862
+ this.el = r.nativeElement;
1863
+ proxyOutputs(this, this.el, ['labelChange']);
1864
+ }
1865
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1866
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAboutItem, isStandalone: true, selector: "ix-menu-about-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1867
+ };
1868
+ IxMenuAboutItem = __decorate([
1869
+ ProxyCmp({
1870
+ defineCustomElementFn: defineCustomElement$Y,
1871
+ inputs: ['label']
1872
+ })
1873
+ ], IxMenuAboutItem);
1874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutItem, decorators: [{
1875
+ type: Component,
1876
+ args: [{
1877
+ selector: 'ix-menu-about-item',
1878
+ changeDetection: ChangeDetectionStrategy.OnPush,
1879
+ template: '<ng-content></ng-content>',
1880
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1881
+ inputs: ['label'],
1882
+ standalone: true
1883
+ }]
1884
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1885
+ let IxMenuAboutNews = class IxMenuAboutNews {
1886
+ z;
1887
+ el;
1888
+ constructor(c, r, z) {
1889
+ this.z = z;
1890
+ c.detach();
1891
+ this.el = r.nativeElement;
1892
+ proxyOutputs(this, this.el, ['showMore', 'closePopover']);
1893
+ }
1894
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutNews, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1895
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAboutNews, isStandalone: true, selector: "ix-menu-about-news", inputs: { aboutItemLabel: "aboutItemLabel", i18nShowMore: "i18nShowMore", label: "label", offsetBottom: "offsetBottom", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1896
+ };
1897
+ IxMenuAboutNews = __decorate([
1898
+ ProxyCmp({
1899
+ defineCustomElementFn: defineCustomElement$Z,
1900
+ inputs: ['aboutItemLabel', 'i18nShowMore', 'label', 'offsetBottom', 'show']
1901
+ })
1902
+ ], IxMenuAboutNews);
1903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutNews, decorators: [{
1904
+ type: Component,
1905
+ args: [{
1906
+ selector: 'ix-menu-about-news',
1907
+ changeDetection: ChangeDetectionStrategy.OnPush,
1908
+ template: '<ng-content></ng-content>',
1909
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1910
+ inputs: ['aboutItemLabel', 'i18nShowMore', 'label', 'offsetBottom', 'show'],
1911
+ standalone: true
1912
+ }]
1913
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1914
+ let IxMenuAvatar = class IxMenuAvatar {
1915
+ z;
1916
+ el;
1917
+ constructor(c, r, z) {
1918
+ this.z = z;
1919
+ c.detach();
1920
+ this.el = r.nativeElement;
1921
+ proxyOutputs(this, this.el, ['logoutClick']);
1922
+ }
1923
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1924
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAvatar, isStandalone: true, 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 });
1925
+ };
1926
+ IxMenuAvatar = __decorate([
1927
+ ProxyCmp({
1928
+ defineCustomElementFn: defineCustomElement$_,
1929
+ inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top']
1930
+ })
1931
+ ], IxMenuAvatar);
1932
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatar, decorators: [{
1933
+ type: Component,
1934
+ args: [{
1935
+ selector: 'ix-menu-avatar',
1936
+ changeDetection: ChangeDetectionStrategy.OnPush,
1937
+ template: '<ng-content></ng-content>',
1938
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1939
+ inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top'],
1940
+ standalone: true
1941
+ }]
1942
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1943
+ let IxMenuAvatarItem = class IxMenuAvatarItem {
1944
+ z;
1945
+ el;
1946
+ constructor(c, r, z) {
1947
+ this.z = z;
1948
+ c.detach();
1949
+ this.el = r.nativeElement;
1950
+ proxyOutputs(this, this.el, ['itemClick']);
1951
+ }
1952
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1953
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAvatarItem, isStandalone: true, selector: "ix-menu-avatar-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1954
+ };
1955
+ IxMenuAvatarItem = __decorate([
1956
+ ProxyCmp({
1957
+ defineCustomElementFn: defineCustomElement$$,
1958
+ inputs: ['icon', 'label']
1959
+ })
1960
+ ], IxMenuAvatarItem);
1961
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatarItem, decorators: [{
1962
+ type: Component,
1963
+ args: [{
1964
+ selector: 'ix-menu-avatar-item',
1965
+ changeDetection: ChangeDetectionStrategy.OnPush,
1966
+ template: '<ng-content></ng-content>',
1967
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1968
+ inputs: ['icon', 'label'],
1969
+ standalone: true
1970
+ }]
1971
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1972
+ let IxMenuCategory = class IxMenuCategory {
1973
+ z;
1974
+ el;
1975
+ constructor(c, r, z) {
1976
+ this.z = z;
1977
+ c.detach();
1978
+ this.el = r.nativeElement;
1979
+ }
1980
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuCategory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1981
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuCategory, isStandalone: true, selector: "ix-menu-category", inputs: { icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1982
+ };
1983
+ IxMenuCategory = __decorate([
1984
+ ProxyCmp({
1985
+ defineCustomElementFn: defineCustomElement$10,
1986
+ inputs: ['icon', 'label', 'notifications']
1987
+ })
1988
+ ], IxMenuCategory);
1989
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuCategory, decorators: [{
1990
+ type: Component,
1991
+ args: [{
1992
+ selector: 'ix-menu-category',
1993
+ changeDetection: ChangeDetectionStrategy.OnPush,
1994
+ template: '<ng-content></ng-content>',
1995
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1996
+ inputs: ['icon', 'label', 'notifications'],
1997
+ standalone: true
1998
+ }]
1999
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2000
+ let IxMenuItem = class IxMenuItem {
2001
+ z;
2002
+ el;
2003
+ constructor(c, r, z) {
2004
+ this.z = z;
2005
+ c.detach();
2006
+ this.el = r.nativeElement;
2007
+ }
2008
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2009
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuItem, isStandalone: true, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2010
+ };
2011
+ IxMenuItem = __decorate([
2012
+ ProxyCmp({
2013
+ defineCustomElementFn: defineCustomElement$11,
2014
+ inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications']
2015
+ })
2016
+ ], IxMenuItem);
2017
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuItem, decorators: [{
2018
+ type: Component,
2019
+ args: [{
2020
+ selector: 'ix-menu-item',
2021
+ changeDetection: ChangeDetectionStrategy.OnPush,
2022
+ template: '<ng-content></ng-content>',
2023
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2024
+ inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications'],
2025
+ standalone: true
2026
+ }]
2027
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2028
+ let IxMenuSettings = class IxMenuSettings {
2029
+ z;
2030
+ el;
2031
+ constructor(c, r, z) {
2032
+ this.z = z;
2033
+ c.detach();
2034
+ this.el = r.nativeElement;
2035
+ proxyOutputs(this, this.el, ['tabChange', 'close']);
2036
+ }
2037
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2038
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuSettings, isStandalone: true, selector: "ix-menu-settings", inputs: { activeTabLabel: "activeTabLabel", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2039
+ };
2040
+ IxMenuSettings = __decorate([
2041
+ ProxyCmp({
2042
+ defineCustomElementFn: defineCustomElement$12,
2043
+ inputs: ['activeTabLabel', 'label']
2044
+ })
2045
+ ], IxMenuSettings);
2046
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettings, decorators: [{
2047
+ type: Component,
2048
+ args: [{
2049
+ selector: 'ix-menu-settings',
2050
+ changeDetection: ChangeDetectionStrategy.OnPush,
2051
+ template: '<ng-content></ng-content>',
2052
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2053
+ inputs: ['activeTabLabel', 'label'],
2054
+ standalone: true
2055
+ }]
2056
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2057
+ let IxMenuSettingsItem = class IxMenuSettingsItem {
2058
+ z;
2059
+ el;
2060
+ constructor(c, r, z) {
2061
+ this.z = z;
2062
+ c.detach();
2063
+ this.el = r.nativeElement;
2064
+ proxyOutputs(this, this.el, ['labelChange']);
2065
+ }
2066
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettingsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2067
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuSettingsItem, isStandalone: true, selector: "ix-menu-settings-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2068
+ };
2069
+ IxMenuSettingsItem = __decorate([
2070
+ ProxyCmp({
2071
+ defineCustomElementFn: defineCustomElement$13,
2072
+ inputs: ['label']
2073
+ })
2074
+ ], IxMenuSettingsItem);
2075
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettingsItem, decorators: [{
2076
+ type: Component,
2077
+ args: [{
2078
+ selector: 'ix-menu-settings-item',
2079
+ changeDetection: ChangeDetectionStrategy.OnPush,
2080
+ template: '<ng-content></ng-content>',
2081
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2082
+ inputs: ['label'],
2083
+ standalone: true
2084
+ }]
2085
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2086
+ let IxMessageBar = class IxMessageBar {
2087
+ z;
2088
+ el;
2089
+ constructor(c, r, z) {
2090
+ this.z = z;
2091
+ c.detach();
2092
+ this.el = r.nativeElement;
2093
+ proxyOutputs(this, this.el, ['closedChange', 'closeAnimationCompleted']);
2094
+ }
2095
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMessageBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2096
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMessageBar, isStandalone: true, selector: "ix-message-bar", inputs: { dismissible: "dismissible", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2097
+ };
2098
+ IxMessageBar = __decorate([
2099
+ ProxyCmp({
2100
+ defineCustomElementFn: defineCustomElement$14,
2101
+ inputs: ['dismissible', 'type']
2102
+ })
2103
+ ], IxMessageBar);
2104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMessageBar, decorators: [{
2105
+ type: Component,
2106
+ args: [{
2107
+ selector: 'ix-message-bar',
2108
+ changeDetection: ChangeDetectionStrategy.OnPush,
2109
+ template: '<ng-content></ng-content>',
2110
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2111
+ inputs: ['dismissible', 'type'],
2112
+ standalone: true
2113
+ }]
2114
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2115
+ let IxModal = class IxModal {
2116
+ z;
2117
+ el;
2118
+ constructor(c, r, z) {
2119
+ this.z = z;
2120
+ c.detach();
2121
+ this.el = r.nativeElement;
2122
+ proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
2123
+ }
2124
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2125
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModal, isStandalone: true, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", closeOnEscape: "closeOnEscape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2126
+ };
2127
+ IxModal = __decorate([
2128
+ ProxyCmp({
2129
+ defineCustomElementFn: defineCustomElement$15,
2130
+ inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'size'],
2131
+ methods: ['showModal', 'dismissModal', 'closeModal']
2132
+ })
2133
+ ], IxModal);
2134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModal, decorators: [{
2135
+ type: Component,
2136
+ args: [{
2137
+ selector: 'ix-modal',
2138
+ changeDetection: ChangeDetectionStrategy.OnPush,
2139
+ template: '<ng-content></ng-content>',
2140
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2141
+ inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'size'],
2142
+ standalone: true
2143
+ }]
2144
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2145
+ let IxModalContent = class IxModalContent {
2146
+ z;
2147
+ el;
2148
+ constructor(c, r, z) {
2149
+ this.z = z;
2150
+ c.detach();
2151
+ this.el = r.nativeElement;
2152
+ }
2153
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2154
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModalContent, isStandalone: true, selector: "ix-modal-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2155
+ };
2156
+ IxModalContent = __decorate([
2157
+ ProxyCmp({
2158
+ defineCustomElementFn: defineCustomElement$16
2159
+ })
2160
+ ], IxModalContent);
2161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalContent, decorators: [{
2162
+ type: Component,
2163
+ args: [{
2164
+ selector: 'ix-modal-content',
2165
+ changeDetection: ChangeDetectionStrategy.OnPush,
2166
+ template: '<ng-content></ng-content>',
2167
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2168
+ inputs: [],
2169
+ standalone: true
2170
+ }]
2171
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2172
+ let IxModalFooter = class IxModalFooter {
2173
+ z;
2174
+ el;
2175
+ constructor(c, r, z) {
2176
+ this.z = z;
2177
+ c.detach();
2178
+ this.el = r.nativeElement;
2179
+ }
2180
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2181
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModalFooter, isStandalone: true, selector: "ix-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2182
+ };
2183
+ IxModalFooter = __decorate([
2184
+ ProxyCmp({
2185
+ defineCustomElementFn: defineCustomElement$17
2186
+ })
2187
+ ], IxModalFooter);
2188
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalFooter, decorators: [{
2189
+ type: Component,
2190
+ args: [{
2191
+ selector: 'ix-modal-footer',
2192
+ changeDetection: ChangeDetectionStrategy.OnPush,
2193
+ template: '<ng-content></ng-content>',
2194
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2195
+ inputs: [],
2196
+ standalone: true
2197
+ }]
2198
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2199
+ let IxModalHeader = class IxModalHeader {
2200
+ z;
2201
+ el;
2202
+ constructor(c, r, z) {
2203
+ this.z = z;
2204
+ c.detach();
2205
+ this.el = r.nativeElement;
2206
+ proxyOutputs(this, this.el, ['closeClick']);
2207
+ }
2208
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2209
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModalHeader, isStandalone: true, selector: "ix-modal-header", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", ariaLabelIcon: "ariaLabelIcon", hideClose: "hideClose", icon: "icon", iconColor: "iconColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2210
+ };
2211
+ IxModalHeader = __decorate([
2212
+ ProxyCmp({
2213
+ defineCustomElementFn: defineCustomElement$18,
2214
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'hideClose', 'icon', 'iconColor']
2215
+ })
2216
+ ], IxModalHeader);
2217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalHeader, decorators: [{
2218
+ type: Component,
2219
+ args: [{
2220
+ selector: 'ix-modal-header',
2221
+ changeDetection: ChangeDetectionStrategy.OnPush,
2222
+ template: '<ng-content></ng-content>',
2223
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2224
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'hideClose', 'icon', 'iconColor'],
2225
+ standalone: true
2226
+ }]
2227
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2228
+ let IxNumberInput = class IxNumberInput {
2229
+ z;
2230
+ el;
2231
+ constructor(c, r, z) {
2232
+ this.z = z;
2233
+ c.detach();
2234
+ this.el = r.nativeElement;
2235
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2236
+ }
2237
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2238
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxNumberInput, isStandalone: true, 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", step: "step", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2239
+ };
2240
+ IxNumberInput = __decorate([
2241
+ ProxyCmp({
2242
+ defineCustomElementFn: defineCustomElement$19,
2243
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'step', 'validText', 'value', 'warningText'],
2244
+ methods: ['getNativeInputElement', 'focusInput']
2245
+ })
2246
+ ], IxNumberInput);
2247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxNumberInput, decorators: [{
2248
+ type: Component,
2249
+ args: [{
2250
+ selector: 'ix-number-input',
2251
+ changeDetection: ChangeDetectionStrategy.OnPush,
2252
+ template: '<ng-content></ng-content>',
2253
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2254
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'step', 'validText', 'value', 'warningText'],
2255
+ standalone: true
2256
+ }]
2257
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2258
+ let IxPagination = class IxPagination {
2259
+ z;
2260
+ el;
2261
+ constructor(c, r, z) {
2262
+ this.z = z;
2263
+ c.detach();
2264
+ this.el = r.nativeElement;
2265
+ proxyOutputs(this, this.el, ['pageSelected', 'itemCountChanged']);
2266
+ }
2267
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2268
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPagination, isStandalone: true, selector: "ix-pagination", inputs: { advanced: "advanced", ariaLabelChevronLeftIconButton: "ariaLabelChevronLeftIconButton", ariaLabelChevronRightIconButton: "ariaLabelChevronRightIconButton", 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 });
2269
+ };
2270
+ IxPagination = __decorate([
2271
+ ProxyCmp({
2272
+ defineCustomElementFn: defineCustomElement$1a,
2273
+ inputs: ['advanced', 'ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount']
2274
+ })
2275
+ ], IxPagination);
2276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPagination, decorators: [{
2277
+ type: Component,
2278
+ args: [{
2279
+ selector: 'ix-pagination',
2280
+ changeDetection: ChangeDetectionStrategy.OnPush,
2281
+ template: '<ng-content></ng-content>',
2282
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2283
+ inputs: ['advanced', 'ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount'],
2284
+ standalone: true
2285
+ }]
2286
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2287
+ let IxPane = class IxPane {
2288
+ z;
2289
+ el;
2290
+ constructor(c, r, z) {
2291
+ this.z = z;
2292
+ c.detach();
2293
+ this.el = r.nativeElement;
2294
+ proxyOutputs(this, this.el, ['expandedChanged', 'variantChanged', 'borderlessChanged']);
2295
+ }
2296
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2297
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPane, isStandalone: true, selector: "ix-pane", inputs: { ariaLabelIcon: "ariaLabelIcon", 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 });
2298
+ };
2299
+ IxPane = __decorate([
2300
+ ProxyCmp({
2301
+ defineCustomElementFn: defineCustomElement$1b,
2302
+ inputs: ['ariaLabelIcon', 'borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant']
2303
+ })
2304
+ ], IxPane);
2305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPane, decorators: [{
2306
+ type: Component,
2307
+ args: [{
2308
+ selector: 'ix-pane',
2309
+ changeDetection: ChangeDetectionStrategy.OnPush,
2310
+ template: '<ng-content></ng-content>',
2311
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2312
+ inputs: ['ariaLabelIcon', 'borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant'],
2313
+ standalone: true
2314
+ }]
2315
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2316
+ let IxPaneLayout = class IxPaneLayout {
2317
+ z;
2318
+ el;
2319
+ constructor(c, r, z) {
2320
+ this.z = z;
2321
+ c.detach();
2322
+ this.el = r.nativeElement;
2323
+ }
2324
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPaneLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2325
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPaneLayout, isStandalone: true, selector: "ix-pane-layout", inputs: { borderless: "borderless", layout: "layout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2326
+ };
2327
+ IxPaneLayout = __decorate([
2328
+ ProxyCmp({
2329
+ defineCustomElementFn: defineCustomElement$1c,
2330
+ inputs: ['borderless', 'layout', 'variant']
2331
+ })
2332
+ ], IxPaneLayout);
2333
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPaneLayout, decorators: [{
2334
+ type: Component,
2335
+ args: [{
2336
+ selector: 'ix-pane-layout',
2337
+ changeDetection: ChangeDetectionStrategy.OnPush,
2338
+ template: '<ng-content></ng-content>',
2339
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2340
+ inputs: ['borderless', 'layout', 'variant'],
2341
+ standalone: true
2342
+ }]
2343
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2344
+ let IxPill = class IxPill {
2345
+ z;
2346
+ el;
2347
+ constructor(c, r, z) {
2348
+ this.z = z;
2349
+ c.detach();
2350
+ this.el = r.nativeElement;
2351
+ }
2352
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2353
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPill, isStandalone: true, selector: "ix-pill", inputs: { alignLeft: "alignLeft", ariaLabelIcon: "ariaLabelIcon", background: "background", icon: "icon", outline: "outline", pillColor: "pillColor", tooltipText: "tooltipText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2354
+ };
2355
+ IxPill = __decorate([
2356
+ ProxyCmp({
2357
+ defineCustomElementFn: defineCustomElement$1d,
2358
+ inputs: ['alignLeft', 'ariaLabelIcon', 'background', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant']
2359
+ })
2360
+ ], IxPill);
2361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPill, decorators: [{
2362
+ type: Component,
2363
+ args: [{
2364
+ selector: 'ix-pill',
2365
+ changeDetection: ChangeDetectionStrategy.OnPush,
2366
+ template: '<ng-content></ng-content>',
2367
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2368
+ inputs: ['alignLeft', 'ariaLabelIcon', 'background', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant'],
2369
+ standalone: true
2370
+ }]
2371
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2372
+ let IxProgressIndicator = class IxProgressIndicator {
2373
+ z;
2374
+ el;
2375
+ constructor(c, r, z) {
2376
+ this.z = z;
2377
+ c.detach();
2378
+ this.el = r.nativeElement;
2379
+ }
2380
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxProgressIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2381
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxProgressIndicator, isStandalone: true, selector: "ix-progress-indicator", inputs: { helperText: "helperText", label: "label", max: "max", min: "min", showTextAsTooltip: "showTextAsTooltip", size: "size", status: "status", textAlignment: "textAlignment", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2382
+ };
2383
+ IxProgressIndicator = __decorate([
2384
+ ProxyCmp({
2385
+ defineCustomElementFn: defineCustomElement$1e,
2386
+ inputs: ['helperText', 'label', 'max', 'min', 'showTextAsTooltip', 'size', 'status', 'textAlignment', 'type', 'value']
2387
+ })
2388
+ ], IxProgressIndicator);
2389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxProgressIndicator, decorators: [{
2390
+ type: Component,
2391
+ args: [{
2392
+ selector: 'ix-progress-indicator',
2393
+ changeDetection: ChangeDetectionStrategy.OnPush,
2394
+ template: '<ng-content></ng-content>',
2395
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2396
+ inputs: ['helperText', 'label', 'max', 'min', 'showTextAsTooltip', 'size', 'status', 'textAlignment', 'type', 'value'],
2397
+ standalone: true
2398
+ }]
2399
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2400
+ let IxPushCard = class IxPushCard {
2401
+ z;
2402
+ el;
2403
+ constructor(c, r, z) {
2404
+ this.z = z;
2405
+ c.detach();
2406
+ this.el = r.nativeElement;
2407
+ }
2408
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPushCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2409
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPushCard, isStandalone: true, selector: "ix-push-card", inputs: { ariaLabelIcon: "ariaLabelIcon", 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 });
2410
+ };
2411
+ IxPushCard = __decorate([
2412
+ ProxyCmp({
2413
+ defineCustomElementFn: defineCustomElement$1f,
2414
+ inputs: ['ariaLabelIcon', 'collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
2415
+ })
2416
+ ], IxPushCard);
2417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPushCard, decorators: [{
2418
+ type: Component,
2419
+ args: [{
2420
+ selector: 'ix-push-card',
2421
+ changeDetection: ChangeDetectionStrategy.OnPush,
2422
+ template: '<ng-content></ng-content>',
2423
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2424
+ inputs: ['ariaLabelIcon', 'collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
2425
+ standalone: true
2426
+ }]
2427
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2428
+ let IxRadio = class IxRadio {
2429
+ z;
2430
+ el;
2431
+ constructor(c, r, z) {
2432
+ this.z = z;
2433
+ c.detach();
2434
+ this.el = r.nativeElement;
2435
+ proxyOutputs(this, this.el, ['checkedChange', 'valueChange', 'ixBlur']);
2436
+ }
2437
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2438
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxRadio, isStandalone: true, selector: "ix-radio", inputs: { checked: "checked", disabled: "disabled", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2439
+ };
2440
+ IxRadio = __decorate([
2441
+ ProxyCmp({
2442
+ defineCustomElementFn: defineCustomElement$1g,
2443
+ inputs: ['checked', 'disabled', 'label', 'name', 'required', 'value']
2444
+ })
2445
+ ], IxRadio);
2446
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadio, decorators: [{
2447
+ type: Component,
2448
+ args: [{
2449
+ selector: 'ix-radio',
2450
+ changeDetection: ChangeDetectionStrategy.OnPush,
2451
+ template: '<ng-content></ng-content>',
2452
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2453
+ inputs: ['checked', 'disabled', 'label', 'name', 'required', 'value'],
2454
+ standalone: true
2455
+ }]
2456
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2457
+ let IxRadioGroup = class IxRadioGroup {
2458
+ z;
2459
+ el;
2460
+ constructor(c, r, z) {
2461
+ this.z = z;
2462
+ c.detach();
2463
+ this.el = r.nativeElement;
2464
+ proxyOutputs(this, this.el, ['valueChange']);
2465
+ }
2466
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2467
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxRadioGroup, isStandalone: true, 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 });
2468
+ };
2469
+ IxRadioGroup = __decorate([
2470
+ ProxyCmp({
2471
+ defineCustomElementFn: defineCustomElement$1h,
2472
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
2473
+ })
2474
+ ], IxRadioGroup);
2475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioGroup, decorators: [{
2476
+ type: Component,
2477
+ args: [{
2478
+ selector: 'ix-radio-group',
2479
+ changeDetection: ChangeDetectionStrategy.OnPush,
2480
+ template: '<ng-content></ng-content>',
2481
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2482
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2483
+ standalone: true
2484
+ }]
2485
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2486
+ let IxRow = class IxRow {
2487
+ z;
2488
+ el;
2489
+ constructor(c, r, z) {
2490
+ this.z = z;
2491
+ c.detach();
2492
+ this.el = r.nativeElement;
2493
+ }
2494
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2495
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxRow, isStandalone: true, selector: "ix-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2496
+ };
2497
+ IxRow = __decorate([
2498
+ ProxyCmp({
2499
+ defineCustomElementFn: defineCustomElement$1i
2500
+ })
2501
+ ], IxRow);
2502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRow, decorators: [{
2503
+ type: Component,
2504
+ args: [{
2505
+ selector: 'ix-row',
2506
+ changeDetection: ChangeDetectionStrategy.OnPush,
2507
+ template: '<ng-content></ng-content>',
2508
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2509
+ inputs: [],
2510
+ standalone: true
2511
+ }]
2512
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2513
+ let IxSelect = class IxSelect {
2514
+ z;
2515
+ el;
2516
+ constructor(c, r, z) {
2517
+ this.z = z;
2518
+ c.detach();
2519
+ this.el = r.nativeElement;
2520
+ proxyOutputs(this, this.el, ['valueChange', 'inputChange', 'addItem', 'ixBlur']);
2521
+ }
2522
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2523
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSelect, isStandalone: true, selector: "ix-select", inputs: { allowClear: "allowClear", ariaLabelChevronDownIconButton: "ariaLabelChevronDownIconButton", ariaLabelClearIconButton: "ariaLabelClearIconButton", disabled: "disabled", dropdownMaxWidth: "dropdownMaxWidth", dropdownWidth: "dropdownWidth", editable: "editable", helperText: "helperText", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", infoText: "infoText", invalidText: "invalidText", label: "label", mode: "mode", name: "name", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2524
+ };
2525
+ IxSelect = __decorate([
2526
+ ProxyCmp({
2527
+ defineCustomElementFn: defineCustomElement$1j,
2528
+ inputs: ['allowClear', 'ariaLabelChevronDownIconButton', 'ariaLabelClearIconButton', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2529
+ methods: ['getNativeInputElement', 'focusInput']
2530
+ })
2531
+ ], IxSelect);
2532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelect, decorators: [{
2533
+ type: Component,
2534
+ args: [{
2535
+ selector: 'ix-select',
2536
+ changeDetection: ChangeDetectionStrategy.OnPush,
2537
+ template: '<ng-content></ng-content>',
2538
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2539
+ inputs: ['allowClear', 'ariaLabelChevronDownIconButton', 'ariaLabelClearIconButton', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2540
+ standalone: true
2541
+ }]
2542
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2543
+ let IxSelectItem = class IxSelectItem {
2544
+ z;
2545
+ el;
2546
+ constructor(c, r, z) {
2547
+ this.z = z;
2548
+ c.detach();
2549
+ this.el = r.nativeElement;
2550
+ proxyOutputs(this, this.el, ['itemClick']);
2551
+ }
2552
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2553
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSelectItem, isStandalone: true, selector: "ix-select-item", inputs: { label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2554
+ };
2555
+ IxSelectItem = __decorate([
2556
+ ProxyCmp({
2557
+ defineCustomElementFn: defineCustomElement$1k,
2558
+ inputs: ['label', 'selected', 'value']
2559
+ })
2560
+ ], IxSelectItem);
2561
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectItem, decorators: [{
2562
+ type: Component,
2563
+ args: [{
2564
+ selector: 'ix-select-item',
2565
+ changeDetection: ChangeDetectionStrategy.OnPush,
2566
+ template: '<ng-content></ng-content>',
2567
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2568
+ inputs: ['label', 'selected', 'value'],
2569
+ standalone: true
2570
+ }]
2571
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2572
+ let IxSlider = class IxSlider {
2573
+ z;
2574
+ el;
2575
+ constructor(c, r, z) {
2576
+ this.z = z;
2577
+ c.detach();
2578
+ this.el = r.nativeElement;
2579
+ proxyOutputs(this, this.el, ['valueChange']);
2580
+ }
2581
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2582
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSlider, isStandalone: true, 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 });
2583
+ };
2584
+ IxSlider = __decorate([
2585
+ ProxyCmp({
2586
+ defineCustomElementFn: defineCustomElement$1l,
2587
+ inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
2588
+ })
2589
+ ], IxSlider);
2590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSlider, decorators: [{
2591
+ type: Component,
2592
+ args: [{
2593
+ selector: 'ix-slider',
2594
+ changeDetection: ChangeDetectionStrategy.OnPush,
2595
+ template: '<ng-content></ng-content>',
2596
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2597
+ inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value'],
2598
+ standalone: true
2599
+ }]
2600
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2601
+ let IxSpinner = class IxSpinner {
2602
+ z;
2603
+ el;
2604
+ constructor(c, r, z) {
2605
+ this.z = z;
2606
+ c.detach();
2607
+ this.el = r.nativeElement;
2608
+ }
2609
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2610
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSpinner, isStandalone: true, selector: "ix-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2611
+ };
2612
+ IxSpinner = __decorate([
2613
+ ProxyCmp({
2614
+ defineCustomElementFn: defineCustomElement$1m,
2615
+ inputs: ['size', 'variant']
2616
+ })
2617
+ ], IxSpinner);
2618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSpinner, decorators: [{
2619
+ type: Component,
2620
+ args: [{
2621
+ selector: 'ix-spinner',
2622
+ changeDetection: ChangeDetectionStrategy.OnPush,
2623
+ template: '<ng-content></ng-content>',
2624
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2625
+ inputs: ['size', 'variant'],
2626
+ standalone: true
2627
+ }]
2628
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2629
+ let IxSplitButton = class IxSplitButton {
2630
+ z;
2631
+ el;
2632
+ constructor(c, r, z) {
2633
+ this.z = z;
2634
+ c.detach();
2635
+ this.el = r.nativeElement;
2636
+ proxyOutputs(this, this.el, ['buttonClick']);
2637
+ }
2638
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2639
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSplitButton, isStandalone: true, selector: "ix-split-button", inputs: { ariaLabelButton: "ariaLabelButton", ariaLabelSplitIconButton: "ariaLabelSplitIconButton", 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 });
2640
+ };
2641
+ IxSplitButton = __decorate([
2642
+ ProxyCmp({
2643
+ defineCustomElementFn: defineCustomElement$1n,
2644
+ inputs: ['ariaLabelButton', 'ariaLabelSplitIconButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
2645
+ })
2646
+ ], IxSplitButton);
2647
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSplitButton, decorators: [{
2648
+ type: Component,
2649
+ args: [{
2650
+ selector: 'ix-split-button',
2651
+ changeDetection: ChangeDetectionStrategy.OnPush,
2652
+ template: '<ng-content></ng-content>',
2653
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2654
+ inputs: ['ariaLabelButton', 'ariaLabelSplitIconButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
2655
+ standalone: true
2656
+ }]
2657
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2658
+ let IxTabItem = class IxTabItem {
2659
+ z;
2660
+ el;
2661
+ constructor(c, r, z) {
2662
+ this.z = z;
2663
+ c.detach();
2664
+ this.el = r.nativeElement;
2665
+ proxyOutputs(this, this.el, ['tabClick']);
2666
+ }
2667
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2668
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTabItem, isStandalone: true, 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 });
2669
+ };
2670
+ IxTabItem = __decorate([
2671
+ ProxyCmp({
2672
+ defineCustomElementFn: defineCustomElement$1o,
2673
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
2674
+ })
2675
+ ], IxTabItem);
2676
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabItem, decorators: [{
2677
+ type: Component,
2678
+ args: [{
2679
+ selector: 'ix-tab-item',
2680
+ changeDetection: ChangeDetectionStrategy.OnPush,
2681
+ template: '<ng-content></ng-content>',
2682
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2683
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small'],
2684
+ standalone: true
2685
+ }]
2686
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2687
+ let IxTabs = class IxTabs {
2688
+ z;
2689
+ el;
2690
+ constructor(c, r, z) {
2691
+ this.z = z;
2692
+ c.detach();
2693
+ this.el = r.nativeElement;
2694
+ proxyOutputs(this, this.el, ['selectedChange']);
2695
+ }
2696
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2697
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTabs, isStandalone: true, selector: "ix-tabs", inputs: { ariaLabelChevronLeftIconButton: "ariaLabelChevronLeftIconButton", ariaLabelChevronRightIconButton: "ariaLabelChevronRightIconButton", layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2698
+ };
2699
+ IxTabs = __decorate([
2700
+ ProxyCmp({
2701
+ defineCustomElementFn: defineCustomElement$1p,
2702
+ inputs: ['ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'layout', 'placement', 'rounded', 'selected', 'small']
2703
+ })
2704
+ ], IxTabs);
2705
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabs, decorators: [{
2706
+ type: Component,
2707
+ args: [{
2708
+ selector: 'ix-tabs',
2709
+ changeDetection: ChangeDetectionStrategy.OnPush,
2710
+ template: '<ng-content></ng-content>',
2711
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2712
+ inputs: ['ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'layout', 'placement', 'rounded', 'selected', 'small'],
2713
+ standalone: true
2714
+ }]
2715
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2716
+ let IxTextarea = class IxTextarea {
2717
+ z;
2718
+ el;
2719
+ constructor(c, r, z) {
2720
+ this.z = z;
2721
+ c.detach();
2722
+ this.el = r.nativeElement;
2723
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2724
+ }
2725
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2726
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTextarea, isStandalone: true, 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 });
2727
+ };
2728
+ IxTextarea = __decorate([
2729
+ ProxyCmp({
2730
+ defineCustomElementFn: defineCustomElement$1q,
2731
+ inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2732
+ methods: ['getNativeInputElement', 'focusInput']
2733
+ })
2734
+ ], IxTextarea);
2735
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextarea, decorators: [{
2736
+ type: Component,
2737
+ args: [{
2738
+ selector: 'ix-textarea',
2739
+ changeDetection: ChangeDetectionStrategy.OnPush,
2740
+ template: '<ng-content></ng-content>',
2741
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2742
+ inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2743
+ standalone: true
2744
+ }]
2745
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2746
+ let IxTile = class IxTile {
2747
+ z;
2748
+ el;
2749
+ constructor(c, r, z) {
2750
+ this.z = z;
2751
+ c.detach();
2752
+ this.el = r.nativeElement;
2753
+ }
2754
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2755
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTile, isStandalone: true, selector: "ix-tile", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2756
+ };
2757
+ IxTile = __decorate([
2758
+ ProxyCmp({
2759
+ defineCustomElementFn: defineCustomElement$1r,
2760
+ inputs: ['size']
2761
+ })
2762
+ ], IxTile);
2763
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTile, decorators: [{
2764
+ type: Component,
2765
+ args: [{
2766
+ selector: 'ix-tile',
2767
+ changeDetection: ChangeDetectionStrategy.OnPush,
2768
+ template: '<ng-content></ng-content>',
2769
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2770
+ inputs: ['size'],
2771
+ standalone: true
2772
+ }]
2773
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2774
+ let IxTimeInput = class IxTimeInput {
2775
+ z;
2776
+ el;
2777
+ constructor(c, r, z) {
2778
+ this.z = z;
2779
+ c.detach();
2780
+ this.el = r.nativeElement;
2781
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
2782
+ }
2783
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2784
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTimeInput, isStandalone: true, selector: "ix-time-input", inputs: { disabled: "disabled", format: "format", helperText: "helperText", hourInterval: "hourInterval", i18nErrorTimeUnparsable: "i18nErrorTimeUnparsable", i18nHourColumnHeader: "i18nHourColumnHeader", i18nMillisecondColumnHeader: "i18nMillisecondColumnHeader", i18nMinuteColumnHeader: "i18nMinuteColumnHeader", i18nSecondColumnHeader: "i18nSecondColumnHeader", i18nSelectTime: "i18nSelectTime", i18nTime: "i18nTime", infoText: "infoText", invalidText: "invalidText", label: "label", millisecondInterval: "millisecondInterval", minuteInterval: "minuteInterval", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", secondInterval: "secondInterval", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2785
+ };
2786
+ IxTimeInput = __decorate([
2787
+ ProxyCmp({
2788
+ defineCustomElementFn: defineCustomElement$1s,
2789
+ inputs: ['disabled', 'format', 'helperText', 'hourInterval', 'i18nErrorTimeUnparsable', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'i18nSelectTime', 'i18nTime', 'infoText', 'invalidText', 'label', 'millisecondInterval', 'minuteInterval', 'name', 'placeholder', 'readonly', 'required', 'secondInterval', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2790
+ methods: ['getNativeInputElement', 'focusInput']
2791
+ })
2792
+ ], IxTimeInput);
2793
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimeInput, decorators: [{
2794
+ type: Component,
2795
+ args: [{
2796
+ selector: 'ix-time-input',
2797
+ changeDetection: ChangeDetectionStrategy.OnPush,
2798
+ template: '<ng-content></ng-content>',
2799
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2800
+ inputs: ['disabled', 'format', 'helperText', 'hourInterval', 'i18nErrorTimeUnparsable', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'i18nSelectTime', 'i18nTime', 'infoText', 'invalidText', 'label', 'millisecondInterval', 'minuteInterval', 'name', 'placeholder', 'readonly', 'required', 'secondInterval', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2801
+ standalone: true
2802
+ }]
2803
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2804
+ let IxTimePicker = class IxTimePicker {
2805
+ z;
2806
+ el;
2807
+ constructor(c, r, z) {
2808
+ this.z = z;
2809
+ c.detach();
2810
+ this.el = r.nativeElement;
2811
+ proxyOutputs(this, this.el, ['timeSelect', 'timeChange']);
2812
+ }
2813
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2814
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTimePicker, isStandalone: true, selector: "ix-time-picker", inputs: { corners: "corners", format: "format", hideHeader: "hideHeader", hourInterval: "hourInterval", i18nConfirmTime: "i18nConfirmTime", i18nHeader: "i18nHeader", i18nHourColumnHeader: "i18nHourColumnHeader", i18nMillisecondColumnHeader: "i18nMillisecondColumnHeader", i18nMinuteColumnHeader: "i18nMinuteColumnHeader", i18nSecondColumnHeader: "i18nSecondColumnHeader", millisecondInterval: "millisecondInterval", minuteInterval: "minuteInterval", secondInterval: "secondInterval", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", standaloneAppearance: "standaloneAppearance", textSelectTime: "textSelectTime", textTime: "textTime", time: "time", timeReference: "timeReference" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2815
+ };
2816
+ IxTimePicker = __decorate([
2817
+ ProxyCmp({
2818
+ defineCustomElementFn: defineCustomElement$1t,
2819
+ inputs: ['corners', 'format', 'hideHeader', 'hourInterval', 'i18nConfirmTime', 'i18nHeader', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'millisecondInterval', 'minuteInterval', 'secondInterval', 'showHour', 'showMinutes', 'showSeconds', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2820
+ methods: ['getCurrentTime']
2821
+ })
2822
+ ], IxTimePicker);
2823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimePicker, decorators: [{
2824
+ type: Component,
2825
+ args: [{
2826
+ selector: 'ix-time-picker',
2827
+ changeDetection: ChangeDetectionStrategy.OnPush,
2828
+ template: '<ng-content></ng-content>',
2829
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2830
+ inputs: ['corners', 'format', 'hideHeader', 'hourInterval', 'i18nConfirmTime', 'i18nHeader', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'millisecondInterval', 'minuteInterval', 'secondInterval', 'showHour', 'showMinutes', 'showSeconds', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2831
+ standalone: true
2832
+ }]
2833
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2834
+ let IxToast = class IxToast {
2835
+ z;
2836
+ el;
2837
+ constructor(c, r, z) {
2838
+ this.z = z;
2839
+ c.detach();
2840
+ this.el = r.nativeElement;
2841
+ proxyOutputs(this, this.el, ['closeToast']);
2842
+ }
2843
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2844
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToast, isStandalone: true, selector: "ix-toast", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", 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 });
2845
+ };
2846
+ IxToast = __decorate([
2847
+ ProxyCmp({
2848
+ defineCustomElementFn: defineCustomElement$1u,
2849
+ inputs: ['ariaLabelCloseIconButton', 'autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
2850
+ })
2851
+ ], IxToast);
2852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToast, decorators: [{
2853
+ type: Component,
2854
+ args: [{
2855
+ selector: 'ix-toast',
2856
+ changeDetection: ChangeDetectionStrategy.OnPush,
2857
+ template: '<ng-content></ng-content>',
2858
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2859
+ inputs: ['ariaLabelCloseIconButton', 'autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type'],
2860
+ standalone: true
2861
+ }]
2862
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2863
+ let IxToastContainer = class IxToastContainer {
2864
+ z;
2865
+ el;
2866
+ constructor(c, r, z) {
2867
+ this.z = z;
2868
+ c.detach();
2869
+ this.el = r.nativeElement;
2870
+ }
2871
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToastContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2872
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToastContainer, isStandalone: true, selector: "ix-toast-container", inputs: { containerClass: "containerClass", containerId: "containerId", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2873
+ };
2874
+ IxToastContainer = __decorate([
2875
+ ProxyCmp({
2876
+ defineCustomElementFn: defineCustomElement$1v,
2877
+ inputs: ['containerClass', 'containerId', 'position'],
2878
+ methods: ['showToast']
2879
+ })
2880
+ ], IxToastContainer);
2881
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToastContainer, decorators: [{
2882
+ type: Component,
2883
+ args: [{
2884
+ selector: 'ix-toast-container',
2885
+ changeDetection: ChangeDetectionStrategy.OnPush,
2886
+ template: '<ng-content></ng-content>',
2887
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2888
+ inputs: ['containerClass', 'containerId', 'position'],
2889
+ standalone: true
2890
+ }]
2891
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2892
+ let IxToggle = class IxToggle {
2893
+ z;
2894
+ el;
2895
+ constructor(c, r, z) {
2896
+ this.z = z;
2897
+ c.detach();
2898
+ this.el = r.nativeElement;
2899
+ proxyOutputs(this, this.el, ['checkedChange', 'ixBlur']);
2900
+ }
2901
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2902
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToggle, isStandalone: true, 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 });
2903
+ };
2904
+ IxToggle = __decorate([
2905
+ ProxyCmp({
2906
+ defineCustomElementFn: defineCustomElement$1w,
2907
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2908
+ })
2909
+ ], IxToggle);
2910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggle, decorators: [{
2911
+ type: Component,
2912
+ args: [{
2913
+ selector: 'ix-toggle',
2914
+ changeDetection: ChangeDetectionStrategy.OnPush,
2915
+ template: '<ng-content></ng-content>',
2916
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2917
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2918
+ standalone: true
2919
+ }]
2920
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2921
+ let IxToggleButton = class IxToggleButton {
2922
+ z;
2923
+ el;
2924
+ constructor(c, r, z) {
2925
+ this.z = z;
2926
+ c.detach();
2927
+ this.el = r.nativeElement;
2928
+ proxyOutputs(this, this.el, ['pressedChange']);
2929
+ }
2930
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2931
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToggleButton, isStandalone: true, selector: "ix-toggle-button", inputs: { ariaLabelButton: "ariaLabelButton", 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 });
2932
+ };
2933
+ IxToggleButton = __decorate([
2934
+ ProxyCmp({
2935
+ defineCustomElementFn: defineCustomElement$1x,
2936
+ inputs: ['ariaLabelButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
2937
+ })
2938
+ ], IxToggleButton);
2939
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggleButton, decorators: [{
2940
+ type: Component,
2941
+ args: [{
2942
+ selector: 'ix-toggle-button',
2943
+ changeDetection: ChangeDetectionStrategy.OnPush,
2944
+ template: '<ng-content></ng-content>',
2945
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2946
+ inputs: ['ariaLabelButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
2947
+ standalone: true
2948
+ }]
2949
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2950
+ let IxTooltip = class IxTooltip {
2951
+ z;
2952
+ el;
2953
+ constructor(c, r, z) {
2954
+ this.z = z;
2955
+ c.detach();
2956
+ this.el = r.nativeElement;
2957
+ }
2958
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2959
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTooltip, isStandalone: true, 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 });
2960
+ };
2961
+ IxTooltip = __decorate([
2962
+ ProxyCmp({
2963
+ defineCustomElementFn: defineCustomElement$1y,
2964
+ inputs: ['for', 'interactive', 'placement', 'titleContent']
2965
+ })
2966
+ ], IxTooltip);
2967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTooltip, decorators: [{
2968
+ type: Component,
2969
+ args: [{
2970
+ selector: 'ix-tooltip',
2971
+ changeDetection: ChangeDetectionStrategy.OnPush,
2972
+ template: '<ng-content></ng-content>',
2973
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2974
+ inputs: ['for', 'interactive', 'placement', 'titleContent'],
2975
+ standalone: true
2976
+ }]
2977
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2978
+ let IxTreeItem = class IxTreeItem {
2979
+ z;
2980
+ el;
2981
+ constructor(c, r, z) {
2982
+ this.z = z;
2983
+ c.detach();
2984
+ this.el = r.nativeElement;
2985
+ proxyOutputs(this, this.el, ['toggle', 'itemClick']);
2986
+ }
2987
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2988
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTreeItem, isStandalone: true, selector: "ix-tree-item", inputs: { ariaLabelChevronIcon: "ariaLabelChevronIcon", context: "context", hasChildren: "hasChildren", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2989
+ };
2990
+ IxTreeItem = __decorate([
2991
+ ProxyCmp({
2992
+ defineCustomElementFn: defineCustomElement$1z,
2993
+ inputs: ['ariaLabelChevronIcon', 'context', 'hasChildren', 'text']
2994
+ })
2995
+ ], IxTreeItem);
2996
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTreeItem, decorators: [{
2997
+ type: Component,
2998
+ args: [{
2999
+ selector: 'ix-tree-item',
3000
+ changeDetection: ChangeDetectionStrategy.OnPush,
3001
+ template: '<ng-content></ng-content>',
3002
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3003
+ inputs: ['ariaLabelChevronIcon', 'context', 'hasChildren', 'text'],
3004
+ standalone: true
3005
+ }]
3006
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3007
+ let IxTypography = class IxTypography {
3008
+ z;
3009
+ el;
3010
+ constructor(c, r, z) {
3011
+ this.z = z;
3012
+ c.detach();
3013
+ this.el = r.nativeElement;
3014
+ }
3015
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3016
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTypography, isStandalone: true, selector: "ix-typography", inputs: { bold: "bold", format: "format", textColor: "textColor", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3017
+ };
3018
+ IxTypography = __decorate([
3019
+ ProxyCmp({
3020
+ defineCustomElementFn: defineCustomElement$1A,
3021
+ inputs: ['bold', 'format', 'textColor', 'textDecoration']
3022
+ })
3023
+ ], IxTypography);
3024
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTypography, decorators: [{
3025
+ type: Component,
3026
+ args: [{
3027
+ selector: 'ix-typography',
3028
+ changeDetection: ChangeDetectionStrategy.OnPush,
3029
+ template: '<ng-content></ng-content>',
3030
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3031
+ inputs: ['bold', 'format', 'textColor', 'textDecoration'],
3032
+ standalone: true
3033
+ }]
3034
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3035
+ let IxUpload = class IxUpload {
3036
+ z;
3037
+ el;
3038
+ constructor(c, r, z) {
3039
+ this.z = z;
3040
+ c.detach();
3041
+ this.el = r.nativeElement;
3042
+ proxyOutputs(this, this.el, ['filesChanged']);
3043
+ }
3044
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3045
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxUpload, isStandalone: true, 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 });
3046
+ };
3047
+ IxUpload = __decorate([
3048
+ ProxyCmp({
3049
+ defineCustomElementFn: defineCustomElement$1B,
3050
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
3051
+ methods: ['setFilesToUpload']
3052
+ })
3053
+ ], IxUpload);
3054
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxUpload, decorators: [{
3055
+ type: Component,
3056
+ args: [{
3057
+ selector: 'ix-upload',
3058
+ changeDetection: ChangeDetectionStrategy.OnPush,
3059
+ template: '<ng-content></ng-content>',
3060
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3061
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
3062
+ standalone: true
3063
+ }]
3064
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3065
+ let IxValidationTooltip = class IxValidationTooltip {
3066
+ z;
3067
+ el;
3068
+ constructor(c, r, z) {
3069
+ this.z = z;
3070
+ c.detach();
3071
+ this.el = r.nativeElement;
3072
+ }
3073
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3074
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxValidationTooltip, isStandalone: true, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement", suppressAutomaticPlacement: "suppressAutomaticPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3075
+ };
3076
+ IxValidationTooltip = __decorate([
3077
+ ProxyCmp({
3078
+ defineCustomElementFn: defineCustomElement$1C,
3079
+ inputs: ['message', 'placement', 'suppressAutomaticPlacement']
3080
+ })
3081
+ ], IxValidationTooltip);
3082
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxValidationTooltip, decorators: [{
3083
+ type: Component,
3084
+ args: [{
3085
+ selector: 'ix-validation-tooltip',
3086
+ changeDetection: ChangeDetectionStrategy.OnPush,
3087
+ template: '<ng-content></ng-content>',
3088
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3089
+ inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
3090
+ standalone: true
3091
+ }]
3092
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3093
+ let IxWorkflowStep = class IxWorkflowStep {
3094
+ z;
3095
+ el;
3096
+ constructor(c, r, z) {
3097
+ this.z = z;
3098
+ c.detach();
3099
+ this.el = r.nativeElement;
3100
+ }
3101
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3102
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxWorkflowStep, isStandalone: true, 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 });
3103
+ };
3104
+ IxWorkflowStep = __decorate([
3105
+ ProxyCmp({
3106
+ defineCustomElementFn: defineCustomElement$1D,
3107
+ inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
3108
+ })
3109
+ ], IxWorkflowStep);
3110
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowStep, decorators: [{
3111
+ type: Component,
3112
+ args: [{
3113
+ selector: 'ix-workflow-step',
3114
+ changeDetection: ChangeDetectionStrategy.OnPush,
3115
+ template: '<ng-content></ng-content>',
3116
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3117
+ inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
3118
+ standalone: true
3119
+ }]
3120
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3121
+ let IxWorkflowSteps = class IxWorkflowSteps {
3122
+ z;
3123
+ el;
3124
+ constructor(c, r, z) {
3125
+ this.z = z;
3126
+ c.detach();
3127
+ this.el = r.nativeElement;
3128
+ proxyOutputs(this, this.el, ['stepSelected']);
3129
+ }
3130
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3131
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxWorkflowSteps, isStandalone: true, selector: "ix-workflow-steps", inputs: { clickable: "clickable", selectedIndex: "selectedIndex", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3132
+ };
3133
+ IxWorkflowSteps = __decorate([
3134
+ ProxyCmp({
3135
+ defineCustomElementFn: defineCustomElement$1E,
3136
+ inputs: ['clickable', 'selectedIndex', 'vertical']
3137
+ })
3138
+ ], IxWorkflowSteps);
3139
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowSteps, decorators: [{
3140
+ type: Component,
3141
+ args: [{
3142
+ selector: 'ix-workflow-steps',
3143
+ changeDetection: ChangeDetectionStrategy.OnPush,
3144
+ template: '<ng-content></ng-content>',
3145
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3146
+ inputs: ['clickable', 'selectedIndex', 'vertical'],
3147
+ standalone: true
3148
+ }]
3149
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3150
+
3151
+ /*
3152
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3153
+ *
3154
+ * SPDX-License-Identifier: MIT
3155
+ *
3156
+ * This source code is licensed under the MIT license found in the
3157
+ * LICENSE file in the root directory of this source tree.
3158
+ */
3159
+ /**
3160
+ * Define custom elements during usage of the library to ensure that all
3161
+ * components are registered before they are used.
3162
+ */
3163
+ defineCustomElement$1F();
3164
+ defineCustomElement$1G();
3165
+ defineCustomElement$1H();
3166
+ defineCustomElement$1I();
3167
+ defineCustomElement$1J();
3168
+ defineCustomElement$1K();
3169
+
3170
+ let IxIcon = class IxIcon {
3171
+ z;
3172
+ el;
3173
+ constructor(c, r, z) {
3174
+ this.z = z;
3175
+ c.detach();
3176
+ this.el = r.nativeElement;
3177
+ }
3178
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3179
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxIcon, isStandalone: true, selector: "ix-icon", inputs: { color: "color", size: "size", name: "name", lazyLoading: "lazyLoading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3180
+ };
3181
+ IxIcon = __decorate([
3182
+ ProxyCmp({
3183
+ inputs: ['color', 'size', 'name', 'lazyLoading'],
3184
+ defineCustomElementFn: defineCustomElement$1K,
3185
+ })
3186
+ ], IxIcon);
3187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIcon, decorators: [{
3188
+ type: Component,
3189
+ args: [{
3190
+ selector: 'ix-icon',
3191
+ changeDetection: ChangeDetectionStrategy.OnPush,
3192
+ template: '<ng-content></ng-content>',
3193
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3194
+ inputs: ['color', 'size', 'name', 'lazyLoading'],
3195
+ standalone: true,
3196
+ }]
3197
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3198
+
3199
+ let IxTree = class IxTree extends TreeBaseDirective {
3200
+ z;
3201
+ constructor(c, r, z) {
3202
+ super(c, r, z, proxyOutputs);
3203
+ this.z = z;
3204
+ }
3205
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3206
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTree, isStandalone: true, selector: "ix-tree", inputs: { context: "context", model: "model", root: "root", renderItem: "renderItem", lazyLoading: "lazyLoading" }, usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3207
+ };
3208
+ IxTree = __decorate([
3209
+ ProxyCmp({
3210
+ inputs: ['context', 'model', 'root', 'lazyLoading'],
3211
+ defineCustomElementFn: defineCustomElement$1L,
3212
+ })
3213
+ ], IxTree);
3214
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTree, decorators: [{
3215
+ type: Component,
3216
+ args: [{
3217
+ selector: 'ix-tree',
3218
+ changeDetection: ChangeDetectionStrategy.OnPush,
3219
+ template: '<ng-content></ng-content>',
3220
+ inputs: ['context', 'model', 'root', 'renderItem', 'lazyLoading'],
3221
+ standalone: true,
3222
+ }]
3223
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3224
+
3225
+ /*
3226
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3227
+ *
3228
+ * SPDX-License-Identifier: MIT
3229
+ *
3230
+ * This source code is licensed under the MIT license found in the
3231
+ * LICENSE file in the root directory of this source tree.
3232
+ */
3233
+ class ModalService extends ModalService$1 {
3234
+ constructor(appRef, componentFactoryResolver, injector) {
3235
+ super(appRef, componentFactoryResolver, injector);
3236
+ }
3237
+ open(config) {
3238
+ defineCustomElement$15();
3239
+ return super.open(config);
3240
+ }
3241
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
3242
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService });
3243
+ }
3244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, decorators: [{
3245
+ type: Injectable
3246
+ }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }] });
3247
+
3248
+ /*
3249
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3250
+ *
3251
+ * SPDX-License-Identifier: MIT
3252
+ *
3253
+ * This source code is licensed under the MIT license found in the
3254
+ * LICENSE file in the root directory of this source tree.
3255
+ */
3256
+ class ToastService extends ToastService$1 {
3257
+ constructor() {
3258
+ super();
3259
+ }
3260
+ getPosition() {
3261
+ return super.getPosition();
3262
+ }
3263
+ setPosition(position) {
3264
+ super.setPosition(position);
3265
+ }
3266
+ show(config) {
3267
+ defineCustomElement$1u();
3268
+ defineCustomElement$1v();
3269
+ return super.show(config);
3270
+ }
3271
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3272
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService });
3273
+ }
3274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, decorators: [{
3275
+ type: Injectable
3276
+ }], ctorParameters: () => [] });
3277
+
3278
+ /*
3279
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3280
+ *
3281
+ * SPDX-License-Identifier: MIT
3282
+ *
3283
+ * This source code is licensed under the MIT license found in the
3284
+ * LICENSE file in the root directory of this source tree.
3285
+ */
3286
+ /**
3287
+ * Value Accessor for ix-checkbox and ix-toggle
3288
+ */
3289
+ class IxBooleanValueAccessorDirective extends BooleanValueAccessorBaseDirective {
3290
+ constructor(injector, el) {
3291
+ super(injector, el);
3292
+ }
3293
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3294
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxBooleanValueAccessorDirective, isStandalone: true, selector: "ix-checkbox,ix-toggle", providers: [createValueAccessorProvider(IxBooleanValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3295
+ }
3296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBooleanValueAccessorDirective, decorators: [{
3297
+ type: Directive,
3298
+ args: [{
3299
+ standalone: true,
3300
+ selector: 'ix-checkbox,ix-toggle',
3301
+ providers: [createValueAccessorProvider(IxBooleanValueAccessorDirective)],
3302
+ }]
3303
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3304
+
3305
+ /*
3306
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3307
+ *
3308
+ * SPDX-License-Identifier: MIT
3309
+ *
3310
+ * This source code is licensed under the MIT license found in the
3311
+ * LICENSE file in the root directory of this source tree.
3312
+ */
3313
+ /**
3314
+ * Value Accessor for ix-radio
3315
+ */
3316
+ class IxRadioValueAccessorDirective extends RadioValueAccessorBaseDirective {
3317
+ constructor(injector, el) {
3318
+ super(injector, el);
3319
+ }
3320
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3321
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxRadioValueAccessorDirective, isStandalone: true, selector: "ix-radio", providers: [createValueAccessorProvider(IxRadioValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3322
+ }
3323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioValueAccessorDirective, decorators: [{
3324
+ type: Directive,
3325
+ args: [{
3326
+ standalone: true,
3327
+ selector: 'ix-radio',
3328
+ providers: [createValueAccessorProvider(IxRadioValueAccessorDirective)],
3329
+ }]
3330
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3331
+
3332
+ /*
3333
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3334
+ *
3335
+ * SPDX-License-Identifier: MIT
3336
+ *
3337
+ * This source code is licensed under the MIT license found in the
3338
+ * LICENSE file in the root directory of this source tree.
3339
+ */
3340
+ /**
3341
+ * Value Accessor for ix-select
3342
+ */
3343
+ class IxSelectValueAccessorDirective extends SelectValueAccessorBaseDirective {
3344
+ constructor(injector, el) {
3345
+ super(injector, el);
3346
+ }
3347
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3348
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxSelectValueAccessorDirective, isStandalone: true, selector: "ix-select", providers: [createValueAccessorProvider(IxSelectValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3349
+ }
3350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectValueAccessorDirective, decorators: [{
3351
+ type: Directive,
3352
+ args: [{
3353
+ standalone: true,
3354
+ selector: 'ix-select',
3355
+ providers: [createValueAccessorProvider(IxSelectValueAccessorDirective)],
3356
+ }]
3357
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3358
+
3359
+ /*
3360
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3361
+ *
3362
+ * SPDX-License-Identifier: MIT
3363
+ *
3364
+ * This source code is licensed under the MIT license found in the
3365
+ * LICENSE file in the root directory of this source tree.
3366
+ */
3367
+ /**
3368
+ * Value Accessor for ix-input, ix-number-input and ix-textarea
3369
+ */
3370
+ class IxTextValueAccessorDirective extends TextValueAccessorBaseDirective {
3371
+ constructor(injector, el) {
3372
+ super(injector, el);
3373
+ }
3374
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3375
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxTextValueAccessorDirective, isStandalone: true, selector: "ix-input,ix-number-input,ix-textarea", providers: [createValueAccessorProvider(IxTextValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3376
+ }
3377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextValueAccessorDirective, decorators: [{
3378
+ type: Directive,
3379
+ args: [{
3380
+ standalone: true,
3381
+ selector: 'ix-input,ix-number-input,ix-textarea',
3382
+ providers: [createValueAccessorProvider(IxTextValueAccessorDirective)],
3383
+ }]
3384
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3385
+
3386
+ /*
3387
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3388
+ *
3389
+ * SPDX-License-Identifier: MIT
3390
+ *
3391
+ * This source code is licensed under the MIT license found in the
3392
+ * LICENSE file in the root directory of this source tree.
3393
+ */
3394
+ /**
3395
+ * Value Accessor for ix-date-input
3396
+ */
3397
+ class IxDateValueAccessorDirective extends DateValueAccessorBaseDirective {
3398
+ constructor(injector, el) {
3399
+ super(injector, el);
3400
+ }
3401
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3402
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxDateValueAccessorDirective, isStandalone: true, selector: "ix-date-input", providers: [createValueAccessorProvider(IxDateValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3403
+ }
3404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateValueAccessorDirective, decorators: [{
3405
+ type: Directive,
3406
+ args: [{
3407
+ standalone: true,
3408
+ selector: 'ix-date-input',
3409
+ providers: [createValueAccessorProvider(IxDateValueAccessorDirective)],
3410
+ }]
3411
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3412
+
3413
+ /*
3414
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3415
+ *
3416
+ * SPDX-License-Identifier: MIT
3417
+ *
3418
+ * This source code is licensed under the MIT license found in the
3419
+ * LICENSE file in the root directory of this source tree.
3420
+ */
3421
+
3422
+ /*
3423
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3424
+ *
3425
+ * SPDX-License-Identifier: MIT
3426
+ *
3427
+ * This source code is licensed under the MIT license found in the
3428
+ * LICENSE file in the root directory of this source tree.
3429
+ */
3430
+ class IxDropdownTriggerDirective extends DropdownTriggerBaseDirective {
3431
+ ixDropdownTrigger = undefined;
3432
+ constructor(element) {
3433
+ super(element);
3434
+ }
3435
+ ngOnChanges() {
3436
+ super.ngOnChanges();
3437
+ }
3438
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownTriggerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3439
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownTriggerDirective, isStandalone: true, selector: "[ixDropdownTrigger]", inputs: { ixDropdownTrigger: "ixDropdownTrigger" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
3440
+ }
3441
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
3442
+ type: Directive,
3443
+ args: [{
3444
+ standalone: true,
3445
+ selector: '[ixDropdownTrigger]',
3446
+ }]
3447
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { ixDropdownTrigger: [{
3448
+ type: Input
3449
+ }] } });
3450
+
3451
+ /**
3452
+ * Value Accessor bundle to reduce import complexity
3453
+ *
3454
+ * Incudes:
3455
+ * - IxBooleanValueAccessorDirective
3456
+ * - IxRadioValueAccessorDirective
3457
+ * - IxSelectValueAccessorDirective
3458
+ * - IxTextValueAccessorDirective
3459
+ * - IxDateValueAccessorDirective
3460
+ */
3461
+ const IxValueAccessorDirectives = [
3462
+ IxBooleanValueAccessorDirective,
3463
+ IxRadioValueAccessorDirective,
3464
+ IxSelectValueAccessorDirective,
3465
+ IxTextValueAccessorDirective,
3466
+ IxDateValueAccessorDirective,
3467
+ ];
3468
+
3469
+ /*
3470
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3471
+ *
3472
+ * SPDX-License-Identifier: MIT
3473
+ *
3474
+ * This source code is licensed under the MIT license found in the
3475
+ * LICENSE file in the root directory of this source tree.
3476
+ */
3477
+
3478
+ /**
3479
+ * Generated bundle index. Do not edit.
3480
+ */
3481
+
3482
+ export { IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBooleanValueAccessorDirective, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDateValueAccessorDirective, 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, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRadioValueAccessorDirective, IxRow, IxSelect, IxSelectItem, IxSelectValueAccessorDirective, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextValueAccessorDirective, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxValueAccessorDirectives, IxWorkflowStep, IxWorkflowSteps, ModalService, ToastService };
3483
+ //# sourceMappingURL=siemens-ix-angular-standalone.mjs.map