@six-group/ui-library-angular 0.0.0-insider.d16ec8e → 0.0.0-insider.d7f75e8

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