@six-group/ui-library-angular 0.0.0-insider.bc75fdf → 0.0.0-insider.bc7af6b

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 +3404 -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 +1385 -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,3404 @@
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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", type: SixIconButton, isStandalone: false, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
918
+ };
919
+ SixIconButton = __decorate([
920
+ ProxyCmp({
921
+ inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
922
+ })
923
+ ], SixIconButton);
924
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", 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', '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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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.1.2", 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 SixPicto = class SixPicto {
1236
+ z;
1237
+ el;
1238
+ constructor(c, r, z) {
1239
+ this.z = z;
1240
+ c.detach();
1241
+ this.el = r.nativeElement;
1242
+ }
1243
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1244
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", type: SixPicto, isStandalone: false, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1245
+ };
1246
+ SixPicto = __decorate([
1247
+ ProxyCmp({
1248
+ inputs: ['size']
1249
+ })
1250
+ ], SixPicto);
1251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixPicto, decorators: [{
1252
+ type: Component,
1253
+ args: [{
1254
+ selector: 'six-picto',
1255
+ changeDetection: ChangeDetectionStrategy.OnPush,
1256
+ template: '<ng-content></ng-content>',
1257
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1258
+ inputs: ['size'],
1259
+ standalone: false
1260
+ }]
1261
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1262
+ let SixProgressBar = class SixProgressBar {
1263
+ z;
1264
+ el;
1265
+ constructor(c, r, z) {
1266
+ this.z = z;
1267
+ c.detach();
1268
+ this.el = r.nativeElement;
1269
+ }
1270
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1271
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1272
+ };
1273
+ SixProgressBar = __decorate([
1274
+ ProxyCmp({
1275
+ inputs: ['indeterminate', 'percentage']
1276
+ })
1277
+ ], SixProgressBar);
1278
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixProgressBar, decorators: [{
1279
+ type: Component,
1280
+ args: [{
1281
+ selector: 'six-progress-bar',
1282
+ changeDetection: ChangeDetectionStrategy.OnPush,
1283
+ template: '<ng-content></ng-content>',
1284
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1285
+ inputs: ['indeterminate', 'percentage'],
1286
+ standalone: false
1287
+ }]
1288
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1289
+ let SixProgressRing = class SixProgressRing {
1290
+ z;
1291
+ el;
1292
+ constructor(c, r, z) {
1293
+ this.z = z;
1294
+ c.detach();
1295
+ this.el = r.nativeElement;
1296
+ }
1297
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1298
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1299
+ };
1300
+ SixProgressRing = __decorate([
1301
+ ProxyCmp({
1302
+ inputs: ['percentage', 'size', 'strokeWidth']
1303
+ })
1304
+ ], SixProgressRing);
1305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixProgressRing, decorators: [{
1306
+ type: Component,
1307
+ args: [{
1308
+ selector: 'six-progress-ring',
1309
+ changeDetection: ChangeDetectionStrategy.OnPush,
1310
+ template: '<ng-content></ng-content>',
1311
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1312
+ inputs: ['percentage', 'size', 'strokeWidth'],
1313
+ standalone: false
1314
+ }]
1315
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1316
+ let SixRadio = class SixRadio {
1317
+ z;
1318
+ el;
1319
+ sixRadioBlur = new EventEmitter();
1320
+ sixRadioChange = new EventEmitter();
1321
+ sixRadioFocus = new EventEmitter();
1322
+ constructor(c, r, z) {
1323
+ this.z = z;
1324
+ c.detach();
1325
+ this.el = r.nativeElement;
1326
+ }
1327
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1328
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1329
+ };
1330
+ SixRadio = __decorate([
1331
+ ProxyCmp({
1332
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
1333
+ methods: ['setFocus', 'removeFocus']
1334
+ })
1335
+ ], SixRadio);
1336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRadio, decorators: [{
1337
+ type: Component,
1338
+ args: [{
1339
+ selector: 'six-radio',
1340
+ changeDetection: ChangeDetectionStrategy.OnPush,
1341
+ template: '<ng-content></ng-content>',
1342
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1343
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
1344
+ outputs: ['sixRadioBlur:six-radio-blur', 'sixRadioChange:six-radio-change', 'sixRadioFocus:six-radio-focus'],
1345
+ standalone: false
1346
+ }]
1347
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRadioBlur: [{
1348
+ type: Output
1349
+ }], sixRadioChange: [{
1350
+ type: Output
1351
+ }], sixRadioFocus: [{
1352
+ type: Output
1353
+ }] } });
1354
+ let SixRange = class SixRange {
1355
+ z;
1356
+ el;
1357
+ sixRangeChange = new EventEmitter();
1358
+ sixRangeBlur = new EventEmitter();
1359
+ sixRangeFocus = new EventEmitter();
1360
+ constructor(c, r, z) {
1361
+ this.z = z;
1362
+ c.detach();
1363
+ this.el = r.nativeElement;
1364
+ }
1365
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1366
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1367
+ };
1368
+ SixRange = __decorate([
1369
+ ProxyCmp({
1370
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
1371
+ methods: ['setFocus', 'removeFocus']
1372
+ })
1373
+ ], SixRange);
1374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRange, decorators: [{
1375
+ type: Component,
1376
+ args: [{
1377
+ selector: 'six-range',
1378
+ changeDetection: ChangeDetectionStrategy.OnPush,
1379
+ template: '<ng-content></ng-content>',
1380
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1381
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
1382
+ outputs: ['sixRangeChange:six-range-change', 'sixRangeBlur:six-range-blur', 'sixRangeFocus:six-range-focus'],
1383
+ standalone: false
1384
+ }]
1385
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRangeChange: [{
1386
+ type: Output
1387
+ }], sixRangeBlur: [{
1388
+ type: Output
1389
+ }], sixRangeFocus: [{
1390
+ type: Output
1391
+ }] } });
1392
+ let SixRating = class SixRating {
1393
+ z;
1394
+ el;
1395
+ sixRatingBlur = new EventEmitter();
1396
+ sixRatingChange = new EventEmitter();
1397
+ sixRatingFocus = new EventEmitter();
1398
+ constructor(c, r, z) {
1399
+ this.z = z;
1400
+ c.detach();
1401
+ this.el = r.nativeElement;
1402
+ }
1403
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1404
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1405
+ };
1406
+ SixRating = __decorate([
1407
+ ProxyCmp({
1408
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value']
1409
+ })
1410
+ ], SixRating);
1411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRating, decorators: [{
1412
+ type: Component,
1413
+ args: [{
1414
+ selector: 'six-rating',
1415
+ changeDetection: ChangeDetectionStrategy.OnPush,
1416
+ template: '<ng-content></ng-content>',
1417
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1418
+ inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value'],
1419
+ outputs: ['sixRatingBlur:six-rating-blur', 'sixRatingChange:six-rating-change', 'sixRatingFocus:six-rating-focus'],
1420
+ standalone: false
1421
+ }]
1422
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRatingBlur: [{
1423
+ type: Output
1424
+ }], sixRatingChange: [{
1425
+ type: Output
1426
+ }], sixRatingFocus: [{
1427
+ type: Output
1428
+ }] } });
1429
+ let SixRoot = class SixRoot {
1430
+ z;
1431
+ el;
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.1.2", ngImport: i0, type: SixRoot, 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.1.2", 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 });
1439
+ };
1440
+ SixRoot = __decorate([
1441
+ ProxyCmp({
1442
+ inputs: ['padded', 'stage', 'version']
1443
+ })
1444
+ ], SixRoot);
1445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRoot, decorators: [{
1446
+ type: Component,
1447
+ args: [{
1448
+ selector: 'six-root',
1449
+ changeDetection: ChangeDetectionStrategy.OnPush,
1450
+ template: '<ng-content></ng-content>',
1451
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1452
+ inputs: ['padded', 'stage', 'version'],
1453
+ standalone: false
1454
+ }]
1455
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1456
+ let SixSearchField = class SixSearchField {
1457
+ z;
1458
+ el;
1459
+ sixSearchFieldChange = new EventEmitter();
1460
+ constructor(c, r, z) {
1461
+ this.z = z;
1462
+ c.detach();
1463
+ this.el = r.nativeElement;
1464
+ }
1465
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1466
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1467
+ };
1468
+ SixSearchField = __decorate([
1469
+ ProxyCmp({
1470
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
1471
+ })
1472
+ ], SixSearchField);
1473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSearchField, decorators: [{
1474
+ type: Component,
1475
+ args: [{
1476
+ selector: 'six-search-field',
1477
+ changeDetection: ChangeDetectionStrategy.OnPush,
1478
+ template: '<ng-content></ng-content>',
1479
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1480
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
1481
+ outputs: ['sixSearchFieldChange:six-search-field-change'],
1482
+ standalone: false
1483
+ }]
1484
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSearchFieldChange: [{
1485
+ type: Output
1486
+ }] } });
1487
+ let SixSelect = class SixSelect {
1488
+ z;
1489
+ el;
1490
+ sixSelectChange = new EventEmitter();
1491
+ sixSelectFocus = new EventEmitter();
1492
+ sixSelectBlur = new EventEmitter();
1493
+ constructor(c, r, z) {
1494
+ this.z = z;
1495
+ c.detach();
1496
+ this.el = r.nativeElement;
1497
+ }
1498
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1499
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1500
+ };
1501
+ SixSelect = __decorate([
1502
+ ProxyCmp({
1503
+ 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'],
1504
+ methods: ['setFocus']
1505
+ })
1506
+ ], SixSelect);
1507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSelect, decorators: [{
1508
+ type: Component,
1509
+ args: [{
1510
+ selector: 'six-select',
1511
+ changeDetection: ChangeDetectionStrategy.OnPush,
1512
+ template: '<ng-content></ng-content>',
1513
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1514
+ 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'],
1515
+ outputs: ['sixSelectChange:six-select-change', 'sixSelectFocus:six-select-focus', 'sixSelectBlur:six-select-blur'],
1516
+ standalone: false
1517
+ }]
1518
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSelectChange: [{
1519
+ type: Output
1520
+ }], sixSelectFocus: [{
1521
+ type: Output
1522
+ }], sixSelectBlur: [{
1523
+ type: Output
1524
+ }] } });
1525
+ let SixSidebar = class SixSidebar {
1526
+ z;
1527
+ el;
1528
+ sixSidebarShow = new EventEmitter();
1529
+ sixSidebarAfterShow = new EventEmitter();
1530
+ sixSidebarHide = new EventEmitter();
1531
+ sixSidebarAfterHide = new EventEmitter();
1532
+ sixSidebarInitialFocus = new EventEmitter();
1533
+ constructor(c, r, z) {
1534
+ this.z = z;
1535
+ c.detach();
1536
+ this.el = r.nativeElement;
1537
+ }
1538
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1539
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1540
+ };
1541
+ SixSidebar = __decorate([
1542
+ ProxyCmp({
1543
+ inputs: ['open', 'position', 'toggled', 'width'],
1544
+ methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
1545
+ })
1546
+ ], SixSidebar);
1547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSidebar, decorators: [{
1548
+ type: Component,
1549
+ args: [{
1550
+ selector: 'six-sidebar',
1551
+ changeDetection: ChangeDetectionStrategy.OnPush,
1552
+ template: '<ng-content></ng-content>',
1553
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1554
+ inputs: ['open', 'position', 'toggled', 'width'],
1555
+ outputs: ['sixSidebarShow:six-sidebar-show', 'sixSidebarAfterShow:six-sidebar-after-show', 'sixSidebarHide:six-sidebar-hide', 'sixSidebarAfterHide:six-sidebar-after-hide', 'sixSidebarInitialFocus:six-sidebar-initial-focus'],
1556
+ standalone: false
1557
+ }]
1558
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSidebarShow: [{
1559
+ type: Output
1560
+ }], sixSidebarAfterShow: [{
1561
+ type: Output
1562
+ }], sixSidebarHide: [{
1563
+ type: Output
1564
+ }], sixSidebarAfterHide: [{
1565
+ type: Output
1566
+ }], sixSidebarInitialFocus: [{
1567
+ type: Output
1568
+ }] } });
1569
+ let SixSidebarItem = class SixSidebarItem {
1570
+ z;
1571
+ el;
1572
+ constructor(c, r, z) {
1573
+ this.z = z;
1574
+ c.detach();
1575
+ this.el = r.nativeElement;
1576
+ }
1577
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1578
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1579
+ };
1580
+ SixSidebarItem = __decorate([
1581
+ ProxyCmp({
1582
+ inputs: ['disabled', 'href', 'icon', 'selected', 'value']
1583
+ })
1584
+ ], SixSidebarItem);
1585
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSidebarItem, decorators: [{
1586
+ type: Component,
1587
+ args: [{
1588
+ selector: 'six-sidebar-item',
1589
+ changeDetection: ChangeDetectionStrategy.OnPush,
1590
+ template: '<ng-content></ng-content>',
1591
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1592
+ inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
1593
+ standalone: false
1594
+ }]
1595
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1596
+ let SixSidebarItemGroup = class SixSidebarItemGroup {
1597
+ z;
1598
+ el;
1599
+ constructor(c, r, z) {
1600
+ this.z = z;
1601
+ c.detach();
1602
+ this.el = r.nativeElement;
1603
+ }
1604
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1605
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1606
+ };
1607
+ SixSidebarItemGroup = __decorate([
1608
+ ProxyCmp({
1609
+ inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
1610
+ })
1611
+ ], SixSidebarItemGroup);
1612
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
1613
+ type: Component,
1614
+ args: [{
1615
+ selector: 'six-sidebar-item-group',
1616
+ changeDetection: ChangeDetectionStrategy.OnPush,
1617
+ template: '<ng-content></ng-content>',
1618
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1619
+ inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
1620
+ standalone: false
1621
+ }]
1622
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1623
+ let SixSpinner = class SixSpinner {
1624
+ z;
1625
+ el;
1626
+ constructor(c, r, z) {
1627
+ this.z = z;
1628
+ c.detach();
1629
+ this.el = r.nativeElement;
1630
+ }
1631
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1632
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1633
+ };
1634
+ SixSpinner = __decorate([
1635
+ ProxyCmp({
1636
+ inputs: ['logo', 'six']
1637
+ })
1638
+ ], SixSpinner);
1639
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSpinner, decorators: [{
1640
+ type: Component,
1641
+ args: [{
1642
+ selector: 'six-spinner',
1643
+ changeDetection: ChangeDetectionStrategy.OnPush,
1644
+ template: '<ng-content></ng-content>',
1645
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1646
+ inputs: ['logo', 'six'],
1647
+ standalone: false
1648
+ }]
1649
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1650
+ let SixStageIndicator = class SixStageIndicator {
1651
+ z;
1652
+ el;
1653
+ constructor(c, r, z) {
1654
+ this.z = z;
1655
+ c.detach();
1656
+ this.el = r.nativeElement;
1657
+ }
1658
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1659
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", type: SixStageIndicator, isStandalone: false, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1660
+ };
1661
+ SixStageIndicator = __decorate([
1662
+ ProxyCmp({
1663
+ inputs: ['stage']
1664
+ })
1665
+ ], SixStageIndicator);
1666
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixStageIndicator, decorators: [{
1667
+ type: Component,
1668
+ args: [{
1669
+ selector: 'six-stage-indicator',
1670
+ changeDetection: ChangeDetectionStrategy.OnPush,
1671
+ template: '<ng-content></ng-content>',
1672
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1673
+ inputs: ['stage'],
1674
+ standalone: false
1675
+ }]
1676
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1677
+ let SixSwitch = class SixSwitch {
1678
+ z;
1679
+ el;
1680
+ sixSwitchBlur = new EventEmitter();
1681
+ sixSwitchChange = new EventEmitter();
1682
+ sixSwitchFocus = new EventEmitter();
1683
+ constructor(c, r, z) {
1684
+ this.z = z;
1685
+ c.detach();
1686
+ this.el = r.nativeElement;
1687
+ }
1688
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1689
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1690
+ };
1691
+ SixSwitch = __decorate([
1692
+ ProxyCmp({
1693
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
1694
+ methods: ['setFocus', 'removeFocus']
1695
+ })
1696
+ ], SixSwitch);
1697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixSwitch, decorators: [{
1698
+ type: Component,
1699
+ args: [{
1700
+ selector: 'six-switch',
1701
+ changeDetection: ChangeDetectionStrategy.OnPush,
1702
+ template: '<ng-content></ng-content>',
1703
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1704
+ inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
1705
+ outputs: ['sixSwitchBlur:six-switch-blur', 'sixSwitchChange:six-switch-change', 'sixSwitchFocus:six-switch-focus'],
1706
+ standalone: false
1707
+ }]
1708
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSwitchBlur: [{
1709
+ type: Output
1710
+ }], sixSwitchChange: [{
1711
+ type: Output
1712
+ }], sixSwitchFocus: [{
1713
+ type: Output
1714
+ }] } });
1715
+ let SixTab = class SixTab {
1716
+ z;
1717
+ el;
1718
+ sixTabClose = new EventEmitter();
1719
+ constructor(c, r, z) {
1720
+ this.z = z;
1721
+ c.detach();
1722
+ this.el = r.nativeElement;
1723
+ }
1724
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1725
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1726
+ };
1727
+ SixTab = __decorate([
1728
+ ProxyCmp({
1729
+ inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
1730
+ methods: ['setFocus', 'removeFocus']
1731
+ })
1732
+ ], SixTab);
1733
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTab, decorators: [{
1734
+ type: Component,
1735
+ args: [{
1736
+ selector: 'six-tab',
1737
+ changeDetection: ChangeDetectionStrategy.OnPush,
1738
+ template: '<ng-content></ng-content>',
1739
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1740
+ inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
1741
+ outputs: ['sixTabClose:six-tab-close'],
1742
+ standalone: false
1743
+ }]
1744
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTabClose: [{
1745
+ type: Output
1746
+ }] } });
1747
+ let SixTabGroup = class SixTabGroup {
1748
+ z;
1749
+ el;
1750
+ sixTabShow = new EventEmitter();
1751
+ sixTabHide = new EventEmitter();
1752
+ constructor(c, r, z) {
1753
+ this.z = z;
1754
+ c.detach();
1755
+ this.el = r.nativeElement;
1756
+ }
1757
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1758
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1759
+ };
1760
+ SixTabGroup = __decorate([
1761
+ ProxyCmp({
1762
+ inputs: ['noScrollControls', 'placement'],
1763
+ methods: ['show']
1764
+ })
1765
+ ], SixTabGroup);
1766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTabGroup, decorators: [{
1767
+ type: Component,
1768
+ args: [{
1769
+ selector: 'six-tab-group',
1770
+ changeDetection: ChangeDetectionStrategy.OnPush,
1771
+ template: '<ng-content></ng-content>',
1772
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1773
+ inputs: ['noScrollControls', 'placement'],
1774
+ outputs: ['sixTabShow:six-tab-show', 'sixTabHide:six-tab-hide'],
1775
+ standalone: false
1776
+ }]
1777
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTabShow: [{
1778
+ type: Output
1779
+ }], sixTabHide: [{
1780
+ type: Output
1781
+ }] } });
1782
+ let SixTabPanel = class SixTabPanel {
1783
+ z;
1784
+ el;
1785
+ constructor(c, r, z) {
1786
+ this.z = z;
1787
+ c.detach();
1788
+ this.el = r.nativeElement;
1789
+ }
1790
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1791
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1792
+ };
1793
+ SixTabPanel = __decorate([
1794
+ ProxyCmp({
1795
+ inputs: ['active', 'name']
1796
+ })
1797
+ ], SixTabPanel);
1798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTabPanel, decorators: [{
1799
+ type: Component,
1800
+ args: [{
1801
+ selector: 'six-tab-panel',
1802
+ changeDetection: ChangeDetectionStrategy.OnPush,
1803
+ template: '<ng-content></ng-content>',
1804
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1805
+ inputs: ['active', 'name'],
1806
+ standalone: false
1807
+ }]
1808
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1809
+ let SixTag = class SixTag {
1810
+ z;
1811
+ el;
1812
+ sixTagClear = new EventEmitter();
1813
+ constructor(c, r, z) {
1814
+ this.z = z;
1815
+ c.detach();
1816
+ this.el = r.nativeElement;
1817
+ }
1818
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1819
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1820
+ };
1821
+ SixTag = __decorate([
1822
+ ProxyCmp({
1823
+ inputs: ['clearable', 'pill', 'size', 'type']
1824
+ })
1825
+ ], SixTag);
1826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTag, decorators: [{
1827
+ type: Component,
1828
+ args: [{
1829
+ selector: 'six-tag',
1830
+ changeDetection: ChangeDetectionStrategy.OnPush,
1831
+ template: '<ng-content></ng-content>',
1832
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1833
+ inputs: ['clearable', 'pill', 'size', 'type'],
1834
+ outputs: ['sixTagClear:six-tag-clear'],
1835
+ standalone: false
1836
+ }]
1837
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTagClear: [{
1838
+ type: Output
1839
+ }] } });
1840
+ let SixTextarea = class SixTextarea {
1841
+ z;
1842
+ el;
1843
+ sixTextareaChange = new EventEmitter();
1844
+ sixTextareaInput = new EventEmitter();
1845
+ sixTextareaFocus = new EventEmitter();
1846
+ sixTextareaBlur = 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.1.2", ngImport: i0, type: SixTextarea, 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.1.2", 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 });
1854
+ };
1855
+ SixTextarea = __decorate([
1856
+ ProxyCmp({
1857
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1858
+ methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
1859
+ })
1860
+ ], SixTextarea);
1861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTextarea, decorators: [{
1862
+ type: Component,
1863
+ args: [{
1864
+ selector: 'six-textarea',
1865
+ changeDetection: ChangeDetectionStrategy.OnPush,
1866
+ template: '<ng-content></ng-content>',
1867
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1868
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1869
+ outputs: ['sixTextareaChange:six-textarea-change', 'sixTextareaInput:six-textarea-input', 'sixTextareaFocus:six-textarea-focus', 'sixTextareaBlur:six-textarea-blur'],
1870
+ standalone: false
1871
+ }]
1872
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTextareaChange: [{
1873
+ type: Output
1874
+ }], sixTextareaInput: [{
1875
+ type: Output
1876
+ }], sixTextareaFocus: [{
1877
+ type: Output
1878
+ }], sixTextareaBlur: [{
1879
+ type: Output
1880
+ }] } });
1881
+ let SixTile = class SixTile {
1882
+ z;
1883
+ el;
1884
+ sixTileClosed = new EventEmitter();
1885
+ sixTileSelected = new EventEmitter();
1886
+ constructor(c, r, z) {
1887
+ this.z = z;
1888
+ c.detach();
1889
+ this.el = r.nativeElement;
1890
+ }
1891
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1892
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", type: SixTile, isStandalone: false, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", size: "size" }, outputs: { sixTileClosed: "sixTileClosed", sixTileSelected: "sixTileSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1893
+ };
1894
+ SixTile = __decorate([
1895
+ ProxyCmp({
1896
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1897
+ methods: ['hide', 'show']
1898
+ })
1899
+ ], SixTile);
1900
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTile, decorators: [{
1901
+ type: Component,
1902
+ args: [{
1903
+ selector: 'six-tile',
1904
+ changeDetection: ChangeDetectionStrategy.OnPush,
1905
+ template: '<ng-content></ng-content>',
1906
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1907
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1908
+ outputs: ['sixTileClosed:six-tile-closed', 'sixTileSelected:six-tile-selected'],
1909
+ standalone: false
1910
+ }]
1911
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTileClosed: [{
1912
+ type: Output
1913
+ }], sixTileSelected: [{
1914
+ type: Output
1915
+ }] } });
1916
+ let SixTimepicker = class SixTimepicker {
1917
+ z;
1918
+ el;
1919
+ sixTimepickerChange = new EventEmitter();
1920
+ sixTimepickerChangeDebounced = new EventEmitter();
1921
+ sixTimepickerClear = new EventEmitter();
1922
+ constructor(c, r, z) {
1923
+ this.z = z;
1924
+ c.detach();
1925
+ this.el = r.nativeElement;
1926
+ }
1927
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1928
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1929
+ };
1930
+ SixTimepicker = __decorate([
1931
+ ProxyCmp({
1932
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1933
+ methods: ['setFocus']
1934
+ })
1935
+ ], SixTimepicker);
1936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTimepicker, decorators: [{
1937
+ type: Component,
1938
+ args: [{
1939
+ selector: 'six-timepicker',
1940
+ changeDetection: ChangeDetectionStrategy.OnPush,
1941
+ template: '<ng-content></ng-content>',
1942
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1943
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1944
+ outputs: ['sixTimepickerChange:six-timepicker-change', 'sixTimepickerChangeDebounced:six-timepicker-change-debounced', 'sixTimepickerClear:six-timepicker-clear'],
1945
+ standalone: false
1946
+ }]
1947
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTimepickerChange: [{
1948
+ type: Output
1949
+ }], sixTimepickerChangeDebounced: [{
1950
+ type: Output
1951
+ }], sixTimepickerClear: [{
1952
+ type: Output
1953
+ }] } });
1954
+ let SixTooltip = class SixTooltip {
1955
+ z;
1956
+ el;
1957
+ sixTooltipShow = new EventEmitter();
1958
+ sixTooltipAfterShow = new EventEmitter();
1959
+ sixTooltipHide = new EventEmitter();
1960
+ sixTooltipAfterHide = new EventEmitter();
1961
+ constructor(c, r, z) {
1962
+ this.z = z;
1963
+ c.detach();
1964
+ this.el = r.nativeElement;
1965
+ }
1966
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1967
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.2", 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 });
1968
+ };
1969
+ SixTooltip = __decorate([
1970
+ ProxyCmp({
1971
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1972
+ methods: ['show', 'hide']
1973
+ })
1974
+ ], SixTooltip);
1975
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixTooltip, decorators: [{
1976
+ type: Component,
1977
+ args: [{
1978
+ selector: 'six-tooltip',
1979
+ changeDetection: ChangeDetectionStrategy.OnPush,
1980
+ template: '<ng-content></ng-content>',
1981
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1982
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1983
+ outputs: ['sixTooltipShow:six-tooltip-show', 'sixTooltipAfterShow:six-tooltip-after-show', 'sixTooltipHide:six-tooltip-hide', 'sixTooltipAfterHide:six-tooltip-after-hide'],
1984
+ standalone: false
1985
+ }]
1986
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTooltipShow: [{
1987
+ type: Output
1988
+ }], sixTooltipAfterShow: [{
1989
+ type: Output
1990
+ }], sixTooltipHide: [{
1991
+ type: Output
1992
+ }], sixTooltipAfterHide: [{
1993
+ type: Output
1994
+ }] } });
1995
+
1996
+ const DIRECTIVES = [
1997
+ SixAlert,
1998
+ SixAvatar,
1999
+ SixBadge,
2000
+ SixBreadcrumbs,
2001
+ SixBreadcrumbsItem,
2002
+ SixButton,
2003
+ SixCard,
2004
+ SixCheckbox,
2005
+ SixDate,
2006
+ SixDatepicker,
2007
+ SixDetails,
2008
+ SixDialog,
2009
+ SixDrawer,
2010
+ SixDropdown,
2011
+ SixError,
2012
+ SixErrorPage,
2013
+ SixFileList,
2014
+ SixFileListItem,
2015
+ SixFileUpload,
2016
+ SixFooter,
2017
+ SixGroupLabel,
2018
+ SixHeader,
2019
+ SixHeaderDropdownItem,
2020
+ SixHeaderItem,
2021
+ SixHeaderMenuButton,
2022
+ SixIcon,
2023
+ SixIconButton,
2024
+ SixInput,
2025
+ SixItemPicker,
2026
+ SixLanguageSwitcher,
2027
+ SixLayoutGrid,
2028
+ SixLogo,
2029
+ SixMainContainer,
2030
+ SixMenu,
2031
+ SixMenuDivider,
2032
+ SixMenuItem,
2033
+ SixMenuLabel,
2034
+ SixPicto,
2035
+ SixProgressBar,
2036
+ SixProgressRing,
2037
+ SixRadio,
2038
+ SixRange,
2039
+ SixRating,
2040
+ SixRoot,
2041
+ SixSearchField,
2042
+ SixSelect,
2043
+ SixSidebar,
2044
+ SixSidebarItem,
2045
+ SixSidebarItemGroup,
2046
+ SixSpinner,
2047
+ SixStageIndicator,
2048
+ SixSwitch,
2049
+ SixTab,
2050
+ SixTabGroup,
2051
+ SixTabPanel,
2052
+ SixTag,
2053
+ SixTextarea,
2054
+ SixTile,
2055
+ SixTimepicker,
2056
+ SixTooltip
2057
+ ];
2058
+
2059
+ class ValidationMessagesService {
2060
+ getErrorMessage(language, error) {
2061
+ return getErrorMessage(language, error);
2062
+ }
2063
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2064
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' });
2065
+ }
2066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ValidationMessagesService, decorators: [{
2067
+ type: Injectable,
2068
+ args: [{ providedIn: 'root' }]
2069
+ }] });
2070
+
2071
+ const DEFAULT_UI_LIBRARY_CONFIG = {
2072
+ showAsteriskOnRequiredValidator: false,
2073
+ disableValidationService: false,
2074
+ };
2075
+ const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
2076
+
2077
+ class ValueAccessor {
2078
+ injector;
2079
+ el;
2080
+ statusChanges;
2081
+ ngControl;
2082
+ initialErrorText;
2083
+ validationMessagesService = inject(ValidationMessagesService);
2084
+ config = inject(UI_LIBRARY_CONFIG);
2085
+ constructor(injector, el) {
2086
+ this.injector = injector;
2087
+ this.el = el;
2088
+ }
2089
+ onChange = () => { };
2090
+ onTouched = () => { };
2091
+ registerOnChange(fn) {
2092
+ this.onChange = fn;
2093
+ }
2094
+ registerOnTouched(fn) {
2095
+ this.onTouched = fn;
2096
+ }
2097
+ writeValue(value) {
2098
+ this.el.nativeElement.value = value;
2099
+ this.updateValidation();
2100
+ }
2101
+ /**
2102
+ * Notifies the ControlValueAccessor of a change in the value of the control.
2103
+ *
2104
+ * This is called by each of the ValueAccessor directives when we want to update
2105
+ * the status and validity of the form control. For example with text components this
2106
+ * is called when the input event is fired. For select components this is called
2107
+ * when the change event is fired.
2108
+ *
2109
+ * This also updates the form status on the element by setting the 'invalid' property to true/false.
2110
+ *
2111
+ * @param el The component element.
2112
+ * @param value The new value of the control.
2113
+ */
2114
+ handleValueChange(el, value) {
2115
+ if (el === this.el.nativeElement) {
2116
+ this.onChange(value);
2117
+ this.updateValidation();
2118
+ }
2119
+ }
2120
+ _handleBlurEvent(el) {
2121
+ if (el === this.el.nativeElement) {
2122
+ this.onTouched();
2123
+ this.updateValidation();
2124
+ }
2125
+ }
2126
+ updateValidation() {
2127
+ nextTick(() => {
2128
+ if (this.ngControl?.control == null)
2129
+ return;
2130
+ const element = this.el.nativeElement;
2131
+ const control = this.ngControl?.control;
2132
+ const invalid = control.status === 'INVALID' && control.dirty && control.touched;
2133
+ element.invalid = invalid;
2134
+ // If the module is configured to do so, display error messages for invalid controls
2135
+ if (!this.config.disableValidationService) {
2136
+ const errorTexts = invalid ? this.initialErrorText || this.getErrorTexts(control) : undefined;
2137
+ element.errorText = errorTexts ?? '';
2138
+ }
2139
+ // When the module is configured to do so, display an asterisk next to any form control that has a required validator
2140
+ if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
2141
+ element.required = true;
2142
+ }
2143
+ });
2144
+ }
2145
+ setDisabledState(isDisabled) {
2146
+ this.el.nativeElement.disabled = isDisabled;
2147
+ }
2148
+ ngOnDestroy() {
2149
+ if (this.statusChanges) {
2150
+ this.statusChanges.unsubscribe();
2151
+ }
2152
+ }
2153
+ ngAfterViewInit() {
2154
+ this.initialErrorText = this.el.nativeElement?.errorText?.trim() || undefined;
2155
+ try {
2156
+ this.ngControl = this.injector.get(NgControl);
2157
+ }
2158
+ catch {
2159
+ /* No FormControl or ngModel binding */
2160
+ }
2161
+ if (!this.ngControl) {
2162
+ return;
2163
+ }
2164
+ // Listen for changes in validity, disabled, or pending states
2165
+ if (this.ngControl.statusChanges) {
2166
+ this.statusChanges = this.ngControl.statusChanges.subscribe(() => this.updateValidation());
2167
+ }
2168
+ /**
2169
+ * TODO FW-2787: Remove this in favor of https://github.com/angular/angular/issues/10887
2170
+ * whenever it is implemented.
2171
+ */
2172
+ const formControl = this.ngControl.control;
2173
+ if (formControl) {
2174
+ const methodsToPatch = ['markAsTouched', 'markAllAsTouched', 'markAsUntouched', 'markAsDirty', 'markAsPristine'];
2175
+ methodsToPatch.forEach((method) => {
2176
+ if (typeof formControl[method] !== 'undefined') {
2177
+ const oldFn = formControl[method].bind(formControl);
2178
+ formControl[method] = (...params) => {
2179
+ oldFn(...params);
2180
+ this.updateValidation();
2181
+ };
2182
+ }
2183
+ });
2184
+ }
2185
+ }
2186
+ getErrorTexts(control) {
2187
+ if (control.errors == null) {
2188
+ console.warn('no errors for invalid control', control);
2189
+ return [];
2190
+ }
2191
+ const errorList = Object.entries(control.errors);
2192
+ if (errorList.length <= 0) {
2193
+ console.warn('no errors for invalid control', control);
2194
+ return [];
2195
+ }
2196
+ return errorList.map((error) => {
2197
+ const [key, value] = error;
2198
+ return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
2199
+ });
2200
+ }
2201
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2202
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: ValueAccessor, isStandalone: true, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
2203
+ }
2204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ValueAccessor, decorators: [{
2205
+ type: Directive
2206
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
2207
+ type: HostListener,
2208
+ args: ['blur', ['$event.target']]
2209
+ }] } });
2210
+ const nextTick = (h) => {
2211
+ if (typeof __zone_symbol__requestAnimationFrame === 'function') {
2212
+ return __zone_symbol__requestAnimationFrame(h);
2213
+ }
2214
+ if (typeof requestAnimationFrame === 'function') {
2215
+ return requestAnimationFrame(h);
2216
+ }
2217
+ return setTimeout(h);
2218
+ };
2219
+
2220
+ class TextValueAccessor extends ValueAccessor {
2221
+ constructor(injector, el) {
2222
+ super(injector, el);
2223
+ }
2224
+ handleInputEvent(el) {
2225
+ if (el) {
2226
+ this.handleValueChange(el, el.value);
2227
+ }
2228
+ }
2229
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2230
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: TextValueAccessor, isStandalone: false, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
2231
+ {
2232
+ provide: NG_VALUE_ACCESSOR,
2233
+ useExisting: TextValueAccessor,
2234
+ multi: true,
2235
+ },
2236
+ ], usesInheritance: true, ngImport: i0 });
2237
+ }
2238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: TextValueAccessor, decorators: [{
2239
+ type: Directive,
2240
+ args: [{
2241
+ selector: 'six-input:not([type=number]),six-textarea',
2242
+ providers: [
2243
+ {
2244
+ provide: NG_VALUE_ACCESSOR,
2245
+ useExisting: TextValueAccessor,
2246
+ multi: true,
2247
+ },
2248
+ ],
2249
+ standalone: false,
2250
+ }]
2251
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2252
+ type: HostListener,
2253
+ args: ['input', ['$event.target']]
2254
+ }] } });
2255
+
2256
+ class NumericValueAccessor extends ValueAccessor {
2257
+ constructor(injector, el) {
2258
+ super(injector, el);
2259
+ }
2260
+ handleInputEvent(el) {
2261
+ if (el) {
2262
+ this.handleValueChange(el, el.value);
2263
+ }
2264
+ }
2265
+ registerOnChange(fn) {
2266
+ super.registerOnChange((value) => {
2267
+ fn(value === '' ? null : parseFloat(value));
2268
+ });
2269
+ }
2270
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2271
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: NumericValueAccessor, isStandalone: false, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
2272
+ {
2273
+ provide: NG_VALUE_ACCESSOR,
2274
+ useExisting: NumericValueAccessor,
2275
+ multi: true,
2276
+ },
2277
+ ], usesInheritance: true, ngImport: i0 });
2278
+ }
2279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: NumericValueAccessor, decorators: [{
2280
+ type: Directive,
2281
+ args: [{
2282
+ selector: 'six-input[type=number]',
2283
+ providers: [
2284
+ {
2285
+ provide: NG_VALUE_ACCESSOR,
2286
+ useExisting: NumericValueAccessor,
2287
+ multi: true,
2288
+ },
2289
+ ],
2290
+ standalone: false,
2291
+ }]
2292
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2293
+ type: HostListener,
2294
+ args: ['input', ['$event.target']]
2295
+ }] } });
2296
+
2297
+ class RadioValueAccessor extends ValueAccessor {
2298
+ constructor(injector, el) {
2299
+ super(injector, el);
2300
+ }
2301
+ value;
2302
+ formControlName;
2303
+ name;
2304
+ handleChangeEvent(el) {
2305
+ if (el) {
2306
+ this.handleValueChange(el, this.value);
2307
+ }
2308
+ }
2309
+ ngOnInit() {
2310
+ this.checkName();
2311
+ }
2312
+ writeValue(value) {
2313
+ this.el.nativeElement.checked = value === this.value;
2314
+ this.updateValidation();
2315
+ }
2316
+ checkName() {
2317
+ if (this.name && this.formControlName && this.name !== this.formControlName) {
2318
+ throw new Error(`
2319
+ If you define both a name and a formControlName attribute on your radio button, their values
2320
+ must match. Ex: <six-input type="radio" formControlName="food" name="food">
2321
+ `);
2322
+ }
2323
+ if (!this.name && this.formControlName) {
2324
+ this.name = this.formControlName;
2325
+ this.el.nativeElement.name = this.formControlName;
2326
+ }
2327
+ }
2328
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2329
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: RadioValueAccessor, isStandalone: false, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2330
+ {
2331
+ provide: NG_VALUE_ACCESSOR,
2332
+ useExisting: RadioValueAccessor,
2333
+ multi: true,
2334
+ },
2335
+ ], usesInheritance: true, ngImport: i0 });
2336
+ }
2337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: RadioValueAccessor, decorators: [{
2338
+ type: Directive,
2339
+ args: [{
2340
+ selector: 'six-radio',
2341
+ providers: [
2342
+ {
2343
+ provide: NG_VALUE_ACCESSOR,
2344
+ useExisting: RadioValueAccessor,
2345
+ multi: true,
2346
+ },
2347
+ ],
2348
+ standalone: false,
2349
+ }]
2350
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
2351
+ type: Input
2352
+ }], formControlName: [{
2353
+ type: Input
2354
+ }], name: [{
2355
+ type: Input
2356
+ }], handleChangeEvent: [{
2357
+ type: HostListener,
2358
+ args: ['change', ['$event.target']]
2359
+ }] } });
2360
+
2361
+ class DatepickerValueAccessor extends ValueAccessor {
2362
+ constructor(injector, el) {
2363
+ super(injector, el);
2364
+ }
2365
+ handleChangeEvent(el) {
2366
+ if (el) {
2367
+ this.handleValueChange(el, el.value);
2368
+ }
2369
+ }
2370
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: DatepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2371
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: DatepickerValueAccessor, isStandalone: false, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2372
+ {
2373
+ provide: NG_VALUE_ACCESSOR,
2374
+ useExisting: DatepickerValueAccessor,
2375
+ multi: true,
2376
+ },
2377
+ ], usesInheritance: true, ngImport: i0 });
2378
+ }
2379
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
2380
+ type: Directive,
2381
+ args: [{
2382
+ selector: 'six-datepicker',
2383
+ providers: [
2384
+ {
2385
+ provide: NG_VALUE_ACCESSOR,
2386
+ useExisting: DatepickerValueAccessor,
2387
+ multi: true,
2388
+ },
2389
+ ],
2390
+ standalone: false,
2391
+ }]
2392
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2393
+ type: HostListener,
2394
+ args: ['change', ['$event.target']]
2395
+ }] } });
2396
+
2397
+ /**
2398
+ * This directive intercepts the ngSubmit event of an Angular form and introduces
2399
+ * a supplementary event named sixSubmit. The sixSubmit event is triggered exclusively
2400
+ * when the form is valid. In cases where the form is considered invalid, this directive
2401
+ * takes proactive actions by marking all form controls as touched and dirty. Additionally,
2402
+ * it shifts the focus to the initial invalid form element, facilitating quick error
2403
+ * resolution.
2404
+ *
2405
+ * To utilize this directive, apply it to an Angular form.
2406
+ * ```html
2407
+ * <form [formGroup]="form" sixForm (sixSubmit)="onSubmit($event)">
2408
+ * <!-- form content -->
2409
+ * </form>
2410
+ * ```
2411
+ *
2412
+ * For users needing greater flexibility in determining when error messages are displayed,
2413
+ * or for those who prefer not to rely solely on the form submission event,
2414
+ * an alternative is to use the SixFormUtilDirective.
2415
+ */
2416
+ class SixFormDirective {
2417
+ elementRef;
2418
+ formGroupDirective;
2419
+ /**
2420
+ * Emits an event when the form is valid and the form submission has been triggered.
2421
+ */
2422
+ sixSubmit = new EventEmitter();
2423
+ onNgSubmit(event) {
2424
+ if (this.formGroupDirective.invalid) {
2425
+ focusInvalidField(this.formGroupDirective, this.elementRef);
2426
+ }
2427
+ else {
2428
+ this.sixSubmit.emit(event);
2429
+ }
2430
+ }
2431
+ constructor(elementRef, formGroupDirective) {
2432
+ this.elementRef = elementRef;
2433
+ this.formGroupDirective = formGroupDirective;
2434
+ }
2435
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixFormDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive });
2436
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: SixFormDirective, isStandalone: false, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 });
2437
+ }
2438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixFormDirective, decorators: [{
2439
+ type: Directive,
2440
+ args: [{
2441
+ selector: 'form[sixForm]',
2442
+ standalone: false,
2443
+ }]
2444
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
2445
+ type: Output
2446
+ }], onNgSubmit: [{
2447
+ type: HostListener,
2448
+ args: ['ngSubmit', ['$event']]
2449
+ }] } });
2450
+ /**
2451
+ * This directive provides a utility method, that marks all form controls
2452
+ * as touched and dirty, and focuses the first invalid form element.
2453
+ *
2454
+ * To utilize this directive, apply it to an Angular form.
2455
+ * ```html
2456
+ * <form [formGroup]="form" sixFormUtil (ngSubmit)="onSubmit($event)">
2457
+ * <!-- form content -->
2458
+ * </form>
2459
+ * ```
2460
+ *
2461
+ * Then, get a reference to the directive and invoke `focusInvalidField()` if the
2462
+ * form is invalid:
2463
+ * ```ts
2464
+ * @ViewChild(SixFormUtilDirective) sixFormUtil!: SixFormUtilDirective;
2465
+ * // ...
2466
+ * onSubmit() {
2467
+ * if (this.form.invalid) {
2468
+ * this.sixFormUtil.focusInvalidField();
2469
+ * } else {
2470
+ * // ...
2471
+ * }
2472
+ * }
2473
+ * ```
2474
+ */
2475
+ class SixFormUtilDirective {
2476
+ elementRef;
2477
+ formGroupDirective;
2478
+ constructor(elementRef, formGroupDirective) {
2479
+ this.elementRef = elementRef;
2480
+ this.formGroupDirective = formGroupDirective;
2481
+ }
2482
+ /** markAllControlsAsDirty(Object.values(formGroup.controls));
2483
+ * Marks all form controls as touched and dirty, and focuses the first
2484
+ * invalid form element.
2485
+ */
2486
+ focusInvalidField() {
2487
+ focusInvalidField(this.formGroupDirective, this.elementRef);
2488
+ }
2489
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixFormUtilDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive });
2490
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 });
2491
+ }
2492
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixFormUtilDirective, decorators: [{
2493
+ type: Directive,
2494
+ args: [{
2495
+ selector: '[sixFormUtil]',
2496
+ standalone: false,
2497
+ }]
2498
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
2499
+ function focusInvalidField(formGroupDirective, formElement) {
2500
+ formGroupDirective.form.markAllAsTouched();
2501
+ markAllAsDirty([formGroupDirective.form]);
2502
+ const invalidElement = getInvalidElement(formElement.nativeElement);
2503
+ if ('setFocus' in invalidElement && typeof invalidElement?.setFocus === 'function') {
2504
+ invalidElement.setFocus();
2505
+ }
2506
+ if ('focus' in invalidElement && typeof invalidElement?.focus === 'function') {
2507
+ invalidElement.focus();
2508
+ }
2509
+ }
2510
+ function getInvalidElement(parent) {
2511
+ const invalidElement = parent.querySelector('.ng-invalid');
2512
+ if (invalidElement == null) {
2513
+ return parent;
2514
+ }
2515
+ return getInvalidElement(invalidElement);
2516
+ }
2517
+ function markAllAsDirty(controls) {
2518
+ controls.forEach((control) => {
2519
+ if (control instanceof FormControl) {
2520
+ control.markAsDirty({ onlySelf: true });
2521
+ }
2522
+ else if (control instanceof FormGroup) {
2523
+ control.markAsDirty({ onlySelf: true });
2524
+ markAllAsDirty(Object.values(control.controls));
2525
+ }
2526
+ else if (control instanceof FormArray) {
2527
+ control.markAsDirty({ onlySelf: true });
2528
+ markAllAsDirty(control.controls);
2529
+ }
2530
+ });
2531
+ }
2532
+
2533
+ class SixUiLibraryValidators {
2534
+ static minDate(mindate) {
2535
+ return (control) => {
2536
+ if (control.value == null)
2537
+ return null;
2538
+ const actualDate = control.value;
2539
+ return actualDate.getTime() >= mindate.getTime() ? null : { mindate: { mindate, actual: actualDate } };
2540
+ };
2541
+ }
2542
+ static maxDate(maxdate) {
2543
+ return (control) => {
2544
+ if (control.value == null)
2545
+ return null;
2546
+ const actualDate = control.value;
2547
+ return actualDate.getTime() <= maxdate.getTime() ? null : { maxdate: { maxdate, actual: actualDate } };
2548
+ };
2549
+ }
2550
+ static allowedDates(allowedDates = () => true) {
2551
+ return (control) => {
2552
+ if (control.value == null)
2553
+ return null;
2554
+ const allowed = allowedDates(control.value);
2555
+ return allowed ? null : { invaliddate: { actual: control.value } };
2556
+ };
2557
+ }
2558
+ static minDateIso(mindate) {
2559
+ return (control) => {
2560
+ if (control.value == null || control.value === '')
2561
+ return null;
2562
+ const actualDate = control.value;
2563
+ return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
2564
+ };
2565
+ }
2566
+ static maxDateIso(maxdate) {
2567
+ return (control) => {
2568
+ if (control.value == null || control.value === '')
2569
+ return null;
2570
+ const actualDate = control.value;
2571
+ return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
2572
+ };
2573
+ }
2574
+ static allowedDatesIso(allowedDates = () => true) {
2575
+ return (control) => {
2576
+ if (control.value == null || control.value === '')
2577
+ return null;
2578
+ const allowed = allowedDates(control.value);
2579
+ return allowed ? null : { invaliddate: { actual: control.value } };
2580
+ };
2581
+ }
2582
+ }
2583
+ class MinDateValidator {
2584
+ min;
2585
+ validate(control) {
2586
+ if (this.min != null) {
2587
+ return SixUiLibraryValidators.minDate(this.min)(control);
2588
+ }
2589
+ return null;
2590
+ }
2591
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2592
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: MinDateValidator, isStandalone: false, selector: "six-datepicker[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 });
2593
+ }
2594
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MinDateValidator, decorators: [{
2595
+ type: Directive,
2596
+ args: [{
2597
+ selector: 'six-datepicker[min]',
2598
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
2599
+ standalone: false,
2600
+ }]
2601
+ }], propDecorators: { min: [{
2602
+ type: Input
2603
+ }] } });
2604
+ class MaxDateValidator {
2605
+ max;
2606
+ validate(control) {
2607
+ if (this.max != null) {
2608
+ return SixUiLibraryValidators.maxDate(this.max)(control);
2609
+ }
2610
+ return null;
2611
+ }
2612
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2613
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: MaxDateValidator, isStandalone: false, selector: "six-datepicker[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 });
2614
+ }
2615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MaxDateValidator, decorators: [{
2616
+ type: Directive,
2617
+ args: [{
2618
+ selector: 'six-datepicker[max]',
2619
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
2620
+ standalone: false,
2621
+ }]
2622
+ }], propDecorators: { max: [{
2623
+ type: Input
2624
+ }] } });
2625
+ class AllowedDatesValidator {
2626
+ allowedDates = () => true;
2627
+ validate(control) {
2628
+ return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
2629
+ }
2630
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2631
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: AllowedDatesValidator, isStandalone: false, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 });
2632
+ }
2633
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AllowedDatesValidator, decorators: [{
2634
+ type: Directive,
2635
+ args: [{
2636
+ selector: 'six-datepicker[allowedDates]',
2637
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
2638
+ standalone: false,
2639
+ }]
2640
+ }], propDecorators: { allowedDates: [{
2641
+ type: Input
2642
+ }] } });
2643
+ class MinDateValidatorIso {
2644
+ min;
2645
+ validate(control) {
2646
+ if (this.min != null) {
2647
+ return SixUiLibraryValidators.minDateIso(this.min)(control);
2648
+ }
2649
+ return null;
2650
+ }
2651
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2652
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: MinDateValidatorIso, isStandalone: false, selector: "six-date[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }], ngImport: i0 });
2653
+ }
2654
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MinDateValidatorIso, decorators: [{
2655
+ type: Directive,
2656
+ args: [{
2657
+ selector: 'six-date[min]',
2658
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
2659
+ standalone: false,
2660
+ }]
2661
+ }], propDecorators: { min: [{
2662
+ type: Input
2663
+ }] } });
2664
+ class MaxDateValidatorIso {
2665
+ max;
2666
+ validate(control) {
2667
+ if (this.max != null) {
2668
+ return SixUiLibraryValidators.maxDateIso(this.max)(control);
2669
+ }
2670
+ return null;
2671
+ }
2672
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2673
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: MaxDateValidatorIso, isStandalone: false, selector: "six-date[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }], ngImport: i0 });
2674
+ }
2675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
2676
+ type: Directive,
2677
+ args: [{
2678
+ selector: 'six-date[max]',
2679
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
2680
+ standalone: false,
2681
+ }]
2682
+ }], propDecorators: { max: [{
2683
+ type: Input
2684
+ }] } });
2685
+ class AllowedDatesValidatorIso {
2686
+ allowedDates = () => true;
2687
+ validate(control) {
2688
+ return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
2689
+ }
2690
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2691
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: AllowedDatesValidatorIso, isStandalone: false, selector: "six-date[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }], ngImport: i0 });
2692
+ }
2693
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
2694
+ type: Directive,
2695
+ args: [{
2696
+ selector: 'six-date[allowedDates]',
2697
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
2698
+ standalone: false,
2699
+ }]
2700
+ }], propDecorators: { allowedDates: [{
2701
+ type: Input
2702
+ }] } });
2703
+ class MinValidator {
2704
+ min;
2705
+ validate(control) {
2706
+ return Validators.min(toFloat(this.min))(control);
2707
+ }
2708
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2709
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: MinValidator, isStandalone: false, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 });
2710
+ }
2711
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MinValidator, decorators: [{
2712
+ type: Directive,
2713
+ args: [{
2714
+ selector: 'six-input[type=number][min]',
2715
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
2716
+ standalone: false,
2717
+ }]
2718
+ }], propDecorators: { min: [{
2719
+ type: Input
2720
+ }] } });
2721
+ class MaxValidator {
2722
+ max;
2723
+ validate(control) {
2724
+ return Validators.max(toFloat(this.max))(control);
2725
+ }
2726
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2727
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: MaxValidator, isStandalone: false, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 });
2728
+ }
2729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: MaxValidator, decorators: [{
2730
+ type: Directive,
2731
+ args: [{
2732
+ selector: 'six-input[type=number][max]',
2733
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
2734
+ standalone: false,
2735
+ }]
2736
+ }], propDecorators: { max: [{
2737
+ type: Input
2738
+ }] } });
2739
+ function toFloat(value) {
2740
+ return typeof value === 'number' ? value : parseFloat(value);
2741
+ }
2742
+
2743
+ class SelectValueAccessor extends ValueAccessor {
2744
+ constructor(injector, el) {
2745
+ super(injector, el);
2746
+ }
2747
+ handleChangeEvent(el) {
2748
+ if (el) {
2749
+ this.handleValueChange(el, el.value);
2750
+ }
2751
+ }
2752
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2753
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: SelectValueAccessor, isStandalone: false, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2754
+ {
2755
+ provide: NG_VALUE_ACCESSOR,
2756
+ useExisting: SelectValueAccessor,
2757
+ multi: true,
2758
+ },
2759
+ ], usesInheritance: true, ngImport: i0 });
2760
+ }
2761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SelectValueAccessor, decorators: [{
2762
+ type: Directive,
2763
+ args: [{
2764
+ selector: 'six-select',
2765
+ providers: [
2766
+ {
2767
+ provide: NG_VALUE_ACCESSOR,
2768
+ useExisting: SelectValueAccessor,
2769
+ multi: true,
2770
+ },
2771
+ ],
2772
+ standalone: false,
2773
+ }]
2774
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2775
+ type: HostListener,
2776
+ args: ['change', ['$event.target']]
2777
+ }] } });
2778
+
2779
+ class CheckboxValueAccessor extends ValueAccessor {
2780
+ constructor(injector, el) {
2781
+ super(injector, el);
2782
+ }
2783
+ handleChangeEvent(el) {
2784
+ if (el) {
2785
+ this.handleValueChange(el, el.checked);
2786
+ }
2787
+ }
2788
+ writeValue(value) {
2789
+ this.el.nativeElement.checked = value === true;
2790
+ this.updateValidation();
2791
+ }
2792
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: CheckboxValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2793
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: CheckboxValueAccessor, isStandalone: false, selector: "six-checkbox:not([six-checkbox-group])", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2794
+ {
2795
+ provide: NG_VALUE_ACCESSOR,
2796
+ useExisting: CheckboxValueAccessor,
2797
+ multi: true,
2798
+ },
2799
+ ], usesInheritance: true, ngImport: i0 });
2800
+ }
2801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
2802
+ type: Directive,
2803
+ args: [{
2804
+ selector: 'six-checkbox:not([six-checkbox-group])',
2805
+ providers: [
2806
+ {
2807
+ provide: NG_VALUE_ACCESSOR,
2808
+ useExisting: CheckboxValueAccessor,
2809
+ multi: true,
2810
+ },
2811
+ ],
2812
+ standalone: false,
2813
+ }]
2814
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2815
+ type: HostListener,
2816
+ args: ['change', ['$event.target']]
2817
+ }] } });
2818
+
2819
+ class SixCheckboxGroupDirective {
2820
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixCheckboxGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2821
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: SixCheckboxGroupDirective, isStandalone: false, selector: "[six-checkbox-group]", ngImport: i0 });
2822
+ }
2823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixCheckboxGroupDirective, decorators: [{
2824
+ type: Directive,
2825
+ args: [{
2826
+ selector: '[six-checkbox-group]',
2827
+ standalone: false,
2828
+ }]
2829
+ }] });
2830
+ // Accessor applies only when the SixCheckboxGroupDirective attribute is present
2831
+ class CheckboxMultiSelectValueAccessor extends ValueAccessor {
2832
+ value;
2833
+ constructor(injector, el) {
2834
+ super(injector, el);
2835
+ }
2836
+ onHostChange(el) {
2837
+ if (!el)
2838
+ return;
2839
+ const checkbox = el;
2840
+ const checked = checkbox.checked;
2841
+ const current = this.ngControl?.value;
2842
+ if (!current)
2843
+ return;
2844
+ const set = new Set(current);
2845
+ checked ? set.add(this.value) : set.delete(this.value);
2846
+ this.handleValueChange(el, Array.from(set));
2847
+ }
2848
+ writeValue(values) {
2849
+ const arr = Array.isArray(values) ? values : [];
2850
+ const checkbox = this.el.nativeElement;
2851
+ checkbox.checked = arr.includes(this.value);
2852
+ this.updateValidation();
2853
+ }
2854
+ setDisabledState(isDisabled) {
2855
+ this.el.nativeElement.disabled = isDisabled;
2856
+ }
2857
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: CheckboxMultiSelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2858
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: CheckboxMultiSelectValueAccessor, isStandalone: false, selector: "six-checkbox[six-checkbox-group]", inputs: { value: "value" }, host: { listeners: { "change": "onHostChange($event.target)" } }, providers: [
2859
+ {
2860
+ provide: NG_VALUE_ACCESSOR,
2861
+ useExisting: CheckboxMultiSelectValueAccessor,
2862
+ multi: true,
2863
+ },
2864
+ ], usesInheritance: true, ngImport: i0 });
2865
+ }
2866
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: CheckboxMultiSelectValueAccessor, decorators: [{
2867
+ type: Directive,
2868
+ args: [{
2869
+ selector: 'six-checkbox[six-checkbox-group]',
2870
+ providers: [
2871
+ {
2872
+ provide: NG_VALUE_ACCESSOR,
2873
+ useExisting: CheckboxMultiSelectValueAccessor,
2874
+ multi: true,
2875
+ },
2876
+ ],
2877
+ standalone: false,
2878
+ }]
2879
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
2880
+ type: Input,
2881
+ args: [{ required: true }]
2882
+ }], onHostChange: [{
2883
+ type: HostListener,
2884
+ args: ['change', ['$event.target']]
2885
+ }] } });
2886
+
2887
+ class RangeValueAccessor extends ValueAccessor {
2888
+ constructor(injector, el) {
2889
+ super(injector, el);
2890
+ }
2891
+ handleInputEvent(el) {
2892
+ if (el) {
2893
+ this.handleValueChange(el, el.value);
2894
+ }
2895
+ }
2896
+ registerOnChange(fn) {
2897
+ super.registerOnChange((value) => {
2898
+ fn(value === '' ? null : parseFloat(value));
2899
+ });
2900
+ }
2901
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: RangeValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2902
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: RangeValueAccessor, isStandalone: false, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
2903
+ {
2904
+ provide: NG_VALUE_ACCESSOR,
2905
+ useExisting: RangeValueAccessor,
2906
+ multi: true,
2907
+ },
2908
+ ], usesInheritance: true, ngImport: i0 });
2909
+ }
2910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: RangeValueAccessor, decorators: [{
2911
+ type: Directive,
2912
+ args: [{
2913
+ selector: 'six-range',
2914
+ providers: [
2915
+ {
2916
+ provide: NG_VALUE_ACCESSOR,
2917
+ useExisting: RangeValueAccessor,
2918
+ multi: true,
2919
+ },
2920
+ ],
2921
+ standalone: false,
2922
+ }]
2923
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
2924
+ type: HostListener,
2925
+ args: ['input', ['$event.target']]
2926
+ }] } });
2927
+
2928
+ class SwitchValueAccessor extends ValueAccessor {
2929
+ constructor(injector, el) {
2930
+ super(injector, el);
2931
+ }
2932
+ handleChangeEvent(el) {
2933
+ if (el) {
2934
+ this.handleValueChange(el, el.checked);
2935
+ }
2936
+ }
2937
+ writeValue(value) {
2938
+ this.el.nativeElement.checked = value === true;
2939
+ this.updateValidation();
2940
+ }
2941
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2942
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: SwitchValueAccessor, isStandalone: false, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2943
+ {
2944
+ provide: NG_VALUE_ACCESSOR,
2945
+ useExisting: SwitchValueAccessor,
2946
+ multi: true,
2947
+ },
2948
+ ], usesInheritance: true, ngImport: i0 });
2949
+ }
2950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SwitchValueAccessor, decorators: [{
2951
+ type: Directive,
2952
+ args: [{
2953
+ selector: 'six-switch',
2954
+ providers: [
2955
+ {
2956
+ provide: NG_VALUE_ACCESSOR,
2957
+ useExisting: SwitchValueAccessor,
2958
+ multi: true,
2959
+ },
2960
+ ],
2961
+ standalone: false,
2962
+ }]
2963
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
2964
+ type: HostListener,
2965
+ args: ['change', ['$event.target']]
2966
+ }] } });
2967
+
2968
+ class TimepickerValueAccessor extends ValueAccessor {
2969
+ constructor(injector, el) {
2970
+ super(injector, el);
2971
+ }
2972
+ handleChangeEvent(el) {
2973
+ if (el) {
2974
+ this.handleValueChange(el, el.value);
2975
+ }
2976
+ }
2977
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: TimepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2978
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: TimepickerValueAccessor, isStandalone: false, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2979
+ {
2980
+ provide: NG_VALUE_ACCESSOR,
2981
+ useExisting: TimepickerValueAccessor,
2982
+ multi: true,
2983
+ },
2984
+ ], usesInheritance: true, ngImport: i0 });
2985
+ }
2986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
2987
+ type: Directive,
2988
+ args: [{
2989
+ selector: 'six-timepicker',
2990
+ providers: [
2991
+ {
2992
+ provide: NG_VALUE_ACCESSOR,
2993
+ useExisting: TimepickerValueAccessor,
2994
+ multi: true,
2995
+ },
2996
+ ],
2997
+ standalone: false,
2998
+ }]
2999
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
3000
+ type: HostListener,
3001
+ args: ['change', ['$event.target']]
3002
+ }] } });
3003
+
3004
+ /**
3005
+ * Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
3006
+ */
3007
+ class SixRouterLinkDirective {
3008
+ locationStrategy;
3009
+ elementRef;
3010
+ router;
3011
+ renderer;
3012
+ routerLinkDirective;
3013
+ constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
3014
+ this.locationStrategy = locationStrategy;
3015
+ this.elementRef = elementRef;
3016
+ this.router = router;
3017
+ this.renderer = renderer;
3018
+ this.routerLinkDirective = routerLinkDirective;
3019
+ }
3020
+ onClick(event) {
3021
+ // Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
3022
+ event.preventDefault();
3023
+ }
3024
+ routerLink;
3025
+ queryParams;
3026
+ fragment;
3027
+ queryParamsHandling;
3028
+ relativeTo;
3029
+ ngOnInit() {
3030
+ this.updateTargetUrlAndHref();
3031
+ }
3032
+ ngOnChanges() {
3033
+ this.updateTargetUrlAndHref();
3034
+ }
3035
+ updateTargetUrlAndHref() {
3036
+ if (this.routerLinkDirective?.urlTree) {
3037
+ const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
3038
+ this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
3039
+ // Remove the `tabindex` attribute to prevent redundant focus behavior.
3040
+ // Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
3041
+ // but custom components like `six-button` already handle focusability.
3042
+ // Keeping the tabindex would cause the element to receive focus twice.
3043
+ this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
3044
+ }
3045
+ }
3046
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", 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 });
3047
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", 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 });
3048
+ }
3049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
3050
+ type: Directive,
3051
+ args: [{
3052
+ selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
3053
+ standalone: false,
3054
+ }]
3055
+ }], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
3056
+ type: Optional
3057
+ }] }], propDecorators: { onClick: [{
3058
+ type: HostListener,
3059
+ args: ['click', ['$event']]
3060
+ }], routerLink: [{
3061
+ type: Input
3062
+ }], queryParams: [{
3063
+ type: Input
3064
+ }], fragment: [{
3065
+ type: Input
3066
+ }], queryParamsHandling: [{
3067
+ type: Input
3068
+ }], relativeTo: [{
3069
+ type: Input
3070
+ }] } });
3071
+
3072
+ /**
3073
+ * Enables Angular router integration for the six-sidebar component.
3074
+ *
3075
+ * When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
3076
+ * it activates automatic route-based selection for sidebar items and groups.
3077
+ *
3078
+ * @recommended Add this directive to enable automatic route-based navigation in sidebars.
3079
+ *
3080
+ * @example
3081
+ * ```html
3082
+ * <six-sidebar sixRouterLinkActive>
3083
+ * <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
3084
+ * <six-sidebar-item-group>
3085
+ * <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
3086
+ * </six-sidebar-item-group>
3087
+ * </six-sidebar>
3088
+ * ```
3089
+ */
3090
+ class ActiveSidebarDirective {
3091
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
3092
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 });
3093
+ }
3094
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
3095
+ type: Directive,
3096
+ args: [{
3097
+ selector: 'six-sidebar[sixRouterLinkActive]',
3098
+ standalone: false,
3099
+ }]
3100
+ }] });
3101
+ /**
3102
+ * Enhances six-sidebar-item with Angular router integration.
3103
+ *
3104
+ * This directive automatically manages the 'selected' state of sidebar items based on the current route.
3105
+ * When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
3106
+ *
3107
+ * @requires RouterLinkActive
3108
+ * @optional ActiveSidebarDirective - If present, enables route-based selection
3109
+ */
3110
+ class ActiveSidebarItemDirective {
3111
+ routerLinkActive = inject(RouterLinkActive);
3112
+ sidebarItem = inject(SixSidebarItem);
3113
+ activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
3114
+ get selected() {
3115
+ if (this.activeSidebarDirective == null) {
3116
+ return this.sidebarItem.selected;
3117
+ }
3118
+ else {
3119
+ return this.routerLinkActive.isActive;
3120
+ }
3121
+ }
3122
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
3123
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: ActiveSidebarItemDirective, isStandalone: false, selector: "six-sidebar-item", host: { properties: { "selected": "this.selected" } }, hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 });
3124
+ }
3125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
3126
+ type: Directive,
3127
+ args: [{
3128
+ selector: 'six-sidebar-item',
3129
+ hostDirectives: [RouterLinkActive],
3130
+ standalone: false,
3131
+ }]
3132
+ }], propDecorators: { selected: [{
3133
+ type: HostBinding,
3134
+ args: ['selected']
3135
+ }] } });
3136
+ /**
3137
+ * Enhances six-sidebar-item-group with Angular router integration.
3138
+ *
3139
+ * This directive automatically manages the 'open' state of sidebar groups based on the active route.
3140
+ * When a child route is active, the group automatically expands to show the active item.
3141
+ *
3142
+ * @requires RouterLinkActive
3143
+ * @optional ActiveSidebarDirective - If present, enables route-based expansion
3144
+ */
3145
+ class ActiveSidebarItemGroupDirective {
3146
+ routerLinkActive = inject(RouterLinkActive);
3147
+ sidebarItemGroup = inject(SixSidebarItemGroup);
3148
+ activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
3149
+ sidebarItems;
3150
+ get open() {
3151
+ if (this.activeSidebarDirective == null) {
3152
+ return this.sidebarItemGroup.open;
3153
+ }
3154
+ if (this.sidebarItems?.length > 0) {
3155
+ return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
3156
+ }
3157
+ return this.routerLinkActive.isActive;
3158
+ }
3159
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
3160
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", 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 });
3161
+ }
3162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
3163
+ type: Directive,
3164
+ args: [{
3165
+ selector: 'six-sidebar-item-group',
3166
+ hostDirectives: [RouterLinkActive],
3167
+ standalone: false,
3168
+ }]
3169
+ }], propDecorators: { sidebarItems: [{
3170
+ type: ContentChildren,
3171
+ args: [SixSidebarItem]
3172
+ }], open: [{
3173
+ type: HostBinding,
3174
+ args: ['open']
3175
+ }] } });
3176
+
3177
+ class DateValueAccessor extends ValueAccessor {
3178
+ constructor(injector, el) {
3179
+ super(injector, el);
3180
+ }
3181
+ handleInputEvent(el) {
3182
+ if (el) {
3183
+ this.handleValueChange(el, el.value);
3184
+ }
3185
+ }
3186
+ writeValue(value) {
3187
+ this.el.nativeElement.value = value == null ? '' : value;
3188
+ this.updateValidation();
3189
+ }
3190
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: DateValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3191
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.2", type: DateValueAccessor, isStandalone: false, selector: "six-date", host: { listeners: { "change": "handleInputEvent($event.target)" } }, providers: [
3192
+ {
3193
+ provide: NG_VALUE_ACCESSOR,
3194
+ useExisting: DateValueAccessor,
3195
+ multi: true,
3196
+ },
3197
+ ], usesInheritance: true, ngImport: i0 });
3198
+ }
3199
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: DateValueAccessor, decorators: [{
3200
+ type: Directive,
3201
+ args: [{
3202
+ selector: 'six-date',
3203
+ providers: [
3204
+ {
3205
+ provide: NG_VALUE_ACCESSOR,
3206
+ useExisting: DateValueAccessor,
3207
+ multi: true,
3208
+ },
3209
+ ],
3210
+ standalone: false,
3211
+ }]
3212
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
3213
+ type: HostListener,
3214
+ args: ['change', ['$event.target']]
3215
+ }] } });
3216
+
3217
+ class UiLibraryAngularModule {
3218
+ static forRoot(customValidationMessagesService, config) {
3219
+ const mergedConfig = {
3220
+ ...DEFAULT_UI_LIBRARY_CONFIG,
3221
+ ...config,
3222
+ };
3223
+ return {
3224
+ ngModule: UiLibraryAngularModule,
3225
+ providers: [
3226
+ {
3227
+ provide: APP_INITIALIZER,
3228
+ useFactory: () => async () => defineCustomElements(),
3229
+ multi: true,
3230
+ },
3231
+ { provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
3232
+ { provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
3233
+ ],
3234
+ };
3235
+ }
3236
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3237
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.2", 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, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
3238
+ // value accessors
3239
+ TextValueAccessor,
3240
+ NumericValueAccessor,
3241
+ RadioValueAccessor,
3242
+ DatepickerValueAccessor,
3243
+ DateValueAccessor,
3244
+ TimepickerValueAccessor,
3245
+ SelectValueAccessor,
3246
+ CheckboxValueAccessor,
3247
+ CheckboxMultiSelectValueAccessor,
3248
+ SixCheckboxGroupDirective,
3249
+ SwitchValueAccessor,
3250
+ RangeValueAccessor,
3251
+ // validators
3252
+ MinValidator,
3253
+ MaxValidator,
3254
+ MinDateValidator,
3255
+ MaxDateValidator,
3256
+ AllowedDatesValidator,
3257
+ MinDateValidatorIso,
3258
+ MaxDateValidatorIso,
3259
+ AllowedDatesValidatorIso,
3260
+ // form helpers
3261
+ SixFormDirective,
3262
+ SixFormUtilDirective,
3263
+ // router link directive
3264
+ SixRouterLinkDirective,
3265
+ // sidebar helpers
3266
+ ActiveSidebarItemDirective,
3267
+ ActiveSidebarItemGroupDirective,
3268
+ 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, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
3269
+ // value accessors
3270
+ TextValueAccessor,
3271
+ NumericValueAccessor,
3272
+ RadioValueAccessor,
3273
+ DatepickerValueAccessor,
3274
+ DateValueAccessor,
3275
+ TimepickerValueAccessor,
3276
+ SelectValueAccessor,
3277
+ CheckboxValueAccessor,
3278
+ CheckboxMultiSelectValueAccessor,
3279
+ SixCheckboxGroupDirective,
3280
+ SwitchValueAccessor,
3281
+ RangeValueAccessor,
3282
+ // validators
3283
+ MinValidator,
3284
+ MaxValidator,
3285
+ MinDateValidator,
3286
+ MaxDateValidator,
3287
+ AllowedDatesValidator,
3288
+ MinDateValidatorIso,
3289
+ MaxDateValidatorIso,
3290
+ AllowedDatesValidatorIso,
3291
+ // form helpers
3292
+ SixFormDirective,
3293
+ SixFormUtilDirective,
3294
+ // router link directive
3295
+ SixRouterLinkDirective,
3296
+ // sidebar helpers
3297
+ ActiveSidebarItemDirective,
3298
+ ActiveSidebarItemGroupDirective,
3299
+ ActiveSidebarDirective] });
3300
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: UiLibraryAngularModule });
3301
+ }
3302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
3303
+ type: NgModule,
3304
+ args: [{
3305
+ declarations: [
3306
+ // proxies
3307
+ ...DIRECTIVES,
3308
+ // value accessors
3309
+ TextValueAccessor,
3310
+ NumericValueAccessor,
3311
+ RadioValueAccessor,
3312
+ DatepickerValueAccessor,
3313
+ DateValueAccessor,
3314
+ TimepickerValueAccessor,
3315
+ SelectValueAccessor,
3316
+ CheckboxValueAccessor,
3317
+ CheckboxMultiSelectValueAccessor,
3318
+ SixCheckboxGroupDirective,
3319
+ SwitchValueAccessor,
3320
+ RangeValueAccessor,
3321
+ // validators
3322
+ MinValidator,
3323
+ MaxValidator,
3324
+ MinDateValidator,
3325
+ MaxDateValidator,
3326
+ AllowedDatesValidator,
3327
+ MinDateValidatorIso,
3328
+ MaxDateValidatorIso,
3329
+ AllowedDatesValidatorIso,
3330
+ // form helpers
3331
+ SixFormDirective,
3332
+ SixFormUtilDirective,
3333
+ // router link directive
3334
+ SixRouterLinkDirective,
3335
+ // sidebar helpers
3336
+ ActiveSidebarItemDirective,
3337
+ ActiveSidebarItemGroupDirective,
3338
+ ActiveSidebarDirective,
3339
+ ],
3340
+ imports: [],
3341
+ exports: [
3342
+ // proxies
3343
+ ...DIRECTIVES,
3344
+ // value accessors
3345
+ TextValueAccessor,
3346
+ NumericValueAccessor,
3347
+ RadioValueAccessor,
3348
+ DatepickerValueAccessor,
3349
+ DateValueAccessor,
3350
+ TimepickerValueAccessor,
3351
+ SelectValueAccessor,
3352
+ CheckboxValueAccessor,
3353
+ CheckboxMultiSelectValueAccessor,
3354
+ SixCheckboxGroupDirective,
3355
+ SwitchValueAccessor,
3356
+ RangeValueAccessor,
3357
+ // validators
3358
+ MinValidator,
3359
+ MaxValidator,
3360
+ MinDateValidator,
3361
+ MaxDateValidator,
3362
+ AllowedDatesValidator,
3363
+ MinDateValidatorIso,
3364
+ MaxDateValidatorIso,
3365
+ AllowedDatesValidatorIso,
3366
+ // form helpers
3367
+ SixFormDirective,
3368
+ SixFormUtilDirective,
3369
+ // router link directive
3370
+ SixRouterLinkDirective,
3371
+ // sidebar helpers
3372
+ ActiveSidebarItemDirective,
3373
+ ActiveSidebarItemGroupDirective,
3374
+ ActiveSidebarDirective,
3375
+ ],
3376
+ }]
3377
+ }] });
3378
+
3379
+ class AlertService {
3380
+ ngZone = inject(NgZone);
3381
+ /**
3382
+ * Displays an alert as a toast notification.
3383
+ */
3384
+ showAlert(message, alertType, duration, iconName) {
3385
+ this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
3386
+ }
3387
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3388
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AlertService, providedIn: 'root' });
3389
+ }
3390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.2", ngImport: i0, type: AlertService, decorators: [{
3391
+ type: Injectable,
3392
+ args: [{ providedIn: 'root' }]
3393
+ }] });
3394
+
3395
+ /*
3396
+ * Public API Surface of ui-library-angular
3397
+ */
3398
+
3399
+ /**
3400
+ * Generated bundle index. Do not edit.
3401
+ */
3402
+
3403
+ 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, 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 };
3404
+ //# sourceMappingURL=six-group-ui-library-angular.mjs.map