@six-group/ui-library-angular 0.0.0-insider.cd0cd0d → 0.0.0-insider.cec66ef

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 (62) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +6 -22
  3. package/esm2022/lib/control-value-accessors/checkbox-value-accessor.mjs +41 -0
  4. package/esm2022/lib/control-value-accessors/date-value-accessor.mjs +41 -0
  5. package/esm2022/lib/control-value-accessors/datepicker-value-accessor.mjs +37 -0
  6. package/esm2022/lib/control-value-accessors/numeric-value-accessor.mjs +42 -0
  7. package/{esm2020 → esm2022}/lib/control-value-accessors/radio-value-accessor.mjs +10 -10
  8. package/{esm2020 → esm2022}/lib/control-value-accessors/range-value-accessor.mjs +10 -10
  9. package/esm2022/lib/control-value-accessors/select-value-accessor.mjs +37 -0
  10. package/esm2022/lib/control-value-accessors/switch-value-accessor.mjs +41 -0
  11. package/esm2022/lib/control-value-accessors/text-value-accessor.mjs +37 -0
  12. package/esm2022/lib/control-value-accessors/timepicker-value-accessor.mjs +37 -0
  13. package/esm2022/lib/control-value-accessors/value-accessor.mjs +144 -0
  14. package/esm2022/lib/form/six-form.directive.mjs +134 -0
  15. package/esm2022/lib/link/six-router-link.directive.mjs +61 -0
  16. package/esm2022/lib/services/alert.service.mjs +21 -0
  17. package/{esm2020 → esm2022}/lib/services/validation-messages.service.mjs +4 -4
  18. package/esm2022/lib/sidebar/active-sidebar.directive.mjs +110 -0
  19. package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
  20. package/esm2022/lib/stencil-generated/components.mjs +1414 -0
  21. package/esm2022/lib/stencil-generated/index.mjs +61 -0
  22. package/esm2022/lib/ui-library-angular-config.mjs +6 -0
  23. package/esm2022/lib/ui-library-angular.module.mjs +175 -0
  24. package/esm2022/lib/validators/six-ui-library-validators.mjs +203 -0
  25. package/esm2022/public-api.mjs +31 -0
  26. package/fesm2022/six-group-ui-library-angular.mjs +2744 -0
  27. package/fesm2022/six-group-ui-library-angular.mjs.map +1 -0
  28. package/lib/control-value-accessors/date-value-accessor.d.ts +10 -0
  29. package/lib/control-value-accessors/radio-value-accessor.d.ts +1 -1
  30. package/lib/control-value-accessors/value-accessor.d.ts +3 -1
  31. package/lib/form/six-form.directive.d.ts +71 -0
  32. package/lib/link/six-router-link.directive.d.ts +26 -0
  33. package/lib/services/alert.service.d.ts +11 -0
  34. package/lib/sidebar/active-sidebar.directive.d.ts +59 -0
  35. package/lib/stencil-generated/components.d.ts +161 -139
  36. package/lib/stencil-generated/index.d.ts +1 -1
  37. package/lib/ui-library-angular-config.d.ts +6 -0
  38. package/lib/ui-library-angular.module.d.ts +13 -9
  39. package/lib/validators/six-ui-library-validators.d.ts +34 -7
  40. package/package.json +16 -13
  41. package/public-api.d.ts +5 -1
  42. package/esm2020/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
  43. package/esm2020/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
  44. package/esm2020/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
  45. package/esm2020/lib/control-value-accessors/select-value-accessor.mjs +0 -37
  46. package/esm2020/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
  47. package/esm2020/lib/control-value-accessors/text-value-accessor.mjs +0 -37
  48. package/esm2020/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
  49. package/esm2020/lib/control-value-accessors/value-accessor.mjs +0 -143
  50. package/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +0 -51
  51. package/esm2020/lib/stencil-generated/components.mjs +0 -1349
  52. package/esm2020/lib/stencil-generated/index.mjs +0 -56
  53. package/esm2020/lib/ui-library-angular.module.mjs +0 -123
  54. package/esm2020/lib/util/six-form-util.directive.mjs +0 -48
  55. package/esm2020/lib/validators/six-ui-library-validators.mjs +0 -116
  56. package/esm2020/public-api.mjs +0 -25
  57. package/fesm2015/six-group-ui-library-angular.mjs +0 -2172
  58. package/fesm2015/six-group-ui-library-angular.mjs.map +0 -1
  59. package/fesm2020/six-group-ui-library-angular.mjs +0 -2169
  60. package/fesm2020/six-group-ui-library-angular.mjs.map +0 -1
  61. package/lib/util/six-form-util.directive.d.ts +0 -10
  62. /package/{esm2020 → esm2022}/six-group-ui-library-angular.mjs +0 -0
