@six-group/ui-library-angular 0.0.0-insider.b50c229 → 0.0.0-insider.b85326c

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 (40) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +6 -22
  3. package/fesm2022/six-group-ui-library-angular.mjs +2825 -0
  4. package/fesm2022/six-group-ui-library-angular.mjs.map +1 -0
  5. package/lib/control-value-accessors/date-value-accessor.d.ts +10 -0
  6. package/lib/control-value-accessors/radio-value-accessor.d.ts +1 -1
  7. package/lib/control-value-accessors/value-accessor.d.ts +4 -2
  8. package/lib/link/six-router-link.directive.d.ts +26 -0
  9. package/lib/services/alert.service.d.ts +11 -0
  10. package/lib/sidebar/active-sidebar.directive.d.ts +59 -0
  11. package/lib/stencil-generated/components.d.ts +171 -143
  12. package/lib/stencil-generated/index.d.ts +1 -1
  13. package/lib/ui-library-angular-config.d.ts +6 -0
  14. package/lib/ui-library-angular.module.d.ts +13 -9
  15. package/lib/validators/six-ui-library-validators.d.ts +34 -7
  16. package/package.json +11 -13
  17. package/public-api.d.ts +4 -0
  18. package/esm2020/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
  19. package/esm2020/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
  20. package/esm2020/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
  21. package/esm2020/lib/control-value-accessors/radio-value-accessor.mjs +0 -62
  22. package/esm2020/lib/control-value-accessors/range-value-accessor.mjs +0 -42
  23. package/esm2020/lib/control-value-accessors/select-value-accessor.mjs +0 -37
  24. package/esm2020/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
  25. package/esm2020/lib/control-value-accessors/text-value-accessor.mjs +0 -37
  26. package/esm2020/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
  27. package/esm2020/lib/control-value-accessors/value-accessor.mjs +0 -143
  28. package/esm2020/lib/form/six-form.directive.mjs +0 -134
  29. package/esm2020/lib/services/validation-messages.service.mjs +0 -15
  30. package/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +0 -51
  31. package/esm2020/lib/stencil-generated/components.mjs +0 -1349
  32. package/esm2020/lib/stencil-generated/index.mjs +0 -56
  33. package/esm2020/lib/ui-library-angular.module.mjs +0 -127
  34. package/esm2020/lib/validators/six-ui-library-validators.mjs +0 -116
  35. package/esm2020/public-api.mjs +0 -25
  36. package/esm2020/six-group-ui-library-angular.mjs +0 -5
  37. package/fesm2015/six-group-ui-library-angular.mjs +0 -2262
  38. package/fesm2015/six-group-ui-library-angular.mjs.map +0 -1
  39. package/fesm2020/six-group-ui-library-angular.mjs +0 -2259
  40. package/fesm2020/six-group-ui-library-angular.mjs.map +0 -1
