@six-group/ui-library-angular 0.0.0-insider.f37af2a → 0.0.0-insider.f552bb5

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