@six-group/ui-library-angular 0.0.0-insider.e148618 → 0.0.0-insider.e28f142

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