@@ -0,0 +1,2825 @@
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
+ standalone: false,
91
+ selector: 'six-alert',
92
+ changeDetection: ChangeDetectionStrategy.OnPush,
93
+ template: '<ng-content></ng-content>',
94
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
95
+ inputs: ['closable', 'duration', 'open', 'type'],
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
+ standalone: false,
116
+ selector: 'six-avatar',
117
+ changeDetection: ChangeDetectionStrategy.OnPush,
118
+ template: '<ng-content></ng-content>',
119
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
120
+ inputs: ['alt', 'image', 'initials', 'shape'],
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
+ standalone: false,
141
+ selector: 'six-badge',
142
+ changeDetection: ChangeDetectionStrategy.OnPush,
143
+ template: '<ng-content></ng-content>',
144
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
145
+ inputs: ['pill', 'pulse', 'type'],
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
+ standalone: false,
168
+ selector: 'six-button',
169
+ changeDetection: ChangeDetectionStrategy.OnPush,
170
+ template: '<ng-content></ng-content>',
171
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
172
+ inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
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
+ standalone: false,
191
+ selector: 'six-card',
192
+ changeDetection: ChangeDetectionStrategy.OnPush,
193
+ template: '<ng-content></ng-content>',
194
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
195
+ inputs: [],
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
+ standalone: false,
218
+ selector: 'six-checkbox',
219
+ changeDetection: ChangeDetectionStrategy.OnPush,
220
+ template: '<ng-content></ng-content>',
221
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
222
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
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
+ standalone: false,
245
+ selector: 'six-date',
246
+ changeDetection: ChangeDetectionStrategy.OnPush,
247
+ template: '<ng-content></ng-content>',
248
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
249
+ inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
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
+ standalone: false,
272
+ selector: 'six-datepicker',
273
+ changeDetection: ChangeDetectionStrategy.OnPush,
274
+ template: '<ng-content></ng-content>',
275
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
276
+ 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'],
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
+ standalone: false,
299
+ selector: 'six-details',
300
+ changeDetection: ChangeDetectionStrategy.OnPush,
301
+ template: '<ng-content></ng-content>',
302
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
303
+ inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
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
+ standalone: false,
326
+ selector: 'six-dialog',
327
+ changeDetection: ChangeDetectionStrategy.OnPush,
328
+ template: '<ng-content></ng-content>',
329
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
330
+ inputs: ['label', 'noHeader', 'open'],
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
+ standalone: false,
353
+ selector: 'six-drawer',
354
+ changeDetection: ChangeDetectionStrategy.OnPush,
355
+ template: '<ng-content></ng-content>',
356
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
357
+ inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
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
+ standalone: false,
380
+ selector: 'six-dropdown',
381
+ changeDetection: ChangeDetectionStrategy.OnPush,
382
+ template: '<ng-content></ng-content>',
383
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
384
+ inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
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
+ standalone: false,
403
+ selector: 'six-error',
404
+ changeDetection: ChangeDetectionStrategy.OnPush,
405
+ template: '<ng-content></ng-content>',
406
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
407
+ inputs: [],
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
+ standalone: false,
428
+ selector: 'six-error-page',
429
+ changeDetection: ChangeDetectionStrategy.OnPush,
430
+ template: '<ng-content></ng-content>',
431
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
432
+ inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language'],
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
+ standalone: false,
451
+ selector: 'six-file-list',
452
+ changeDetection: ChangeDetectionStrategy.OnPush,
453
+ template: '<ng-content></ng-content>',
454
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
455
+ inputs: [],
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
+ standalone: false,
477
+ selector: 'six-file-list-item',
478
+ changeDetection: ChangeDetectionStrategy.OnPush,
479
+ template: '<ng-content></ng-content>',
480
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
481
+ inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size'],
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
+ standalone: false,
503
+ selector: 'six-file-upload',
504
+ changeDetection: ChangeDetectionStrategy.OnPush,
505
+ template: '<ng-content></ng-content>',
506
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
507
+ inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
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
+ standalone: false,
526
+ selector: 'six-footer',
527
+ changeDetection: ChangeDetectionStrategy.OnPush,
528
+ template: '<ng-content></ng-content>',
529
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
530
+ inputs: [],
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
+ standalone: false,
551
+ selector: 'six-group-label',
552
+ changeDetection: ChangeDetectionStrategy.OnPush,
553
+ template: '<ng-content></ng-content>',
554
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
555
+ inputs: ['disabled', 'helpText', 'label', 'required', 'size'],
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
+ standalone: false,
576
+ selector: 'six-header',
577
+ changeDetection: ChangeDetectionStrategy.OnPush,
578
+ template: '<ng-content></ng-content>',
579
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
580
+ inputs: ['openSearch', 'shiftContent'],
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
+ standalone: false,
601
+ selector: 'six-header-dropdown-item',
602
+ changeDetection: ChangeDetectionStrategy.OnPush,
603
+ template: '<ng-content></ng-content>',
604
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
605
+ inputs: ['filter', 'filterPlaceholder'],
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
+ standalone: false,
626
+ selector: 'six-header-item',
627
+ changeDetection: ChangeDetectionStrategy.OnPush,
628
+ template: '<ng-content></ng-content>',
629
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
630
+ inputs: ['active'],
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
+ standalone: false,
651
+ selector: 'six-header-menu-button',
652
+ changeDetection: ChangeDetectionStrategy.OnPush,
653
+ template: '<ng-content></ng-content>',
654
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
655
+ inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
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
+ standalone: false,
676
+ selector: 'six-icon',
677
+ changeDetection: ChangeDetectionStrategy.OnPush,
678
+ template: '<ng-content></ng-content>',
679
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
680
+ inputs: ['filled', 'size'],
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
+ standalone: false,
701
+ selector: 'six-icon-button',
702
+ changeDetection: ChangeDetectionStrategy.OnPush,
703
+ template: '<ng-content></ng-content>',
704
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
705
+ inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
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
+ standalone: false,
728
+ selector: 'six-input',
729
+ changeDetection: ChangeDetectionStrategy.OnPush,
730
+ template: '<ng-content></ng-content>',
731
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
732
+ 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'],
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
+ standalone: false,
754
+ selector: 'six-item-picker',
755
+ changeDetection: ChangeDetectionStrategy.OnPush,
756
+ template: '<ng-content></ng-content>',
757
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
758
+ inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value'],
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
+ standalone: false,
780
+ selector: 'six-language-switcher',
781
+ changeDetection: ChangeDetectionStrategy.OnPush,
782
+ template: '<ng-content></ng-content>',
783
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
784
+ inputs: ['languages', 'selected'],
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
+ standalone: false,
805
+ selector: 'six-layout-grid',
806
+ changeDetection: ChangeDetectionStrategy.OnPush,
807
+ template: '<ng-content></ng-content>',
808
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
809
+ inputs: ['columns'],
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
+ standalone: false,
830
+ selector: 'six-logo',
831
+ changeDetection: ChangeDetectionStrategy.OnPush,
832
+ template: '<ng-content></ng-content>',
833
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
834
+ inputs: ['brand'],
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
+ standalone: false,
855
+ selector: 'six-main-container',
856
+ changeDetection: ChangeDetectionStrategy.OnPush,
857
+ template: '<ng-content></ng-content>',
858
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
859
+ inputs: ['padded'],
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
+ standalone: false,
882
+ selector: 'six-menu',
883
+ changeDetection: ChangeDetectionStrategy.OnPush,
884
+ template: '<ng-content></ng-content>',
885
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
886
+ inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
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
+ standalone: false,
905
+ selector: 'six-menu-divider',
906
+ changeDetection: ChangeDetectionStrategy.OnPush,
907
+ template: '<ng-content></ng-content>',
908
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
909
+ inputs: [],
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
+ standalone: false,
931
+ selector: 'six-menu-item',
932
+ changeDetection: ChangeDetectionStrategy.OnPush,
933
+ template: '<ng-content></ng-content>',
934
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
935
+ inputs: ['checkType', 'checked', 'disabled', 'value'],
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
+ standalone: false,
954
+ selector: 'six-menu-label',
955
+ changeDetection: ChangeDetectionStrategy.OnPush,
956
+ template: '<ng-content></ng-content>',
957
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
958
+ inputs: [],
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
+ standalone: false,
979
+ selector: 'six-picto',
980
+ changeDetection: ChangeDetectionStrategy.OnPush,
981
+ template: '<ng-content></ng-content>',
982
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
983
+ inputs: ['size'],
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
+ standalone: false,
1004
+ selector: 'six-progress-bar',
1005
+ changeDetection: ChangeDetectionStrategy.OnPush,
1006
+ template: '<ng-content></ng-content>',
1007
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1008
+ inputs: ['indeterminate', 'percentage'],
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
+ standalone: false,
1029
+ selector: 'six-progress-ring',
1030
+ changeDetection: ChangeDetectionStrategy.OnPush,
1031
+ template: '<ng-content></ng-content>',
1032
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1033
+ inputs: ['percentage', 'size', 'strokeWidth'],
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
+ standalone: false,
1056
+ selector: 'six-radio',
1057
+ changeDetection: ChangeDetectionStrategy.OnPush,
1058
+ template: '<ng-content></ng-content>',
1059
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1060
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
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
+ standalone: false,
1083
+ selector: 'six-range',
1084
+ changeDetection: ChangeDetectionStrategy.OnPush,
1085
+ template: '<ng-content></ng-content>',
1086
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1087
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
1088
+ }]
1089
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1090
+ let SixRoot = class SixRoot {
1091
+ constructor(c, r, z) {
1092
+ this.z = z;
1093
+ c.detach();
1094
+ this.el = r.nativeElement;
1095
+ }
1096
+ 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 }); }
1097
+ 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 }); }
1098
+ };
1099
+ SixRoot = __decorate([
1100
+ ProxyCmp({
1101
+ inputs: ['padded', 'stage', 'version']
1102
+ })
1103
+ ], SixRoot);
1104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRoot, decorators: [{
1105
+ type: Component,
1106
+ args: [{
1107
+ standalone: false,
1108
+ selector: 'six-root',
1109
+ changeDetection: ChangeDetectionStrategy.OnPush,
1110
+ template: '<ng-content></ng-content>',
1111
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1112
+ inputs: ['padded', 'stage', 'version'],
1113
+ }]
1114
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1115
+ let SixSearchField = class SixSearchField {
1116
+ constructor(c, r, z) {
1117
+ this.z = z;
1118
+ c.detach();
1119
+ this.el = r.nativeElement;
1120
+ proxyOutputs(this, this.el, ['six-search-field-change']);
1121
+ }
1122
+ 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 }); }
1123
+ 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 }); }
1124
+ };
1125
+ SixSearchField = __decorate([
1126
+ ProxyCmp({
1127
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
1128
+ })
1129
+ ], SixSearchField);
1130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSearchField, decorators: [{
1131
+ type: Component,
1132
+ args: [{
1133
+ standalone: false,
1134
+ selector: 'six-search-field',
1135
+ changeDetection: ChangeDetectionStrategy.OnPush,
1136
+ template: '<ng-content></ng-content>',
1137
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1138
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
1139
+ }]
1140
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1141
+ let SixSelect = class SixSelect {
1142
+ constructor(c, r, z) {
1143
+ this.z = z;
1144
+ c.detach();
1145
+ this.el = r.nativeElement;
1146
+ proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
1147
+ }
1148
+ 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 }); }
1149
+ 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 }); }
1150
+ };
1151
+ SixSelect = __decorate([
1152
+ ProxyCmp({
1153
+ 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'],
1154
+ methods: ['setFocus']
1155
+ })
1156
+ ], SixSelect);
1157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSelect, decorators: [{
1158
+ type: Component,
1159
+ args: [{
1160
+ standalone: false,
1161
+ selector: 'six-select',
1162
+ changeDetection: ChangeDetectionStrategy.OnPush,
1163
+ template: '<ng-content></ng-content>',
1164
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1165
+ 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'],
1166
+ }]
1167
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1168
+ let SixSidebar = class SixSidebar {
1169
+ constructor(c, r, z) {
1170
+ this.z = z;
1171
+ c.detach();
1172
+ this.el = r.nativeElement;
1173
+ proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
1174
+ }
1175
+ 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 }); }
1176
+ 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 }); }
1177
+ };
1178
+ SixSidebar = __decorate([
1179
+ ProxyCmp({
1180
+ inputs: ['open', 'position', 'toggled', 'width'],
1181
+ methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
1182
+ })
1183
+ ], SixSidebar);
1184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebar, decorators: [{
1185
+ type: Component,
1186
+ args: [{
1187
+ standalone: false,
1188
+ selector: 'six-sidebar',
1189
+ changeDetection: ChangeDetectionStrategy.OnPush,
1190
+ template: '<ng-content></ng-content>',
1191
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1192
+ inputs: ['open', 'position', 'toggled', 'width'],
1193
+ }]
1194
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1195
+ let SixSidebarItem = class SixSidebarItem {
1196
+ constructor(c, r, z) {
1197
+ this.z = z;
1198
+ c.detach();
1199
+ this.el = r.nativeElement;
1200
+ }
1201
+ 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 }); }
1202
+ 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 }); }
1203
+ };
1204
+ SixSidebarItem = __decorate([
1205
+ ProxyCmp({
1206
+ inputs: ['disabled', 'href', 'icon', 'selected', 'value']
1207
+ })
1208
+ ], SixSidebarItem);
1209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItem, decorators: [{
1210
+ type: Component,
1211
+ args: [{
1212
+ standalone: false,
1213
+ selector: 'six-sidebar-item',
1214
+ changeDetection: ChangeDetectionStrategy.OnPush,
1215
+ template: '<ng-content></ng-content>',
1216
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1217
+ inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
1218
+ }]
1219
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1220
+ let SixSidebarItemGroup = class SixSidebarItemGroup {
1221
+ constructor(c, r, z) {
1222
+ this.z = z;
1223
+ c.detach();
1224
+ this.el = r.nativeElement;
1225
+ }
1226
+ 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 }); }
1227
+ 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 }); }
1228
+ };
1229
+ SixSidebarItemGroup = __decorate([
1230
+ ProxyCmp({
1231
+ inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
1232
+ })
1233
+ ], SixSidebarItemGroup);
1234
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
1235
+ type: Component,
1236
+ args: [{
1237
+ standalone: false,
1238
+ selector: 'six-sidebar-item-group',
1239
+ changeDetection: ChangeDetectionStrategy.OnPush,
1240
+ template: '<ng-content></ng-content>',
1241
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1242
+ inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
1243
+ }]
1244
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1245
+ let SixSpinner = class SixSpinner {
1246
+ constructor(c, r, z) {
1247
+ this.z = z;
1248
+ c.detach();
1249
+ this.el = r.nativeElement;
1250
+ }
1251
+ 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 }); }
1252
+ 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 }); }
1253
+ };
1254
+ SixSpinner = __decorate([
1255
+ ProxyCmp({
1256
+ inputs: ['logo', 'six']
1257
+ })
1258
+ ], SixSpinner);
1259
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSpinner, decorators: [{
1260
+ type: Component,
1261
+ args: [{
1262
+ standalone: false,
1263
+ selector: 'six-spinner',
1264
+ changeDetection: ChangeDetectionStrategy.OnPush,
1265
+ template: '<ng-content></ng-content>',
1266
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1267
+ inputs: ['logo', 'six'],
1268
+ }]
1269
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1270
+ let SixStageIndicator = class SixStageIndicator {
1271
+ constructor(c, r, z) {
1272
+ this.z = z;
1273
+ c.detach();
1274
+ this.el = r.nativeElement;
1275
+ }
1276
+ 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 }); }
1277
+ 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 }); }
1278
+ };
1279
+ SixStageIndicator = __decorate([
1280
+ ProxyCmp({
1281
+ inputs: ['stage']
1282
+ })
1283
+ ], SixStageIndicator);
1284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixStageIndicator, decorators: [{
1285
+ type: Component,
1286
+ args: [{
1287
+ standalone: false,
1288
+ selector: 'six-stage-indicator',
1289
+ changeDetection: ChangeDetectionStrategy.OnPush,
1290
+ template: '<ng-content></ng-content>',
1291
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1292
+ inputs: ['stage'],
1293
+ }]
1294
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1295
+ let SixSwitch = class SixSwitch {
1296
+ constructor(c, r, z) {
1297
+ this.z = z;
1298
+ c.detach();
1299
+ this.el = r.nativeElement;
1300
+ proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
1301
+ }
1302
+ 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 }); }
1303
+ 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 }); }
1304
+ };
1305
+ SixSwitch = __decorate([
1306
+ ProxyCmp({
1307
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
1308
+ methods: ['setFocus', 'removeFocus']
1309
+ })
1310
+ ], SixSwitch);
1311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSwitch, decorators: [{
1312
+ type: Component,
1313
+ args: [{
1314
+ standalone: false,
1315
+ selector: 'six-switch',
1316
+ changeDetection: ChangeDetectionStrategy.OnPush,
1317
+ template: '<ng-content></ng-content>',
1318
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1319
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
1320
+ }]
1321
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1322
+ let SixTab = class SixTab {
1323
+ constructor(c, r, z) {
1324
+ this.z = z;
1325
+ c.detach();
1326
+ this.el = r.nativeElement;
1327
+ proxyOutputs(this, this.el, ['six-tab-close']);
1328
+ }
1329
+ 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 }); }
1330
+ 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 }); }
1331
+ };
1332
+ SixTab = __decorate([
1333
+ ProxyCmp({
1334
+ inputs: ['active', 'closable', 'disabled', 'panel'],
1335
+ methods: ['setFocus', 'removeFocus']
1336
+ })
1337
+ ], SixTab);
1338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTab, decorators: [{
1339
+ type: Component,
1340
+ args: [{
1341
+ standalone: false,
1342
+ selector: 'six-tab',
1343
+ changeDetection: ChangeDetectionStrategy.OnPush,
1344
+ template: '<ng-content></ng-content>',
1345
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1346
+ inputs: ['active', 'closable', 'disabled', 'panel'],
1347
+ }]
1348
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1349
+ let SixTabGroup = class SixTabGroup {
1350
+ constructor(c, r, z) {
1351
+ this.z = z;
1352
+ c.detach();
1353
+ this.el = r.nativeElement;
1354
+ proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
1355
+ }
1356
+ 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 }); }
1357
+ 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 }); }
1358
+ };
1359
+ SixTabGroup = __decorate([
1360
+ ProxyCmp({
1361
+ inputs: ['noScrollControls', 'placement'],
1362
+ methods: ['show']
1363
+ })
1364
+ ], SixTabGroup);
1365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabGroup, decorators: [{
1366
+ type: Component,
1367
+ args: [{
1368
+ standalone: false,
1369
+ selector: 'six-tab-group',
1370
+ changeDetection: ChangeDetectionStrategy.OnPush,
1371
+ template: '<ng-content></ng-content>',
1372
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1373
+ inputs: ['noScrollControls', 'placement'],
1374
+ }]
1375
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1376
+ let SixTabPanel = class SixTabPanel {
1377
+ constructor(c, r, z) {
1378
+ this.z = z;
1379
+ c.detach();
1380
+ this.el = r.nativeElement;
1381
+ }
1382
+ 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 }); }
1383
+ 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 }); }
1384
+ };
1385
+ SixTabPanel = __decorate([
1386
+ ProxyCmp({
1387
+ inputs: ['active', 'name']
1388
+ })
1389
+ ], SixTabPanel);
1390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabPanel, decorators: [{
1391
+ type: Component,
1392
+ args: [{
1393
+ standalone: false,
1394
+ selector: 'six-tab-panel',
1395
+ changeDetection: ChangeDetectionStrategy.OnPush,
1396
+ template: '<ng-content></ng-content>',
1397
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1398
+ inputs: ['active', 'name'],
1399
+ }]
1400
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1401
+ let SixTag = class SixTag {
1402
+ constructor(c, r, z) {
1403
+ this.z = z;
1404
+ c.detach();
1405
+ this.el = r.nativeElement;
1406
+ proxyOutputs(this, this.el, ['six-tag-clear']);
1407
+ }
1408
+ 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 }); }
1409
+ 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 }); }
1410
+ };
1411
+ SixTag = __decorate([
1412
+ ProxyCmp({
1413
+ inputs: ['clearable', 'pill', 'size', 'type']
1414
+ })
1415
+ ], SixTag);
1416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTag, decorators: [{
1417
+ type: Component,
1418
+ args: [{
1419
+ standalone: false,
1420
+ selector: 'six-tag',
1421
+ changeDetection: ChangeDetectionStrategy.OnPush,
1422
+ template: '<ng-content></ng-content>',
1423
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1424
+ inputs: ['clearable', 'pill', 'size', 'type'],
1425
+ }]
1426
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1427
+ let SixTextarea = class SixTextarea {
1428
+ constructor(c, r, z) {
1429
+ this.z = z;
1430
+ c.detach();
1431
+ this.el = r.nativeElement;
1432
+ proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
1433
+ }
1434
+ 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 }); }
1435
+ 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 }); }
1436
+ };
1437
+ SixTextarea = __decorate([
1438
+ ProxyCmp({
1439
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1440
+ methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
1441
+ })
1442
+ ], SixTextarea);
1443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTextarea, decorators: [{
1444
+ type: Component,
1445
+ args: [{
1446
+ standalone: false,
1447
+ selector: 'six-textarea',
1448
+ changeDetection: ChangeDetectionStrategy.OnPush,
1449
+ template: '<ng-content></ng-content>',
1450
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1451
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1452
+ }]
1453
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1454
+ let SixTile = class SixTile {
1455
+ constructor(c, r, z) {
1456
+ this.z = z;
1457
+ c.detach();
1458
+ this.el = r.nativeElement;
1459
+ proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
1460
+ }
1461
+ 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 }); }
1462
+ 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 }); }
1463
+ };
1464
+ SixTile = __decorate([
1465
+ ProxyCmp({
1466
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1467
+ methods: ['hide', 'show']
1468
+ })
1469
+ ], SixTile);
1470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTile, decorators: [{
1471
+ type: Component,
1472
+ args: [{
1473
+ standalone: false,
1474
+ selector: 'six-tile',
1475
+ changeDetection: ChangeDetectionStrategy.OnPush,
1476
+ template: '<ng-content></ng-content>',
1477
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1478
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1479
+ }]
1480
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1481
+ let SixTimepicker = class SixTimepicker {
1482
+ constructor(c, r, z) {
1483
+ this.z = z;
1484
+ c.detach();
1485
+ this.el = r.nativeElement;
1486
+ proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
1487
+ }
1488
+ 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 }); }
1489
+ 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 }); }
1490
+ };
1491
+ SixTimepicker = __decorate([
1492
+ ProxyCmp({
1493
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1494
+ methods: ['setFocus']
1495
+ })
1496
+ ], SixTimepicker);
1497
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTimepicker, decorators: [{
1498
+ type: Component,
1499
+ args: [{
1500
+ standalone: false,
1501
+ selector: 'six-timepicker',
1502
+ changeDetection: ChangeDetectionStrategy.OnPush,
1503
+ template: '<ng-content></ng-content>',
1504
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1505
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1506
+ }]
1507
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1508
+ let SixTooltip = class SixTooltip {
1509
+ constructor(c, r, z) {
1510
+ this.z = z;
1511
+ c.detach();
1512
+ this.el = r.nativeElement;
1513
+ proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
1514
+ }
1515
+ 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 }); }
1516
+ 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 }); }
1517
+ };
1518
+ SixTooltip = __decorate([
1519
+ ProxyCmp({
1520
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1521
+ methods: ['show', 'hide']
1522
+ })
1523
+ ], SixTooltip);
1524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTooltip, decorators: [{
1525
+ type: Component,
1526
+ args: [{
1527
+ standalone: false,
1528
+ selector: 'six-tooltip',
1529
+ changeDetection: ChangeDetectionStrategy.OnPush,
1530
+ template: '<ng-content></ng-content>',
1531
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1532
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1533
+ }]
1534
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1535
+
1536
+ const DIRECTIVES = [
1537
+ SixAlert,
1538
+ SixAvatar,
1539
+ SixBadge,
1540
+ SixButton,
1541
+ SixCard,
1542
+ SixCheckbox,
1543
+ SixDate,
1544
+ SixDatepicker,
1545
+ SixDetails,
1546
+ SixDialog,
1547
+ SixDrawer,
1548
+ SixDropdown,
1549
+ SixError,
1550
+ SixErrorPage,
1551
+ SixFileList,
1552
+ SixFileListItem,
1553
+ SixFileUpload,
1554
+ SixFooter,
1555
+ SixGroupLabel,
1556
+ SixHeader,
1557
+ SixHeaderDropdownItem,
1558
+ SixHeaderItem,
1559
+ SixHeaderMenuButton,
1560
+ SixIcon,
1561
+ SixIconButton,
1562
+ SixInput,
1563
+ SixItemPicker,
1564
+ SixLanguageSwitcher,
1565
+ SixLayoutGrid,
1566
+ SixLogo,
1567
+ SixMainContainer,
1568
+ SixMenu,
1569
+ SixMenuDivider,
1570
+ SixMenuItem,
1571
+ SixMenuLabel,
1572
+ SixPicto,
1573
+ SixProgressBar,
1574
+ SixProgressRing,
1575
+ SixRadio,
1576
+ SixRange,
1577
+ SixRoot,
1578
+ SixSearchField,
1579
+ SixSelect,
1580
+ SixSidebar,
1581
+ SixSidebarItem,
1582
+ SixSidebarItemGroup,
1583
+ SixSpinner,
1584
+ SixStageIndicator,
1585
+ SixSwitch,
1586
+ SixTab,
1587
+ SixTabGroup,
1588
+ SixTabPanel,
1589
+ SixTag,
1590
+ SixTextarea,
1591
+ SixTile,
1592
+ SixTimepicker,
1593
+ SixTooltip
1594
+ ];
1595
+
1596
+ class ValidationMessagesService {
1597
+ getErrorMessage(language, error) {
1598
+ return getErrorMessage(language, error);
1599
+ }
1600
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1601
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' }); }
1602
+ }
1603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, decorators: [{
1604
+ type: Injectable,
1605
+ args: [{ providedIn: 'root' }]
1606
+ }] });
1607
+
1608
+ const DEFAULT_UI_LIBRARY_CONFIG = {
1609
+ showAsteriskOnRequiredValidator: false,
1610
+ };
1611
+ const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
1612
+
1613
+ class ValueAccessor {
1614
+ constructor(injector, el) {
1615
+ this.injector = injector;
1616
+ this.el = el;
1617
+ this.validationMessagesService = inject(ValidationMessagesService);
1618
+ this.config = inject(UI_LIBRARY_CONFIG);
1619
+ this.onChange = () => { };
1620
+ this.onTouched = () => { };
1621
+ }
1622
+ registerOnChange(fn) {
1623
+ this.onChange = fn;
1624
+ }
1625
+ registerOnTouched(fn) {
1626
+ this.onTouched = fn;
1627
+ }
1628
+ writeValue(value) {
1629
+ this.el.nativeElement.value = value;
1630
+ this.updateValidation();
1631
+ }
1632
+ /**
1633
+ * Notifies the ControlValueAccessor of a change in the value of the control.
1634
+ *
1635
+ * This is called by each of the ValueAccessor directives when we want to update
1636
+ * the status and validity of the form control. For example with text components this
1637
+ * is called when the input event is fired. For select components this is called
1638
+ * when the change event is fired.
1639
+ *
1640
+ * This also updates the form status on the element by setting the 'invalid' property to true/false.
1641
+ *
1642
+ * @param el The component element.
1643
+ * @param value The new value of the control.
1644
+ */
1645
+ handleValueChange(el, value) {
1646
+ if (el === this.el.nativeElement) {
1647
+ this.onChange(value);
1648
+ this.updateValidation();
1649
+ }
1650
+ }
1651
+ _handleBlurEvent(el) {
1652
+ if (el === this.el.nativeElement) {
1653
+ this.onTouched();
1654
+ this.updateValidation();
1655
+ }
1656
+ }
1657
+ updateValidation() {
1658
+ nextTick(() => {
1659
+ if (this.ngControl?.control == null)
1660
+ return;
1661
+ const element = this.el.nativeElement;
1662
+ const control = this.ngControl?.control;
1663
+ const invalid = control.status === 'INVALID' && control.dirty && control.touched;
1664
+ let errorTexts;
1665
+ if (invalid) {
1666
+ errorTexts = this.initialErrorText || this.getErrorTexts(control);
1667
+ }
1668
+ element.invalid = invalid;
1669
+ element.errorText = errorTexts ?? '';
1670
+ // When the module is configured to do so, display an asterisk next to any form control that has a required validator
1671
+ if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
1672
+ element.required = true;
1673
+ }
1674
+ });
1675
+ }
1676
+ setDisabledState(isDisabled) {
1677
+ this.el.nativeElement.disabled = isDisabled;
1678
+ }
1679
+ ngOnDestroy() {
1680
+ if (this.statusChanges) {
1681
+ this.statusChanges.unsubscribe();
1682
+ }
1683
+ }
1684
+ ngAfterViewInit() {
1685
+ this.initialErrorText = this.el.nativeElement?.errorText?.trim() || undefined;
1686
+ try {
1687
+ this.ngControl = this.injector.get(NgControl);
1688
+ }
1689
+ catch {
1690
+ /* No FormControl or ngModel binding */
1691
+ }
1692
+ if (!this.ngControl) {
1693
+ return;
1694
+ }
1695
+ // Listen for changes in validity, disabled, or pending states
1696
+ if (this.ngControl.statusChanges) {
1697
+ this.statusChanges = this.ngControl.statusChanges.subscribe(() => this.updateValidation());
1698
+ }
1699
+ /**
1700
+ * TODO FW-2787: Remove this in favor of https://github.com/angular/angular/issues/10887
1701
+ * whenever it is implemented.
1702
+ */
1703
+ const formControl = this.ngControl.control;
1704
+ if (formControl) {
1705
+ const methodsToPatch = ['markAsTouched', 'markAllAsTouched', 'markAsUntouched', 'markAsDirty', 'markAsPristine'];
1706
+ methodsToPatch.forEach((method) => {
1707
+ if (typeof formControl[method] !== 'undefined') {
1708
+ const oldFn = formControl[method].bind(formControl);
1709
+ formControl[method] = (...params) => {
1710
+ oldFn(...params);
1711
+ this.updateValidation();
1712
+ };
1713
+ }
1714
+ });
1715
+ }
1716
+ }
1717
+ getErrorTexts(control) {
1718
+ if (control.errors == null) {
1719
+ console.warn('no errors for invalid control', control);
1720
+ return [];
1721
+ }
1722
+ const errorList = Object.entries(control.errors);
1723
+ if (errorList.length <= 0) {
1724
+ console.warn('no errors for invalid control', control);
1725
+ return [];
1726
+ }
1727
+ return errorList.map((error) => {
1728
+ const [key, value] = error;
1729
+ return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
1730
+ });
1731
+ }
1732
+ 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 }); }
1733
+ 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 }); }
1734
+ }
1735
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, decorators: [{
1736
+ type: Directive
1737
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
1738
+ type: HostListener,
1739
+ args: ['blur', ['$event.target']]
1740
+ }] } });
1741
+ const nextTick = (h) => {
1742
+ if (typeof __zone_symbol__requestAnimationFrame === 'function') {
1743
+ return __zone_symbol__requestAnimationFrame(h);
1744
+ }
1745
+ if (typeof requestAnimationFrame === 'function') {
1746
+ return requestAnimationFrame(h);
1747
+ }
1748
+ return setTimeout(h);
1749
+ };
1750
+
1751
+ class TextValueAccessor extends ValueAccessor {
1752
+ constructor(injector, el) {
1753
+ super(injector, el);
1754
+ }
1755
+ handleInputEvent(el) {
1756
+ this.handleValueChange(el, el.value);
1757
+ }
1758
+ 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 }); }
1759
+ 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: [
1760
+ {
1761
+ provide: NG_VALUE_ACCESSOR,
1762
+ useExisting: TextValueAccessor,
1763
+ multi: true,
1764
+ },
1765
+ ], usesInheritance: true, ngImport: i0 }); }
1766
+ }
1767
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, decorators: [{
1768
+ type: Directive,
1769
+ args: [{
1770
+ selector: 'six-input:not([type=number]),six-textarea',
1771
+ providers: [
1772
+ {
1773
+ provide: NG_VALUE_ACCESSOR,
1774
+ useExisting: TextValueAccessor,
1775
+ multi: true,
1776
+ },
1777
+ ],
1778
+ standalone: false,
1779
+ }]
1780
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
1781
+ type: HostListener,
1782
+ args: ['input', ['$event.target']]
1783
+ }] } });
1784
+
1785
+ class NumericValueAccessor extends ValueAccessor {
1786
+ constructor(injector, el) {
1787
+ super(injector, el);
1788
+ }
1789
+ handleInputEvent(el) {
1790
+ this.handleValueChange(el, el.value);
1791
+ }
1792
+ registerOnChange(fn) {
1793
+ super.registerOnChange((value) => {
1794
+ fn(value === '' ? null : parseFloat(value));
1795
+ });
1796
+ }
1797
+ 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 }); }
1798
+ 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: [
1799
+ {
1800
+ provide: NG_VALUE_ACCESSOR,
1801
+ useExisting: NumericValueAccessor,
1802
+ multi: true,
1803
+ },
1804
+ ], usesInheritance: true, ngImport: i0 }); }
1805
+ }
1806
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, decorators: [{
1807
+ type: Directive,
1808
+ args: [{
1809
+ selector: 'six-input[type=number]',
1810
+ providers: [
1811
+ {
1812
+ provide: NG_VALUE_ACCESSOR,
1813
+ useExisting: NumericValueAccessor,
1814
+ multi: true,
1815
+ },
1816
+ ],
1817
+ standalone: false,
1818
+ }]
1819
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
1820
+ type: HostListener,
1821
+ args: ['input', ['$event.target']]
1822
+ }] } });
1823
+
1824
+ class RadioValueAccessor extends ValueAccessor {
1825
+ constructor(injector, el) {
1826
+ super(injector, el);
1827
+ }
1828
+ handleChangeEvent(el) {
1829
+ this.handleValueChange(el, this.value);
1830
+ }
1831
+ ngOnInit() {
1832
+ this.checkName();
1833
+ }
1834
+ writeValue(value) {
1835
+ this.el.nativeElement.checked = value === this.value;
1836
+ this.updateValidation();
1837
+ }
1838
+ checkName() {
1839
+ if (this.name && this.formControlName && this.name !== this.formControlName) {
1840
+ throw new Error(`
1841
+ If you define both a name and a formControlName attribute on your radio button, their values
1842
+ must match. Ex: <six-input type="radio" formControlName="food" name="food">
1843
+ `);
1844
+ }
1845
+ if (!this.name && this.formControlName) {
1846
+ this.name = this.formControlName;
1847
+ this.el.nativeElement.name = this.formControlName;
1848
+ }
1849
+ }
1850
+ 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 }); }
1851
+ 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: [
1852
+ {
1853
+ provide: NG_VALUE_ACCESSOR,
1854
+ useExisting: RadioValueAccessor,
1855
+ multi: true,
1856
+ },
1857
+ ], usesInheritance: true, ngImport: i0 }); }
1858
+ }
1859
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, decorators: [{
1860
+ type: Directive,
1861
+ args: [{
1862
+ selector: 'six-radio',
1863
+ providers: [
1864
+ {
1865
+ provide: NG_VALUE_ACCESSOR,
1866
+ useExisting: RadioValueAccessor,
1867
+ multi: true,
1868
+ },
1869
+ ],
1870
+ standalone: false,
1871
+ }]
1872
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
1873
+ type: Input
1874
+ }], formControlName: [{
1875
+ type: Input
1876
+ }], name: [{
1877
+ type: Input
1878
+ }], handleChangeEvent: [{
1879
+ type: HostListener,
1880
+ args: ['change', ['$event.target']]
1881
+ }] } });
1882
+
1883
+ class DatepickerValueAccessor extends ValueAccessor {
1884
+ constructor(injector, el) {
1885
+ super(injector, el);
1886
+ }
1887
+ handleChangeEvent(el) {
1888
+ this.handleValueChange(el, el.value);
1889
+ }
1890
+ 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 }); }
1891
+ 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: [
1892
+ {
1893
+ provide: NG_VALUE_ACCESSOR,
1894
+ useExisting: DatepickerValueAccessor,
1895
+ multi: true,
1896
+ },
1897
+ ], usesInheritance: true, ngImport: i0 }); }
1898
+ }
1899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
1900
+ type: Directive,
1901
+ args: [{
1902
+ selector: 'six-datepicker',
1903
+ providers: [
1904
+ {
1905
+ provide: NG_VALUE_ACCESSOR,
1906
+ useExisting: DatepickerValueAccessor,
1907
+ multi: true,
1908
+ },
1909
+ ],
1910
+ standalone: false,
1911
+ }]
1912
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
1913
+ type: HostListener,
1914
+ args: ['change', ['$event.target']]
1915
+ }] } });
1916
+
1917
+ /**
1918
+ * This directive intercepts the ngSubmit event of an Angular form and introduces
1919
+ * a supplementary event named sixSubmit. The sixSubmit event is triggered exclusively
1920
+ * when the form is valid. In cases where the form is considered invalid, this directive
1921
+ * takes proactive actions by marking all form controls as touched and dirty. Additionally,
1922
+ * it shifts the focus to the initial invalid form element, facilitating quick error
1923
+ * resolution.
1924
+ *
1925
+ * To utilize this directive, apply it to an Angular form.
1926
+ * ```html
1927
+ * <form [formGroup]="form" sixForm (sixSubmit)="onSubmit($event)">
1928
+ * <!-- form content -->
1929
+ * </form>
1930
+ * ```
1931
+ *
1932
+ * For users needing greater flexibility in determining when error messages are displayed,
1933
+ * or for those who prefer not to rely solely on the form submission event,
1934
+ * an alternative is to use the SixFormUtilDirective.
1935
+ */
1936
+ class SixFormDirective {
1937
+ onNgSubmit(event) {
1938
+ if (this.formGroupDirective.invalid) {
1939
+ focusInvalidField(this.formGroupDirective, this.elementRef);
1940
+ }
1941
+ else {
1942
+ this.sixSubmit.emit(event);
1943
+ }
1944
+ }
1945
+ constructor(elementRef, formGroupDirective) {
1946
+ this.elementRef = elementRef;
1947
+ this.formGroupDirective = formGroupDirective;
1948
+ /**
1949
+ * Emits an event when the form is valid and the form submission has been triggered.
1950
+ */
1951
+ this.sixSubmit = new EventEmitter();
1952
+ }
1953
+ 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 }); }
1954
+ 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 }); }
1955
+ }
1956
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, decorators: [{
1957
+ type: Directive,
1958
+ args: [{
1959
+ selector: 'form[sixForm]',
1960
+ standalone: false,
1961
+ }]
1962
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
1963
+ type: Output
1964
+ }], onNgSubmit: [{
1965
+ type: HostListener,
1966
+ args: ['ngSubmit', ['$event']]
1967
+ }] } });
1968
+ /**
1969
+ * This directive provides a utility method, that marks all form controls
1970
+ * as touched and dirty, and focuses the first invalid form element.
1971
+ *
1972
+ * To utilize this directive, apply it to an Angular form.
1973
+ * ```html
1974
+ * <form [formGroup]="form" sixFormUtil (ngSubmit)="onSubmit($event)">
1975
+ * <!-- form content -->
1976
+ * </form>
1977
+ * ```
1978
+ *
1979
+ * Then, get a reference to the directive and invoke `focusInvalidField()` if the
1980
+ * form is invalid:
1981
+ * ```ts
1982
+ * @ViewChild(SixFormUtilDirective) sixFormUtil!: SixFormUtilDirective;
1983
+ * // ...
1984
+ * onSubmit() {
1985
+ * if (this.form.invalid) {
1986
+ * this.sixFormUtil.focusInvalidField();
1987
+ * } else {
1988
+ * // ...
1989
+ * }
1990
+ * }
1991
+ * ```
1992
+ */
1993
+ class SixFormUtilDirective {
1994
+ constructor(elementRef, formGroupDirective) {
1995
+ this.elementRef = elementRef;
1996
+ this.formGroupDirective = formGroupDirective;
1997
+ }
1998
+ /** markAllControlsAsDirty(Object.values(formGroup.controls));
1999
+ * Marks all form controls as touched and dirty, and focuses the first
2000
+ * invalid form element.
2001
+ */
2002
+ focusInvalidField() {
2003
+ focusInvalidField(this.formGroupDirective, this.elementRef);
2004
+ }
2005
+ 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 }); }
2006
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 }); }
2007
+ }
2008
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, decorators: [{
2009
+ type: Directive,
2010
+ args: [{
2011
+ selector: '[sixFormUtil]',
2012
+ standalone: false,
2013
+ }]
2014
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
2015
+ function focusInvalidField(formGroupDirective, formElement) {
2016
+ formGroupDirective.form.markAllAsTouched();
2017
+ markAllAsDirty([formGroupDirective.form]);
2018
+ const invalidElement = getInvalidElement(formElement.nativeElement);
2019
+ if ('setFocus' in invalidElement && typeof invalidElement?.setFocus === 'function') {
2020
+ invalidElement.setFocus();
2021
+ }
2022
+ if ('focus' in invalidElement && typeof invalidElement?.focus === 'function') {
2023
+ invalidElement.focus();
2024
+ }
2025
+ }
2026
+ function getInvalidElement(parent) {
2027
+ const invalidElement = parent.querySelector('.ng-invalid');
2028
+ if (invalidElement == null) {
2029
+ return parent;
2030
+ }
2031
+ return getInvalidElement(invalidElement);
2032
+ }
2033
+ function markAllAsDirty(controls) {
2034
+ controls.forEach((control) => {
2035
+ if (control instanceof FormControl) {
2036
+ control.markAsDirty({ onlySelf: true });
2037
+ }
2038
+ else if (control instanceof FormGroup) {
2039
+ control.markAsDirty({ onlySelf: true });
2040
+ markAllAsDirty(Object.values(control.controls));
2041
+ }
2042
+ else if (control instanceof FormArray) {
2043
+ control.markAsDirty({ onlySelf: true });
2044
+ markAllAsDirty(control.controls);
2045
+ }
2046
+ });
2047
+ }
2048
+
2049
+ class SixUiLibraryValidators {
2050
+ static minDate(mindate) {
2051
+ return (control) => {
2052
+ if (control.value == null)
2053
+ return null;
2054
+ const actualDate = control.value;
2055
+ return actualDate.getTime() >= mindate.getTime() ? null : { mindate: { mindate, actual: actualDate } };
2056
+ };
2057
+ }
2058
+ static maxDate(maxdate) {
2059
+ return (control) => {
2060
+ if (control.value == null)
2061
+ return null;
2062
+ const actualDate = control.value;
2063
+ return actualDate.getTime() <= maxdate.getTime() ? null : { maxdate: { maxdate, actual: actualDate } };
2064
+ };
2065
+ }
2066
+ static allowedDates(allowedDates = () => true) {
2067
+ return (control) => {
2068
+ if (control.value == null)
2069
+ return null;
2070
+ const allowed = allowedDates(control.value);
2071
+ return allowed ? null : { invaliddate: { actual: control.value } };
2072
+ };
2073
+ }
2074
+ static minDateIso(mindate) {
2075
+ return (control) => {
2076
+ if (control.value == null || control.value === '')
2077
+ return null;
2078
+ const actualDate = control.value;
2079
+ return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
2080
+ };
2081
+ }
2082
+ static maxDateIso(maxdate) {
2083
+ return (control) => {
2084
+ if (control.value == null || control.value === '')
2085
+ return null;
2086
+ const actualDate = control.value;
2087
+ return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
2088
+ };
2089
+ }
2090
+ static allowedDatesIso(allowedDates = () => true) {
2091
+ return (control) => {
2092
+ if (control.value == null || control.value === '')
2093
+ return null;
2094
+ const allowed = allowedDates(control.value);
2095
+ return allowed ? null : { invaliddate: { actual: control.value } };
2096
+ };
2097
+ }
2098
+ }
2099
+ class MinDateValidator {
2100
+ validate(control) {
2101
+ if (this.min != null) {
2102
+ return SixUiLibraryValidators.minDate(this.min)(control);
2103
+ }
2104
+ return null;
2105
+ }
2106
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2107
+ 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 }); }
2108
+ }
2109
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, decorators: [{
2110
+ type: Directive,
2111
+ args: [{
2112
+ selector: 'six-datepicker[min]',
2113
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
2114
+ standalone: false,
2115
+ }]
2116
+ }], propDecorators: { min: [{
2117
+ type: Input
2118
+ }] } });
2119
+ class MaxDateValidator {
2120
+ validate(control) {
2121
+ if (this.max != null) {
2122
+ return SixUiLibraryValidators.maxDate(this.max)(control);
2123
+ }
2124
+ return null;
2125
+ }
2126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2127
+ 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 }); }
2128
+ }
2129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, decorators: [{
2130
+ type: Directive,
2131
+ args: [{
2132
+ selector: 'six-datepicker[max]',
2133
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
2134
+ standalone: false,
2135
+ }]
2136
+ }], propDecorators: { max: [{
2137
+ type: Input
2138
+ }] } });
2139
+ class AllowedDatesValidator {
2140
+ constructor() {
2141
+ this.allowedDates = () => true;
2142
+ }
2143
+ validate(control) {
2144
+ return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
2145
+ }
2146
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2147
+ 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 }); }
2148
+ }
2149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, decorators: [{
2150
+ type: Directive,
2151
+ args: [{
2152
+ selector: 'six-datepicker[allowedDates]',
2153
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
2154
+ standalone: false,
2155
+ }]
2156
+ }], propDecorators: { allowedDates: [{
2157
+ type: Input
2158
+ }] } });
2159
+ class MinDateValidatorIso {
2160
+ validate(control) {
2161
+ if (this.min != null) {
2162
+ return SixUiLibraryValidators.minDateIso(this.min)(control);
2163
+ }
2164
+ return null;
2165
+ }
2166
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2167
+ 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 }); }
2168
+ }
2169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, decorators: [{
2170
+ type: Directive,
2171
+ args: [{
2172
+ selector: 'six-date[min]',
2173
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
2174
+ standalone: false,
2175
+ }]
2176
+ }], propDecorators: { min: [{
2177
+ type: Input
2178
+ }] } });
2179
+ class MaxDateValidatorIso {
2180
+ validate(control) {
2181
+ if (this.max != null) {
2182
+ return SixUiLibraryValidators.maxDateIso(this.max)(control);
2183
+ }
2184
+ return null;
2185
+ }
2186
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2187
+ 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 }); }
2188
+ }
2189
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
2190
+ type: Directive,
2191
+ args: [{
2192
+ selector: 'six-date[max]',
2193
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
2194
+ standalone: false,
2195
+ }]
2196
+ }], propDecorators: { max: [{
2197
+ type: Input
2198
+ }] } });
2199
+ class AllowedDatesValidatorIso {
2200
+ constructor() {
2201
+ this.allowedDates = () => true;
2202
+ }
2203
+ validate(control) {
2204
+ return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
2205
+ }
2206
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2207
+ 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 }); }
2208
+ }
2209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
2210
+ type: Directive,
2211
+ args: [{
2212
+ selector: 'six-date[allowedDates]',
2213
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
2214
+ standalone: false,
2215
+ }]
2216
+ }], propDecorators: { allowedDates: [{
2217
+ type: Input
2218
+ }] } });
2219
+ class MinValidator {
2220
+ validate(control) {
2221
+ return Validators.min(toFloat(this.min))(control);
2222
+ }
2223
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2224
+ 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 }); }
2225
+ }
2226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, decorators: [{
2227
+ type: Directive,
2228
+ args: [{
2229
+ selector: 'six-input[type=number][min]',
2230
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
2231
+ standalone: false,
2232
+ }]
2233
+ }], propDecorators: { min: [{
2234
+ type: Input
2235
+ }] } });
2236
+ class MaxValidator {
2237
+ validate(control) {
2238
+ return Validators.max(toFloat(this.max))(control);
2239
+ }
2240
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2241
+ 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 }); }
2242
+ }
2243
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, decorators: [{
2244
+ type: Directive,
2245
+ args: [{
2246
+ selector: 'six-input[type=number][max]',
2247
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
2248
+ standalone: false,
2249
+ }]
2250
+ }], propDecorators: { max: [{
2251
+ type: Input
2252
+ }] } });
2253
+ function toFloat(value) {
2254
+ return typeof value === 'number' ? value : parseFloat(value);
2255
+ }
2256
+
2257
+ class SelectValueAccessor extends ValueAccessor {
2258
+ constructor(injector, el) {
2259
+ super(injector, el);
2260
+ }
2261
+ handleChangeEvent(el) {
2262
+ this.handleValueChange(el, el.value);
2263
+ }
2264
+ 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 }); }
2265
+ 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: [
2266
+ {
2267
+ provide: NG_VALUE_ACCESSOR,
2268
+ useExisting: SelectValueAccessor,
2269
+ multi: true,
2270
+ },
2271
+ ], usesInheritance: true, ngImport: i0 }); }
2272
+ }
2273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, decorators: [{
2274
+ type: Directive,
2275
+ args: [{
2276
+ selector: 'six-select',
2277
+ providers: [
2278
+ {
2279
+ provide: NG_VALUE_ACCESSOR,
2280
+ useExisting: SelectValueAccessor,
2281
+ multi: true,
2282
+ },
2283
+ ],
2284
+ standalone: false,
2285
+ }]
2286
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2287
+ type: HostListener,
2288
+ args: ['change', ['$event.target']]
2289
+ }] } });
2290
+
2291
+ class CheckboxValueAccessor extends ValueAccessor {
2292
+ constructor(injector, el) {
2293
+ super(injector, el);
2294
+ }
2295
+ handleChangeEvent(el) {
2296
+ this.handleValueChange(el, el.checked);
2297
+ }
2298
+ writeValue(value) {
2299
+ this.el.nativeElement.checked = value === true;
2300
+ this.updateValidation();
2301
+ }
2302
+ 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 }); }
2303
+ 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: [
2304
+ {
2305
+ provide: NG_VALUE_ACCESSOR,
2306
+ useExisting: CheckboxValueAccessor,
2307
+ multi: true,
2308
+ },
2309
+ ], usesInheritance: true, ngImport: i0 }); }
2310
+ }
2311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
2312
+ type: Directive,
2313
+ args: [{
2314
+ selector: 'six-checkbox',
2315
+ providers: [
2316
+ {
2317
+ provide: NG_VALUE_ACCESSOR,
2318
+ useExisting: CheckboxValueAccessor,
2319
+ multi: true,
2320
+ },
2321
+ ],
2322
+ standalone: false,
2323
+ }]
2324
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2325
+ type: HostListener,
2326
+ args: ['change', ['$event.target']]
2327
+ }] } });
2328
+
2329
+ class RangeValueAccessor extends ValueAccessor {
2330
+ constructor(injector, el) {
2331
+ super(injector, el);
2332
+ }
2333
+ handleInputEvent(el) {
2334
+ this.handleValueChange(el, el.value);
2335
+ }
2336
+ registerOnChange(fn) {
2337
+ super.registerOnChange((value) => {
2338
+ fn(value === '' ? null : parseFloat(value));
2339
+ });
2340
+ }
2341
+ 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 }); }
2342
+ 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: [
2343
+ {
2344
+ provide: NG_VALUE_ACCESSOR,
2345
+ useExisting: RangeValueAccessor,
2346
+ multi: true,
2347
+ },
2348
+ ], usesInheritance: true, ngImport: i0 }); }
2349
+ }
2350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, decorators: [{
2351
+ type: Directive,
2352
+ args: [{
2353
+ selector: 'six-range',
2354
+ providers: [
2355
+ {
2356
+ provide: NG_VALUE_ACCESSOR,
2357
+ useExisting: RangeValueAccessor,
2358
+ multi: true,
2359
+ },
2360
+ ],
2361
+ standalone: false,
2362
+ }]
2363
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2364
+ type: HostListener,
2365
+ args: ['input', ['$event.target']]
2366
+ }] } });
2367
+
2368
+ class SwitchValueAccessor extends ValueAccessor {
2369
+ constructor(injector, el) {
2370
+ super(injector, el);
2371
+ }
2372
+ handleChangeEvent(el) {
2373
+ this.handleValueChange(el, el.checked);
2374
+ }
2375
+ writeValue(value) {
2376
+ this.el.nativeElement.checked = value === true;
2377
+ this.updateValidation();
2378
+ }
2379
+ 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 }); }
2380
+ 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: [
2381
+ {
2382
+ provide: NG_VALUE_ACCESSOR,
2383
+ useExisting: SwitchValueAccessor,
2384
+ multi: true,
2385
+ },
2386
+ ], usesInheritance: true, ngImport: i0 }); }
2387
+ }
2388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, decorators: [{
2389
+ type: Directive,
2390
+ args: [{
2391
+ selector: 'six-switch',
2392
+ providers: [
2393
+ {
2394
+ provide: NG_VALUE_ACCESSOR,
2395
+ useExisting: SwitchValueAccessor,
2396
+ multi: true,
2397
+ },
2398
+ ],
2399
+ standalone: false,
2400
+ }]
2401
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2402
+ type: HostListener,
2403
+ args: ['change', ['$event.target']]
2404
+ }] } });
2405
+
2406
+ class TimepickerValueAccessor extends ValueAccessor {
2407
+ constructor(injector, el) {
2408
+ super(injector, el);
2409
+ }
2410
+ handleChangeEvent(el) {
2411
+ this.handleValueChange(el, el.value);
2412
+ }
2413
+ 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 }); }
2414
+ 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: [
2415
+ {
2416
+ provide: NG_VALUE_ACCESSOR,
2417
+ useExisting: TimepickerValueAccessor,
2418
+ multi: true,
2419
+ },
2420
+ ], usesInheritance: true, ngImport: i0 }); }
2421
+ }
2422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
2423
+ type: Directive,
2424
+ args: [{
2425
+ selector: 'six-timepicker',
2426
+ providers: [
2427
+ {
2428
+ provide: NG_VALUE_ACCESSOR,
2429
+ useExisting: TimepickerValueAccessor,
2430
+ multi: true,
2431
+ },
2432
+ ],
2433
+ standalone: false,
2434
+ }]
2435
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2436
+ type: HostListener,
2437
+ args: ['change', ['$event.target']]
2438
+ }] } });
2439
+
2440
+ /**
2441
+ * Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
2442
+ */
2443
+ class SixRouterLinkDirective {
2444
+ constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
2445
+ this.locationStrategy = locationStrategy;
2446
+ this.elementRef = elementRef;
2447
+ this.router = router;
2448
+ this.renderer = renderer;
2449
+ this.routerLinkDirective = routerLinkDirective;
2450
+ }
2451
+ onClick(event) {
2452
+ // Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
2453
+ event.preventDefault();
2454
+ }
2455
+ ngOnInit() {
2456
+ this.updateTargetUrlAndHref();
2457
+ }
2458
+ ngOnChanges() {
2459
+ this.updateTargetUrlAndHref();
2460
+ }
2461
+ updateTargetUrlAndHref() {
2462
+ if (this.routerLinkDirective?.urlTree) {
2463
+ const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
2464
+ this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
2465
+ // Remove the `tabindex` attribute to prevent redundant focus behavior.
2466
+ // Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
2467
+ // but custom components like `six-button` already handle focusability.
2468
+ // Keeping the tabindex would cause the element to receive focus twice.
2469
+ this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
2470
+ }
2471
+ }
2472
+ 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 }); }
2473
+ 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 }); }
2474
+ }
2475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
2476
+ type: Directive,
2477
+ args: [{
2478
+ selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
2479
+ standalone: false,
2480
+ }]
2481
+ }], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
2482
+ type: Optional
2483
+ }] }], propDecorators: { onClick: [{
2484
+ type: HostListener,
2485
+ args: ['click', ['$event']]
2486
+ }], routerLink: [{
2487
+ type: Input
2488
+ }], queryParams: [{
2489
+ type: Input
2490
+ }], fragment: [{
2491
+ type: Input
2492
+ }], queryParamsHandling: [{
2493
+ type: Input
2494
+ }], relativeTo: [{
2495
+ type: Input
2496
+ }] } });
2497
+
2498
+ /**
2499
+ * Enables Angular router integration for the six-sidebar component.
2500
+ *
2501
+ * When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
2502
+ * it activates automatic route-based selection for sidebar items and groups.
2503
+ *
2504
+ * @recommended Add this directive to enable automatic route-based navigation in sidebars.
2505
+ *
2506
+ * @example
2507
+ * ```html
2508
+ * <six-sidebar sixRouterLinkActive>
2509
+ * <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
2510
+ * <six-sidebar-item-group>
2511
+ * <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
2512
+ * </six-sidebar-item-group>
2513
+ * </six-sidebar>
2514
+ * ```
2515
+ */
2516
+ class ActiveSidebarDirective {
2517
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2518
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
2519
+ }
2520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
2521
+ type: Directive,
2522
+ args: [{
2523
+ selector: 'six-sidebar[sixRouterLinkActive]',
2524
+ standalone: false,
2525
+ }]
2526
+ }] });
2527
+ /**
2528
+ * Enhances six-sidebar-item with Angular router integration.
2529
+ *
2530
+ * This directive automatically manages the 'selected' state of sidebar items based on the current route.
2531
+ * When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
2532
+ *
2533
+ * @requires RouterLinkActive
2534
+ * @optional ActiveSidebarDirective - If present, enables route-based selection
2535
+ */
2536
+ class ActiveSidebarItemDirective {
2537
+ constructor() {
2538
+ this.routerLinkActive = inject(RouterLinkActive);
2539
+ this.sidebarItem = inject(SixSidebarItem);
2540
+ this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
2541
+ }
2542
+ get selected() {
2543
+ if (this.activeSidebarDirective == null) {
2544
+ return this.sidebarItem.selected;
2545
+ }
2546
+ else {
2547
+ return this.routerLinkActive.isActive;
2548
+ }
2549
+ }
2550
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2551
+ 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 }); }
2552
+ }
2553
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
2554
+ type: Directive,
2555
+ args: [{
2556
+ selector: 'six-sidebar-item',
2557
+ hostDirectives: [RouterLinkActive],
2558
+ standalone: false,
2559
+ }]
2560
+ }], propDecorators: { selected: [{
2561
+ type: HostBinding,
2562
+ args: ['selected']
2563
+ }] } });
2564
+ /**
2565
+ * Enhances six-sidebar-item-group with Angular router integration.
2566
+ *
2567
+ * This directive automatically manages the 'open' state of sidebar groups based on the active route.
2568
+ * When a child route is active, the group automatically expands to show the active item.
2569
+ *
2570
+ * @requires RouterLinkActive
2571
+ * @optional ActiveSidebarDirective - If present, enables route-based expansion
2572
+ */
2573
+ class ActiveSidebarItemGroupDirective {
2574
+ constructor() {
2575
+ this.routerLinkActive = inject(RouterLinkActive);
2576
+ this.sidebarItemGroup = inject(SixSidebarItemGroup);
2577
+ this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
2578
+ }
2579
+ get open() {
2580
+ if (this.activeSidebarDirective == null) {
2581
+ return this.sidebarItemGroup.open;
2582
+ }
2583
+ if (this.sidebarItems?.length > 0) {
2584
+ return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
2585
+ }
2586
+ return this.routerLinkActive.isActive;
2587
+ }
2588
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2589
+ 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 }); }
2590
+ }
2591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
2592
+ type: Directive,
2593
+ args: [{
2594
+ selector: 'six-sidebar-item-group',
2595
+ hostDirectives: [RouterLinkActive],
2596
+ standalone: false,
2597
+ }]
2598
+ }], propDecorators: { sidebarItems: [{
2599
+ type: ContentChildren,
2600
+ args: [SixSidebarItem]
2601
+ }], open: [{
2602
+ type: HostBinding,
2603
+ args: ['open']
2604
+ }] } });
2605
+
2606
+ class DateValueAccessor extends ValueAccessor {
2607
+ constructor(injector, el) {
2608
+ super(injector, el);
2609
+ }
2610
+ handleInputEvent(el) {
2611
+ this.handleValueChange(el, el.value);
2612
+ }
2613
+ writeValue(value) {
2614
+ this.el.nativeElement.value = value == null ? '' : value;
2615
+ this.updateValidation();
2616
+ }
2617
+ 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 }); }
2618
+ 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: [
2619
+ {
2620
+ provide: NG_VALUE_ACCESSOR,
2621
+ useExisting: DateValueAccessor,
2622
+ multi: true,
2623
+ },
2624
+ ], usesInheritance: true, ngImport: i0 }); }
2625
+ }
2626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, decorators: [{
2627
+ type: Directive,
2628
+ args: [{
2629
+ selector: 'six-date',
2630
+ providers: [
2631
+ {
2632
+ provide: NG_VALUE_ACCESSOR,
2633
+ useExisting: DateValueAccessor,
2634
+ multi: true,
2635
+ },
2636
+ ],
2637
+ standalone: false,
2638
+ }]
2639
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2640
+ type: HostListener,
2641
+ args: ['change', ['$event.target']]
2642
+ }] } });
2643
+
2644
+ class UiLibraryAngularModule {
2645
+ static forRoot(customValidationMessagesService, config) {
2646
+ const mergedConfig = {
2647
+ ...DEFAULT_UI_LIBRARY_CONFIG,
2648
+ ...config,
2649
+ };
2650
+ return {
2651
+ ngModule: UiLibraryAngularModule,
2652
+ providers: [
2653
+ {
2654
+ provide: APP_INITIALIZER,
2655
+ useFactory: () => async () => defineCustomElements(),
2656
+ multi: true,
2657
+ },
2658
+ { provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
2659
+ { provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
2660
+ ],
2661
+ };
2662
+ }
2663
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2664
+ 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, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
2665
+ // value accessors
2666
+ TextValueAccessor,
2667
+ NumericValueAccessor,
2668
+ RadioValueAccessor,
2669
+ DatepickerValueAccessor,
2670
+ DateValueAccessor,
2671
+ TimepickerValueAccessor,
2672
+ SelectValueAccessor,
2673
+ CheckboxValueAccessor,
2674
+ SwitchValueAccessor,
2675
+ RangeValueAccessor,
2676
+ // validators
2677
+ MinValidator,
2678
+ MaxValidator,
2679
+ MinDateValidator,
2680
+ MaxDateValidator,
2681
+ AllowedDatesValidator,
2682
+ MinDateValidatorIso,
2683
+ MaxDateValidatorIso,
2684
+ AllowedDatesValidatorIso,
2685
+ // form helpers
2686
+ SixFormDirective,
2687
+ SixFormUtilDirective,
2688
+ // router link directive
2689
+ SixRouterLinkDirective,
2690
+ // sidebar helpers
2691
+ ActiveSidebarItemDirective,
2692
+ ActiveSidebarItemGroupDirective,
2693
+ 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, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
2694
+ // value accessors
2695
+ TextValueAccessor,
2696
+ NumericValueAccessor,
2697
+ RadioValueAccessor,
2698
+ DatepickerValueAccessor,
2699
+ DateValueAccessor,
2700
+ TimepickerValueAccessor,
2701
+ SelectValueAccessor,
2702
+ CheckboxValueAccessor,
2703
+ SwitchValueAccessor,
2704
+ RangeValueAccessor,
2705
+ // validators
2706
+ MinValidator,
2707
+ MaxValidator,
2708
+ MinDateValidator,
2709
+ MaxDateValidator,
2710
+ AllowedDatesValidator,
2711
+ MinDateValidatorIso,
2712
+ MaxDateValidatorIso,
2713
+ AllowedDatesValidatorIso,
2714
+ // form helpers
2715
+ SixFormDirective,
2716
+ SixFormUtilDirective,
2717
+ // router link directive
2718
+ SixRouterLinkDirective,
2719
+ // sidebar helpers
2720
+ ActiveSidebarItemDirective,
2721
+ ActiveSidebarItemGroupDirective,
2722
+ ActiveSidebarDirective] }); }
2723
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule }); }
2724
+ }
2725
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
2726
+ type: NgModule,
2727
+ args: [{
2728
+ declarations: [
2729
+ // proxies
2730
+ ...DIRECTIVES,
2731
+ // value accessors
2732
+ TextValueAccessor,
2733
+ NumericValueAccessor,
2734
+ RadioValueAccessor,
2735
+ DatepickerValueAccessor,
2736
+ DateValueAccessor,
2737
+ TimepickerValueAccessor,
2738
+ SelectValueAccessor,
2739
+ CheckboxValueAccessor,
2740
+ SwitchValueAccessor,
2741
+ RangeValueAccessor,
2742
+ // validators
2743
+ MinValidator,
2744
+ MaxValidator,
2745
+ MinDateValidator,
2746
+ MaxDateValidator,
2747
+ AllowedDatesValidator,
2748
+ MinDateValidatorIso,
2749
+ MaxDateValidatorIso,
2750
+ AllowedDatesValidatorIso,
2751
+ // form helpers
2752
+ SixFormDirective,
2753
+ SixFormUtilDirective,
2754
+ // router link directive
2755
+ SixRouterLinkDirective,
2756
+ // sidebar helpers
2757
+ ActiveSidebarItemDirective,
2758
+ ActiveSidebarItemGroupDirective,
2759
+ ActiveSidebarDirective,
2760
+ ],
2761
+ imports: [],
2762
+ exports: [
2763
+ // proxies
2764
+ ...DIRECTIVES,
2765
+ // value accessors
2766
+ TextValueAccessor,
2767
+ NumericValueAccessor,
2768
+ RadioValueAccessor,
2769
+ DatepickerValueAccessor,
2770
+ DateValueAccessor,
2771
+ TimepickerValueAccessor,
2772
+ SelectValueAccessor,
2773
+ CheckboxValueAccessor,
2774
+ SwitchValueAccessor,
2775
+ RangeValueAccessor,
2776
+ // validators
2777
+ MinValidator,
2778
+ MaxValidator,
2779
+ MinDateValidator,
2780
+ MaxDateValidator,
2781
+ AllowedDatesValidator,
2782
+ MinDateValidatorIso,
2783
+ MaxDateValidatorIso,
2784
+ AllowedDatesValidatorIso,
2785
+ // form helpers
2786
+ SixFormDirective,
2787
+ SixFormUtilDirective,
2788
+ // router link directive
2789
+ SixRouterLinkDirective,
2790
+ // sidebar helpers
2791
+ ActiveSidebarItemDirective,
2792
+ ActiveSidebarItemGroupDirective,
2793
+ ActiveSidebarDirective,
2794
+ ],
2795
+ }]
2796
+ }] });
2797
+
2798
+ class AlertService {
2799
+ constructor() {
2800
+ this.ngZone = inject(NgZone);
2801
+ }
2802
+ /**
2803
+ * Displays an alert as a toast notification.
2804
+ */
2805
+ showAlert(message, alertType, duration, iconName) {
2806
+ this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
2807
+ }
2808
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2809
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, providedIn: 'root' }); }
2810
+ }
2811
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, decorators: [{
2812
+ type: Injectable,
2813
+ args: [{ providedIn: 'root' }]
2814
+ }] });
2815
+
2816
+ /*
2817
+ * Public API Surface of ui-library-angular
2818
+ */
2819
+
2820
+ /**
2821
+ * Generated bundle index. Do not edit.
2822
+ */
2823
+
2824
+ 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, 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 };
2825
+ //# sourceMappingURL=six-group-ui-library-angular.mjs.map