@six-group/ui-library-angular 0.0.0-insider.e5360cd → 0.0.0-insider.eb446eb

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 (38) hide show
  1. package/fesm2022/six-group-ui-library-angular.mjs +2852 -0
  2. package/fesm2022/six-group-ui-library-angular.mjs.map +1 -0
  3. package/lib/control-value-accessors/date-value-accessor.d.ts +10 -0
  4. package/lib/control-value-accessors/radio-value-accessor.d.ts +1 -1
  5. package/lib/control-value-accessors/value-accessor.d.ts +3 -1
  6. package/lib/link/six-router-link.directive.d.ts +26 -0
  7. package/lib/services/alert.service.d.ts +11 -0
  8. package/lib/sidebar/active-sidebar.directive.d.ts +59 -0
  9. package/lib/stencil-generated/components.d.ts +185 -144
  10. package/lib/stencil-generated/index.d.ts +1 -1
  11. package/lib/ui-library-angular-config.d.ts +6 -0
  12. package/lib/ui-library-angular.module.d.ts +13 -9
  13. package/lib/validators/six-ui-library-validators.d.ts +34 -7
  14. package/package.json +8 -14
  15. package/public-api.d.ts +4 -0
  16. package/esm2020/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
  17. package/esm2020/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
  18. package/esm2020/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
  19. package/esm2020/lib/control-value-accessors/radio-value-accessor.mjs +0 -62
  20. package/esm2020/lib/control-value-accessors/range-value-accessor.mjs +0 -42
  21. package/esm2020/lib/control-value-accessors/select-value-accessor.mjs +0 -37
  22. package/esm2020/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
  23. package/esm2020/lib/control-value-accessors/text-value-accessor.mjs +0 -37
  24. package/esm2020/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
  25. package/esm2020/lib/control-value-accessors/value-accessor.mjs +0 -145
  26. package/esm2020/lib/form/six-form.directive.mjs +0 -134
  27. package/esm2020/lib/services/validation-messages.service.mjs +0 -15
  28. package/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +0 -51
  29. package/esm2020/lib/stencil-generated/components.mjs +0 -1372
  30. package/esm2020/lib/stencil-generated/index.mjs +0 -57
  31. package/esm2020/lib/ui-library-angular.module.mjs +0 -126
  32. package/esm2020/lib/validators/six-ui-library-validators.mjs +0 -116
  33. package/esm2020/public-api.mjs +0 -25
  34. package/esm2020/six-group-ui-library-angular.mjs +0 -5
  35. package/fesm2015/six-group-ui-library-angular.mjs +0 -2286
  36. package/fesm2015/six-group-ui-library-angular.mjs.map +0 -1
  37. package/fesm2020/six-group-ui-library-angular.mjs +0 -2283
  38. package/fesm2020/six-group-ui-library-angular.mjs.map +0 -1
