@six-group/ui-library-angular 0.0.0-insider.24fcc9e

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.
@@ -0,0 +1,1468 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
3
+ import { __decorate } from 'tslib';
4
+ import { fromEvent } from 'rxjs';
5
+ import { defineCustomElements } from '@six-group/ui-library/loader';
6
+
7
+ /* eslint-disable */
8
+ /* tslint:disable */
9
+ const proxyInputs = (Cmp, inputs) => {
10
+ const Prototype = Cmp.prototype;
11
+ inputs.forEach((item) => {
12
+ Object.defineProperty(Prototype, item, {
13
+ get() {
14
+ return this.el[item];
15
+ },
16
+ set(val) {
17
+ this.z.runOutsideAngular(() => (this.el[item] = val));
18
+ },
19
+ });
20
+ });
21
+ };
22
+ const proxyMethods = (Cmp, methods) => {
23
+ const Prototype = Cmp.prototype;
24
+ methods.forEach((methodName) => {
25
+ Prototype[methodName] = function () {
26
+ const args = arguments;
27
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
28
+ };
29
+ });
30
+ };
31
+ const proxyOutputs = (instance, el, events) => {
32
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
33
+ };
34
+ const defineCustomElement = (tagName, customElement) => {
35
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
36
+ customElements.define(tagName, customElement);
37
+ }
38
+ };
39
+ // tslint:disable-next-line: only-arrow-functions
40
+ function ProxyCmp(opts) {
41
+ const decorator = function (cls) {
42
+ const { defineCustomElementFn, inputs, methods } = opts;
43
+ if (defineCustomElementFn !== undefined) {
44
+ defineCustomElementFn();
45
+ }
46
+ if (inputs) {
47
+ proxyInputs(cls, inputs);
48
+ }
49
+ if (methods) {
50
+ proxyMethods(cls, methods);
51
+ }
52
+ return cls;
53
+ };
54
+ return decorator;
55
+ }
56
+
57
+ let SetAttributes = class SetAttributes {
58
+ constructor(c, r, z) {
59
+ this.z = z;
60
+ c.detach();
61
+ this.el = r.nativeElement;
62
+ }
63
+ };
64
+ SetAttributes.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SetAttributes, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
65
+ SetAttributes.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SetAttributes, selector: "set-attributes", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
66
+ SetAttributes = __decorate([
67
+ ProxyCmp({
68
+ inputs: ['value']
69
+ })
70
+ ], SetAttributes);
71
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SetAttributes, decorators: [{
72
+ type: Component,
73
+ args: [{
74
+ selector: 'set-attributes',
75
+ changeDetection: ChangeDetectionStrategy.OnPush,
76
+ template: '<ng-content></ng-content>',
77
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
78
+ inputs: ['value'],
79
+ }]
80
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
81
+ let SixAlert = class SixAlert {
82
+ constructor(c, r, z) {
83
+ this.z = z;
84
+ c.detach();
85
+ this.el = r.nativeElement;
86
+ proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
87
+ }
88
+ };
89
+ SixAlert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
90
+ SixAlert.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
91
+ SixAlert = __decorate([
92
+ ProxyCmp({
93
+ inputs: ['closable', 'duration', 'open', 'type'],
94
+ methods: ['show', 'hide', 'toast']
95
+ })
96
+ ], SixAlert);
97
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixAlert, decorators: [{
98
+ type: Component,
99
+ args: [{
100
+ selector: 'six-alert',
101
+ changeDetection: ChangeDetectionStrategy.OnPush,
102
+ template: '<ng-content></ng-content>',
103
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
104
+ inputs: ['closable', 'duration', 'open', 'type'],
105
+ }]
106
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
107
+ let SixAvatar = class SixAvatar {
108
+ constructor(c, r, z) {
109
+ this.z = z;
110
+ c.detach();
111
+ this.el = r.nativeElement;
112
+ }
113
+ };
114
+ SixAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
115
+ SixAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
116
+ SixAvatar = __decorate([
117
+ ProxyCmp({
118
+ inputs: ['alt', 'image', 'initials', 'shape']
119
+ })
120
+ ], SixAvatar);
121
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixAvatar, decorators: [{
122
+ type: Component,
123
+ args: [{
124
+ selector: 'six-avatar',
125
+ changeDetection: ChangeDetectionStrategy.OnPush,
126
+ template: '<ng-content></ng-content>',
127
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
128
+ inputs: ['alt', 'image', 'initials', 'shape'],
129
+ }]
130
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
131
+ let SixBadge = class SixBadge {
132
+ constructor(c, r, z) {
133
+ this.z = z;
134
+ c.detach();
135
+ this.el = r.nativeElement;
136
+ }
137
+ };
138
+ SixBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
139
+ SixBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
140
+ SixBadge = __decorate([
141
+ ProxyCmp({
142
+ inputs: ['pill', 'pulse', 'type']
143
+ })
144
+ ], SixBadge);
145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixBadge, decorators: [{
146
+ type: Component,
147
+ args: [{
148
+ selector: 'six-badge',
149
+ changeDetection: ChangeDetectionStrategy.OnPush,
150
+ template: '<ng-content></ng-content>',
151
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
152
+ inputs: ['pill', 'pulse', 'type'],
153
+ }]
154
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
155
+ let SixButton = class SixButton {
156
+ constructor(c, r, z) {
157
+ this.z = z;
158
+ c.detach();
159
+ this.el = r.nativeElement;
160
+ proxyOutputs(this, this.el, ['six-button-blur', 'six-button-focus']);
161
+ }
162
+ };
163
+ SixButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
164
+ SixButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
165
+ SixButton = __decorate([
166
+ ProxyCmp({
167
+ inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
168
+ methods: ['setFocus', 'removeFocus']
169
+ })
170
+ ], SixButton);
171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixButton, decorators: [{
172
+ type: Component,
173
+ args: [{
174
+ selector: 'six-button',
175
+ changeDetection: ChangeDetectionStrategy.OnPush,
176
+ template: '<ng-content></ng-content>',
177
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
178
+ inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
179
+ }]
180
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
181
+ let SixCard = class SixCard {
182
+ constructor(c, r, z) {
183
+ this.z = z;
184
+ c.detach();
185
+ this.el = r.nativeElement;
186
+ }
187
+ };
188
+ SixCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
189
+ SixCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixCard, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
190
+ SixCard = __decorate([
191
+ ProxyCmp({})
192
+ ], SixCard);
193
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixCard, decorators: [{
194
+ type: Component,
195
+ args: [{
196
+ selector: 'six-card',
197
+ changeDetection: ChangeDetectionStrategy.OnPush,
198
+ template: '<ng-content></ng-content>',
199
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
200
+ inputs: [],
201
+ }]
202
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
203
+ let SixCheckbox = class SixCheckbox {
204
+ constructor(c, r, z) {
205
+ this.z = z;
206
+ c.detach();
207
+ this.el = r.nativeElement;
208
+ proxyOutputs(this, this.el, ['six-checkbox-blur', 'six-checkbox-change', 'six-checkbox-focus']);
209
+ }
210
+ };
211
+ SixCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
212
+ SixCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixCheckbox, selector: "six-checkbox", inputs: { checked: "checked", disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", 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 });
213
+ SixCheckbox = __decorate([
214
+ ProxyCmp({
215
+ inputs: ['checked', 'disabled', 'errorOnBlur', 'errorText', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
216
+ methods: ['setFocus', 'removeFocus', 'reportValidity', 'checkValidity', 'setCustomValidity', 'reset']
217
+ })
218
+ ], SixCheckbox);
219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixCheckbox, decorators: [{
220
+ type: Component,
221
+ args: [{
222
+ selector: 'six-checkbox',
223
+ changeDetection: ChangeDetectionStrategy.OnPush,
224
+ template: '<ng-content></ng-content>',
225
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
226
+ inputs: ['checked', 'disabled', 'errorOnBlur', 'errorText', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
227
+ }]
228
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
229
+ let SixDatepicker = class SixDatepicker {
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ proxyOutputs(this, this.el, ['six-datepicker-select', 'six-datepicker-clear', 'six-datepicker-blur']);
235
+ }
236
+ };
237
+ SixDatepicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
238
+ SixDatepicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixDatepicker, selector: "six-datepicker", inputs: { allowedDates: "allowedDates", clearable: "clearable", closeOnSelect: "closeOnSelect", containingElement: "containingElement", dateFormat: "dateFormat", debounce: "debounce", defaultDate: "defaultDate", disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", 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 });
239
+ SixDatepicker = __decorate([
240
+ ProxyCmp({
241
+ inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorOnBlur', 'errorText', 'hoist', 'iconPosition', 'inline', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
242
+ methods: ['reportValidity', 'checkValidity', 'setCustomValidity', 'reset', 'select']
243
+ })
244
+ ], SixDatepicker);
245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDatepicker, decorators: [{
246
+ type: Component,
247
+ args: [{
248
+ selector: 'six-datepicker',
249
+ changeDetection: ChangeDetectionStrategy.OnPush,
250
+ template: '<ng-content></ng-content>',
251
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
252
+ inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorOnBlur', 'errorText', 'hoist', 'iconPosition', 'inline', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
253
+ }]
254
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
255
+ let SixDetails = class SixDetails {
256
+ constructor(c, r, z) {
257
+ this.z = z;
258
+ c.detach();
259
+ this.el = r.nativeElement;
260
+ proxyOutputs(this, this.el, ['six-details-show', 'six-details-after-show', 'six-details-hide', 'six-details-after-hide']);
261
+ }
262
+ };
263
+ SixDetails.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
264
+ SixDetails.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
265
+ SixDetails = __decorate([
266
+ ProxyCmp({
267
+ inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
268
+ methods: ['show', 'hide']
269
+ })
270
+ ], SixDetails);
271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDetails, decorators: [{
272
+ type: Component,
273
+ args: [{
274
+ selector: 'six-details',
275
+ changeDetection: ChangeDetectionStrategy.OnPush,
276
+ template: '<ng-content></ng-content>',
277
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
278
+ inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
279
+ }]
280
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
281
+ let SixDialog = class SixDialog {
282
+ constructor(c, r, z) {
283
+ this.z = z;
284
+ c.detach();
285
+ this.el = r.nativeElement;
286
+ 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']);
287
+ }
288
+ };
289
+ SixDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
290
+ SixDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
291
+ SixDialog = __decorate([
292
+ ProxyCmp({
293
+ inputs: ['label', 'noHeader', 'open'],
294
+ methods: ['show', 'hide']
295
+ })
296
+ ], SixDialog);
297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDialog, decorators: [{
298
+ type: Component,
299
+ args: [{
300
+ selector: 'six-dialog',
301
+ changeDetection: ChangeDetectionStrategy.OnPush,
302
+ template: '<ng-content></ng-content>',
303
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
304
+ inputs: ['label', 'noHeader', 'open'],
305
+ }]
306
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
307
+ let SixDrawer = class SixDrawer {
308
+ constructor(c, r, z) {
309
+ this.z = z;
310
+ c.detach();
311
+ this.el = r.nativeElement;
312
+ 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']);
313
+ }
314
+ };
315
+ SixDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
316
+ SixDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
317
+ SixDrawer = __decorate([
318
+ ProxyCmp({
319
+ inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
320
+ methods: ['show', 'hide']
321
+ })
322
+ ], SixDrawer);
323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDrawer, decorators: [{
324
+ type: Component,
325
+ args: [{
326
+ selector: 'six-drawer',
327
+ changeDetection: ChangeDetectionStrategy.OnPush,
328
+ template: '<ng-content></ng-content>',
329
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
330
+ inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
331
+ }]
332
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
333
+ let SixDropdown = class SixDropdown {
334
+ constructor(c, r, z) {
335
+ this.z = z;
336
+ c.detach();
337
+ this.el = r.nativeElement;
338
+ 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']);
339
+ }
340
+ };
341
+ SixDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
342
+ SixDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
343
+ SixDropdown = __decorate([
344
+ ProxyCmp({
345
+ inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
346
+ methods: ['show', 'hide', 'reposition']
347
+ })
348
+ ], SixDropdown);
349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDropdown, decorators: [{
350
+ type: Component,
351
+ args: [{
352
+ selector: 'six-dropdown',
353
+ changeDetection: ChangeDetectionStrategy.OnPush,
354
+ template: '<ng-content></ng-content>',
355
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
356
+ inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
357
+ }]
358
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
359
+ let SixErrorPage = class SixErrorPage {
360
+ constructor(c, r, z) {
361
+ this.z = z;
362
+ c.detach();
363
+ this.el = r.nativeElement;
364
+ }
365
+ };
366
+ SixErrorPage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
367
+ SixErrorPage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
368
+ SixErrorPage = __decorate([
369
+ ProxyCmp({
370
+ inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
371
+ })
372
+ ], SixErrorPage);
373
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixErrorPage, decorators: [{
374
+ type: Component,
375
+ args: [{
376
+ selector: 'six-error-page',
377
+ changeDetection: ChangeDetectionStrategy.OnPush,
378
+ template: '<ng-content></ng-content>',
379
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
380
+ inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language'],
381
+ }]
382
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
383
+ let SixFileList = class SixFileList {
384
+ constructor(c, r, z) {
385
+ this.z = z;
386
+ c.detach();
387
+ this.el = r.nativeElement;
388
+ }
389
+ };
390
+ SixFileList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
391
+ SixFileList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFileList, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
392
+ SixFileList = __decorate([
393
+ ProxyCmp({})
394
+ ], SixFileList);
395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileList, decorators: [{
396
+ type: Component,
397
+ args: [{
398
+ selector: 'six-file-list',
399
+ changeDetection: ChangeDetectionStrategy.OnPush,
400
+ template: '<ng-content></ng-content>',
401
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
402
+ inputs: [],
403
+ }]
404
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
405
+ let SixFileListItem = class SixFileListItem {
406
+ constructor(c, r, z) {
407
+ this.z = z;
408
+ c.detach();
409
+ this.el = r.nativeElement;
410
+ proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
411
+ }
412
+ };
413
+ SixFileListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
414
+ SixFileListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
415
+ SixFileListItem = __decorate([
416
+ ProxyCmp({
417
+ inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
418
+ })
419
+ ], SixFileListItem);
420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileListItem, decorators: [{
421
+ type: Component,
422
+ args: [{
423
+ selector: 'six-file-list-item',
424
+ changeDetection: ChangeDetectionStrategy.OnPush,
425
+ template: '<ng-content></ng-content>',
426
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
427
+ inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size'],
428
+ }]
429
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
430
+ let SixFileUpload = class SixFileUpload {
431
+ constructor(c, r, z) {
432
+ this.z = z;
433
+ c.detach();
434
+ this.el = r.nativeElement;
435
+ proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
436
+ }
437
+ };
438
+ SixFileUpload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
439
+ SixFileUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFileUpload, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", label: "label", maxFileSize: "maxFileSize", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
440
+ SixFileUpload = __decorate([
441
+ ProxyCmp({
442
+ inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple']
443
+ })
444
+ ], SixFileUpload);
445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileUpload, decorators: [{
446
+ type: Component,
447
+ args: [{
448
+ selector: 'six-file-upload',
449
+ changeDetection: ChangeDetectionStrategy.OnPush,
450
+ template: '<ng-content></ng-content>',
451
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
452
+ inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple'],
453
+ }]
454
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
455
+ let SixFooter = class SixFooter {
456
+ constructor(c, r, z) {
457
+ this.z = z;
458
+ c.detach();
459
+ this.el = r.nativeElement;
460
+ }
461
+ };
462
+ SixFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
463
+ SixFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFooter, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
464
+ SixFooter = __decorate([
465
+ ProxyCmp({})
466
+ ], SixFooter);
467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFooter, decorators: [{
468
+ type: Component,
469
+ args: [{
470
+ selector: 'six-footer',
471
+ changeDetection: ChangeDetectionStrategy.OnPush,
472
+ template: '<ng-content></ng-content>',
473
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
474
+ inputs: [],
475
+ }]
476
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
477
+ let SixForm = class SixForm {
478
+ constructor(c, r, z) {
479
+ this.z = z;
480
+ c.detach();
481
+ this.el = r.nativeElement;
482
+ proxyOutputs(this, this.el, ['six-form-submit', 'six-form-change', 'six-form-reset']);
483
+ }
484
+ };
485
+ SixForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
486
+ SixForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixForm, selector: "six-form", inputs: { novalidate: "novalidate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
487
+ SixForm = __decorate([
488
+ ProxyCmp({
489
+ inputs: ['novalidate'],
490
+ methods: ['getFormData', 'getFormControls', 'submit', 'checkValidity', 'reset']
491
+ })
492
+ ], SixForm);
493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixForm, decorators: [{
494
+ type: Component,
495
+ args: [{
496
+ selector: 'six-form',
497
+ changeDetection: ChangeDetectionStrategy.OnPush,
498
+ template: '<ng-content></ng-content>',
499
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
500
+ inputs: ['novalidate'],
501
+ }]
502
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
503
+ let SixGroupLabel = class SixGroupLabel {
504
+ constructor(c, r, z) {
505
+ this.z = z;
506
+ c.detach();
507
+ this.el = r.nativeElement;
508
+ }
509
+ };
510
+ SixGroupLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
511
+ SixGroupLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
512
+ SixGroupLabel = __decorate([
513
+ ProxyCmp({
514
+ inputs: ['disabled', 'helpText', 'label', 'required', 'size']
515
+ })
516
+ ], SixGroupLabel);
517
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixGroupLabel, decorators: [{
518
+ type: Component,
519
+ args: [{
520
+ selector: 'six-group-label',
521
+ changeDetection: ChangeDetectionStrategy.OnPush,
522
+ template: '<ng-content></ng-content>',
523
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
524
+ inputs: ['disabled', 'helpText', 'label', 'required', 'size'],
525
+ }]
526
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
527
+ let SixHeader = class SixHeader {
528
+ constructor(c, r, z) {
529
+ this.z = z;
530
+ c.detach();
531
+ this.el = r.nativeElement;
532
+ 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']);
533
+ }
534
+ };
535
+ SixHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
536
+ SixHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixHeader, selector: "six-header", inputs: { clickableLogo: "clickableLogo", openHamburgerMenu: "openHamburgerMenu", openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
537
+ SixHeader = __decorate([
538
+ ProxyCmp({
539
+ inputs: ['clickableLogo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
540
+ methods: ['setSearchOpenState', 'getIsSearchOpen']
541
+ })
542
+ ], SixHeader);
543
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixHeader, decorators: [{
544
+ type: Component,
545
+ args: [{
546
+ selector: 'six-header',
547
+ changeDetection: ChangeDetectionStrategy.OnPush,
548
+ template: '<ng-content></ng-content>',
549
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
550
+ inputs: ['clickableLogo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
551
+ }]
552
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
553
+ let SixIcon = class SixIcon {
554
+ constructor(c, r, z) {
555
+ this.z = z;
556
+ c.detach();
557
+ this.el = r.nativeElement;
558
+ }
559
+ };
560
+ SixIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
561
+ SixIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixIcon, selector: "six-icon", inputs: { filled: "filled", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
562
+ SixIcon = __decorate([
563
+ ProxyCmp({
564
+ inputs: ['filled', 'size']
565
+ })
566
+ ], SixIcon);
567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixIcon, decorators: [{
568
+ type: Component,
569
+ args: [{
570
+ selector: 'six-icon',
571
+ changeDetection: ChangeDetectionStrategy.OnPush,
572
+ template: '<ng-content></ng-content>',
573
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
574
+ inputs: ['filled', 'size'],
575
+ }]
576
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
577
+ let SixIconButton = class SixIconButton {
578
+ constructor(c, r, z) {
579
+ this.z = z;
580
+ c.detach();
581
+ this.el = r.nativeElement;
582
+ }
583
+ };
584
+ SixIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
585
+ SixIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixIconButton, selector: "six-icon-button", inputs: { disabled: "disabled", html: "html", label: "label", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
586
+ SixIconButton = __decorate([
587
+ ProxyCmp({
588
+ inputs: ['disabled', 'html', 'label', 'name', 'size']
589
+ })
590
+ ], SixIconButton);
591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixIconButton, decorators: [{
592
+ type: Component,
593
+ args: [{
594
+ selector: 'six-icon-button',
595
+ changeDetection: ChangeDetectionStrategy.OnPush,
596
+ template: '<ng-content></ng-content>',
597
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
598
+ inputs: ['disabled', 'html', 'label', 'name', 'size'],
599
+ }]
600
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
601
+ let SixInput = class SixInput {
602
+ constructor(c, r, z) {
603
+ this.z = z;
604
+ c.detach();
605
+ this.el = r.nativeElement;
606
+ proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur', 'six-input-value-change']);
607
+ }
608
+ };
609
+ SixInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
610
+ SixInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixInput, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", 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 });
611
+ SixInput = __decorate([
612
+ ProxyCmp({
613
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorOnBlur', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
614
+ methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText', 'reportValidity', 'checkValidity', 'setCustomValidity', 'getValidity', 'isValid', 'getValidationMessage', 'reset']
615
+ })
616
+ ], SixInput);
617
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixInput, decorators: [{
618
+ type: Component,
619
+ args: [{
620
+ selector: 'six-input',
621
+ changeDetection: ChangeDetectionStrategy.OnPush,
622
+ template: '<ng-content></ng-content>',
623
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
624
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorOnBlur', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
625
+ }]
626
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
627
+ let SixItemPicker = class SixItemPicker {
628
+ constructor(c, r, z) {
629
+ this.z = z;
630
+ c.detach();
631
+ this.el = r.nativeElement;
632
+ proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
633
+ }
634
+ };
635
+ SixItemPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
636
+ SixItemPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
637
+ SixItemPicker = __decorate([
638
+ ProxyCmp({
639
+ inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
640
+ })
641
+ ], SixItemPicker);
642
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixItemPicker, decorators: [{
643
+ type: Component,
644
+ args: [{
645
+ selector: 'six-item-picker',
646
+ changeDetection: ChangeDetectionStrategy.OnPush,
647
+ template: '<ng-content></ng-content>',
648
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
649
+ inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value'],
650
+ }]
651
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
652
+ let SixLanguageSwitcher = class SixLanguageSwitcher {
653
+ constructor(c, r, z) {
654
+ this.z = z;
655
+ c.detach();
656
+ this.el = r.nativeElement;
657
+ proxyOutputs(this, this.el, ['six-language-switcher-change']);
658
+ }
659
+ };
660
+ SixLanguageSwitcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
661
+ SixLanguageSwitcher.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixLanguageSwitcher, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
662
+ SixLanguageSwitcher = __decorate([
663
+ ProxyCmp({
664
+ inputs: ['languages', 'selected']
665
+ })
666
+ ], SixLanguageSwitcher);
667
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
668
+ type: Component,
669
+ args: [{
670
+ selector: 'six-language-switcher',
671
+ changeDetection: ChangeDetectionStrategy.OnPush,
672
+ template: '<ng-content></ng-content>',
673
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
674
+ inputs: ['languages', 'selected'],
675
+ }]
676
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
677
+ let SixLayoutGrid = class SixLayoutGrid {
678
+ constructor(c, r, z) {
679
+ this.z = z;
680
+ c.detach();
681
+ this.el = r.nativeElement;
682
+ }
683
+ };
684
+ SixLayoutGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
685
+ SixLayoutGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixLayoutGrid, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
686
+ SixLayoutGrid = __decorate([
687
+ ProxyCmp({
688
+ inputs: ['columns']
689
+ })
690
+ ], SixLayoutGrid);
691
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixLayoutGrid, decorators: [{
692
+ type: Component,
693
+ args: [{
694
+ selector: 'six-layout-grid',
695
+ changeDetection: ChangeDetectionStrategy.OnPush,
696
+ template: '<ng-content></ng-content>',
697
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
698
+ inputs: ['columns'],
699
+ }]
700
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
701
+ let SixMainContainer = class SixMainContainer {
702
+ constructor(c, r, z) {
703
+ this.z = z;
704
+ c.detach();
705
+ this.el = r.nativeElement;
706
+ }
707
+ };
708
+ SixMainContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
709
+ SixMainContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMainContainer, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
710
+ SixMainContainer = __decorate([
711
+ ProxyCmp({
712
+ inputs: ['padded']
713
+ })
714
+ ], SixMainContainer);
715
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMainContainer, decorators: [{
716
+ type: Component,
717
+ args: [{
718
+ selector: 'six-main-container',
719
+ changeDetection: ChangeDetectionStrategy.OnPush,
720
+ template: '<ng-content></ng-content>',
721
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
722
+ inputs: ['padded'],
723
+ }]
724
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
725
+ let SixMenu = class SixMenu {
726
+ constructor(c, r, z) {
727
+ this.z = z;
728
+ c.detach();
729
+ this.el = r.nativeElement;
730
+ proxyOutputs(this, this.el, ['six-menu-item-selected']);
731
+ }
732
+ };
733
+ SixMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
734
+ SixMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenu, selector: "six-menu", inputs: { 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 });
735
+ SixMenu = __decorate([
736
+ ProxyCmp({
737
+ inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
738
+ methods: ['typeToSelect']
739
+ })
740
+ ], SixMenu);
741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenu, decorators: [{
742
+ type: Component,
743
+ args: [{
744
+ selector: 'six-menu',
745
+ changeDetection: ChangeDetectionStrategy.OnPush,
746
+ template: '<ng-content></ng-content>',
747
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
748
+ inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
749
+ }]
750
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
751
+ let SixMenuDivider = class SixMenuDivider {
752
+ constructor(c, r, z) {
753
+ this.z = z;
754
+ c.detach();
755
+ this.el = r.nativeElement;
756
+ }
757
+ };
758
+ SixMenuDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
759
+ SixMenuDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenuDivider, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
760
+ SixMenuDivider = __decorate([
761
+ ProxyCmp({})
762
+ ], SixMenuDivider);
763
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuDivider, decorators: [{
764
+ type: Component,
765
+ args: [{
766
+ selector: 'six-menu-divider',
767
+ changeDetection: ChangeDetectionStrategy.OnPush,
768
+ template: '<ng-content></ng-content>',
769
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
770
+ inputs: [],
771
+ }]
772
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
773
+ let SixMenuItem = class SixMenuItem {
774
+ constructor(c, r, z) {
775
+ this.z = z;
776
+ c.detach();
777
+ this.el = r.nativeElement;
778
+ }
779
+ };
780
+ SixMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
781
+ SixMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenuItem, selector: "six-menu-item", inputs: { checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
782
+ SixMenuItem = __decorate([
783
+ ProxyCmp({
784
+ inputs: ['checked', 'disabled', 'value'],
785
+ methods: ['setFocus', 'removeFocus', 'getTextLabel']
786
+ })
787
+ ], SixMenuItem);
788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuItem, decorators: [{
789
+ type: Component,
790
+ args: [{
791
+ selector: 'six-menu-item',
792
+ changeDetection: ChangeDetectionStrategy.OnPush,
793
+ template: '<ng-content></ng-content>',
794
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
795
+ inputs: ['checked', 'disabled', 'value'],
796
+ }]
797
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
798
+ let SixMenuLabel = class SixMenuLabel {
799
+ constructor(c, r, z) {
800
+ this.z = z;
801
+ c.detach();
802
+ this.el = r.nativeElement;
803
+ }
804
+ };
805
+ SixMenuLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
806
+ SixMenuLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenuLabel, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
807
+ SixMenuLabel = __decorate([
808
+ ProxyCmp({})
809
+ ], SixMenuLabel);
810
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuLabel, decorators: [{
811
+ type: Component,
812
+ args: [{
813
+ selector: 'six-menu-label',
814
+ changeDetection: ChangeDetectionStrategy.OnPush,
815
+ template: '<ng-content></ng-content>',
816
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
817
+ inputs: [],
818
+ }]
819
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
820
+ let SixPicto = class SixPicto {
821
+ constructor(c, r, z) {
822
+ this.z = z;
823
+ c.detach();
824
+ this.el = r.nativeElement;
825
+ }
826
+ };
827
+ SixPicto.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
828
+ SixPicto.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixPicto, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
829
+ SixPicto = __decorate([
830
+ ProxyCmp({
831
+ inputs: ['size']
832
+ })
833
+ ], SixPicto);
834
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixPicto, decorators: [{
835
+ type: Component,
836
+ args: [{
837
+ selector: 'six-picto',
838
+ changeDetection: ChangeDetectionStrategy.OnPush,
839
+ template: '<ng-content></ng-content>',
840
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
841
+ inputs: ['size'],
842
+ }]
843
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
844
+ let SixProgressBar = class SixProgressBar {
845
+ constructor(c, r, z) {
846
+ this.z = z;
847
+ c.detach();
848
+ this.el = r.nativeElement;
849
+ }
850
+ };
851
+ SixProgressBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
852
+ SixProgressBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixProgressBar, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
853
+ SixProgressBar = __decorate([
854
+ ProxyCmp({
855
+ inputs: ['indeterminate', 'percentage']
856
+ })
857
+ ], SixProgressBar);
858
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixProgressBar, decorators: [{
859
+ type: Component,
860
+ args: [{
861
+ selector: 'six-progress-bar',
862
+ changeDetection: ChangeDetectionStrategy.OnPush,
863
+ template: '<ng-content></ng-content>',
864
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
865
+ inputs: ['indeterminate', 'percentage'],
866
+ }]
867
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
868
+ let SixProgressRing = class SixProgressRing {
869
+ constructor(c, r, z) {
870
+ this.z = z;
871
+ c.detach();
872
+ this.el = r.nativeElement;
873
+ }
874
+ };
875
+ SixProgressRing.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
876
+ SixProgressRing.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
877
+ SixProgressRing = __decorate([
878
+ ProxyCmp({
879
+ inputs: ['percentage', 'size', 'strokeWidth']
880
+ })
881
+ ], SixProgressRing);
882
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixProgressRing, decorators: [{
883
+ type: Component,
884
+ args: [{
885
+ selector: 'six-progress-ring',
886
+ changeDetection: ChangeDetectionStrategy.OnPush,
887
+ template: '<ng-content></ng-content>',
888
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
889
+ inputs: ['percentage', 'size', 'strokeWidth'],
890
+ }]
891
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
892
+ let SixRadio = class SixRadio {
893
+ constructor(c, r, z) {
894
+ this.z = z;
895
+ c.detach();
896
+ this.el = r.nativeElement;
897
+ proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
898
+ }
899
+ };
900
+ SixRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
901
+ SixRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
902
+ SixRadio = __decorate([
903
+ ProxyCmp({
904
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
905
+ methods: ['setFocus', 'removeFocus', 'reportValidity', 'checkValidity', 'setCustomValidity', 'reset']
906
+ })
907
+ ], SixRadio);
908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRadio, decorators: [{
909
+ type: Component,
910
+ args: [{
911
+ selector: 'six-radio',
912
+ changeDetection: ChangeDetectionStrategy.OnPush,
913
+ template: '<ng-content></ng-content>',
914
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
915
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
916
+ }]
917
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
918
+ let SixRange = class SixRange {
919
+ constructor(c, r, z) {
920
+ this.z = z;
921
+ c.detach();
922
+ this.el = r.nativeElement;
923
+ proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
924
+ }
925
+ };
926
+ SixRange.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
927
+ SixRange.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixRange, selector: "six-range", inputs: { disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", 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 });
928
+ SixRange = __decorate([
929
+ ProxyCmp({
930
+ inputs: ['disabled', 'errorOnBlur', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
931
+ methods: ['setFocus', 'removeFocus', 'setCustomValidity', 'reset']
932
+ })
933
+ ], SixRange);
934
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRange, decorators: [{
935
+ type: Component,
936
+ args: [{
937
+ selector: 'six-range',
938
+ changeDetection: ChangeDetectionStrategy.OnPush,
939
+ template: '<ng-content></ng-content>',
940
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
941
+ inputs: ['disabled', 'errorOnBlur', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
942
+ }]
943
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
944
+ let SixRoot = class SixRoot {
945
+ constructor(c, r, z) {
946
+ this.z = z;
947
+ c.detach();
948
+ this.el = r.nativeElement;
949
+ proxyOutputs(this, this.el, ['six-root-collapsed']);
950
+ }
951
+ };
952
+ SixRoot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
953
+ SixRoot.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixRoot, selector: "six-root", inputs: { breakpoint: "breakpoint", padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
954
+ SixRoot = __decorate([
955
+ ProxyCmp({
956
+ inputs: ['breakpoint', 'padded', 'stage', 'version']
957
+ })
958
+ ], SixRoot);
959
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRoot, decorators: [{
960
+ type: Component,
961
+ args: [{
962
+ selector: 'six-root',
963
+ changeDetection: ChangeDetectionStrategy.OnPush,
964
+ template: '<ng-content></ng-content>',
965
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
966
+ inputs: ['breakpoint', 'padded', 'stage', 'version'],
967
+ }]
968
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
969
+ let SixSearchField = class SixSearchField {
970
+ constructor(c, r, z) {
971
+ this.z = z;
972
+ c.detach();
973
+ this.el = r.nativeElement;
974
+ proxyOutputs(this, this.el, ['six-search-field-change']);
975
+ }
976
+ };
977
+ SixSearchField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
978
+ SixSearchField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
979
+ SixSearchField = __decorate([
980
+ ProxyCmp({
981
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
982
+ })
983
+ ], SixSearchField);
984
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSearchField, decorators: [{
985
+ type: Component,
986
+ args: [{
987
+ selector: 'six-search-field',
988
+ changeDetection: ChangeDetectionStrategy.OnPush,
989
+ template: '<ng-content></ng-content>',
990
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
991
+ inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
992
+ }]
993
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
994
+ let SixSelect = class SixSelect {
995
+ constructor(c, r, z) {
996
+ this.z = z;
997
+ c.detach();
998
+ this.el = r.nativeElement;
999
+ proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
1000
+ }
1001
+ };
1002
+ SixSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1003
+ SixSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSelect, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", defaultValue: "defaultValue", disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", 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", size: "size", value: "value", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1004
+ SixSelect = __decorate([
1005
+ ProxyCmp({
1006
+ inputs: ['asyncFilter', 'autocomplete', 'clearable', 'defaultValue', 'disabled', 'errorOnBlur', 'errorText', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'size', 'value', 'virtualScroll'],
1007
+ methods: ['reportValidity', 'checkValidity', 'setCustomValidity', 'reset']
1008
+ })
1009
+ ], SixSelect);
1010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSelect, decorators: [{
1011
+ type: Component,
1012
+ args: [{
1013
+ selector: 'six-select',
1014
+ changeDetection: ChangeDetectionStrategy.OnPush,
1015
+ template: '<ng-content></ng-content>',
1016
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1017
+ inputs: ['asyncFilter', 'autocomplete', 'clearable', 'defaultValue', 'disabled', 'errorOnBlur', 'errorText', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'size', 'value', 'virtualScroll'],
1018
+ }]
1019
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1020
+ let SixSidebar = class SixSidebar {
1021
+ constructor(c, r, z) {
1022
+ this.z = z;
1023
+ c.detach();
1024
+ this.el = r.nativeElement;
1025
+ proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
1026
+ }
1027
+ };
1028
+ SixSidebar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1029
+ SixSidebar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
1030
+ SixSidebar = __decorate([
1031
+ ProxyCmp({
1032
+ inputs: ['open', 'position', 'toggled', 'width'],
1033
+ methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
1034
+ })
1035
+ ], SixSidebar);
1036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebar, decorators: [{
1037
+ type: Component,
1038
+ args: [{
1039
+ selector: 'six-sidebar',
1040
+ changeDetection: ChangeDetectionStrategy.OnPush,
1041
+ template: '<ng-content></ng-content>',
1042
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1043
+ inputs: ['open', 'position', 'toggled', 'width'],
1044
+ }]
1045
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1046
+ let SixSidebarItem = class SixSidebarItem {
1047
+ constructor(c, r, z) {
1048
+ this.z = z;
1049
+ c.detach();
1050
+ this.el = r.nativeElement;
1051
+ }
1052
+ };
1053
+ SixSidebarItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1054
+ SixSidebarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSidebarItem, selector: "six-sidebar-item", inputs: { disabled: "disabled", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1055
+ SixSidebarItem = __decorate([
1056
+ ProxyCmp({
1057
+ inputs: ['disabled', 'selected', 'value']
1058
+ })
1059
+ ], SixSidebarItem);
1060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebarItem, decorators: [{
1061
+ type: Component,
1062
+ args: [{
1063
+ selector: 'six-sidebar-item',
1064
+ changeDetection: ChangeDetectionStrategy.OnPush,
1065
+ template: '<ng-content></ng-content>',
1066
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1067
+ inputs: ['disabled', 'selected', 'value'],
1068
+ }]
1069
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1070
+ let SixSidebarItemGroup = class SixSidebarItemGroup {
1071
+ constructor(c, r, z) {
1072
+ this.z = z;
1073
+ c.detach();
1074
+ this.el = r.nativeElement;
1075
+ }
1076
+ };
1077
+ SixSidebarItemGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1078
+ SixSidebarItemGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSidebarItemGroup, selector: "six-sidebar-item-group", inputs: { icon: "icon", name: "name", open: "open", summaryIcon: "summaryIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1079
+ SixSidebarItemGroup = __decorate([
1080
+ ProxyCmp({
1081
+ inputs: ['icon', 'name', 'open', 'summaryIcon', 'value']
1082
+ })
1083
+ ], SixSidebarItemGroup);
1084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
1085
+ type: Component,
1086
+ args: [{
1087
+ selector: 'six-sidebar-item-group',
1088
+ changeDetection: ChangeDetectionStrategy.OnPush,
1089
+ template: '<ng-content></ng-content>',
1090
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1091
+ inputs: ['icon', 'name', 'open', 'summaryIcon', 'value'],
1092
+ }]
1093
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1094
+ let SixSpinner = class SixSpinner {
1095
+ constructor(c, r, z) {
1096
+ this.z = z;
1097
+ c.detach();
1098
+ this.el = r.nativeElement;
1099
+ }
1100
+ };
1101
+ SixSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1102
+ SixSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSpinner, selector: "six-spinner", inputs: { six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1103
+ SixSpinner = __decorate([
1104
+ ProxyCmp({
1105
+ inputs: ['six']
1106
+ })
1107
+ ], SixSpinner);
1108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSpinner, decorators: [{
1109
+ type: Component,
1110
+ args: [{
1111
+ selector: 'six-spinner',
1112
+ changeDetection: ChangeDetectionStrategy.OnPush,
1113
+ template: '<ng-content></ng-content>',
1114
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1115
+ inputs: ['six'],
1116
+ }]
1117
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1118
+ let SixStageIndicator = class SixStageIndicator {
1119
+ constructor(c, r, z) {
1120
+ this.z = z;
1121
+ c.detach();
1122
+ this.el = r.nativeElement;
1123
+ }
1124
+ };
1125
+ SixStageIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1126
+ SixStageIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixStageIndicator, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1127
+ SixStageIndicator = __decorate([
1128
+ ProxyCmp({
1129
+ inputs: ['stage']
1130
+ })
1131
+ ], SixStageIndicator);
1132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixStageIndicator, decorators: [{
1133
+ type: Component,
1134
+ args: [{
1135
+ selector: 'six-stage-indicator',
1136
+ changeDetection: ChangeDetectionStrategy.OnPush,
1137
+ template: '<ng-content></ng-content>',
1138
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1139
+ inputs: ['stage'],
1140
+ }]
1141
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1142
+ let SixSwitch = class SixSwitch {
1143
+ constructor(c, r, z) {
1144
+ this.z = z;
1145
+ c.detach();
1146
+ this.el = r.nativeElement;
1147
+ proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
1148
+ }
1149
+ };
1150
+ SixSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1151
+ SixSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSwitch, selector: "six-switch", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1152
+ SixSwitch = __decorate([
1153
+ ProxyCmp({
1154
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'required', 'value'],
1155
+ methods: ['setFocus', 'removeFocus', 'reportValidity', 'checkValidity', 'setCustomValidity', 'reset']
1156
+ })
1157
+ ], SixSwitch);
1158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSwitch, decorators: [{
1159
+ type: Component,
1160
+ args: [{
1161
+ selector: 'six-switch',
1162
+ changeDetection: ChangeDetectionStrategy.OnPush,
1163
+ template: '<ng-content></ng-content>',
1164
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1165
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'required', 'value'],
1166
+ }]
1167
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1168
+ let SixTab = class SixTab {
1169
+ constructor(c, r, z) {
1170
+ this.z = z;
1171
+ c.detach();
1172
+ this.el = r.nativeElement;
1173
+ proxyOutputs(this, this.el, ['six-tab-close']);
1174
+ }
1175
+ };
1176
+ SixTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1177
+ SixTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
1178
+ SixTab = __decorate([
1179
+ ProxyCmp({
1180
+ inputs: ['active', 'closable', 'disabled', 'panel'],
1181
+ methods: ['setFocus', 'removeFocus']
1182
+ })
1183
+ ], SixTab);
1184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTab, decorators: [{
1185
+ type: Component,
1186
+ args: [{
1187
+ selector: 'six-tab',
1188
+ changeDetection: ChangeDetectionStrategy.OnPush,
1189
+ template: '<ng-content></ng-content>',
1190
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1191
+ inputs: ['active', 'closable', 'disabled', 'panel'],
1192
+ }]
1193
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1194
+ let SixTabGroup = class SixTabGroup {
1195
+ constructor(c, r, z) {
1196
+ this.z = z;
1197
+ c.detach();
1198
+ this.el = r.nativeElement;
1199
+ proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
1200
+ }
1201
+ };
1202
+ SixTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1203
+ SixTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTabGroup, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1204
+ SixTabGroup = __decorate([
1205
+ ProxyCmp({
1206
+ inputs: ['noScrollControls', 'placement'],
1207
+ methods: ['show']
1208
+ })
1209
+ ], SixTabGroup);
1210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTabGroup, decorators: [{
1211
+ type: Component,
1212
+ args: [{
1213
+ selector: 'six-tab-group',
1214
+ changeDetection: ChangeDetectionStrategy.OnPush,
1215
+ template: '<ng-content></ng-content>',
1216
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1217
+ inputs: ['noScrollControls', 'placement'],
1218
+ }]
1219
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1220
+ let SixTabPanel = class SixTabPanel {
1221
+ constructor(c, r, z) {
1222
+ this.z = z;
1223
+ c.detach();
1224
+ this.el = r.nativeElement;
1225
+ }
1226
+ };
1227
+ SixTabPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1228
+ SixTabPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTabPanel, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1229
+ SixTabPanel = __decorate([
1230
+ ProxyCmp({
1231
+ inputs: ['active', 'name']
1232
+ })
1233
+ ], SixTabPanel);
1234
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTabPanel, decorators: [{
1235
+ type: Component,
1236
+ args: [{
1237
+ selector: 'six-tab-panel',
1238
+ changeDetection: ChangeDetectionStrategy.OnPush,
1239
+ template: '<ng-content></ng-content>',
1240
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1241
+ inputs: ['active', 'name'],
1242
+ }]
1243
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1244
+ let SixTag = class SixTag {
1245
+ constructor(c, r, z) {
1246
+ this.z = z;
1247
+ c.detach();
1248
+ this.el = r.nativeElement;
1249
+ proxyOutputs(this, this.el, ['six-tag-clear']);
1250
+ }
1251
+ };
1252
+ SixTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1253
+ SixTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
1254
+ SixTag = __decorate([
1255
+ ProxyCmp({
1256
+ inputs: ['clearable', 'pill', 'size', 'type']
1257
+ })
1258
+ ], SixTag);
1259
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTag, decorators: [{
1260
+ type: Component,
1261
+ args: [{
1262
+ selector: 'six-tag',
1263
+ changeDetection: ChangeDetectionStrategy.OnPush,
1264
+ template: '<ng-content></ng-content>',
1265
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1266
+ inputs: ['clearable', 'pill', 'size', 'type'],
1267
+ }]
1268
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1269
+ let SixTextarea = class SixTextarea {
1270
+ constructor(c, r, z) {
1271
+ this.z = z;
1272
+ c.detach();
1273
+ this.el = r.nativeElement;
1274
+ proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur', 'six-textarea-value-change']);
1275
+ }
1276
+ };
1277
+ SixTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1278
+ SixTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTextarea, selector: "six-textarea", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", 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 });
1279
+ SixTextarea = __decorate([
1280
+ ProxyCmp({
1281
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorOnBlur', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1282
+ methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText', 'reportValidity', 'checkValidity', 'setCustomValidity', 'reset']
1283
+ })
1284
+ ], SixTextarea);
1285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTextarea, decorators: [{
1286
+ type: Component,
1287
+ args: [{
1288
+ selector: 'six-textarea',
1289
+ changeDetection: ChangeDetectionStrategy.OnPush,
1290
+ template: '<ng-content></ng-content>',
1291
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1292
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorOnBlur', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
1293
+ }]
1294
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1295
+ let SixTile = class SixTile {
1296
+ constructor(c, r, z) {
1297
+ this.z = z;
1298
+ c.detach();
1299
+ this.el = r.nativeElement;
1300
+ proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
1301
+ }
1302
+ };
1303
+ SixTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1304
+ SixTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
1305
+ SixTile = __decorate([
1306
+ ProxyCmp({
1307
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1308
+ methods: ['hide', 'show']
1309
+ })
1310
+ ], SixTile);
1311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTile, decorators: [{
1312
+ type: Component,
1313
+ args: [{
1314
+ selector: 'six-tile',
1315
+ changeDetection: ChangeDetectionStrategy.OnPush,
1316
+ template: '<ng-content></ng-content>',
1317
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1318
+ inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
1319
+ }]
1320
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1321
+ let SixTimepicker = class SixTimepicker {
1322
+ constructor(c, r, z) {
1323
+ this.z = z;
1324
+ c.detach();
1325
+ this.el = r.nativeElement;
1326
+ proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
1327
+ }
1328
+ };
1329
+ SixTimepicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1330
+ SixTimepicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTimepicker, selector: "six-timepicker", inputs: { clearable: "clearable", debounce: "debounce", defaultTime: "defaultTime", disabled: "disabled", errorOnBlur: "errorOnBlur", errorText: "errorText", format: "format", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", interval: "interval", 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 });
1331
+ SixTimepicker = __decorate([
1332
+ ProxyCmp({
1333
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorOnBlur', 'errorText', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1334
+ methods: ['reportValidity', 'checkValidity', 'setCustomValidity', 'reset']
1335
+ })
1336
+ ], SixTimepicker);
1337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTimepicker, decorators: [{
1338
+ type: Component,
1339
+ args: [{
1340
+ selector: 'six-timepicker',
1341
+ changeDetection: ChangeDetectionStrategy.OnPush,
1342
+ template: '<ng-content></ng-content>',
1343
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1344
+ inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorOnBlur', 'errorText', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
1345
+ }]
1346
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1347
+ let SixTooltip = class SixTooltip {
1348
+ constructor(c, r, z) {
1349
+ this.z = z;
1350
+ c.detach();
1351
+ this.el = r.nativeElement;
1352
+ proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
1353
+ }
1354
+ };
1355
+ SixTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1356
+ SixTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
1357
+ SixTooltip = __decorate([
1358
+ ProxyCmp({
1359
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1360
+ methods: ['show', 'hide']
1361
+ })
1362
+ ], SixTooltip);
1363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTooltip, decorators: [{
1364
+ type: Component,
1365
+ args: [{
1366
+ selector: 'six-tooltip',
1367
+ changeDetection: ChangeDetectionStrategy.OnPush,
1368
+ template: '<ng-content></ng-content>',
1369
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1370
+ inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
1371
+ }]
1372
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1373
+
1374
+ const DIRECTIVES = [
1375
+ SetAttributes,
1376
+ SixAlert,
1377
+ SixAvatar,
1378
+ SixBadge,
1379
+ SixButton,
1380
+ SixCard,
1381
+ SixCheckbox,
1382
+ SixDatepicker,
1383
+ SixDetails,
1384
+ SixDialog,
1385
+ SixDrawer,
1386
+ SixDropdown,
1387
+ SixErrorPage,
1388
+ SixFileList,
1389
+ SixFileListItem,
1390
+ SixFileUpload,
1391
+ SixFooter,
1392
+ SixForm,
1393
+ SixGroupLabel,
1394
+ SixHeader,
1395
+ SixIcon,
1396
+ SixIconButton,
1397
+ SixInput,
1398
+ SixItemPicker,
1399
+ SixLanguageSwitcher,
1400
+ SixLayoutGrid,
1401
+ SixMainContainer,
1402
+ SixMenu,
1403
+ SixMenuDivider,
1404
+ SixMenuItem,
1405
+ SixMenuLabel,
1406
+ SixPicto,
1407
+ SixProgressBar,
1408
+ SixProgressRing,
1409
+ SixRadio,
1410
+ SixRange,
1411
+ SixRoot,
1412
+ SixSearchField,
1413
+ SixSelect,
1414
+ SixSidebar,
1415
+ SixSidebarItem,
1416
+ SixSidebarItemGroup,
1417
+ SixSpinner,
1418
+ SixStageIndicator,
1419
+ SixSwitch,
1420
+ SixTab,
1421
+ SixTabGroup,
1422
+ SixTabPanel,
1423
+ SixTag,
1424
+ SixTextarea,
1425
+ SixTile,
1426
+ SixTimepicker,
1427
+ SixTooltip
1428
+ ];
1429
+
1430
+ class UiLibraryAngularModule {
1431
+ }
1432
+ UiLibraryAngularModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1433
+ UiLibraryAngularModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, declarations: [SetAttributes, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixForm, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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], exports: [SetAttributes, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixForm, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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] });
1434
+ UiLibraryAngularModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, providers: [
1435
+ {
1436
+ provide: APP_INITIALIZER,
1437
+ useFactory: () => {
1438
+ return defineCustomElements();
1439
+ },
1440
+ },
1441
+ ] });
1442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
1443
+ type: NgModule,
1444
+ args: [{
1445
+ declarations: [...DIRECTIVES],
1446
+ imports: [],
1447
+ exports: [...DIRECTIVES],
1448
+ providers: [
1449
+ {
1450
+ provide: APP_INITIALIZER,
1451
+ useFactory: () => {
1452
+ return defineCustomElements();
1453
+ },
1454
+ },
1455
+ ],
1456
+ }]
1457
+ }] });
1458
+
1459
+ /*
1460
+ * Public API Surface of ui-library-angular
1461
+ */
1462
+
1463
+ /**
1464
+ * Generated bundle index. Do not edit.
1465
+ */
1466
+
1467
+ export { DIRECTIVES, SetAttributes, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixForm, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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, UiLibraryAngularModule };
1468
+ //# sourceMappingURL=six-group-ui-library-angular.mjs.map