@six-group/ui-library-angular 0.0.0-insider.d82aaa2 → 0.0.0-insider.d89f9dc

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