@@ -0,0 +1,2852 @@
1
+ import * as i0 from '@angular/core';
2
+ import { ChangeDetectionStrategy, Component, Injectable, InjectionToken, inject, HostListener, Directive, Input, EventEmitter, Output, Optional, HostBinding, ContentChildren, APP_INITIALIZER, NgModule, NgZone } from '@angular/core';
3
+ import { __decorate } from 'tslib';
4
+ import { fromEvent } from 'rxjs';
5
+ import { defineCustomElements } from '@six-group/ui-library/loader';
6
+ import * as i1 from '@angular/forms';
7
+ import { Validators, NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS } from '@angular/forms';
8
+ import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
9
+ import * as i1$1 from '@angular/common';
10
+ import * as i2 from '@angular/router';
11
+ import { RouterLinkActive } from '@angular/router';
12
+
13
+ /* eslint-disable */
14
+ /* tslint:disable */
15
+ const proxyInputs = (Cmp, inputs) => {
16
+ const Prototype = Cmp.prototype;
17
+ inputs.forEach((item) => {
18
+ Object.defineProperty(Prototype, item, {
19
+ get() {
20
+ return this.el[item];
21
+ },
22
+ set(val) {
23
+ this.z.runOutsideAngular(() => (this.el[item] = val));
24
+ },
25
+ /**
26
+ * In the event that proxyInputs is called
27
+ * multiple times re-defining these inputs
28
+ * will cause an error to be thrown. As a result
29
+ * we set configurable: true to indicate these
30
+ * properties can be changed.
31
+ */
32
+ configurable: true,
33
+ });
34
+ });
35
+ };
36
+ const proxyMethods = (Cmp, methods) => {
37
+ const Prototype = Cmp.prototype;
38
+ methods.forEach((methodName) => {
39
+ Prototype[methodName] = function () {
40
+ const args = arguments;
41
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
42
+ };
43
+ });
44
+ };
45
+ const proxyOutputs = (instance, el, events) => {
46
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
47
+ };
48
+ const defineCustomElement = (tagName, customElement) => {
49
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
50
+ customElements.define(tagName, customElement);
51
+ }
52
+ };
53
+ // tslint:disable-next-line: only-arrow-functions
54
+ function ProxyCmp(opts) {
55
+ const decorator = function (cls) {
56
+ const { defineCustomElementFn, inputs, methods } = opts;
57
+ if (defineCustomElementFn !== undefined) {
58
+ defineCustomElementFn();
59
+ }
60
+ if (inputs) {
61
+ proxyInputs(cls, inputs);
62
+ }
63
+ if (methods) {
64
+ proxyMethods(cls, methods);
65
+ }
66
+ return cls;
67
+ };
68
+ return decorator;
69
+ }
70
+
71
+ let SixAlert = class SixAlert {
72
+ constructor(c, r, z) {
73
+ this.z = z;
74
+ c.detach();
75
+ this.el = r.nativeElement;
76
+ proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
77
+ }
78
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
79
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixAlert, isStandalone: false, selector: "six-alert", inputs: { closable: "closable", duration: "duration", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
80
+ };
81
+ SixAlert = __decorate([
82
+ ProxyCmp({
83
+ inputs: ['closable', 'duration', 'open', 'type'],
84
+ methods: ['show', 'hide', 'toast']
85
+ })
86
+ ], SixAlert);
87
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAlert, decorators: [{
88
+ type: Component,
89
+ args: [{
90
+ selector: 'six-alert',
91
+ changeDetection: ChangeDetectionStrategy.OnPush,
92
+ template: '<ng-content></ng-content>',
93
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
94
+ inputs: ['closable', 'duration', 'open', 'type'],
95
+ standalone: false
96
+ }]
97
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
98
+ let SixAvatar = class SixAvatar {
99
+ constructor(c, r, z) {
100
+ this.z = z;
101
+ c.detach();
102
+ this.el = r.nativeElement;
103
+ }
104
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
105
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixAvatar, isStandalone: false, selector: "six-avatar", inputs: { alt: "alt", image: "image", initials: "initials", shape: "shape" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
106
+ };
107
+ SixAvatar = __decorate([
108
+ ProxyCmp({
109
+ inputs: ['alt', 'image', 'initials', 'shape']
110
+ })
111
+ ], SixAvatar);
112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAvatar, decorators: [{
113
+ type: Component,
114
+ args: [{
115
+ selector: 'six-avatar',
116
+ changeDetection: ChangeDetectionStrategy.OnPush,
117
+ template: '<ng-content></ng-content>',
118
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
119
+ inputs: ['alt', 'image', 'initials', 'shape'],
120
+ standalone: false
121
+ }]
122
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
123
+ let SixBadge = class SixBadge {
124
+ constructor(c, r, z) {
125
+ this.z = z;
126
+ c.detach();
127
+ this.el = r.nativeElement;
128
+ }
129
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
130
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixBadge, isStandalone: false, selector: "six-badge", inputs: { pill: "pill", pulse: "pulse", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
131
+ };
132
+ SixBadge = __decorate([
133
+ ProxyCmp({
134
+ inputs: ['pill', 'pulse', 'type']
135
+ })
136
+ ], SixBadge);
137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixBadge, decorators: [{
138
+ type: Component,
139
+ args: [{
140
+ selector: 'six-badge',
141
+ changeDetection: ChangeDetectionStrategy.OnPush,
142
+ template: '<ng-content></ng-content>',
143
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
144
+ inputs: ['pill', 'pulse', 'type'],
145
+ standalone: false
146
+ }]
147
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
148
+ let SixButton = class SixButton {
149
+ constructor(c, r, z) {
150
+ this.z = z;
151
+ c.detach();
152
+ this.el = r.nativeElement;
153
+ proxyOutputs(this, this.el, ['six-button-blur', 'six-button-focus']);
154
+ }
155
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
156
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixButton, isStandalone: false, selector: "six-button", inputs: { caret: "caret", circle: "circle", disabled: "disabled", download: "download", href: "href", loading: "loading", name: "name", pill: "pill", reset: "reset", size: "size", submit: "submit", target: "target", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
157
+ };
158
+ SixButton = __decorate([
159
+ ProxyCmp({
160
+ inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
161
+ methods: ['setFocus', 'removeFocus']
162
+ })
163
+ ], SixButton);
164
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixButton, decorators: [{
165
+ type: Component,
166
+ args: [{
167
+ selector: 'six-button',
168
+ changeDetection: ChangeDetectionStrategy.OnPush,
169
+ template: '<ng-content></ng-content>',
170
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
171
+ inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
172
+ standalone: false
173
+ }]
174
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
175
+ let SixCard = class SixCard {
176
+ constructor(c, r, z) {
177
+ this.z = z;
178
+ c.detach();
179
+ this.el = r.nativeElement;
180
+ }
181
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
182
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixCard, isStandalone: false, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
183
+ };
184
+ SixCard = __decorate([
185
+ ProxyCmp({})
186
+ ], SixCard);
187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCard, decorators: [{
188
+ type: Component,
189
+ args: [{
190
+ selector: 'six-card',
191
+ changeDetection: ChangeDetectionStrategy.OnPush,
192
+ template: '<ng-content></ng-content>',
193
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
194
+ inputs: [],
195
+ standalone: false
196
+ }]
197
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
198
+ let SixCheckbox = class SixCheckbox {
199
+ constructor(c, r, z) {
200
+ this.z = z;
201
+ c.detach();
202
+ this.el = r.nativeElement;
203
+ proxyOutputs(this, this.el, ['six-checkbox-blur', 'six-checkbox-change', 'six-checkbox-focus']);
204
+ }
205
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
206
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixCheckbox, isStandalone: false, selector: "six-checkbox", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", indeterminate: "indeterminate", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
207
+ };
208
+ SixCheckbox = __decorate([
209
+ ProxyCmp({
210
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
211
+ methods: ['setFocus', 'removeFocus']
212
+ })
213
+ ], SixCheckbox);
214
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCheckbox, decorators: [{
215
+ type: Component,
216
+ args: [{
217
+ selector: 'six-checkbox',
218
+ changeDetection: ChangeDetectionStrategy.OnPush,
219
+ template: '<ng-content></ng-content>',
220
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
221
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
222
+ standalone: false
223
+ }]
224
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
225
+ let SixDate = class SixDate {
226
+ constructor(c, r, z) {
227
+ this.z = z;
228
+ c.detach();
229
+ this.el = r.nativeElement;
230
+ proxyOutputs(this, this.el, ['six-change', 'six-blur']);
231
+ }
232
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
233
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDate, isStandalone: false, selector: "six-date", inputs: { allowedDates: "allowedDates", clearable: "clearable", dateFormat: "dateFormat", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", language: "language", max: "max", min: "min", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
234
+ };
235
+ SixDate = __decorate([
236
+ ProxyCmp({
237
+ inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
238
+ methods: ['setFocus']
239
+ })
240
+ ], SixDate);
241
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDate, decorators: [{
242
+ type: Component,
243
+ args: [{
244
+ selector: 'six-date',
245
+ changeDetection: ChangeDetectionStrategy.OnPush,
246
+ template: '<ng-content></ng-content>',
247
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
248
+ inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
249
+ standalone: false
250
+ }]
251
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
252
+ let SixDatepicker = class SixDatepicker {
253
+ constructor(c, r, z) {
254
+ this.z = z;
255
+ c.detach();
256
+ this.el = r.nativeElement;
257
+ proxyOutputs(this, this.el, ['six-datepicker-select', 'six-datepicker-clear', 'six-datepicker-blur']);
258
+ }
259
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
260
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDatepicker, isStandalone: false, selector: "six-datepicker", inputs: { allowedDates: "allowedDates", clearable: "clearable", closeOnSelect: "closeOnSelect", containingElement: "containingElement", dateFormat: "dateFormat", debounce: "debounce", defaultDate: "defaultDate", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", invalid: "invalid", label: "label", locale: "locale", max: "max", min: "min", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
261
+ };
262
+ SixDatepicker = __decorate([
263
+ ProxyCmp({
264
+ inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorText', 'errorTextCount', 'hoist', 'iconPosition', 'inline', 'invalid', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
265
+ methods: ['setFocus', 'select']
266
+ })
267
+ ], SixDatepicker);
268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDatepicker, decorators: [{
269
+ type: Component,
270
+ args: [{
271
+ selector: 'six-datepicker',
272
+ changeDetection: ChangeDetectionStrategy.OnPush,
273
+ template: '<ng-content></ng-content>',
274
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
275
+ inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorText', 'errorTextCount', 'hoist', 'iconPosition', 'inline', 'invalid', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
276
+ standalone: false
277
+ }]
278
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
279
+ let SixDetails = class SixDetails {
280
+ constructor(c, r, z) {
281
+ this.z = z;
282
+ c.detach();
283
+ this.el = r.nativeElement;
284
+ proxyOutputs(this, this.el, ['six-details-show', 'six-details-after-show', 'six-details-hide', 'six-details-after-hide']);
285
+ }
286
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
287
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDetails, isStandalone: false, selector: "six-details", inputs: { disabled: "disabled", hasContent: "hasContent", inline: "inline", open: "open", selectableEmpty: "selectableEmpty", summary: "summary", summaryIcon: "summaryIcon", summaryIconSize: "summaryIconSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
288
+ };
289
+ SixDetails = __decorate([
290
+ ProxyCmp({
291
+ inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
292
+ methods: ['show', 'hide']
293
+ })
294
+ ], SixDetails);
295
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDetails, decorators: [{
296
+ type: Component,
297
+ args: [{
298
+ selector: 'six-details',
299
+ changeDetection: ChangeDetectionStrategy.OnPush,
300
+ template: '<ng-content></ng-content>',
301
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
302
+ inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
303
+ standalone: false
304
+ }]
305
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
306
+ let SixDialog = class SixDialog {
307
+ constructor(c, r, z) {
308
+ this.z = z;
309
+ c.detach();
310
+ this.el = r.nativeElement;
311
+ proxyOutputs(this, this.el, ['six-dialog-show', 'six-dialog-after-show', 'six-dialog-hide', 'six-dialog-after-hide', 'six-dialog-initial-focus', 'six-dialog-request-close']);
312
+ }
313
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
314
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDialog, isStandalone: false, selector: "six-dialog", inputs: { label: "label", noHeader: "noHeader", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
315
+ };
316
+ SixDialog = __decorate([
317
+ ProxyCmp({
318
+ inputs: ['label', 'noHeader', 'open'],
319
+ methods: ['show', 'hide']
320
+ })
321
+ ], SixDialog);
322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDialog, decorators: [{
323
+ type: Component,
324
+ args: [{
325
+ selector: 'six-dialog',
326
+ changeDetection: ChangeDetectionStrategy.OnPush,
327
+ template: '<ng-content></ng-content>',
328
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
329
+ inputs: ['label', 'noHeader', 'open'],
330
+ standalone: false
331
+ }]
332
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
333
+ let SixDrawer = class SixDrawer {
334
+ constructor(c, r, z) {
335
+ this.z = z;
336
+ c.detach();
337
+ this.el = r.nativeElement;
338
+ proxyOutputs(this, this.el, ['six-drawer-show', 'six-drawer-after-show', 'six-drawer-hide', 'six-drawer-after-hide', 'six-drawer-initial-focus', 'six-drawer-request-close']);
339
+ }
340
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
341
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDrawer, isStandalone: false, selector: "six-drawer", inputs: { contained: "contained", label: "label", noHeader: "noHeader", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
342
+ };
343
+ SixDrawer = __decorate([
344
+ ProxyCmp({
345
+ inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
346
+ methods: ['show', 'hide']
347
+ })
348
+ ], SixDrawer);
349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDrawer, decorators: [{
350
+ type: Component,
351
+ args: [{
352
+ selector: 'six-drawer',
353
+ changeDetection: ChangeDetectionStrategy.OnPush,
354
+ template: '<ng-content></ng-content>',
355
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
356
+ inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
357
+ standalone: false
358
+ }]
359
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
360
+ let SixDropdown = class SixDropdown {
361
+ constructor(c, r, z) {
362
+ this.z = z;
363
+ c.detach();
364
+ this.el = r.nativeElement;
365
+ proxyOutputs(this, this.el, ['six-dropdown-show', 'six-dropdown-after-show', 'six-dropdown-hide', 'six-dropdown-after-hide', 'six-dropdown-auto-filter-fired', 'six-async-filter-fired', 'six-dropdown-scroll']);
366
+ }
367
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
368
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDropdown, isStandalone: false, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", matchTriggerWidth: "matchTriggerWidth", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
369
+ };
370
+ SixDropdown = __decorate([
371
+ ProxyCmp({
372
+ inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
373
+ methods: ['show', 'hide']
374
+ })
375
+ ], SixDropdown);
376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDropdown, decorators: [{
377
+ type: Component,
378
+ args: [{
379
+ selector: 'six-dropdown',
380
+ changeDetection: ChangeDetectionStrategy.OnPush,
381
+ template: '<ng-content></ng-content>',
382
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
383
+ inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
384
+ standalone: false
385
+ }]
386
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
387
+ let SixError = class SixError {
388
+ constructor(c, r, z) {
389
+ this.z = z;
390
+ c.detach();
391
+ this.el = r.nativeElement;
392
+ }
393
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
394
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixError, isStandalone: false, selector: "six-error", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
395
+ };
396
+ SixError = __decorate([
397
+ ProxyCmp({})
398
+ ], SixError);
399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixError, decorators: [{
400
+ type: Component,
401
+ args: [{
402
+ selector: 'six-error',
403
+ changeDetection: ChangeDetectionStrategy.OnPush,
404
+ template: '<ng-content></ng-content>',
405
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
406
+ inputs: [],
407
+ standalone: false
408
+ }]
409
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
410
+ let SixErrorPage = class SixErrorPage {
411
+ constructor(c, r, z) {
412
+ this.z = z;
413
+ c.detach();
414
+ this.el = r.nativeElement;
415
+ }
416
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
417
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixErrorPage, isStandalone: false, selector: "six-error-page", inputs: { customDescription: "customDescription", customIcon: "customIcon", customTitle: "customTitle", errorCode: "errorCode", language: "language" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
418
+ };
419
+ SixErrorPage = __decorate([
420
+ ProxyCmp({
421
+ inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
422
+ })
423
+ ], SixErrorPage);
424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixErrorPage, decorators: [{
425
+ type: Component,
426
+ args: [{
427
+ selector: 'six-error-page',
428
+ changeDetection: ChangeDetectionStrategy.OnPush,
429
+ template: '<ng-content></ng-content>',
430
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
431
+ inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language'],
432
+ standalone: false
433
+ }]
434
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
435
+ let SixFileList = class SixFileList {
436
+ constructor(c, r, z) {
437
+ this.z = z;
438
+ c.detach();
439
+ this.el = r.nativeElement;
440
+ }
441
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
442
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFileList, isStandalone: false, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
443
+ };
444
+ SixFileList = __decorate([
445
+ ProxyCmp({})
446
+ ], SixFileList);
447
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileList, decorators: [{
448
+ type: Component,
449
+ args: [{
450
+ selector: 'six-file-list',
451
+ changeDetection: ChangeDetectionStrategy.OnPush,
452
+ template: '<ng-content></ng-content>',
453
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
454
+ inputs: [],
455
+ standalone: false
456
+ }]
457
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
458
+ let SixFileListItem = class SixFileListItem {
459
+ constructor(c, r, z) {
460
+ this.z = z;
461
+ c.detach();
462
+ this.el = r.nativeElement;
463
+ proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
464
+ }
465
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
466
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFileListItem, isStandalone: false, selector: "six-file-list-item", inputs: { date: "date", identifier: "identifier", name: "name", nodelete: "nodelete", nodownload: "nodownload", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
467
+ };
468
+ SixFileListItem = __decorate([
469
+ ProxyCmp({
470
+ inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
471
+ })
472
+ ], SixFileListItem);
473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileListItem, decorators: [{
474
+ type: Component,
475
+ args: [{
476
+ selector: 'six-file-list-item',
477
+ changeDetection: ChangeDetectionStrategy.OnPush,
478
+ template: '<ng-content></ng-content>',
479
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
480
+ inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size'],
481
+ standalone: false
482
+ }]
483
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
484
+ let SixFileUpload = class SixFileUpload {
485
+ constructor(c, r, z) {
486
+ this.z = z;
487
+ c.detach();
488
+ this.el = r.nativeElement;
489
+ proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
490
+ }
491
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
492
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFileUpload, isStandalone: false, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", errorText: "errorText", invalid: "invalid", label: "label", maxFileSize: "maxFileSize", multiple: "multiple", uploading: "uploading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
493
+ };
494
+ SixFileUpload = __decorate([
495
+ ProxyCmp({
496
+ inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading']
497
+ })
498
+ ], SixFileUpload);
499
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileUpload, decorators: [{
500
+ type: Component,
501
+ args: [{
502
+ selector: 'six-file-upload',
503
+ changeDetection: ChangeDetectionStrategy.OnPush,
504
+ template: '<ng-content></ng-content>',
505
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
506
+ inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
507
+ standalone: false
508
+ }]
509
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
510
+ let SixFooter = class SixFooter {
511
+ constructor(c, r, z) {
512
+ this.z = z;
513
+ c.detach();
514
+ this.el = r.nativeElement;
515
+ }
516
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
517
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFooter, isStandalone: false, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
518
+ };
519
+ SixFooter = __decorate([
520
+ ProxyCmp({})
521
+ ], SixFooter);
522
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFooter, decorators: [{
523
+ type: Component,
524
+ args: [{
525
+ selector: 'six-footer',
526
+ changeDetection: ChangeDetectionStrategy.OnPush,
527
+ template: '<ng-content></ng-content>',
528
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
529
+ inputs: [],
530
+ standalone: false
531
+ }]
532
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
533
+ let SixGroupLabel = class SixGroupLabel {
534
+ constructor(c, r, z) {
535
+ this.z = z;
536
+ c.detach();
537
+ this.el = r.nativeElement;
538
+ }
539
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
540
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixGroupLabel, isStandalone: false, selector: "six-group-label", inputs: { disabled: "disabled", helpText: "helpText", label: "label", required: "required", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
541
+ };
542
+ SixGroupLabel = __decorate([
543
+ ProxyCmp({
544
+ inputs: ['disabled', 'helpText', 'label', 'required', 'size']
545
+ })
546
+ ], SixGroupLabel);
547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixGroupLabel, decorators: [{
548
+ type: Component,
549
+ args: [{
550
+ selector: 'six-group-label',
551
+ changeDetection: ChangeDetectionStrategy.OnPush,
552
+ template: '<ng-content></ng-content>',
553
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
554
+ inputs: ['disabled', 'helpText', 'label', 'required', 'size'],
555
+ standalone: false
556
+ }]
557
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
558
+ let SixHeader = class SixHeader {
559
+ constructor(c, r, z) {
560
+ this.z = z;
561
+ c.detach();
562
+ this.el = r.nativeElement;
563
+ }
564
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
565
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeader, isStandalone: false, selector: "six-header", inputs: { openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
566
+ };
567
+ SixHeader = __decorate([
568
+ ProxyCmp({
569
+ inputs: ['openSearch', 'shiftContent']
570
+ })
571
+ ], SixHeader);
572
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeader, decorators: [{
573
+ type: Component,
574
+ args: [{
575
+ selector: 'six-header',
576
+ changeDetection: ChangeDetectionStrategy.OnPush,
577
+ template: '<ng-content></ng-content>',
578
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
579
+ inputs: ['openSearch', 'shiftContent'],
580
+ standalone: false
581
+ }]
582
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
583
+ let SixHeaderDropdownItem = class SixHeaderDropdownItem {
584
+ constructor(c, r, z) {
585
+ this.z = z;
586
+ c.detach();
587
+ this.el = r.nativeElement;
588
+ }
589
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
590
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeaderDropdownItem, isStandalone: false, selector: "six-header-dropdown-item", inputs: { filter: "filter", filterPlaceholder: "filterPlaceholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
591
+ };
592
+ SixHeaderDropdownItem = __decorate([
593
+ ProxyCmp({
594
+ inputs: ['filter', 'filterPlaceholder']
595
+ })
596
+ ], SixHeaderDropdownItem);
597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
598
+ type: Component,
599
+ args: [{
600
+ selector: 'six-header-dropdown-item',
601
+ changeDetection: ChangeDetectionStrategy.OnPush,
602
+ template: '<ng-content></ng-content>',
603
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
604
+ inputs: ['filter', 'filterPlaceholder'],
605
+ standalone: false
606
+ }]
607
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
608
+ let SixHeaderItem = class SixHeaderItem {
609
+ constructor(c, r, z) {
610
+ this.z = z;
611
+ c.detach();
612
+ this.el = r.nativeElement;
613
+ }
614
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
615
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeaderItem, isStandalone: false, selector: "six-header-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
616
+ };
617
+ SixHeaderItem = __decorate([
618
+ ProxyCmp({
619
+ inputs: ['active']
620
+ })
621
+ ], SixHeaderItem);
622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderItem, decorators: [{
623
+ type: Component,
624
+ args: [{
625
+ selector: 'six-header-item',
626
+ changeDetection: ChangeDetectionStrategy.OnPush,
627
+ template: '<ng-content></ng-content>',
628
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
629
+ inputs: ['active'],
630
+ standalone: false
631
+ }]
632
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
633
+ let SixHeaderMenuButton = class SixHeaderMenuButton {
634
+ constructor(c, r, z) {
635
+ this.z = z;
636
+ c.detach();
637
+ this.el = r.nativeElement;
638
+ }
639
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
640
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeaderMenuButton, isStandalone: false, selector: "six-header-menu-button", inputs: { caret: "caret", disabled: "disabled", loading: "loading", reset: "reset", submit: "submit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
641
+ };
642
+ SixHeaderMenuButton = __decorate([
643
+ ProxyCmp({
644
+ inputs: ['caret', 'disabled', 'loading', 'reset', 'submit']
645
+ })
646
+ ], SixHeaderMenuButton);
647
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
648
+ type: Component,
649
+ args: [{
650
+ selector: 'six-header-menu-button',
651
+ changeDetection: ChangeDetectionStrategy.OnPush,
652
+ template: '<ng-content></ng-content>',
653
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
654
+ inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
655
+ standalone: false
656
+ }]
657
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
658
+ let SixIcon = class SixIcon {
659
+ constructor(c, r, z) {
660
+ this.z = z;
661
+ c.detach();
662
+ this.el = r.nativeElement;
663
+ }
664
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
665
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixIcon, isStandalone: false, selector: "six-icon", inputs: { filled: "filled", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
666
+ };
667
+ SixIcon = __decorate([
668
+ ProxyCmp({
669
+ inputs: ['filled', 'size']
670
+ })
671
+ ], SixIcon);
672
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIcon, decorators: [{
673
+ type: Component,
674
+ args: [{
675
+ selector: 'six-icon',
676
+ changeDetection: ChangeDetectionStrategy.OnPush,
677
+ template: '<ng-content></ng-content>',
678
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
679
+ inputs: ['filled', 'size'],
680
+ standalone: false
681
+ }]
682
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
683
+ let SixIconButton = class SixIconButton {
684
+ constructor(c, r, z) {
685
+ this.z = z;
686
+ c.detach();
687
+ this.el = r.nativeElement;
688
+ }
689
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
690
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixIconButton, isStandalone: false, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
691
+ };
692
+ SixIconButton = __decorate([
693
+ ProxyCmp({
694
+ inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
695
+ })
696
+ ], SixIconButton);
697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIconButton, decorators: [{
698
+ type: Component,
699
+ args: [{
700
+ selector: 'six-icon-button',
701
+ changeDetection: ChangeDetectionStrategy.OnPush,
702
+ template: '<ng-content></ng-content>',
703
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
704
+ inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
705
+ standalone: false
706
+ }]
707
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
708
+ let SixInput = class SixInput {
709
+ constructor(c, r, z) {
710
+ this.z = z;
711
+ c.detach();
712
+ this.el = r.nativeElement;
713
+ proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
714
+ }
715
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
716
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixInput, isStandalone: false, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", dropdownSearch: "dropdownSearch", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", line: "line", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", pill: "pill", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", spellcheck: "spellcheck", step: "step", togglePassword: "togglePassword", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
717
+ };
718
+ SixInput = __decorate([
719
+ ProxyCmp({
720
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'dropdownSearch', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
721
+ methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'getSelectionRange', 'setRangeText']
722
+ })
723
+ ], SixInput);
724
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixInput, decorators: [{
725
+ type: Component,
726
+ args: [{
727
+ selector: 'six-input',
728
+ changeDetection: ChangeDetectionStrategy.OnPush,
729
+ template: '<ng-content></ng-content>',
730
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
731
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'dropdownSearch', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
732
+ standalone: false
733
+ }]
734
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
735
+ let SixItemPicker = class SixItemPicker {
736
+ constructor(c, r, z) {
737
+ this.z = z;
738
+ c.detach();
739
+ this.el = r.nativeElement;
740
+ proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
741
+ }
742
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
743
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixItemPicker, isStandalone: false, selector: "six-item-picker", inputs: { debounce: "debounce", interval: "interval", items: "items", max: "max", min: "min", padded: "padded", paddingChar: "paddingChar", paddingDirection: "paddingDirection", paddingLength: "paddingLength", roundtrip: "roundtrip", step: "step", timeout: "timeout", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
744
+ };
745
+ SixItemPicker = __decorate([
746
+ ProxyCmp({
747
+ inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
748
+ })
749
+ ], SixItemPicker);
750
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixItemPicker, decorators: [{
751
+ type: Component,
752
+ args: [{
753
+ selector: 'six-item-picker',
754
+ changeDetection: ChangeDetectionStrategy.OnPush,
755
+ template: '<ng-content></ng-content>',
756
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
757
+ inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value'],
758
+ standalone: false
759
+ }]
760
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
761
+ let SixLanguageSwitcher = class SixLanguageSwitcher {
762
+ constructor(c, r, z) {
763
+ this.z = z;
764
+ c.detach();
765
+ this.el = r.nativeElement;
766
+ proxyOutputs(this, this.el, ['six-language-switcher-change']);
767
+ }
768
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
769
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixLanguageSwitcher, isStandalone: false, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
770
+ };
771
+ SixLanguageSwitcher = __decorate([
772
+ ProxyCmp({
773
+ inputs: ['languages', 'selected']
774
+ })
775
+ ], SixLanguageSwitcher);
776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
777
+ type: Component,
778
+ args: [{
779
+ selector: 'six-language-switcher',
780
+ changeDetection: ChangeDetectionStrategy.OnPush,
781
+ template: '<ng-content></ng-content>',
782
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
783
+ inputs: ['languages', 'selected'],
784
+ standalone: false
785
+ }]
786
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
787
+ let SixLayoutGrid = class SixLayoutGrid {
788
+ constructor(c, r, z) {
789
+ this.z = z;
790
+ c.detach();
791
+ this.el = r.nativeElement;
792
+ }
793
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
794
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixLayoutGrid, isStandalone: false, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
795
+ };
796
+ SixLayoutGrid = __decorate([
797
+ ProxyCmp({
798
+ inputs: ['columns']
799
+ })
800
+ ], SixLayoutGrid);
801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLayoutGrid, decorators: [{
802
+ type: Component,
803
+ args: [{
804
+ selector: 'six-layout-grid',
805
+ changeDetection: ChangeDetectionStrategy.OnPush,
806
+ template: '<ng-content></ng-content>',
807
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
808
+ inputs: ['columns'],
809
+ standalone: false
810
+ }]
811
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
812
+ let SixLogo = class SixLogo {
813
+ constructor(c, r, z) {
814
+ this.z = z;
815
+ c.detach();
816
+ this.el = r.nativeElement;
817
+ }
818
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
819
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixLogo, isStandalone: false, selector: "six-logo", inputs: { brand: "brand" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
820
+ };
821
+ SixLogo = __decorate([
822
+ ProxyCmp({
823
+ inputs: ['brand']
824
+ })
825
+ ], SixLogo);
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLogo, decorators: [{
827
+ type: Component,
828
+ args: [{
829
+ selector: 'six-logo',
830
+ changeDetection: ChangeDetectionStrategy.OnPush,
831
+ template: '<ng-content></ng-content>',
832
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
833
+ inputs: ['brand'],
834
+ standalone: false
835
+ }]
836
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
837
+ let SixMainContainer = class SixMainContainer {
838
+ constructor(c, r, z) {
839
+ this.z = z;
840
+ c.detach();
841
+ this.el = r.nativeElement;
842
+ }
843
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
844
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMainContainer, isStandalone: false, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
845
+ };
846
+ SixMainContainer = __decorate([
847
+ ProxyCmp({
848
+ inputs: ['padded']
849
+ })
850
+ ], SixMainContainer);
851
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMainContainer, decorators: [{
852
+ type: Component,
853
+ args: [{
854
+ selector: 'six-main-container',
855
+ changeDetection: ChangeDetectionStrategy.OnPush,
856
+ template: '<ng-content></ng-content>',
857
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
858
+ inputs: ['padded'],
859
+ standalone: false
860
+ }]
861
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
862
+ let SixMenu = class SixMenu {
863
+ constructor(c, r, z) {
864
+ this.z = z;
865
+ c.detach();
866
+ this.el = r.nativeElement;
867
+ proxyOutputs(this, this.el, ['six-menu-item-selected']);
868
+ }
869
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
870
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenu, isStandalone: false, selector: "six-menu", inputs: { disableKeyboardHandling: "disableKeyboardHandling", itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
871
+ };
872
+ SixMenu = __decorate([
873
+ ProxyCmp({
874
+ inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
875
+ methods: ['typeToSelect']
876
+ })
877
+ ], SixMenu);
878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenu, decorators: [{
879
+ type: Component,
880
+ args: [{
881
+ selector: 'six-menu',
882
+ changeDetection: ChangeDetectionStrategy.OnPush,
883
+ template: '<ng-content></ng-content>',
884
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
885
+ inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
886
+ standalone: false
887
+ }]
888
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
889
+ let SixMenuDivider = class SixMenuDivider {
890
+ constructor(c, r, z) {
891
+ this.z = z;
892
+ c.detach();
893
+ this.el = r.nativeElement;
894
+ }
895
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
896
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenuDivider, isStandalone: false, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
897
+ };
898
+ SixMenuDivider = __decorate([
899
+ ProxyCmp({})
900
+ ], SixMenuDivider);
901
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuDivider, decorators: [{
902
+ type: Component,
903
+ args: [{
904
+ selector: 'six-menu-divider',
905
+ changeDetection: ChangeDetectionStrategy.OnPush,
906
+ template: '<ng-content></ng-content>',
907
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
908
+ inputs: [],
909
+ standalone: false
910
+ }]
911
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
912
+ let SixMenuItem = class SixMenuItem {
913
+ constructor(c, r, z) {
914
+ this.z = z;
915
+ c.detach();
916
+ this.el = r.nativeElement;
917
+ }
918
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
919
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenuItem, isStandalone: false, selector: "six-menu-item", inputs: { checkType: "checkType", checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
920
+ };
921
+ SixMenuItem = __decorate([
922
+ ProxyCmp({
923
+ inputs: ['checkType', 'checked', 'disabled', 'value'],
924
+ methods: ['setFocus', 'removeFocus', 'getTextLabel']
925
+ })
926
+ ], SixMenuItem);
927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuItem, decorators: [{
928
+ type: Component,
929
+ args: [{
930
+ selector: 'six-menu-item',
931
+ changeDetection: ChangeDetectionStrategy.OnPush,
932
+ template: '<ng-content></ng-content>',
933
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
934
+ inputs: ['checkType', 'checked', 'disabled', 'value'],
935
+ standalone: false
936
+ }]
937
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
938
+ let SixMenuLabel = class SixMenuLabel {
939
+ constructor(c, r, z) {
940
+ this.z = z;
941
+ c.detach();
942
+ this.el = r.nativeElement;
943
+ }
944
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
945
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenuLabel, isStandalone: false, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
946
+ };
947
+ SixMenuLabel = __decorate([
948
+ ProxyCmp({})
949
+ ], SixMenuLabel);
950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuLabel, decorators: [{
951
+ type: Component,
952
+ args: [{
953
+ selector: 'six-menu-label',
954
+ changeDetection: ChangeDetectionStrategy.OnPush,
955
+ template: '<ng-content></ng-content>',
956
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
957
+ inputs: [],
958
+ standalone: false
959
+ }]
960
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
961
+ let SixPicto = class SixPicto {
962
+ constructor(c, r, z) {
963
+ this.z = z;
964
+ c.detach();
965
+ this.el = r.nativeElement;
966
+ }
967
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
968
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixPicto, isStandalone: false, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
969
+ };
970
+ SixPicto = __decorate([
971
+ ProxyCmp({
972
+ inputs: ['size']
973
+ })
974
+ ], SixPicto);
975
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixPicto, decorators: [{
976
+ type: Component,
977
+ args: [{
978
+ selector: 'six-picto',
979
+ changeDetection: ChangeDetectionStrategy.OnPush,
980
+ template: '<ng-content></ng-content>',
981
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
982
+ inputs: ['size'],
983
+ standalone: false
984
+ }]
985
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
986
+ let SixProgressBar = class SixProgressBar {
987
+ constructor(c, r, z) {
988
+ this.z = z;
989
+ c.detach();
990
+ this.el = r.nativeElement;
991
+ }
992
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
993
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixProgressBar, isStandalone: false, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
994
+ };
995
+ SixProgressBar = __decorate([
996
+ ProxyCmp({
997
+ inputs: ['indeterminate', 'percentage']
998
+ })
999
+ ], SixProgressBar);
1000
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressBar, decorators: [{
1001
+ type: Component,
1002
+ args: [{
1003
+ selector: 'six-progress-bar',
1004
+ changeDetection: ChangeDetectionStrategy.OnPush,
1005
+ template: '<ng-content></ng-content>',
1006
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1007
+ inputs: ['indeterminate', 'percentage'],
1008
+ standalone: false
1009
+ }]
1010
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1011
+ let SixProgressRing = class SixProgressRing {
1012
+ constructor(c, r, z) {
1013
+ this.z = z;
1014
+ c.detach();
1015
+ this.el = r.nativeElement;
1016
+ }
1017
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1018
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixProgressRing, isStandalone: false, selector: "six-progress-ring", inputs: { percentage: "percentage", size: "size", strokeWidth: "strokeWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1019
+ };
1020
+ SixProgressRing = __decorate([
1021
+ ProxyCmp({
1022
+ inputs: ['percentage', 'size', 'strokeWidth']
1023
+ })
1024
+ ], SixProgressRing);
1025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressRing, decorators: [{
1026
+ type: Component,
1027
+ args: [{
1028
+ selector: 'six-progress-ring',
1029
+ changeDetection: ChangeDetectionStrategy.OnPush,
1030
+ template: '<ng-content></ng-content>',
1031
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1032
+ inputs: ['percentage', 'size', 'strokeWidth'],
1033
+ standalone: false
1034
+ }]
1035
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1036
+ let SixRadio = class SixRadio {
1037
+ constructor(c, r, z) {
1038
+ this.z = z;
1039
+ c.detach();
1040
+ this.el = r.nativeElement;
1041
+ proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
1042
+ }
1043
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1044
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRadio, isStandalone: false, selector: "six-radio", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1045
+ };
1046
+ SixRadio = __decorate([
1047
+ ProxyCmp({
1048
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
1049
+ methods: ['setFocus', 'removeFocus']
1050
+ })
1051
+ ], SixRadio);
1052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRadio, decorators: [{
1053
+ type: Component,
1054
+ args: [{
1055
+ selector: 'six-radio',
1056
+ changeDetection: ChangeDetectionStrategy.OnPush,
1057
+ template: '<ng-content></ng-content>',
1058
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1059
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
1060
+ standalone: false
1061
+ }]
1062
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1063
+ let SixRange = class SixRange {
1064
+ constructor(c, r, z) {
1065
+ this.z = z;
1066
+ c.detach();
1067
+ this.el = r.nativeElement;
1068
+ proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
1069
+ }
1070
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1071
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRange, isStandalone: false, selector: "six-range", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", min: "min", name: "name", required: "required", step: "step", tooltip: "tooltip", tooltipFormatter: "tooltipFormatter", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1072
+ };
1073
+ SixRange = __decorate([
1074
+ ProxyCmp({
1075
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
1076
+ methods: ['setFocus', 'removeFocus']
1077
+ })
1078
+ ], SixRange);
1079
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRange, decorators: [{
1080
+ type: Component,
1081
+ args: [{
1082
+ selector: 'six-range',
1083
+ changeDetection: ChangeDetectionStrategy.OnPush,
1084
+ template: '<ng-content></ng-content>',
1085
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1086
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
1087
+ standalone: false
1088
+ }]
1089
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1090
+ let SixRating = class SixRating {
1091
+ constructor(c, r, z) {
1092
+ this.z = z;
1093
+ c.detach();
1094
+ this.el = r.nativeElement;
1095
+ proxyOutputs(this, this.el, ['six-rating-blur', 'six-rating-change', 'six-rating-focus']);
1096
+ }
1097
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1098
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRating, isStandalone: false, selector: "six-rating", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", name: "name", readonly: "readonly", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1099
+ };
1100
+ SixRating = __decorate([
1101
+ ProxyCmp({
1102
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value']
1103
+ })
1104
+ ], SixRating);
1105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRating, decorators: [{
1106
+ type: Component,
1107
+ args: [{
1108
+ selector: 'six-rating',
1109
+ changeDetection: ChangeDetectionStrategy.OnPush,
1110
+ template: '<ng-content></ng-content>',
1111
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1112
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value'],
1113
+ standalone: false
1114
+ }]
1115
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1116
+ let SixRoot = class SixRoot {
1117
+ constructor(c, r, z) {
1118
+ this.z = z;
1119
+ c.detach();
1120
+ this.el = r.nativeElement;
1121
+ }
1122
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1123
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRoot, isStandalone: false, selector: "six-root", inputs: { padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1124
+ };
1125
+ SixRoot = __decorate([
1126
+ ProxyCmp({
1127
+ inputs: ['padded', 'stage', 'version']
1128
+ })
1129
+ ], SixRoot);
1130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRoot, decorators: [{
1131
+ type: Component,
1132
+ args: [{
1133
+ selector: 'six-root',
1134
+ changeDetection: ChangeDetectionStrategy.OnPush,
1135
+ template: '<ng-content></ng-content>',
1136
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1137
+ inputs: ['padded', 'stage', 'version'],
1138
+ standalone: false
1139
+ }]
1140
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1141
+ let SixSearchField = class SixSearchField {
1142
+ constructor(c, r, z) {
1143
+ this.z = z;
1144
+ c.detach();
1145
+ this.el = r.nativeElement;
1146
+ proxyOutputs(this, this.el, ['six-search-field-change']);
1147
+ }
1148
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1149
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSearchField, isStandalone: false, selector: "six-search-field", inputs: { clearable: "clearable", debounce: "debounce", disabled: "disabled", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1150
+ };
1151
+ SixSearchField = __decorate([
1152
+ ProxyCmp({
1153
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
1154
+ })
1155
+ ], SixSearchField);
1156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSearchField, decorators: [{
1157
+ type: Component,
1158
+ args: [{
1159
+ selector: 'six-search-field',
1160
+ changeDetection: ChangeDetectionStrategy.OnPush,
1161
+ template: '<ng-content></ng-content>',
1162
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1163
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
1164
+ standalone: false
1165
+ }]
1166
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1167
+ let SixSelect = class SixSelect {
1168
+ constructor(c, r, z) {
1169
+ this.z = z;
1170
+ c.detach();
1171
+ this.el = r.nativeElement;
1172
+ proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
1173
+ }
1174
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1175
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSelect, isStandalone: false, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line", multiple: "multiple", name: "name", options: "options", pill: "pill", placeholder: "placeholder", required: "required", selectAllButton: "selectAllButton", selectAllText: "selectAllText", size: "size", value: "value", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1176
+ };
1177
+ SixSelect = __decorate([
1178
+ ProxyCmp({
1179
+ inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
1180
+ methods: ['setFocus']
1181
+ })
1182
+ ], SixSelect);
1183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSelect, decorators: [{
1184
+ type: Component,
1185
+ args: [{
1186
+ selector: 'six-select',
1187
+ changeDetection: ChangeDetectionStrategy.OnPush,
1188
+ template: '<ng-content></ng-content>',
1189
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1190
+ inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
1191
+ standalone: false
1192
+ }]
1193
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1194
+ let SixSidebar = class SixSidebar {
1195
+ constructor(c, r, z) {
1196
+ this.z = z;
1197
+ c.detach();
1198
+ this.el = r.nativeElement;
1199
+ proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
1200
+ }
1201
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1202
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSidebar, isStandalone: false, selector: "six-sidebar", inputs: { open: "open", position: "position", toggled: "toggled", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1203
+ };
1204
+ SixSidebar = __decorate([
1205
+ ProxyCmp({
1206
+ inputs: ['open', 'position', 'toggled', 'width'],
1207
+ methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
1208
+ })
1209
+ ], SixSidebar);
1210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebar, decorators: [{
1211
+ type: Component,
1212
+ args: [{
1213
+ selector: 'six-sidebar',
1214
+ changeDetection: ChangeDetectionStrategy.OnPush,
1215
+ template: '<ng-content></ng-content>',
1216
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1217
+ inputs: ['open', 'position', 'toggled', 'width'],
1218
+ standalone: false
1219
+ }]
1220
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1221
+ let SixSidebarItem = class SixSidebarItem {
1222
+ constructor(c, r, z) {
1223
+ this.z = z;
1224
+ c.detach();
1225
+ this.el = r.nativeElement;
1226
+ }
1227
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1228
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSidebarItem, isStandalone: false, selector: "six-sidebar-item", inputs: { disabled: "disabled", href: "href", icon: "icon", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1229
+ };
1230
+ SixSidebarItem = __decorate([
1231
+ ProxyCmp({
1232
+ inputs: ['disabled', 'href', 'icon', 'selected', 'value']
1233
+ })
1234
+ ], SixSidebarItem);
1235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItem, decorators: [{
1236
+ type: Component,
1237
+ args: [{
1238
+ selector: 'six-sidebar-item',
1239
+ changeDetection: ChangeDetectionStrategy.OnPush,
1240
+ template: '<ng-content></ng-content>',
1241
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1242
+ inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
1243
+ standalone: false
1244
+ }]
1245
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1246
+ let SixSidebarItemGroup = class SixSidebarItemGroup {
1247
+ constructor(c, r, z) {
1248
+ this.z = z;
1249
+ c.detach();
1250
+ this.el = r.nativeElement;
1251
+ }
1252
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1253
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSidebarItemGroup, isStandalone: false, selector: "six-sidebar-item-group", inputs: { href: "href", icon: "icon", name: "name", open: "open", summaryIcon: "summaryIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1254
+ };
1255
+ SixSidebarItemGroup = __decorate([
1256
+ ProxyCmp({
1257
+ inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
1258
+ })
1259
+ ], SixSidebarItemGroup);
1260
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
1261
+ type: Component,
1262
+ args: [{
1263
+ selector: 'six-sidebar-item-group',
1264
+ changeDetection: ChangeDetectionStrategy.OnPush,
1265
+ template: '<ng-content></ng-content>',
1266
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1267
+ inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
1268
+ standalone: false
1269
+ }]
1270
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1271
+ let SixSpinner = class SixSpinner {
1272
+ constructor(c, r, z) {
1273
+ this.z = z;
1274
+ c.detach();
1275
+ this.el = r.nativeElement;
1276
+ }
1277
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1278
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSpinner, isStandalone: false, selector: "six-spinner", inputs: { logo: "logo", six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1279
+ };
1280
+ SixSpinner = __decorate([
1281
+ ProxyCmp({
1282
+ inputs: ['logo', 'six']
1283
+ })
1284
+ ], SixSpinner);
1285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSpinner, decorators: [{
1286
+ type: Component,
1287
+ args: [{
1288
+ selector: 'six-spinner',
1289
+ changeDetection: ChangeDetectionStrategy.OnPush,
1290
+ template: '<ng-content></ng-content>',
1291
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1292
+ inputs: ['logo', 'six'],
1293
+ standalone: false
1294
+ }]
1295
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1296
+ let SixStageIndicator = class SixStageIndicator {
1297
+ constructor(c, r, z) {
1298
+ this.z = z;
1299
+ c.detach();
1300
+ this.el = r.nativeElement;
1301
+ }
1302
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1303
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixStageIndicator, isStandalone: false, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1304
+ };
1305
+ SixStageIndicator = __decorate([
1306
+ ProxyCmp({
1307
+ inputs: ['stage']
1308
+ })
1309
+ ], SixStageIndicator);
1310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixStageIndicator, decorators: [{
1311
+ type: Component,
1312
+ args: [{
1313
+ selector: 'six-stage-indicator',
1314
+ changeDetection: ChangeDetectionStrategy.OnPush,
1315
+ template: '<ng-content></ng-content>',
1316
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1317
+ inputs: ['stage'],
1318
+ standalone: false
1319
+ }]
1320
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1321
+ let SixSwitch = class SixSwitch {
1322
+ constructor(c, r, z) {
1323
+ this.z = z;
1324
+ c.detach();
1325
+ this.el = r.nativeElement;
1326
+ proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
1327
+ }
1328
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1329
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSwitch, isStandalone: false, selector: "six-switch", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1330
+ };
1331
+ SixSwitch = __decorate([
1332
+ ProxyCmp({
1333
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
1334
+ methods: ['setFocus', 'removeFocus']
1335
+ })
1336
+ ], SixSwitch);
1337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSwitch, decorators: [{
1338
+ type: Component,
1339
+ args: [{
1340
+ selector: 'six-switch',
1341
+ changeDetection: ChangeDetectionStrategy.OnPush,
1342
+ template: '<ng-content></ng-content>',
1343
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1344
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
1345
+ standalone: false
1346
+ }]
1347
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1348
+ let SixTab = class SixTab {
1349
+ constructor(c, r, z) {
1350
+ this.z = z;
1351
+ c.detach();
1352
+ this.el = r.nativeElement;
1353
+ proxyOutputs(this, this.el, ['six-tab-close']);
1354
+ }
1355
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1356
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTab, isStandalone: false, selector: "six-tab", inputs: { active: "active", closable: "closable", disabled: "disabled", panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1357
+ };
1358
+ SixTab = __decorate([
1359
+ ProxyCmp({
1360
+ inputs: ['active', 'closable', 'disabled', 'panel'],
1361
+ methods: ['setFocus', 'removeFocus']
1362
+ })
1363
+ ], SixTab);
1364
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTab, decorators: [{
1365
+ type: Component,
1366
+ args: [{
1367
+ selector: 'six-tab',
1368
+ changeDetection: ChangeDetectionStrategy.OnPush,
1369
+ template: '<ng-content></ng-content>',
1370
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1371
+ inputs: ['active', 'closable', 'disabled', 'panel'],
1372
+ standalone: false
1373
+ }]
1374
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1375
+ let SixTabGroup = class SixTabGroup {
1376
+ constructor(c, r, z) {
1377
+ this.z = z;
1378
+ c.detach();
1379
+ this.el = r.nativeElement;
1380
+ proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
1381
+ }
1382
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1383
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTabGroup, isStandalone: false, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1384
+ };
1385
+ SixTabGroup = __decorate([
1386
+ ProxyCmp({
1387
+ inputs: ['noScrollControls', 'placement'],
1388
+ methods: ['show']
1389
+ })
1390
+ ], SixTabGroup);
1391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabGroup, decorators: [{
1392
+ type: Component,
1393
+ args: [{
1394
+ selector: 'six-tab-group',
1395
+ changeDetection: ChangeDetectionStrategy.OnPush,
1396
+ template: '<ng-content></ng-content>',
1397
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1398
+ inputs: ['noScrollControls', 'placement'],
1399
+ standalone: false
1400
+ }]
1401
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1402
+ let SixTabPanel = class SixTabPanel {
1403
+ constructor(c, r, z) {
1404
+ this.z = z;
1405
+ c.detach();
1406
+ this.el = r.nativeElement;
1407
+ }
1408
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1409
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTabPanel, isStandalone: false, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1410
+ };
1411
+ SixTabPanel = __decorate([
1412
+ ProxyCmp({
1413
+ inputs: ['active', 'name']
1414
+ })
1415
+ ], SixTabPanel);
1416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabPanel, decorators: [{
1417
+ type: Component,
1418
+ args: [{
1419
+ selector: 'six-tab-panel',
1420
+ changeDetection: ChangeDetectionStrategy.OnPush,
1421
+ template: '<ng-content></ng-content>',
1422
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1423
+ inputs: ['active', 'name'],
1424
+ standalone: false
1425
+ }]
1426
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1427
+ let SixTag = class SixTag {
1428
+ constructor(c, r, z) {
1429
+ this.z = z;
1430
+ c.detach();
1431
+ this.el = r.nativeElement;
1432
+ proxyOutputs(this, this.el, ['six-tag-clear']);
1433
+ }
1434
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1435
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTag, isStandalone: false, selector: "six-tag", inputs: { clearable: "clearable", pill: "pill", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1436
+ };
1437
+ SixTag = __decorate([
1438
+ ProxyCmp({
1439
+ inputs: ['clearable', 'pill', 'size', 'type']
1440
+ })
1441
+ ], SixTag);
1442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTag, decorators: [{
1443
+ type: Component,
1444
+ args: [{
1445
+ selector: 'six-tag',
1446
+ changeDetection: ChangeDetectionStrategy.OnPush,
1447
+ template: '<ng-content></ng-content>',
1448
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1449
+ inputs: ['clearable', 'pill', 'size', 'type'],
1450
+ standalone: false
1451
+ }]
1452
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1453
+ let SixTextarea = class SixTextarea {
1454
+ constructor(c, r, z) {
1455
+ this.z = z;
1456
+ c.detach();
1457
+ this.el = r.nativeElement;
1458
+ proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
1459
+ }
1460
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1461
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTextarea, isStandalone: false, selector: "six-textarea", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", maxlength: "maxlength", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", size: "size", spellcheck: "spellcheck", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1462
+ };
1463
+ SixTextarea = __decorate([
1464
+ ProxyCmp({
1465
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1466
+ methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
1467
+ })
1468
+ ], SixTextarea);
1469
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTextarea, decorators: [{
1470
+ type: Component,
1471
+ args: [{
1472
+ selector: 'six-textarea',
1473
+ changeDetection: ChangeDetectionStrategy.OnPush,
1474
+ template: '<ng-content></ng-content>',
1475
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1476
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1477
+ standalone: false
1478
+ }]
1479
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1480
+ let SixTile = class SixTile {
1481
+ constructor(c, r, z) {
1482
+ this.z = z;
1483
+ c.detach();
1484
+ this.el = r.nativeElement;
1485
+ proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
1486
+ }
1487
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1488
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTile, isStandalone: false, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1489
+ };
1490
+ SixTile = __decorate([
1491
+ ProxyCmp({
1492
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1493
+ methods: ['hide', 'show']
1494
+ })
1495
+ ], SixTile);
1496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTile, decorators: [{
1497
+ type: Component,
1498
+ args: [{
1499
+ selector: 'six-tile',
1500
+ changeDetection: ChangeDetectionStrategy.OnPush,
1501
+ template: '<ng-content></ng-content>',
1502
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1503
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1504
+ standalone: false
1505
+ }]
1506
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1507
+ let SixTimepicker = class SixTimepicker {
1508
+ constructor(c, r, z) {
1509
+ this.z = z;
1510
+ c.detach();
1511
+ this.el = r.nativeElement;
1512
+ proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
1513
+ }
1514
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1515
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTimepicker, isStandalone: false, selector: "six-timepicker", inputs: { clearable: "clearable", debounce: "debounce", defaultTime: "defaultTime", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", format: "format", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", interval: "interval", invalid: "invalid", label: "label", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", separator: "separator", size: "size", timeout: "timeout", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1516
+ };
1517
+ SixTimepicker = __decorate([
1518
+ ProxyCmp({
1519
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1520
+ methods: ['setFocus']
1521
+ })
1522
+ ], SixTimepicker);
1523
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTimepicker, decorators: [{
1524
+ type: Component,
1525
+ args: [{
1526
+ selector: 'six-timepicker',
1527
+ changeDetection: ChangeDetectionStrategy.OnPush,
1528
+ template: '<ng-content></ng-content>',
1529
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1530
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1531
+ standalone: false
1532
+ }]
1533
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1534
+ let SixTooltip = class SixTooltip {
1535
+ constructor(c, r, z) {
1536
+ this.z = z;
1537
+ c.detach();
1538
+ this.el = r.nativeElement;
1539
+ proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
1540
+ }
1541
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1542
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTooltip, isStandalone: false, selector: "six-tooltip", inputs: { content: "content", disabled: "disabled", distance: "distance", open: "open", placement: "placement", skidding: "skidding", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1543
+ };
1544
+ SixTooltip = __decorate([
1545
+ ProxyCmp({
1546
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1547
+ methods: ['show', 'hide']
1548
+ })
1549
+ ], SixTooltip);
1550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTooltip, decorators: [{
1551
+ type: Component,
1552
+ args: [{
1553
+ selector: 'six-tooltip',
1554
+ changeDetection: ChangeDetectionStrategy.OnPush,
1555
+ template: '<ng-content></ng-content>',
1556
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1557
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1558
+ standalone: false
1559
+ }]
1560
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1561
+
1562
+ const DIRECTIVES = [
1563
+ SixAlert,
1564
+ SixAvatar,
1565
+ SixBadge,
1566
+ SixButton,
1567
+ SixCard,
1568
+ SixCheckbox,
1569
+ SixDate,
1570
+ SixDatepicker,
1571
+ SixDetails,
1572
+ SixDialog,
1573
+ SixDrawer,
1574
+ SixDropdown,
1575
+ SixError,
1576
+ SixErrorPage,
1577
+ SixFileList,
1578
+ SixFileListItem,
1579
+ SixFileUpload,
1580
+ SixFooter,
1581
+ SixGroupLabel,
1582
+ SixHeader,
1583
+ SixHeaderDropdownItem,
1584
+ SixHeaderItem,
1585
+ SixHeaderMenuButton,
1586
+ SixIcon,
1587
+ SixIconButton,
1588
+ SixInput,
1589
+ SixItemPicker,
1590
+ SixLanguageSwitcher,
1591
+ SixLayoutGrid,
1592
+ SixLogo,
1593
+ SixMainContainer,
1594
+ SixMenu,
1595
+ SixMenuDivider,
1596
+ SixMenuItem,
1597
+ SixMenuLabel,
1598
+ SixPicto,
1599
+ SixProgressBar,
1600
+ SixProgressRing,
1601
+ SixRadio,
1602
+ SixRange,
1603
+ SixRating,
1604
+ SixRoot,
1605
+ SixSearchField,
1606
+ SixSelect,
1607
+ SixSidebar,
1608
+ SixSidebarItem,
1609
+ SixSidebarItemGroup,
1610
+ SixSpinner,
1611
+ SixStageIndicator,
1612
+ SixSwitch,
1613
+ SixTab,
1614
+ SixTabGroup,
1615
+ SixTabPanel,
1616
+ SixTag,
1617
+ SixTextarea,
1618
+ SixTile,
1619
+ SixTimepicker,
1620
+ SixTooltip
1621
+ ];
1622
+
1623
+ class ValidationMessagesService {
1624
+ getErrorMessage(language, error) {
1625
+ return getErrorMessage(language, error);
1626
+ }
1627
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1628
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' }); }
1629
+ }
1630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, decorators: [{
1631
+ type: Injectable,
1632
+ args: [{ providedIn: 'root' }]
1633
+ }] });
1634
+
1635
+ const DEFAULT_UI_LIBRARY_CONFIG = {
1636
+ showAsteriskOnRequiredValidator: false,
1637
+ };
1638
+ const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
1639
+
1640
+ class ValueAccessor {
1641
+ constructor(injector, el) {
1642
+ this.injector = injector;
1643
+ this.el = el;
1644
+ this.validationMessagesService = inject(ValidationMessagesService);
1645
+ this.config = inject(UI_LIBRARY_CONFIG);
1646
+ this.onChange = () => { };
1647
+ this.onTouched = () => { };
1648
+ }
1649
+ registerOnChange(fn) {
1650
+ this.onChange = fn;
1651
+ }
1652
+ registerOnTouched(fn) {
1653
+ this.onTouched = fn;
1654
+ }
1655
+ writeValue(value) {
1656
+ this.el.nativeElement.value = value;
1657
+ this.updateValidation();
1658
+ }
1659
+ /**
1660
+ * Notifies the ControlValueAccessor of a change in the value of the control.
1661
+ *
1662
+ * This is called by each of the ValueAccessor directives when we want to update
1663
+ * the status and validity of the form control. For example with text components this
1664
+ * is called when the input event is fired. For select components this is called
1665
+ * when the change event is fired.
1666
+ *
1667
+ * This also updates the form status on the element by setting the 'invalid' property to true/false.
1668
+ *
1669
+ * @param el The component element.
1670
+ * @param value The new value of the control.
1671
+ */
1672
+ handleValueChange(el, value) {
1673
+ if (el === this.el.nativeElement) {
1674
+ this.onChange(value);
1675
+ this.updateValidation();
1676
+ }
1677
+ }
1678
+ _handleBlurEvent(el) {
1679
+ if (el === this.el.nativeElement) {
1680
+ this.onTouched();
1681
+ this.updateValidation();
1682
+ }
1683
+ }
1684
+ updateValidation() {
1685
+ nextTick(() => {
1686
+ if (this.ngControl?.control == null)
1687
+ return;
1688
+ const element = this.el.nativeElement;
1689
+ const control = this.ngControl?.control;
1690
+ const invalid = control.status === 'INVALID' && control.dirty && control.touched;
1691
+ let errorTexts;
1692
+ if (invalid) {
1693
+ errorTexts = this.initialErrorText || this.getErrorTexts(control);
1694
+ }
1695
+ element.invalid = invalid;
1696
+ element.errorText = errorTexts ?? '';
1697
+ // When the module is configured to do so, display an asterisk next to any form control that has a required validator
1698
+ if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
1699
+ element.required = true;
1700
+ }
1701
+ });
1702
+ }
1703
+ setDisabledState(isDisabled) {
1704
+ this.el.nativeElement.disabled = isDisabled;
1705
+ }
1706
+ ngOnDestroy() {
1707
+ if (this.statusChanges) {
1708
+ this.statusChanges.unsubscribe();
1709
+ }
1710
+ }
1711
+ ngAfterViewInit() {
1712
+ this.initialErrorText = this.el.nativeElement?.errorText?.trim() || undefined;
1713
+ try {
1714
+ this.ngControl = this.injector.get(NgControl);
1715
+ }
1716
+ catch {
1717
+ /* No FormControl or ngModel binding */
1718
+ }
1719
+ if (!this.ngControl) {
1720
+ return;
1721
+ }
1722
+ // Listen for changes in validity, disabled, or pending states
1723
+ if (this.ngControl.statusChanges) {
1724
+ this.statusChanges = this.ngControl.statusChanges.subscribe(() => this.updateValidation());
1725
+ }
1726
+ /**
1727
+ * TODO FW-2787: Remove this in favor of https://github.com/angular/angular/issues/10887
1728
+ * whenever it is implemented.
1729
+ */
1730
+ const formControl = this.ngControl.control;
1731
+ if (formControl) {
1732
+ const methodsToPatch = ['markAsTouched', 'markAllAsTouched', 'markAsUntouched', 'markAsDirty', 'markAsPristine'];
1733
+ methodsToPatch.forEach((method) => {
1734
+ if (typeof formControl[method] !== 'undefined') {
1735
+ const oldFn = formControl[method].bind(formControl);
1736
+ formControl[method] = (...params) => {
1737
+ oldFn(...params);
1738
+ this.updateValidation();
1739
+ };
1740
+ }
1741
+ });
1742
+ }
1743
+ }
1744
+ getErrorTexts(control) {
1745
+ if (control.errors == null) {
1746
+ console.warn('no errors for invalid control', control);
1747
+ return [];
1748
+ }
1749
+ const errorList = Object.entries(control.errors);
1750
+ if (errorList.length <= 0) {
1751
+ console.warn('no errors for invalid control', control);
1752
+ return [];
1753
+ }
1754
+ return errorList.map((error) => {
1755
+ const [key, value] = error;
1756
+ return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
1757
+ });
1758
+ }
1759
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1760
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ValueAccessor, isStandalone: true, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 }); }
1761
+ }
1762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, decorators: [{
1763
+ type: Directive
1764
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
1765
+ type: HostListener,
1766
+ args: ['blur', ['$event.target']]
1767
+ }] } });
1768
+ const nextTick = (h) => {
1769
+ if (typeof __zone_symbol__requestAnimationFrame === 'function') {
1770
+ return __zone_symbol__requestAnimationFrame(h);
1771
+ }
1772
+ if (typeof requestAnimationFrame === 'function') {
1773
+ return requestAnimationFrame(h);
1774
+ }
1775
+ return setTimeout(h);
1776
+ };
1777
+
1778
+ class TextValueAccessor extends ValueAccessor {
1779
+ constructor(injector, el) {
1780
+ super(injector, el);
1781
+ }
1782
+ handleInputEvent(el) {
1783
+ this.handleValueChange(el, el.value);
1784
+ }
1785
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1786
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: TextValueAccessor, isStandalone: false, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
1787
+ {
1788
+ provide: NG_VALUE_ACCESSOR,
1789
+ useExisting: TextValueAccessor,
1790
+ multi: true,
1791
+ },
1792
+ ], usesInheritance: true, ngImport: i0 }); }
1793
+ }
1794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, decorators: [{
1795
+ type: Directive,
1796
+ args: [{
1797
+ selector: 'six-input:not([type=number]),six-textarea',
1798
+ providers: [
1799
+ {
1800
+ provide: NG_VALUE_ACCESSOR,
1801
+ useExisting: TextValueAccessor,
1802
+ multi: true,
1803
+ },
1804
+ ],
1805
+ standalone: false,
1806
+ }]
1807
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
1808
+ type: HostListener,
1809
+ args: ['input', ['$event.target']]
1810
+ }] } });
1811
+
1812
+ class NumericValueAccessor extends ValueAccessor {
1813
+ constructor(injector, el) {
1814
+ super(injector, el);
1815
+ }
1816
+ handleInputEvent(el) {
1817
+ this.handleValueChange(el, el.value);
1818
+ }
1819
+ registerOnChange(fn) {
1820
+ super.registerOnChange((value) => {
1821
+ fn(value === '' ? null : parseFloat(value));
1822
+ });
1823
+ }
1824
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1825
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: NumericValueAccessor, isStandalone: false, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
1826
+ {
1827
+ provide: NG_VALUE_ACCESSOR,
1828
+ useExisting: NumericValueAccessor,
1829
+ multi: true,
1830
+ },
1831
+ ], usesInheritance: true, ngImport: i0 }); }
1832
+ }
1833
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, decorators: [{
1834
+ type: Directive,
1835
+ args: [{
1836
+ selector: 'six-input[type=number]',
1837
+ providers: [
1838
+ {
1839
+ provide: NG_VALUE_ACCESSOR,
1840
+ useExisting: NumericValueAccessor,
1841
+ multi: true,
1842
+ },
1843
+ ],
1844
+ standalone: false,
1845
+ }]
1846
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
1847
+ type: HostListener,
1848
+ args: ['input', ['$event.target']]
1849
+ }] } });
1850
+
1851
+ class RadioValueAccessor extends ValueAccessor {
1852
+ constructor(injector, el) {
1853
+ super(injector, el);
1854
+ }
1855
+ handleChangeEvent(el) {
1856
+ this.handleValueChange(el, this.value);
1857
+ }
1858
+ ngOnInit() {
1859
+ this.checkName();
1860
+ }
1861
+ writeValue(value) {
1862
+ this.el.nativeElement.checked = value === this.value;
1863
+ this.updateValidation();
1864
+ }
1865
+ checkName() {
1866
+ if (this.name && this.formControlName && this.name !== this.formControlName) {
1867
+ throw new Error(`
1868
+ If you define both a name and a formControlName attribute on your radio button, their values
1869
+ must match. Ex: <six-input type="radio" formControlName="food" name="food">
1870
+ `);
1871
+ }
1872
+ if (!this.name && this.formControlName) {
1873
+ this.name = this.formControlName;
1874
+ this.el.nativeElement.name = this.formControlName;
1875
+ }
1876
+ }
1877
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1878
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: RadioValueAccessor, isStandalone: false, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
1879
+ {
1880
+ provide: NG_VALUE_ACCESSOR,
1881
+ useExisting: RadioValueAccessor,
1882
+ multi: true,
1883
+ },
1884
+ ], usesInheritance: true, ngImport: i0 }); }
1885
+ }
1886
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, decorators: [{
1887
+ type: Directive,
1888
+ args: [{
1889
+ selector: 'six-radio',
1890
+ providers: [
1891
+ {
1892
+ provide: NG_VALUE_ACCESSOR,
1893
+ useExisting: RadioValueAccessor,
1894
+ multi: true,
1895
+ },
1896
+ ],
1897
+ standalone: false,
1898
+ }]
1899
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
1900
+ type: Input
1901
+ }], formControlName: [{
1902
+ type: Input
1903
+ }], name: [{
1904
+ type: Input
1905
+ }], handleChangeEvent: [{
1906
+ type: HostListener,
1907
+ args: ['change', ['$event.target']]
1908
+ }] } });
1909
+
1910
+ class DatepickerValueAccessor extends ValueAccessor {
1911
+ constructor(injector, el) {
1912
+ super(injector, el);
1913
+ }
1914
+ handleChangeEvent(el) {
1915
+ this.handleValueChange(el, el.value);
1916
+ }
1917
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1918
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: DatepickerValueAccessor, isStandalone: false, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
1919
+ {
1920
+ provide: NG_VALUE_ACCESSOR,
1921
+ useExisting: DatepickerValueAccessor,
1922
+ multi: true,
1923
+ },
1924
+ ], usesInheritance: true, ngImport: i0 }); }
1925
+ }
1926
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
1927
+ type: Directive,
1928
+ args: [{
1929
+ selector: 'six-datepicker',
1930
+ providers: [
1931
+ {
1932
+ provide: NG_VALUE_ACCESSOR,
1933
+ useExisting: DatepickerValueAccessor,
1934
+ multi: true,
1935
+ },
1936
+ ],
1937
+ standalone: false,
1938
+ }]
1939
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
1940
+ type: HostListener,
1941
+ args: ['change', ['$event.target']]
1942
+ }] } });
1943
+
1944
+ /**
1945
+ * This directive intercepts the ngSubmit event of an Angular form and introduces
1946
+ * a supplementary event named sixSubmit. The sixSubmit event is triggered exclusively
1947
+ * when the form is valid. In cases where the form is considered invalid, this directive
1948
+ * takes proactive actions by marking all form controls as touched and dirty. Additionally,
1949
+ * it shifts the focus to the initial invalid form element, facilitating quick error
1950
+ * resolution.
1951
+ *
1952
+ * To utilize this directive, apply it to an Angular form.
1953
+ * ```html
1954
+ * <form [formGroup]="form" sixForm (sixSubmit)="onSubmit($event)">
1955
+ * <!-- form content -->
1956
+ * </form>
1957
+ * ```
1958
+ *
1959
+ * For users needing greater flexibility in determining when error messages are displayed,
1960
+ * or for those who prefer not to rely solely on the form submission event,
1961
+ * an alternative is to use the SixFormUtilDirective.
1962
+ */
1963
+ class SixFormDirective {
1964
+ onNgSubmit(event) {
1965
+ if (this.formGroupDirective.invalid) {
1966
+ focusInvalidField(this.formGroupDirective, this.elementRef);
1967
+ }
1968
+ else {
1969
+ this.sixSubmit.emit(event);
1970
+ }
1971
+ }
1972
+ constructor(elementRef, formGroupDirective) {
1973
+ this.elementRef = elementRef;
1974
+ this.formGroupDirective = formGroupDirective;
1975
+ /**
1976
+ * Emits an event when the form is valid and the form submission has been triggered.
1977
+ */
1978
+ this.sixSubmit = new EventEmitter();
1979
+ }
1980
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
1981
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormDirective, isStandalone: false, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 }); }
1982
+ }
1983
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, decorators: [{
1984
+ type: Directive,
1985
+ args: [{
1986
+ selector: 'form[sixForm]',
1987
+ standalone: false,
1988
+ }]
1989
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
1990
+ type: Output
1991
+ }], onNgSubmit: [{
1992
+ type: HostListener,
1993
+ args: ['ngSubmit', ['$event']]
1994
+ }] } });
1995
+ /**
1996
+ * This directive provides a utility method, that marks all form controls
1997
+ * as touched and dirty, and focuses the first invalid form element.
1998
+ *
1999
+ * To utilize this directive, apply it to an Angular form.
2000
+ * ```html
2001
+ * <form [formGroup]="form" sixFormUtil (ngSubmit)="onSubmit($event)">
2002
+ * <!-- form content -->
2003
+ * </form>
2004
+ * ```
2005
+ *
2006
+ * Then, get a reference to the directive and invoke `focusInvalidField()` if the
2007
+ * form is invalid:
2008
+ * ```ts
2009
+ * @ViewChild(SixFormUtilDirective) sixFormUtil!: SixFormUtilDirective;
2010
+ * // ...
2011
+ * onSubmit() {
2012
+ * if (this.form.invalid) {
2013
+ * this.sixFormUtil.focusInvalidField();
2014
+ * } else {
2015
+ * // ...
2016
+ * }
2017
+ * }
2018
+ * ```
2019
+ */
2020
+ class SixFormUtilDirective {
2021
+ constructor(elementRef, formGroupDirective) {
2022
+ this.elementRef = elementRef;
2023
+ this.formGroupDirective = formGroupDirective;
2024
+ }
2025
+ /** markAllControlsAsDirty(Object.values(formGroup.controls));
2026
+ * Marks all form controls as touched and dirty, and focuses the first
2027
+ * invalid form element.
2028
+ */
2029
+ focusInvalidField() {
2030
+ focusInvalidField(this.formGroupDirective, this.elementRef);
2031
+ }
2032
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
2033
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 }); }
2034
+ }
2035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, decorators: [{
2036
+ type: Directive,
2037
+ args: [{
2038
+ selector: '[sixFormUtil]',
2039
+ standalone: false,
2040
+ }]
2041
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
2042
+ function focusInvalidField(formGroupDirective, formElement) {
2043
+ formGroupDirective.form.markAllAsTouched();
2044
+ markAllAsDirty([formGroupDirective.form]);
2045
+ const invalidElement = getInvalidElement(formElement.nativeElement);
2046
+ if ('setFocus' in invalidElement && typeof invalidElement?.setFocus === 'function') {
2047
+ invalidElement.setFocus();
2048
+ }
2049
+ if ('focus' in invalidElement && typeof invalidElement?.focus === 'function') {
2050
+ invalidElement.focus();
2051
+ }
2052
+ }
2053
+ function getInvalidElement(parent) {
2054
+ const invalidElement = parent.querySelector('.ng-invalid');
2055
+ if (invalidElement == null) {
2056
+ return parent;
2057
+ }
2058
+ return getInvalidElement(invalidElement);
2059
+ }
2060
+ function markAllAsDirty(controls) {
2061
+ controls.forEach((control) => {
2062
+ if (control instanceof FormControl) {
2063
+ control.markAsDirty({ onlySelf: true });
2064
+ }
2065
+ else if (control instanceof FormGroup) {
2066
+ control.markAsDirty({ onlySelf: true });
2067
+ markAllAsDirty(Object.values(control.controls));
2068
+ }
2069
+ else if (control instanceof FormArray) {
2070
+ control.markAsDirty({ onlySelf: true });
2071
+ markAllAsDirty(control.controls);
2072
+ }
2073
+ });
2074
+ }
2075
+
2076
+ class SixUiLibraryValidators {
2077
+ static minDate(mindate) {
2078
+ return (control) => {
2079
+ if (control.value == null)
2080
+ return null;
2081
+ const actualDate = control.value;
2082
+ return actualDate.getTime() >= mindate.getTime() ? null : { mindate: { mindate, actual: actualDate } };
2083
+ };
2084
+ }
2085
+ static maxDate(maxdate) {
2086
+ return (control) => {
2087
+ if (control.value == null)
2088
+ return null;
2089
+ const actualDate = control.value;
2090
+ return actualDate.getTime() <= maxdate.getTime() ? null : { maxdate: { maxdate, actual: actualDate } };
2091
+ };
2092
+ }
2093
+ static allowedDates(allowedDates = () => true) {
2094
+ return (control) => {
2095
+ if (control.value == null)
2096
+ return null;
2097
+ const allowed = allowedDates(control.value);
2098
+ return allowed ? null : { invaliddate: { actual: control.value } };
2099
+ };
2100
+ }
2101
+ static minDateIso(mindate) {
2102
+ return (control) => {
2103
+ if (control.value == null || control.value === '')
2104
+ return null;
2105
+ const actualDate = control.value;
2106
+ return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
2107
+ };
2108
+ }
2109
+ static maxDateIso(maxdate) {
2110
+ return (control) => {
2111
+ if (control.value == null || control.value === '')
2112
+ return null;
2113
+ const actualDate = control.value;
2114
+ return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
2115
+ };
2116
+ }
2117
+ static allowedDatesIso(allowedDates = () => true) {
2118
+ return (control) => {
2119
+ if (control.value == null || control.value === '')
2120
+ return null;
2121
+ const allowed = allowedDates(control.value);
2122
+ return allowed ? null : { invaliddate: { actual: control.value } };
2123
+ };
2124
+ }
2125
+ }
2126
+ class MinDateValidator {
2127
+ validate(control) {
2128
+ if (this.min != null) {
2129
+ return SixUiLibraryValidators.minDate(this.min)(control);
2130
+ }
2131
+ return null;
2132
+ }
2133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2134
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MinDateValidator, isStandalone: false, selector: "six-datepicker[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 }); }
2135
+ }
2136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, decorators: [{
2137
+ type: Directive,
2138
+ args: [{
2139
+ selector: 'six-datepicker[min]',
2140
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
2141
+ standalone: false,
2142
+ }]
2143
+ }], propDecorators: { min: [{
2144
+ type: Input
2145
+ }] } });
2146
+ class MaxDateValidator {
2147
+ validate(control) {
2148
+ if (this.max != null) {
2149
+ return SixUiLibraryValidators.maxDate(this.max)(control);
2150
+ }
2151
+ return null;
2152
+ }
2153
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2154
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MaxDateValidator, isStandalone: false, selector: "six-datepicker[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 }); }
2155
+ }
2156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, decorators: [{
2157
+ type: Directive,
2158
+ args: [{
2159
+ selector: 'six-datepicker[max]',
2160
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
2161
+ standalone: false,
2162
+ }]
2163
+ }], propDecorators: { max: [{
2164
+ type: Input
2165
+ }] } });
2166
+ class AllowedDatesValidator {
2167
+ constructor() {
2168
+ this.allowedDates = () => true;
2169
+ }
2170
+ validate(control) {
2171
+ return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
2172
+ }
2173
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2174
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: AllowedDatesValidator, isStandalone: false, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 }); }
2175
+ }
2176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, decorators: [{
2177
+ type: Directive,
2178
+ args: [{
2179
+ selector: 'six-datepicker[allowedDates]',
2180
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
2181
+ standalone: false,
2182
+ }]
2183
+ }], propDecorators: { allowedDates: [{
2184
+ type: Input
2185
+ }] } });
2186
+ class MinDateValidatorIso {
2187
+ validate(control) {
2188
+ if (this.min != null) {
2189
+ return SixUiLibraryValidators.minDateIso(this.min)(control);
2190
+ }
2191
+ return null;
2192
+ }
2193
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2194
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MinDateValidatorIso, isStandalone: false, selector: "six-date[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }], ngImport: i0 }); }
2195
+ }
2196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, decorators: [{
2197
+ type: Directive,
2198
+ args: [{
2199
+ selector: 'six-date[min]',
2200
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
2201
+ standalone: false,
2202
+ }]
2203
+ }], propDecorators: { min: [{
2204
+ type: Input
2205
+ }] } });
2206
+ class MaxDateValidatorIso {
2207
+ validate(control) {
2208
+ if (this.max != null) {
2209
+ return SixUiLibraryValidators.maxDateIso(this.max)(control);
2210
+ }
2211
+ return null;
2212
+ }
2213
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2214
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MaxDateValidatorIso, isStandalone: false, selector: "six-date[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }], ngImport: i0 }); }
2215
+ }
2216
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
2217
+ type: Directive,
2218
+ args: [{
2219
+ selector: 'six-date[max]',
2220
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
2221
+ standalone: false,
2222
+ }]
2223
+ }], propDecorators: { max: [{
2224
+ type: Input
2225
+ }] } });
2226
+ class AllowedDatesValidatorIso {
2227
+ constructor() {
2228
+ this.allowedDates = () => true;
2229
+ }
2230
+ validate(control) {
2231
+ return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
2232
+ }
2233
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2234
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: AllowedDatesValidatorIso, isStandalone: false, selector: "six-date[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }], ngImport: i0 }); }
2235
+ }
2236
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
2237
+ type: Directive,
2238
+ args: [{
2239
+ selector: 'six-date[allowedDates]',
2240
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
2241
+ standalone: false,
2242
+ }]
2243
+ }], propDecorators: { allowedDates: [{
2244
+ type: Input
2245
+ }] } });
2246
+ class MinValidator {
2247
+ validate(control) {
2248
+ return Validators.min(toFloat(this.min))(control);
2249
+ }
2250
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2251
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MinValidator, isStandalone: false, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 }); }
2252
+ }
2253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, decorators: [{
2254
+ type: Directive,
2255
+ args: [{
2256
+ selector: 'six-input[type=number][min]',
2257
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
2258
+ standalone: false,
2259
+ }]
2260
+ }], propDecorators: { min: [{
2261
+ type: Input
2262
+ }] } });
2263
+ class MaxValidator {
2264
+ validate(control) {
2265
+ return Validators.max(toFloat(this.max))(control);
2266
+ }
2267
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2268
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MaxValidator, isStandalone: false, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 }); }
2269
+ }
2270
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, decorators: [{
2271
+ type: Directive,
2272
+ args: [{
2273
+ selector: 'six-input[type=number][max]',
2274
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
2275
+ standalone: false,
2276
+ }]
2277
+ }], propDecorators: { max: [{
2278
+ type: Input
2279
+ }] } });
2280
+ function toFloat(value) {
2281
+ return typeof value === 'number' ? value : parseFloat(value);
2282
+ }
2283
+
2284
+ class SelectValueAccessor extends ValueAccessor {
2285
+ constructor(injector, el) {
2286
+ super(injector, el);
2287
+ }
2288
+ handleChangeEvent(el) {
2289
+ this.handleValueChange(el, el.value);
2290
+ }
2291
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2292
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SelectValueAccessor, isStandalone: false, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2293
+ {
2294
+ provide: NG_VALUE_ACCESSOR,
2295
+ useExisting: SelectValueAccessor,
2296
+ multi: true,
2297
+ },
2298
+ ], usesInheritance: true, ngImport: i0 }); }
2299
+ }
2300
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, decorators: [{
2301
+ type: Directive,
2302
+ args: [{
2303
+ selector: 'six-select',
2304
+ providers: [
2305
+ {
2306
+ provide: NG_VALUE_ACCESSOR,
2307
+ useExisting: SelectValueAccessor,
2308
+ multi: true,
2309
+ },
2310
+ ],
2311
+ standalone: false,
2312
+ }]
2313
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2314
+ type: HostListener,
2315
+ args: ['change', ['$event.target']]
2316
+ }] } });
2317
+
2318
+ class CheckboxValueAccessor extends ValueAccessor {
2319
+ constructor(injector, el) {
2320
+ super(injector, el);
2321
+ }
2322
+ handleChangeEvent(el) {
2323
+ this.handleValueChange(el, el.checked);
2324
+ }
2325
+ writeValue(value) {
2326
+ this.el.nativeElement.checked = value === true;
2327
+ this.updateValidation();
2328
+ }
2329
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2330
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: CheckboxValueAccessor, isStandalone: false, selector: "six-checkbox", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2331
+ {
2332
+ provide: NG_VALUE_ACCESSOR,
2333
+ useExisting: CheckboxValueAccessor,
2334
+ multi: true,
2335
+ },
2336
+ ], usesInheritance: true, ngImport: i0 }); }
2337
+ }
2338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
2339
+ type: Directive,
2340
+ args: [{
2341
+ selector: 'six-checkbox',
2342
+ providers: [
2343
+ {
2344
+ provide: NG_VALUE_ACCESSOR,
2345
+ useExisting: CheckboxValueAccessor,
2346
+ multi: true,
2347
+ },
2348
+ ],
2349
+ standalone: false,
2350
+ }]
2351
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2352
+ type: HostListener,
2353
+ args: ['change', ['$event.target']]
2354
+ }] } });
2355
+
2356
+ class RangeValueAccessor extends ValueAccessor {
2357
+ constructor(injector, el) {
2358
+ super(injector, el);
2359
+ }
2360
+ handleInputEvent(el) {
2361
+ this.handleValueChange(el, el.value);
2362
+ }
2363
+ registerOnChange(fn) {
2364
+ super.registerOnChange((value) => {
2365
+ fn(value === '' ? null : parseFloat(value));
2366
+ });
2367
+ }
2368
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2369
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: RangeValueAccessor, isStandalone: false, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
2370
+ {
2371
+ provide: NG_VALUE_ACCESSOR,
2372
+ useExisting: RangeValueAccessor,
2373
+ multi: true,
2374
+ },
2375
+ ], usesInheritance: true, ngImport: i0 }); }
2376
+ }
2377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, decorators: [{
2378
+ type: Directive,
2379
+ args: [{
2380
+ selector: 'six-range',
2381
+ providers: [
2382
+ {
2383
+ provide: NG_VALUE_ACCESSOR,
2384
+ useExisting: RangeValueAccessor,
2385
+ multi: true,
2386
+ },
2387
+ ],
2388
+ standalone: false,
2389
+ }]
2390
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2391
+ type: HostListener,
2392
+ args: ['input', ['$event.target']]
2393
+ }] } });
2394
+
2395
+ class SwitchValueAccessor extends ValueAccessor {
2396
+ constructor(injector, el) {
2397
+ super(injector, el);
2398
+ }
2399
+ handleChangeEvent(el) {
2400
+ this.handleValueChange(el, el.checked);
2401
+ }
2402
+ writeValue(value) {
2403
+ this.el.nativeElement.checked = value === true;
2404
+ this.updateValidation();
2405
+ }
2406
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2407
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SwitchValueAccessor, isStandalone: false, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2408
+ {
2409
+ provide: NG_VALUE_ACCESSOR,
2410
+ useExisting: SwitchValueAccessor,
2411
+ multi: true,
2412
+ },
2413
+ ], usesInheritance: true, ngImport: i0 }); }
2414
+ }
2415
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, decorators: [{
2416
+ type: Directive,
2417
+ args: [{
2418
+ selector: 'six-switch',
2419
+ providers: [
2420
+ {
2421
+ provide: NG_VALUE_ACCESSOR,
2422
+ useExisting: SwitchValueAccessor,
2423
+ multi: true,
2424
+ },
2425
+ ],
2426
+ standalone: false,
2427
+ }]
2428
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2429
+ type: HostListener,
2430
+ args: ['change', ['$event.target']]
2431
+ }] } });
2432
+
2433
+ class TimepickerValueAccessor extends ValueAccessor {
2434
+ constructor(injector, el) {
2435
+ super(injector, el);
2436
+ }
2437
+ handleChangeEvent(el) {
2438
+ this.handleValueChange(el, el.value);
2439
+ }
2440
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2441
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: TimepickerValueAccessor, isStandalone: false, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2442
+ {
2443
+ provide: NG_VALUE_ACCESSOR,
2444
+ useExisting: TimepickerValueAccessor,
2445
+ multi: true,
2446
+ },
2447
+ ], usesInheritance: true, ngImport: i0 }); }
2448
+ }
2449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
2450
+ type: Directive,
2451
+ args: [{
2452
+ selector: 'six-timepicker',
2453
+ providers: [
2454
+ {
2455
+ provide: NG_VALUE_ACCESSOR,
2456
+ useExisting: TimepickerValueAccessor,
2457
+ multi: true,
2458
+ },
2459
+ ],
2460
+ standalone: false,
2461
+ }]
2462
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2463
+ type: HostListener,
2464
+ args: ['change', ['$event.target']]
2465
+ }] } });
2466
+
2467
+ /**
2468
+ * Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
2469
+ */
2470
+ class SixRouterLinkDirective {
2471
+ constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
2472
+ this.locationStrategy = locationStrategy;
2473
+ this.elementRef = elementRef;
2474
+ this.router = router;
2475
+ this.renderer = renderer;
2476
+ this.routerLinkDirective = routerLinkDirective;
2477
+ }
2478
+ onClick(event) {
2479
+ // Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
2480
+ event.preventDefault();
2481
+ }
2482
+ ngOnInit() {
2483
+ this.updateTargetUrlAndHref();
2484
+ }
2485
+ ngOnChanges() {
2486
+ this.updateTargetUrlAndHref();
2487
+ }
2488
+ updateTargetUrlAndHref() {
2489
+ if (this.routerLinkDirective?.urlTree) {
2490
+ const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
2491
+ this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
2492
+ // Remove the `tabindex` attribute to prevent redundant focus behavior.
2493
+ // Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
2494
+ // but custom components like `six-button` already handle focusability.
2495
+ // Keeping the tabindex would cause the element to receive focus twice.
2496
+ this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
2497
+ }
2498
+ }
2499
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, deps: [{ token: i1$1.LocationStrategy }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.Renderer2 }, { token: i2.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
2500
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixRouterLinkDirective, isStandalone: false, selector: "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 }); }
2501
+ }
2502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
2503
+ type: Directive,
2504
+ args: [{
2505
+ selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
2506
+ standalone: false,
2507
+ }]
2508
+ }], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
2509
+ type: Optional
2510
+ }] }], propDecorators: { onClick: [{
2511
+ type: HostListener,
2512
+ args: ['click', ['$event']]
2513
+ }], routerLink: [{
2514
+ type: Input
2515
+ }], queryParams: [{
2516
+ type: Input
2517
+ }], fragment: [{
2518
+ type: Input
2519
+ }], queryParamsHandling: [{
2520
+ type: Input
2521
+ }], relativeTo: [{
2522
+ type: Input
2523
+ }] } });
2524
+
2525
+ /**
2526
+ * Enables Angular router integration for the six-sidebar component.
2527
+ *
2528
+ * When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
2529
+ * it activates automatic route-based selection for sidebar items and groups.
2530
+ *
2531
+ * @recommended Add this directive to enable automatic route-based navigation in sidebars.
2532
+ *
2533
+ * @example
2534
+ * ```html
2535
+ * <six-sidebar sixRouterLinkActive>
2536
+ * <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
2537
+ * <six-sidebar-item-group>
2538
+ * <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
2539
+ * </six-sidebar-item-group>
2540
+ * </six-sidebar>
2541
+ * ```
2542
+ */
2543
+ class ActiveSidebarDirective {
2544
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2545
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
2546
+ }
2547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
2548
+ type: Directive,
2549
+ args: [{
2550
+ selector: 'six-sidebar[sixRouterLinkActive]',
2551
+ standalone: false,
2552
+ }]
2553
+ }] });
2554
+ /**
2555
+ * Enhances six-sidebar-item with Angular router integration.
2556
+ *
2557
+ * This directive automatically manages the 'selected' state of sidebar items based on the current route.
2558
+ * When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
2559
+ *
2560
+ * @requires RouterLinkActive
2561
+ * @optional ActiveSidebarDirective - If present, enables route-based selection
2562
+ */
2563
+ class ActiveSidebarItemDirective {
2564
+ constructor() {
2565
+ this.routerLinkActive = inject(RouterLinkActive);
2566
+ this.sidebarItem = inject(SixSidebarItem);
2567
+ this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
2568
+ }
2569
+ get selected() {
2570
+ if (this.activeSidebarDirective == null) {
2571
+ return this.sidebarItem.selected;
2572
+ }
2573
+ else {
2574
+ return this.routerLinkActive.isActive;
2575
+ }
2576
+ }
2577
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2578
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarItemDirective, isStandalone: false, selector: "six-sidebar-item", host: { properties: { "selected": "this.selected" } }, hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 }); }
2579
+ }
2580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
2581
+ type: Directive,
2582
+ args: [{
2583
+ selector: 'six-sidebar-item',
2584
+ hostDirectives: [RouterLinkActive],
2585
+ standalone: false,
2586
+ }]
2587
+ }], propDecorators: { selected: [{
2588
+ type: HostBinding,
2589
+ args: ['selected']
2590
+ }] } });
2591
+ /**
2592
+ * Enhances six-sidebar-item-group with Angular router integration.
2593
+ *
2594
+ * This directive automatically manages the 'open' state of sidebar groups based on the active route.
2595
+ * When a child route is active, the group automatically expands to show the active item.
2596
+ *
2597
+ * @requires RouterLinkActive
2598
+ * @optional ActiveSidebarDirective - If present, enables route-based expansion
2599
+ */
2600
+ class ActiveSidebarItemGroupDirective {
2601
+ constructor() {
2602
+ this.routerLinkActive = inject(RouterLinkActive);
2603
+ this.sidebarItemGroup = inject(SixSidebarItemGroup);
2604
+ this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
2605
+ }
2606
+ get open() {
2607
+ if (this.activeSidebarDirective == null) {
2608
+ return this.sidebarItemGroup.open;
2609
+ }
2610
+ if (this.sidebarItems?.length > 0) {
2611
+ return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
2612
+ }
2613
+ return this.routerLinkActive.isActive;
2614
+ }
2615
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2616
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarItemGroupDirective, isStandalone: false, selector: "six-sidebar-item-group", host: { properties: { "open": "this.open" } }, queries: [{ propertyName: "sidebarItems", predicate: SixSidebarItem }], hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 }); }
2617
+ }
2618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
2619
+ type: Directive,
2620
+ args: [{
2621
+ selector: 'six-sidebar-item-group',
2622
+ hostDirectives: [RouterLinkActive],
2623
+ standalone: false,
2624
+ }]
2625
+ }], propDecorators: { sidebarItems: [{
2626
+ type: ContentChildren,
2627
+ args: [SixSidebarItem]
2628
+ }], open: [{
2629
+ type: HostBinding,
2630
+ args: ['open']
2631
+ }] } });
2632
+
2633
+ class DateValueAccessor extends ValueAccessor {
2634
+ constructor(injector, el) {
2635
+ super(injector, el);
2636
+ }
2637
+ handleInputEvent(el) {
2638
+ this.handleValueChange(el, el.value);
2639
+ }
2640
+ writeValue(value) {
2641
+ this.el.nativeElement.value = value == null ? '' : value;
2642
+ this.updateValidation();
2643
+ }
2644
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2645
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: DateValueAccessor, isStandalone: false, selector: "six-date", host: { listeners: { "change": "handleInputEvent($event.target)" } }, providers: [
2646
+ {
2647
+ provide: NG_VALUE_ACCESSOR,
2648
+ useExisting: DateValueAccessor,
2649
+ multi: true,
2650
+ },
2651
+ ], usesInheritance: true, ngImport: i0 }); }
2652
+ }
2653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, decorators: [{
2654
+ type: Directive,
2655
+ args: [{
2656
+ selector: 'six-date',
2657
+ providers: [
2658
+ {
2659
+ provide: NG_VALUE_ACCESSOR,
2660
+ useExisting: DateValueAccessor,
2661
+ multi: true,
2662
+ },
2663
+ ],
2664
+ standalone: false,
2665
+ }]
2666
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2667
+ type: HostListener,
2668
+ args: ['change', ['$event.target']]
2669
+ }] } });
2670
+
2671
+ class UiLibraryAngularModule {
2672
+ static forRoot(customValidationMessagesService, config) {
2673
+ const mergedConfig = {
2674
+ ...DEFAULT_UI_LIBRARY_CONFIG,
2675
+ ...config,
2676
+ };
2677
+ return {
2678
+ ngModule: UiLibraryAngularModule,
2679
+ providers: [
2680
+ {
2681
+ provide: APP_INITIALIZER,
2682
+ useFactory: () => async () => defineCustomElements(),
2683
+ multi: true,
2684
+ },
2685
+ { provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
2686
+ { provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
2687
+ ],
2688
+ };
2689
+ }
2690
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2691
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, declarations: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
2692
+ // value accessors
2693
+ TextValueAccessor,
2694
+ NumericValueAccessor,
2695
+ RadioValueAccessor,
2696
+ DatepickerValueAccessor,
2697
+ DateValueAccessor,
2698
+ TimepickerValueAccessor,
2699
+ SelectValueAccessor,
2700
+ CheckboxValueAccessor,
2701
+ SwitchValueAccessor,
2702
+ RangeValueAccessor,
2703
+ // validators
2704
+ MinValidator,
2705
+ MaxValidator,
2706
+ MinDateValidator,
2707
+ MaxDateValidator,
2708
+ AllowedDatesValidator,
2709
+ MinDateValidatorIso,
2710
+ MaxDateValidatorIso,
2711
+ AllowedDatesValidatorIso,
2712
+ // form helpers
2713
+ SixFormDirective,
2714
+ SixFormUtilDirective,
2715
+ // router link directive
2716
+ SixRouterLinkDirective,
2717
+ // sidebar helpers
2718
+ ActiveSidebarItemDirective,
2719
+ ActiveSidebarItemGroupDirective,
2720
+ ActiveSidebarDirective], exports: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
2721
+ // value accessors
2722
+ TextValueAccessor,
2723
+ NumericValueAccessor,
2724
+ RadioValueAccessor,
2725
+ DatepickerValueAccessor,
2726
+ DateValueAccessor,
2727
+ TimepickerValueAccessor,
2728
+ SelectValueAccessor,
2729
+ CheckboxValueAccessor,
2730
+ SwitchValueAccessor,
2731
+ RangeValueAccessor,
2732
+ // validators
2733
+ MinValidator,
2734
+ MaxValidator,
2735
+ MinDateValidator,
2736
+ MaxDateValidator,
2737
+ AllowedDatesValidator,
2738
+ MinDateValidatorIso,
2739
+ MaxDateValidatorIso,
2740
+ AllowedDatesValidatorIso,
2741
+ // form helpers
2742
+ SixFormDirective,
2743
+ SixFormUtilDirective,
2744
+ // router link directive
2745
+ SixRouterLinkDirective,
2746
+ // sidebar helpers
2747
+ ActiveSidebarItemDirective,
2748
+ ActiveSidebarItemGroupDirective,
2749
+ ActiveSidebarDirective] }); }
2750
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule }); }
2751
+ }
2752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
2753
+ type: NgModule,
2754
+ args: [{
2755
+ declarations: [
2756
+ // proxies
2757
+ ...DIRECTIVES,
2758
+ // value accessors
2759
+ TextValueAccessor,
2760
+ NumericValueAccessor,
2761
+ RadioValueAccessor,
2762
+ DatepickerValueAccessor,
2763
+ DateValueAccessor,
2764
+ TimepickerValueAccessor,
2765
+ SelectValueAccessor,
2766
+ CheckboxValueAccessor,
2767
+ SwitchValueAccessor,
2768
+ RangeValueAccessor,
2769
+ // validators
2770
+ MinValidator,
2771
+ MaxValidator,
2772
+ MinDateValidator,
2773
+ MaxDateValidator,
2774
+ AllowedDatesValidator,
2775
+ MinDateValidatorIso,
2776
+ MaxDateValidatorIso,
2777
+ AllowedDatesValidatorIso,
2778
+ // form helpers
2779
+ SixFormDirective,
2780
+ SixFormUtilDirective,
2781
+ // router link directive
2782
+ SixRouterLinkDirective,
2783
+ // sidebar helpers
2784
+ ActiveSidebarItemDirective,
2785
+ ActiveSidebarItemGroupDirective,
2786
+ ActiveSidebarDirective,
2787
+ ],
2788
+ imports: [],
2789
+ exports: [
2790
+ // proxies
2791
+ ...DIRECTIVES,
2792
+ // value accessors
2793
+ TextValueAccessor,
2794
+ NumericValueAccessor,
2795
+ RadioValueAccessor,
2796
+ DatepickerValueAccessor,
2797
+ DateValueAccessor,
2798
+ TimepickerValueAccessor,
2799
+ SelectValueAccessor,
2800
+ CheckboxValueAccessor,
2801
+ SwitchValueAccessor,
2802
+ RangeValueAccessor,
2803
+ // validators
2804
+ MinValidator,
2805
+ MaxValidator,
2806
+ MinDateValidator,
2807
+ MaxDateValidator,
2808
+ AllowedDatesValidator,
2809
+ MinDateValidatorIso,
2810
+ MaxDateValidatorIso,
2811
+ AllowedDatesValidatorIso,
2812
+ // form helpers
2813
+ SixFormDirective,
2814
+ SixFormUtilDirective,
2815
+ // router link directive
2816
+ SixRouterLinkDirective,
2817
+ // sidebar helpers
2818
+ ActiveSidebarItemDirective,
2819
+ ActiveSidebarItemGroupDirective,
2820
+ ActiveSidebarDirective,
2821
+ ],
2822
+ }]
2823
+ }] });
2824
+
2825
+ class AlertService {
2826
+ constructor() {
2827
+ this.ngZone = inject(NgZone);
2828
+ }
2829
+ /**
2830
+ * Displays an alert as a toast notification.
2831
+ */
2832
+ showAlert(message, alertType, duration, iconName) {
2833
+ this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
2834
+ }
2835
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2836
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, providedIn: 'root' }); }
2837
+ }
2838
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, decorators: [{
2839
+ type: Injectable,
2840
+ args: [{ providedIn: 'root' }]
2841
+ }] });
2842
+
2843
+ /*
2844
+ * Public API Surface of ui-library-angular
2845
+ */
2846
+
2847
+ /**
2848
+ * Generated bundle index. Do not edit.
2849
+ */
2850
+
2851
+ export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
2852
+ //# sourceMappingURL=six-group-ui-library-angular.mjs.map