@@ -0,0 +1,2744 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, Injectable, InjectionToken, 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 { Validators, NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS } from '@angular/forms';
8
+ import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
9
+ import * as i1$1 from '@angular/common';
10
+ import * as i2 from '@angular/router';
11
+ import { RouterLinkActive } from '@angular/router';
12
+
13
+ /* eslint-disable */
14
+ /* tslint:disable */
15
+ const proxyInputs = (Cmp, inputs) => {
16
+ const Prototype = Cmp.prototype;
17
+ inputs.forEach((item) => {
18
+ Object.defineProperty(Prototype, item, {
19
+ get() {
20
+ return this.el[item];
21
+ },
22
+ set(val) {
23
+ this.z.runOutsideAngular(() => (this.el[item] = val));
24
+ },
25
+ /**
26
+ * In the event that proxyInputs is called
27
+ * multiple times re-defining these inputs
28
+ * will cause an error to be thrown. As a result
29
+ * we set configurable: true to indicate these
30
+ * properties can be changed.
31
+ */
32
+ configurable: true,
33
+ });
34
+ });
35
+ };
36
+ const proxyMethods = (Cmp, methods) => {
37
+ const Prototype = Cmp.prototype;
38
+ methods.forEach((methodName) => {
39
+ Prototype[methodName] = function () {
40
+ const args = arguments;
41
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
42
+ };
43
+ });
44
+ };
45
+ const proxyOutputs = (instance, el, events) => {
46
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
47
+ };
48
+ const defineCustomElement = (tagName, customElement) => {
49
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
50
+ customElements.define(tagName, customElement);
51
+ }
52
+ };
53
+ // tslint:disable-next-line: only-arrow-functions
54
+ function ProxyCmp(opts) {
55
+ const decorator = function (cls) {
56
+ const { defineCustomElementFn, inputs, methods } = opts;
57
+ if (defineCustomElementFn !== undefined) {
58
+ defineCustomElementFn();
59
+ }
60
+ if (inputs) {
61
+ proxyInputs(cls, inputs);
62
+ }
63
+ if (methods) {
64
+ proxyMethods(cls, methods);
65
+ }
66
+ return cls;
67
+ };
68
+ return decorator;
69
+ }
70
+
71
+ let SixAlert = class SixAlert {
72
+ constructor(c, r, z) {
73
+ this.z = z;
74
+ c.detach();
75
+ this.el = r.nativeElement;
76
+ proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
77
+ }
78
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "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
+ const DEFAULT_UI_LIBRARY_CONFIG = {
1552
+ showAsteriskOnRequiredValidator: false,
1553
+ };
1554
+ const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
1555
+
1556
+ class ValueAccessor {
1557
+ constructor(injector, el) {
1558
+ this.injector = injector;
1559
+ this.el = el;
1560
+ this.validationMessagesService = inject(ValidationMessagesService);
1561
+ this.config = inject(UI_LIBRARY_CONFIG);
1562
+ this.onChange = () => { };
1563
+ this.onTouched = () => { };
1564
+ }
1565
+ registerOnChange(fn) {
1566
+ this.onChange = fn;
1567
+ }
1568
+ registerOnTouched(fn) {
1569
+ this.onTouched = fn;
1570
+ }
1571
+ writeValue(value) {
1572
+ this.el.nativeElement.value = value;
1573
+ this.updateValidation();
1574
+ }
1575
+ /**
1576
+ * Notifies the ControlValueAccessor of a change in the value of the control.
1577
+ *
1578
+ * This is called by each of the ValueAccessor directives when we want to update
1579
+ * the status and validity of the form control. For example with text components this
1580
+ * is called when the input event is fired. For select components this is called
1581
+ * when the change event is fired.
1582
+ *
1583
+ * This also updates the form status on the element by setting the 'invalid' property to true/false.
1584
+ *
1585
+ * @param el The component element.
1586
+ * @param value The new value of the control.
1587
+ */
1588
+ handleValueChange(el, value) {
1589
+ if (el === this.el.nativeElement) {
1590
+ this.onChange(value);
1591
+ this.updateValidation();
1592
+ }
1593
+ }
1594
+ _handleBlurEvent(el) {
1595
+ if (el === this.el.nativeElement) {
1596
+ this.onTouched();
1597
+ this.updateValidation();
1598
+ }
1599
+ }
1600
+ updateValidation() {
1601
+ nextTick(() => {
1602
+ if (this.ngControl?.control == null)
1603
+ return;
1604
+ const element = this.el.nativeElement;
1605
+ const control = this.ngControl?.control;
1606
+ const invalid = control.status === 'INVALID' && control.dirty && control.touched;
1607
+ let errorTexts;
1608
+ if (invalid) {
1609
+ errorTexts = this.initialErrorText || this.getErrorTexts(control);
1610
+ }
1611
+ element.invalid = invalid;
1612
+ element.errorText = errorTexts ?? '';
1613
+ // When the module is configured to do so, display an asterisk next to any form control that has a required validator
1614
+ if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
1615
+ element.required = true;
1616
+ }
1617
+ });
1618
+ }
1619
+ setDisabledState(isDisabled) {
1620
+ this.el.nativeElement.disabled = isDisabled;
1621
+ }
1622
+ ngOnDestroy() {
1623
+ if (this.statusChanges) {
1624
+ this.statusChanges.unsubscribe();
1625
+ }
1626
+ }
1627
+ ngAfterViewInit() {
1628
+ this.initialErrorText = this.el.nativeElement?.errorText?.trim() || undefined;
1629
+ try {
1630
+ this.ngControl = this.injector.get(NgControl);
1631
+ }
1632
+ catch {
1633
+ /* No FormControl or ngModel binding */
1634
+ }
1635
+ if (!this.ngControl) {
1636
+ return;
1637
+ }
1638
+ // Listen for changes in validity, disabled, or pending states
1639
+ if (this.ngControl.statusChanges) {
1640
+ this.statusChanges = this.ngControl.statusChanges.subscribe(() => this.updateValidation());
1641
+ }
1642
+ /**
1643
+ * TODO FW-2787: Remove this in favor of https://github.com/angular/angular/issues/10887
1644
+ * whenever it is implemented.
1645
+ */
1646
+ const formControl = this.ngControl.control;
1647
+ if (formControl) {
1648
+ const methodsToPatch = ['markAsTouched', 'markAllAsTouched', 'markAsUntouched', 'markAsDirty', 'markAsPristine'];
1649
+ methodsToPatch.forEach((method) => {
1650
+ if (typeof formControl[method] !== 'undefined') {
1651
+ const oldFn = formControl[method].bind(formControl);
1652
+ formControl[method] = (...params) => {
1653
+ oldFn(...params);
1654
+ this.updateValidation();
1655
+ };
1656
+ }
1657
+ });
1658
+ }
1659
+ }
1660
+ getErrorTexts(control) {
1661
+ if (control.errors == null) {
1662
+ console.warn('no errors for invalid control', control);
1663
+ return [];
1664
+ }
1665
+ const errorList = Object.entries(control.errors);
1666
+ if (errorList.length <= 0) {
1667
+ console.warn('no errors for invalid control', control);
1668
+ return [];
1669
+ }
1670
+ return errorList.map((error) => {
1671
+ const [key, value] = error;
1672
+ return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
1673
+ });
1674
+ }
1675
+ 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 }); }
1676
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ValueAccessor, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 }); }
1677
+ }
1678
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, decorators: [{
1679
+ type: Directive
1680
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
1681
+ type: HostListener,
1682
+ args: ['blur', ['$event.target']]
1683
+ }] } });
1684
+ const nextTick = (h) => {
1685
+ if (typeof __zone_symbol__requestAnimationFrame === 'function') {
1686
+ return __zone_symbol__requestAnimationFrame(h);
1687
+ }
1688
+ if (typeof requestAnimationFrame === 'function') {
1689
+ return requestAnimationFrame(h);
1690
+ }
1691
+ return setTimeout(h);
1692
+ };
1693
+
1694
+ class TextValueAccessor extends ValueAccessor {
1695
+ constructor(injector, el) {
1696
+ super(injector, el);
1697
+ }
1698
+ handleInputEvent(el) {
1699
+ this.handleValueChange(el, el.value);
1700
+ }
1701
+ 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 }); }
1702
+ 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: [
1703
+ {
1704
+ provide: NG_VALUE_ACCESSOR,
1705
+ useExisting: TextValueAccessor,
1706
+ multi: true,
1707
+ },
1708
+ ], usesInheritance: true, ngImport: i0 }); }
1709
+ }
1710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessor, decorators: [{
1711
+ type: Directive,
1712
+ args: [{
1713
+ selector: 'six-input:not([type=number]),six-textarea',
1714
+ providers: [
1715
+ {
1716
+ provide: NG_VALUE_ACCESSOR,
1717
+ useExisting: TextValueAccessor,
1718
+ multi: true,
1719
+ },
1720
+ ],
1721
+ }]
1722
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
1723
+ type: HostListener,
1724
+ args: ['input', ['$event.target']]
1725
+ }] } });
1726
+
1727
+ class NumericValueAccessor extends ValueAccessor {
1728
+ constructor(injector, el) {
1729
+ super(injector, el);
1730
+ }
1731
+ handleInputEvent(el) {
1732
+ this.handleValueChange(el, el.value);
1733
+ }
1734
+ registerOnChange(fn) {
1735
+ super.registerOnChange((value) => {
1736
+ fn(value === '' ? null : parseFloat(value));
1737
+ });
1738
+ }
1739
+ 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 }); }
1740
+ 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: [
1741
+ {
1742
+ provide: NG_VALUE_ACCESSOR,
1743
+ useExisting: NumericValueAccessor,
1744
+ multi: true,
1745
+ },
1746
+ ], usesInheritance: true, ngImport: i0 }); }
1747
+ }
1748
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessor, decorators: [{
1749
+ type: Directive,
1750
+ args: [{
1751
+ selector: 'six-input[type=number]',
1752
+ providers: [
1753
+ {
1754
+ provide: NG_VALUE_ACCESSOR,
1755
+ useExisting: NumericValueAccessor,
1756
+ multi: true,
1757
+ },
1758
+ ],
1759
+ }]
1760
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
1761
+ type: HostListener,
1762
+ args: ['input', ['$event.target']]
1763
+ }] } });
1764
+
1765
+ class RadioValueAccessor extends ValueAccessor {
1766
+ constructor(injector, el) {
1767
+ super(injector, el);
1768
+ }
1769
+ handleChangeEvent(el) {
1770
+ this.handleValueChange(el, this.value);
1771
+ }
1772
+ ngOnInit() {
1773
+ this.checkName();
1774
+ }
1775
+ writeValue(value) {
1776
+ this.el.nativeElement.checked = value === this.value;
1777
+ this.updateValidation();
1778
+ }
1779
+ checkName() {
1780
+ if (this.name && this.formControlName && this.name !== this.formControlName) {
1781
+ throw new Error(`
1782
+ If you define both a name and a formControlName attribute on your radio button, their values
1783
+ must match. Ex: <six-input type="radio" formControlName="food" name="food">
1784
+ `);
1785
+ }
1786
+ if (!this.name && this.formControlName) {
1787
+ this.name = this.formControlName;
1788
+ this.el.nativeElement.name = this.formControlName;
1789
+ }
1790
+ }
1791
+ 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 }); }
1792
+ 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: [
1793
+ {
1794
+ provide: NG_VALUE_ACCESSOR,
1795
+ useExisting: RadioValueAccessor,
1796
+ multi: true,
1797
+ },
1798
+ ], usesInheritance: true, ngImport: i0 }); }
1799
+ }
1800
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadioValueAccessor, decorators: [{
1801
+ type: Directive,
1802
+ args: [{
1803
+ selector: 'six-radio',
1804
+ providers: [
1805
+ {
1806
+ provide: NG_VALUE_ACCESSOR,
1807
+ useExisting: RadioValueAccessor,
1808
+ multi: true,
1809
+ },
1810
+ ],
1811
+ }]
1812
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { value: [{
1813
+ type: Input
1814
+ }], formControlName: [{
1815
+ type: Input
1816
+ }], name: [{
1817
+ type: Input
1818
+ }], handleChangeEvent: [{
1819
+ type: HostListener,
1820
+ args: ['change', ['$event.target']]
1821
+ }] } });
1822
+
1823
+ class DatepickerValueAccessor extends ValueAccessor {
1824
+ constructor(injector, el) {
1825
+ super(injector, el);
1826
+ }
1827
+ handleChangeEvent(el) {
1828
+ this.handleValueChange(el, el.value);
1829
+ }
1830
+ 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 }); }
1831
+ 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: [
1832
+ {
1833
+ provide: NG_VALUE_ACCESSOR,
1834
+ useExisting: DatepickerValueAccessor,
1835
+ multi: true,
1836
+ },
1837
+ ], usesInheritance: true, ngImport: i0 }); }
1838
+ }
1839
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
1840
+ type: Directive,
1841
+ args: [{
1842
+ selector: 'six-datepicker',
1843
+ providers: [
1844
+ {
1845
+ provide: NG_VALUE_ACCESSOR,
1846
+ useExisting: DatepickerValueAccessor,
1847
+ multi: true,
1848
+ },
1849
+ ],
1850
+ }]
1851
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
1852
+ type: HostListener,
1853
+ args: ['change', ['$event.target']]
1854
+ }] } });
1855
+
1856
+ /**
1857
+ * This directive intercepts the ngSubmit event of an Angular form and introduces
1858
+ * a supplementary event named sixSubmit. The sixSubmit event is triggered exclusively
1859
+ * when the form is valid. In cases where the form is considered invalid, this directive
1860
+ * takes proactive actions by marking all form controls as touched and dirty. Additionally,
1861
+ * it shifts the focus to the initial invalid form element, facilitating quick error
1862
+ * resolution.
1863
+ *
1864
+ * To utilize this directive, apply it to an Angular form.
1865
+ * ```html
1866
+ * <form [formGroup]="form" sixForm (sixSubmit)="onSubmit($event)">
1867
+ * <!-- form content -->
1868
+ * </form>
1869
+ * ```
1870
+ *
1871
+ * For users needing greater flexibility in determining when error messages are displayed,
1872
+ * or for those who prefer not to rely solely on the form submission event,
1873
+ * an alternative is to use the SixFormUtilDirective.
1874
+ */
1875
+ class SixFormDirective {
1876
+ onNgSubmit(event) {
1877
+ if (this.formGroupDirective.invalid) {
1878
+ focusInvalidField(this.formGroupDirective, this.elementRef);
1879
+ }
1880
+ else {
1881
+ this.sixSubmit.emit(event);
1882
+ }
1883
+ }
1884
+ constructor(elementRef, formGroupDirective) {
1885
+ this.elementRef = elementRef;
1886
+ this.formGroupDirective = formGroupDirective;
1887
+ /**
1888
+ * Emits an event when the form is valid and the form submission has been triggered.
1889
+ */
1890
+ this.sixSubmit = new EventEmitter();
1891
+ }
1892
+ 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 }); }
1893
+ 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 }); }
1894
+ }
1895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormDirective, decorators: [{
1896
+ type: Directive,
1897
+ args: [{
1898
+ selector: 'form[sixForm]',
1899
+ }]
1900
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }]; }, propDecorators: { sixSubmit: [{
1901
+ type: Output
1902
+ }], onNgSubmit: [{
1903
+ type: HostListener,
1904
+ args: ['ngSubmit', ['$event']]
1905
+ }] } });
1906
+ /**
1907
+ * This directive provides a utility method, that marks all form controls
1908
+ * as touched and dirty, and focuses the first invalid form element.
1909
+ *
1910
+ * To utilize this directive, apply it to an Angular form.
1911
+ * ```html
1912
+ * <form [formGroup]="form" sixFormUtil (ngSubmit)="onSubmit($event)">
1913
+ * <!-- form content -->
1914
+ * </form>
1915
+ * ```
1916
+ *
1917
+ * Then, get a reference to the directive and invoke `focusInvalidField()` if the
1918
+ * form is invalid:
1919
+ * ```ts
1920
+ * @ViewChild(SixFormUtilDirective) sixFormUtil!: SixFormUtilDirective;
1921
+ * // ...
1922
+ * onSubmit() {
1923
+ * if (this.form.invalid) {
1924
+ * this.sixFormUtil.focusInvalidField();
1925
+ * } else {
1926
+ * // ...
1927
+ * }
1928
+ * }
1929
+ * ```
1930
+ */
1931
+ class SixFormUtilDirective {
1932
+ constructor(elementRef, formGroupDirective) {
1933
+ this.elementRef = elementRef;
1934
+ this.formGroupDirective = formGroupDirective;
1935
+ }
1936
+ /** markAllControlsAsDirty(Object.values(formGroup.controls));
1937
+ * Marks all form controls as touched and dirty, and focuses the first
1938
+ * invalid form element.
1939
+ */
1940
+ focusInvalidField() {
1941
+ focusInvalidField(this.formGroupDirective, this.elementRef);
1942
+ }
1943
+ 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 }); }
1944
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixFormUtilDirective, selector: "[sixFormUtil]", ngImport: i0 }); }
1945
+ }
1946
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormUtilDirective, decorators: [{
1947
+ type: Directive,
1948
+ args: [{
1949
+ selector: '[sixFormUtil]',
1950
+ }]
1951
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }]; } });
1952
+ function focusInvalidField(formGroupDirective, formElement) {
1953
+ formGroupDirective.form.markAllAsTouched();
1954
+ markAllAsDirty([formGroupDirective.form]);
1955
+ const invalidElement = getInvalidElement(formElement.nativeElement);
1956
+ if ('setFocus' in invalidElement && typeof invalidElement?.setFocus === 'function') {
1957
+ invalidElement.setFocus();
1958
+ }
1959
+ if ('focus' in invalidElement && typeof invalidElement?.focus === 'function') {
1960
+ invalidElement.focus();
1961
+ }
1962
+ }
1963
+ function getInvalidElement(parent) {
1964
+ const invalidElement = parent.querySelector('.ng-invalid');
1965
+ if (invalidElement == null) {
1966
+ return parent;
1967
+ }
1968
+ return getInvalidElement(invalidElement);
1969
+ }
1970
+ function markAllAsDirty(controls) {
1971
+ controls.forEach((control) => {
1972
+ if (control instanceof FormControl) {
1973
+ control.markAsDirty({ onlySelf: true });
1974
+ }
1975
+ else if (control instanceof FormGroup) {
1976
+ control.markAsDirty({ onlySelf: true });
1977
+ markAllAsDirty(Object.values(control.controls));
1978
+ }
1979
+ else if (control instanceof FormArray) {
1980
+ control.markAsDirty({ onlySelf: true });
1981
+ markAllAsDirty(control.controls);
1982
+ }
1983
+ });
1984
+ }
1985
+
1986
+ class SixUiLibraryValidators {
1987
+ static minDate(mindate) {
1988
+ return (control) => {
1989
+ if (control.value == null)
1990
+ return null;
1991
+ const actualDate = control.value;
1992
+ return actualDate.getTime() >= mindate.getTime() ? null : { mindate: { mindate, actual: actualDate } };
1993
+ };
1994
+ }
1995
+ static maxDate(maxdate) {
1996
+ return (control) => {
1997
+ if (control.value == null)
1998
+ return null;
1999
+ const actualDate = control.value;
2000
+ return actualDate.getTime() <= maxdate.getTime() ? null : { maxdate: { maxdate, actual: actualDate } };
2001
+ };
2002
+ }
2003
+ static allowedDates(allowedDates = () => true) {
2004
+ return (control) => {
2005
+ if (control.value == null)
2006
+ return null;
2007
+ const allowed = allowedDates(control.value);
2008
+ return allowed ? null : { invaliddate: { actual: control.value } };
2009
+ };
2010
+ }
2011
+ static minDateIso(mindate) {
2012
+ return (control) => {
2013
+ if (control.value == null || control.value === '')
2014
+ return null;
2015
+ const actualDate = control.value;
2016
+ return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
2017
+ };
2018
+ }
2019
+ static maxDateIso(maxdate) {
2020
+ return (control) => {
2021
+ if (control.value == null || control.value === '')
2022
+ return null;
2023
+ const actualDate = control.value;
2024
+ return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
2025
+ };
2026
+ }
2027
+ static allowedDatesIso(allowedDates = () => true) {
2028
+ return (control) => {
2029
+ if (control.value == null || control.value === '')
2030
+ return null;
2031
+ const allowed = allowedDates(control.value);
2032
+ return allowed ? null : { invaliddate: { actual: control.value } };
2033
+ };
2034
+ }
2035
+ }
2036
+ class MinDateValidator {
2037
+ validate(control) {
2038
+ if (this.min != null) {
2039
+ return SixUiLibraryValidators.minDate(this.min)(control);
2040
+ }
2041
+ return null;
2042
+ }
2043
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2044
+ 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 }); }
2045
+ }
2046
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidator, decorators: [{
2047
+ type: Directive,
2048
+ args: [{
2049
+ selector: 'six-datepicker[min]',
2050
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
2051
+ }]
2052
+ }], propDecorators: { min: [{
2053
+ type: Input
2054
+ }] } });
2055
+ class MaxDateValidator {
2056
+ validate(control) {
2057
+ if (this.max != null) {
2058
+ return SixUiLibraryValidators.maxDate(this.max)(control);
2059
+ }
2060
+ return null;
2061
+ }
2062
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2063
+ 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 }); }
2064
+ }
2065
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidator, decorators: [{
2066
+ type: Directive,
2067
+ args: [{
2068
+ selector: 'six-datepicker[max]',
2069
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
2070
+ }]
2071
+ }], propDecorators: { max: [{
2072
+ type: Input
2073
+ }] } });
2074
+ class AllowedDatesValidator {
2075
+ constructor() {
2076
+ this.allowedDates = () => true;
2077
+ }
2078
+ validate(control) {
2079
+ return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
2080
+ }
2081
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2082
+ 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 }); }
2083
+ }
2084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidator, decorators: [{
2085
+ type: Directive,
2086
+ args: [{
2087
+ selector: 'six-datepicker[allowedDates]',
2088
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
2089
+ }]
2090
+ }], propDecorators: { allowedDates: [{
2091
+ type: Input
2092
+ }] } });
2093
+ class MinDateValidatorIso {
2094
+ validate(control) {
2095
+ if (this.min != null) {
2096
+ return SixUiLibraryValidators.minDateIso(this.min)(control);
2097
+ }
2098
+ return null;
2099
+ }
2100
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2101
+ 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 }); }
2102
+ }
2103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidatorIso, decorators: [{
2104
+ type: Directive,
2105
+ args: [{
2106
+ selector: 'six-date[min]',
2107
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
2108
+ }]
2109
+ }], propDecorators: { min: [{
2110
+ type: Input
2111
+ }] } });
2112
+ class MaxDateValidatorIso {
2113
+ validate(control) {
2114
+ if (this.max != null) {
2115
+ return SixUiLibraryValidators.maxDateIso(this.max)(control);
2116
+ }
2117
+ return null;
2118
+ }
2119
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2120
+ 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 }); }
2121
+ }
2122
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
2123
+ type: Directive,
2124
+ args: [{
2125
+ selector: 'six-date[max]',
2126
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
2127
+ }]
2128
+ }], propDecorators: { max: [{
2129
+ type: Input
2130
+ }] } });
2131
+ class AllowedDatesValidatorIso {
2132
+ constructor() {
2133
+ this.allowedDates = () => true;
2134
+ }
2135
+ validate(control) {
2136
+ return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
2137
+ }
2138
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2139
+ 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 }); }
2140
+ }
2141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
2142
+ type: Directive,
2143
+ args: [{
2144
+ selector: 'six-date[allowedDates]',
2145
+ providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
2146
+ }]
2147
+ }], propDecorators: { allowedDates: [{
2148
+ type: Input
2149
+ }] } });
2150
+ class MinValidator {
2151
+ validate(control) {
2152
+ return Validators.min(toFloat(this.min))(control);
2153
+ }
2154
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2155
+ 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 }); }
2156
+ }
2157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinValidator, decorators: [{
2158
+ type: Directive,
2159
+ args: [{
2160
+ selector: 'six-input[type=number][min]',
2161
+ providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
2162
+ }]
2163
+ }], propDecorators: { min: [{
2164
+ type: Input
2165
+ }] } });
2166
+ class MaxValidator {
2167
+ validate(control) {
2168
+ return Validators.max(toFloat(this.max))(control);
2169
+ }
2170
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2171
+ 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 }); }
2172
+ }
2173
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxValidator, decorators: [{
2174
+ type: Directive,
2175
+ args: [{
2176
+ selector: 'six-input[type=number][max]',
2177
+ providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
2178
+ }]
2179
+ }], propDecorators: { max: [{
2180
+ type: Input
2181
+ }] } });
2182
+ function toFloat(value) {
2183
+ return typeof value === 'number' ? value : parseFloat(value);
2184
+ }
2185
+
2186
+ class SelectValueAccessor extends ValueAccessor {
2187
+ constructor(injector, el) {
2188
+ super(injector, el);
2189
+ }
2190
+ handleChangeEvent(el) {
2191
+ this.handleValueChange(el, el.value);
2192
+ }
2193
+ 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 }); }
2194
+ 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: [
2195
+ {
2196
+ provide: NG_VALUE_ACCESSOR,
2197
+ useExisting: SelectValueAccessor,
2198
+ multi: true,
2199
+ },
2200
+ ], usesInheritance: true, ngImport: i0 }); }
2201
+ }
2202
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
2203
+ type: Directive,
2204
+ args: [{
2205
+ selector: 'six-select',
2206
+ providers: [
2207
+ {
2208
+ provide: NG_VALUE_ACCESSOR,
2209
+ useExisting: SelectValueAccessor,
2210
+ multi: true,
2211
+ },
2212
+ ],
2213
+ }]
2214
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
2215
+ type: HostListener,
2216
+ args: ['change', ['$event.target']]
2217
+ }] } });
2218
+
2219
+ class CheckboxValueAccessor extends ValueAccessor {
2220
+ constructor(injector, el) {
2221
+ super(injector, el);
2222
+ }
2223
+ handleChangeEvent(el) {
2224
+ this.handleValueChange(el, el.checked);
2225
+ }
2226
+ writeValue(value) {
2227
+ this.el.nativeElement.checked = value === true;
2228
+ this.updateValidation();
2229
+ }
2230
+ 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 }); }
2231
+ 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: [
2232
+ {
2233
+ provide: NG_VALUE_ACCESSOR,
2234
+ useExisting: CheckboxValueAccessor,
2235
+ multi: true,
2236
+ },
2237
+ ], usesInheritance: true, ngImport: i0 }); }
2238
+ }
2239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
2240
+ type: Directive,
2241
+ args: [{
2242
+ selector: 'six-checkbox',
2243
+ providers: [
2244
+ {
2245
+ provide: NG_VALUE_ACCESSOR,
2246
+ useExisting: CheckboxValueAccessor,
2247
+ multi: true,
2248
+ },
2249
+ ],
2250
+ }]
2251
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
2252
+ type: HostListener,
2253
+ args: ['change', ['$event.target']]
2254
+ }] } });
2255
+
2256
+ class RangeValueAccessor extends ValueAccessor {
2257
+ constructor(injector, el) {
2258
+ super(injector, el);
2259
+ }
2260
+ handleInputEvent(el) {
2261
+ this.handleValueChange(el, el.value);
2262
+ }
2263
+ registerOnChange(fn) {
2264
+ super.registerOnChange((value) => {
2265
+ fn(value === '' ? null : parseFloat(value));
2266
+ });
2267
+ }
2268
+ 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 }); }
2269
+ 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: [
2270
+ {
2271
+ provide: NG_VALUE_ACCESSOR,
2272
+ useExisting: RangeValueAccessor,
2273
+ multi: true,
2274
+ },
2275
+ ], usesInheritance: true, ngImport: i0 }); }
2276
+ }
2277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RangeValueAccessor, decorators: [{
2278
+ type: Directive,
2279
+ args: [{
2280
+ selector: 'six-range',
2281
+ providers: [
2282
+ {
2283
+ provide: NG_VALUE_ACCESSOR,
2284
+ useExisting: RangeValueAccessor,
2285
+ multi: true,
2286
+ },
2287
+ ],
2288
+ }]
2289
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
2290
+ type: HostListener,
2291
+ args: ['input', ['$event.target']]
2292
+ }] } });
2293
+
2294
+ class SwitchValueAccessor extends ValueAccessor {
2295
+ constructor(injector, el) {
2296
+ super(injector, el);
2297
+ }
2298
+ handleChangeEvent(el) {
2299
+ this.handleValueChange(el, el.checked);
2300
+ }
2301
+ writeValue(value) {
2302
+ this.el.nativeElement.checked = value === true;
2303
+ this.updateValidation();
2304
+ }
2305
+ 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 }); }
2306
+ 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: [
2307
+ {
2308
+ provide: NG_VALUE_ACCESSOR,
2309
+ useExisting: SwitchValueAccessor,
2310
+ multi: true,
2311
+ },
2312
+ ], usesInheritance: true, ngImport: i0 }); }
2313
+ }
2314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwitchValueAccessor, decorators: [{
2315
+ type: Directive,
2316
+ args: [{
2317
+ selector: 'six-switch',
2318
+ providers: [
2319
+ {
2320
+ provide: NG_VALUE_ACCESSOR,
2321
+ useExisting: SwitchValueAccessor,
2322
+ multi: true,
2323
+ },
2324
+ ],
2325
+ }]
2326
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
2327
+ type: HostListener,
2328
+ args: ['change', ['$event.target']]
2329
+ }] } });
2330
+
2331
+ class TimepickerValueAccessor extends ValueAccessor {
2332
+ constructor(injector, el) {
2333
+ super(injector, el);
2334
+ }
2335
+ handleChangeEvent(el) {
2336
+ this.handleValueChange(el, el.value);
2337
+ }
2338
+ 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 }); }
2339
+ 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: [
2340
+ {
2341
+ provide: NG_VALUE_ACCESSOR,
2342
+ useExisting: TimepickerValueAccessor,
2343
+ multi: true,
2344
+ },
2345
+ ], usesInheritance: true, ngImport: i0 }); }
2346
+ }
2347
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
2348
+ type: Directive,
2349
+ args: [{
2350
+ selector: 'six-timepicker',
2351
+ providers: [
2352
+ {
2353
+ provide: NG_VALUE_ACCESSOR,
2354
+ useExisting: TimepickerValueAccessor,
2355
+ multi: true,
2356
+ },
2357
+ ],
2358
+ }]
2359
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
2360
+ type: HostListener,
2361
+ args: ['change', ['$event.target']]
2362
+ }] } });
2363
+
2364
+ /**
2365
+ * Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
2366
+ */
2367
+ class SixRouterLinkDirective {
2368
+ constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
2369
+ this.locationStrategy = locationStrategy;
2370
+ this.elementRef = elementRef;
2371
+ this.router = router;
2372
+ this.renderer = renderer;
2373
+ this.routerLinkDirective = routerLinkDirective;
2374
+ }
2375
+ onClick(event) {
2376
+ // Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
2377
+ event.preventDefault();
2378
+ }
2379
+ ngOnInit() {
2380
+ this.updateTargetUrlAndHref();
2381
+ }
2382
+ ngOnChanges() {
2383
+ this.updateTargetUrlAndHref();
2384
+ }
2385
+ updateTargetUrlAndHref() {
2386
+ if (this.routerLinkDirective?.urlTree) {
2387
+ const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
2388
+ this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
2389
+ // Remove the `tabindex` attribute to prevent redundant focus behavior.
2390
+ // Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
2391
+ // but custom components like `six-button` already handle focusability.
2392
+ // Keeping the tabindex would cause the element to receive focus twice.
2393
+ this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
2394
+ }
2395
+ }
2396
+ 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 }); }
2397
+ 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 }); }
2398
+ }
2399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
2400
+ type: Directive,
2401
+ args: [{
2402
+ selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
2403
+ }]
2404
+ }], ctorParameters: function () { return [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
2405
+ type: Optional
2406
+ }] }]; }, propDecorators: { onClick: [{
2407
+ type: HostListener,
2408
+ args: ['click', ['$event']]
2409
+ }], routerLink: [{
2410
+ type: Input
2411
+ }], queryParams: [{
2412
+ type: Input
2413
+ }], fragment: [{
2414
+ type: Input
2415
+ }], queryParamsHandling: [{
2416
+ type: Input
2417
+ }], relativeTo: [{
2418
+ type: Input
2419
+ }] } });
2420
+
2421
+ /**
2422
+ * Enables Angular router integration for the six-sidebar component.
2423
+ *
2424
+ * When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
2425
+ * it activates automatic route-based selection for sidebar items and groups.
2426
+ *
2427
+ * @recommended Add this directive to enable automatic route-based navigation in sidebars.
2428
+ *
2429
+ * @example
2430
+ * ```html
2431
+ * <six-sidebar sixRouterLinkActive>
2432
+ * <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
2433
+ * <six-sidebar-item-group>
2434
+ * <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
2435
+ * </six-sidebar-item-group>
2436
+ * </six-sidebar>
2437
+ * ```
2438
+ */
2439
+ class ActiveSidebarDirective {
2440
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2441
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ActiveSidebarDirective, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
2442
+ }
2443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
2444
+ type: Directive,
2445
+ args: [{
2446
+ selector: 'six-sidebar[sixRouterLinkActive]',
2447
+ }]
2448
+ }] });
2449
+ /**
2450
+ * Enhances six-sidebar-item with Angular router integration.
2451
+ *
2452
+ * This directive automatically manages the 'selected' state of sidebar items based on the current route.
2453
+ * When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
2454
+ *
2455
+ * @requires RouterLinkActive
2456
+ * @optional ActiveSidebarDirective - If present, enables route-based selection
2457
+ */
2458
+ class ActiveSidebarItemDirective {
2459
+ constructor() {
2460
+ this.routerLinkActive = inject(RouterLinkActive);
2461
+ this.sidebarItem = inject(SixSidebarItem);
2462
+ this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
2463
+ }
2464
+ get selected() {
2465
+ if (this.activeSidebarDirective == null) {
2466
+ return this.sidebarItem.selected;
2467
+ }
2468
+ else {
2469
+ return this.routerLinkActive.isActive;
2470
+ }
2471
+ }
2472
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2473
+ 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 }); }
2474
+ }
2475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
2476
+ type: Directive,
2477
+ args: [{
2478
+ selector: 'six-sidebar-item',
2479
+ hostDirectives: [RouterLinkActive],
2480
+ }]
2481
+ }], propDecorators: { selected: [{
2482
+ type: HostBinding,
2483
+ args: ['selected']
2484
+ }] } });
2485
+ /**
2486
+ * Enhances six-sidebar-item-group with Angular router integration.
2487
+ *
2488
+ * This directive automatically manages the 'open' state of sidebar groups based on the active route.
2489
+ * When a child route is active, the group automatically expands to show the active item.
2490
+ *
2491
+ * @requires RouterLinkActive
2492
+ * @optional ActiveSidebarDirective - If present, enables route-based expansion
2493
+ */
2494
+ class ActiveSidebarItemGroupDirective {
2495
+ constructor() {
2496
+ this.routerLinkActive = inject(RouterLinkActive);
2497
+ this.sidebarItemGroup = inject(SixSidebarItemGroup);
2498
+ this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
2499
+ }
2500
+ get open() {
2501
+ if (this.activeSidebarDirective == null) {
2502
+ return this.sidebarItemGroup.open;
2503
+ }
2504
+ if (this.sidebarItems?.length > 0) {
2505
+ return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
2506
+ }
2507
+ return this.routerLinkActive.isActive;
2508
+ }
2509
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2510
+ 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 }); }
2511
+ }
2512
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
2513
+ type: Directive,
2514
+ args: [{
2515
+ selector: 'six-sidebar-item-group',
2516
+ hostDirectives: [RouterLinkActive],
2517
+ }]
2518
+ }], propDecorators: { sidebarItems: [{
2519
+ type: ContentChildren,
2520
+ args: [SixSidebarItem]
2521
+ }], open: [{
2522
+ type: HostBinding,
2523
+ args: ['open']
2524
+ }] } });
2525
+
2526
+ class DateValueAccessor extends ValueAccessor {
2527
+ constructor(injector, el) {
2528
+ super(injector, el);
2529
+ }
2530
+ handleInputEvent(el) {
2531
+ this.handleValueChange(el, el.value);
2532
+ }
2533
+ writeValue(value) {
2534
+ this.el.nativeElement.value = value == null ? '' : value;
2535
+ this.updateValidation();
2536
+ }
2537
+ 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 }); }
2538
+ 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: [
2539
+ {
2540
+ provide: NG_VALUE_ACCESSOR,
2541
+ useExisting: DateValueAccessor,
2542
+ multi: true,
2543
+ },
2544
+ ], usesInheritance: true, ngImport: i0 }); }
2545
+ }
2546
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateValueAccessor, decorators: [{
2547
+ type: Directive,
2548
+ args: [{
2549
+ selector: 'six-date',
2550
+ providers: [
2551
+ {
2552
+ provide: NG_VALUE_ACCESSOR,
2553
+ useExisting: DateValueAccessor,
2554
+ multi: true,
2555
+ },
2556
+ ],
2557
+ }]
2558
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
2559
+ type: HostListener,
2560
+ args: ['change', ['$event.target']]
2561
+ }] } });
2562
+
2563
+ class UiLibraryAngularModule {
2564
+ static forRoot(customValidationMessagesService, config) {
2565
+ const mergedConfig = {
2566
+ ...DEFAULT_UI_LIBRARY_CONFIG,
2567
+ ...config,
2568
+ };
2569
+ return {
2570
+ ngModule: UiLibraryAngularModule,
2571
+ providers: [
2572
+ {
2573
+ provide: APP_INITIALIZER,
2574
+ useFactory: () => async () => defineCustomElements(),
2575
+ multi: true,
2576
+ },
2577
+ { provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
2578
+ { provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
2579
+ ],
2580
+ };
2581
+ }
2582
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2583
+ 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,
2584
+ // value accessors
2585
+ TextValueAccessor,
2586
+ NumericValueAccessor,
2587
+ RadioValueAccessor,
2588
+ DatepickerValueAccessor,
2589
+ DateValueAccessor,
2590
+ TimepickerValueAccessor,
2591
+ SelectValueAccessor,
2592
+ CheckboxValueAccessor,
2593
+ SwitchValueAccessor,
2594
+ RangeValueAccessor,
2595
+ // validators
2596
+ MinValidator,
2597
+ MaxValidator,
2598
+ MinDateValidator,
2599
+ MaxDateValidator,
2600
+ AllowedDatesValidator,
2601
+ MinDateValidatorIso,
2602
+ MaxDateValidatorIso,
2603
+ AllowedDatesValidatorIso,
2604
+ // form helpers
2605
+ SixFormDirective,
2606
+ SixFormUtilDirective,
2607
+ // router link directive
2608
+ SixRouterLinkDirective,
2609
+ // sidebar helpers
2610
+ ActiveSidebarItemDirective,
2611
+ ActiveSidebarItemGroupDirective,
2612
+ 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,
2613
+ // value accessors
2614
+ TextValueAccessor,
2615
+ NumericValueAccessor,
2616
+ RadioValueAccessor,
2617
+ DatepickerValueAccessor,
2618
+ DateValueAccessor,
2619
+ TimepickerValueAccessor,
2620
+ SelectValueAccessor,
2621
+ CheckboxValueAccessor,
2622
+ SwitchValueAccessor,
2623
+ RangeValueAccessor,
2624
+ // validators
2625
+ MinValidator,
2626
+ MaxValidator,
2627
+ MinDateValidator,
2628
+ MaxDateValidator,
2629
+ AllowedDatesValidator,
2630
+ MinDateValidatorIso,
2631
+ MaxDateValidatorIso,
2632
+ AllowedDatesValidatorIso,
2633
+ // form helpers
2634
+ SixFormDirective,
2635
+ SixFormUtilDirective,
2636
+ // router link directive
2637
+ SixRouterLinkDirective,
2638
+ // sidebar helpers
2639
+ ActiveSidebarItemDirective,
2640
+ ActiveSidebarItemGroupDirective,
2641
+ ActiveSidebarDirective] }); }
2642
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule }); }
2643
+ }
2644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
2645
+ type: NgModule,
2646
+ args: [{
2647
+ declarations: [
2648
+ // proxies
2649
+ ...DIRECTIVES,
2650
+ // value accessors
2651
+ TextValueAccessor,
2652
+ NumericValueAccessor,
2653
+ RadioValueAccessor,
2654
+ DatepickerValueAccessor,
2655
+ DateValueAccessor,
2656
+ TimepickerValueAccessor,
2657
+ SelectValueAccessor,
2658
+ CheckboxValueAccessor,
2659
+ SwitchValueAccessor,
2660
+ RangeValueAccessor,
2661
+ // validators
2662
+ MinValidator,
2663
+ MaxValidator,
2664
+ MinDateValidator,
2665
+ MaxDateValidator,
2666
+ AllowedDatesValidator,
2667
+ MinDateValidatorIso,
2668
+ MaxDateValidatorIso,
2669
+ AllowedDatesValidatorIso,
2670
+ // form helpers
2671
+ SixFormDirective,
2672
+ SixFormUtilDirective,
2673
+ // router link directive
2674
+ SixRouterLinkDirective,
2675
+ // sidebar helpers
2676
+ ActiveSidebarItemDirective,
2677
+ ActiveSidebarItemGroupDirective,
2678
+ ActiveSidebarDirective,
2679
+ ],
2680
+ imports: [],
2681
+ exports: [
2682
+ // proxies
2683
+ ...DIRECTIVES,
2684
+ // value accessors
2685
+ TextValueAccessor,
2686
+ NumericValueAccessor,
2687
+ RadioValueAccessor,
2688
+ DatepickerValueAccessor,
2689
+ DateValueAccessor,
2690
+ TimepickerValueAccessor,
2691
+ SelectValueAccessor,
2692
+ CheckboxValueAccessor,
2693
+ SwitchValueAccessor,
2694
+ RangeValueAccessor,
2695
+ // validators
2696
+ MinValidator,
2697
+ MaxValidator,
2698
+ MinDateValidator,
2699
+ MaxDateValidator,
2700
+ AllowedDatesValidator,
2701
+ MinDateValidatorIso,
2702
+ MaxDateValidatorIso,
2703
+ AllowedDatesValidatorIso,
2704
+ // form helpers
2705
+ SixFormDirective,
2706
+ SixFormUtilDirective,
2707
+ // router link directive
2708
+ SixRouterLinkDirective,
2709
+ // sidebar helpers
2710
+ ActiveSidebarItemDirective,
2711
+ ActiveSidebarItemGroupDirective,
2712
+ ActiveSidebarDirective,
2713
+ ],
2714
+ }]
2715
+ }] });
2716
+
2717
+ class AlertService {
2718
+ constructor() {
2719
+ this.ngZone = inject(NgZone);
2720
+ }
2721
+ /**
2722
+ * Displays an alert as a toast notification.
2723
+ */
2724
+ showAlert(message, alertType, duration, iconName) {
2725
+ this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
2726
+ }
2727
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2728
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, providedIn: 'root' }); }
2729
+ }
2730
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, decorators: [{
2731
+ type: Injectable,
2732
+ args: [{ providedIn: 'root' }]
2733
+ }] });
2734
+
2735
+ /*
2736
+ * Public API Surface of ui-library-angular
2737
+ */
2738
+
2739
+ /**
2740
+ * Generated bundle index. Do not edit.
2741
+ */
2742
+
2743
+ 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 };
2744
+ //# sourceMappingURL=six-group-ui-library-angular.mjs.map