@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,2172 +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
- var _a, _b;
1463
- if (((_a = this.ngControl) === null || _a === void 0 ? void 0 : _a.control) == null)
1464
- return;
1465
- const element = this.el.nativeElement;
1466
- const control = (_b = this.ngControl) === null || _b === void 0 ? void 0 : _b.control;
1467
- const invalid = !control.valid && control.dirty && control.touched;
1468
- let errorText;
1469
- if (invalid) {
1470
- errorText = this.initialErrorText || this.getErrorText(control);
1471
- }
1472
- element.invalid = invalid;
1473
- element.errorText = errorText !== null && errorText !== void 0 ? errorText : '';
1474
- });
1475
- }
1476
- setDisabledState(isDisabled) {
1477
- this.el.nativeElement.disabled = isDisabled;
1478
- }
1479
- ngOnDestroy() {
1480
- if (this.statusChanges) {
1481
- this.statusChanges.unsubscribe();
1482
- }
1483
- }
1484
- ngAfterViewInit() {
1485
- var _a, _b;
1486
- this.initialErrorText = ((_b = (_a = this.el.nativeElement) === null || _a === void 0 ? void 0 : _a.errorText) === null || _b === void 0 ? void 0 : _b.trim()) || undefined;
1487
- try {
1488
- this.ngControl = this.injector.get(NgControl);
1489
- }
1490
- catch (_c) {
1491
- /* No FormControl or ngModel binding */
1492
- }
1493
- if (!this.ngControl) {
1494
- return;
1495
- }
1496
- // Listen for changes in validity, disabled, or pending states
1497
- if (this.ngControl.statusChanges) {
1498
- this.statusChanges = this.ngControl.statusChanges.subscribe(() => this.updateValidation());
1499
- }
1500
- /**
1501
- * TODO FW-2787: Remove this in favor of https://github.com/angular/angular/issues/10887
1502
- * whenever it is implemented.
1503
- */
1504
- const formControl = this.ngControl.control;
1505
- if (formControl) {
1506
- const methodsToPatch = ['markAsTouched', 'markAllAsTouched', 'markAsUntouched', 'markAsDirty', 'markAsPristine'];
1507
- methodsToPatch.forEach((method) => {
1508
- if (typeof formControl[method] !== 'undefined') {
1509
- const oldFn = formControl[method].bind(formControl);
1510
- formControl[method] = (...params) => {
1511
- oldFn(...params);
1512
- this.updateValidation();
1513
- };
1514
- }
1515
- });
1516
- }
1517
- }
1518
- getErrorText(control) {
1519
- var _a;
1520
- if (control.errors == null) {
1521
- console.warn('no errors for invalid control', control);
1522
- return '';
1523
- }
1524
- const firstError = Object.entries(control.errors).at(0);
1525
- if (firstError == null) {
1526
- console.warn('no errors for invalid control', control);
1527
- return '';
1528
- }
1529
- const [key, value] = firstError;
1530
- return ((_a = this.validationMessagesService.getErrorMessage(getLanguage(), Object.assign({ key: key }, value))) !== null && _a !== void 0 ? _a : key);
1531
- }
1532
- }
1533
- 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 });
1534
- ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: ValueAccessor, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
1535
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValueAccessor, decorators: [{
1536
- type: Directive
1537
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
1538
- type: HostListener,
1539
- args: ['blur', ['$event.target']]
1540
- }] } });
1541
- function getLanguage() {
1542
- const languages = ['de', 'fr', 'it', 'en'];
1543
- const documentLang = document.documentElement.lang;
1544
- if (languages.includes(documentLang)) {
1545
- return documentLang;
1546
- }
1547
- return 'de';
1548
- }
1549
- const nextTick = (h) => {
1550
- if (typeof __zone_symbol__requestAnimationFrame === 'function') {
1551
- return __zone_symbol__requestAnimationFrame(h);
1552
- }
1553
- if (typeof requestAnimationFrame === 'function') {
1554
- return requestAnimationFrame(h);
1555
- }
1556
- return setTimeout(h);
1557
- };
1558
-
1559
- class TextValueAccessor extends ValueAccessor {
1560
- constructor(injector, el) {
1561
- super(injector, el);
1562
- }
1563
- handleInputEvent(el) {
1564
- this.handleValueChange(el, el.value);
1565
- }
1566
- }
1567
- 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 });
1568
- 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: [
1569
- {
1570
- provide: NG_VALUE_ACCESSOR,
1571
- useExisting: TextValueAccessor,
1572
- multi: true,
1573
- },
1574
- ], usesInheritance: true, ngImport: i0 });
1575
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextValueAccessor, decorators: [{
1576
- type: Directive,
1577
- args: [{
1578
- selector: 'six-input:not([type=number]),six-textarea',
1579
- providers: [
1580
- {
1581
- provide: NG_VALUE_ACCESSOR,
1582
- useExisting: TextValueAccessor,
1583
- multi: true,
1584
- },
1585
- ],
1586
- }]
1587
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
1588
- type: HostListener,
1589
- args: ['input', ['$event.target']]
1590
- }] } });
1591
-
1592
- class NumericValueAccessor extends ValueAccessor {
1593
- constructor(injector, el) {
1594
- super(injector, el);
1595
- }
1596
- handleInputEvent(el) {
1597
- this.handleValueChange(el, el.value);
1598
- }
1599
- registerOnChange(fn) {
1600
- super.registerOnChange((value) => {
1601
- fn(value === '' ? null : parseFloat(value));
1602
- });
1603
- }
1604
- }
1605
- 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 });
1606
- 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: [
1607
- {
1608
- provide: NG_VALUE_ACCESSOR,
1609
- useExisting: NumericValueAccessor,
1610
- multi: true,
1611
- },
1612
- ], usesInheritance: true, ngImport: i0 });
1613
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
1614
- type: Directive,
1615
- args: [{
1616
- selector: 'six-input[type=number]',
1617
- providers: [
1618
- {
1619
- provide: NG_VALUE_ACCESSOR,
1620
- useExisting: NumericValueAccessor,
1621
- multi: true,
1622
- },
1623
- ],
1624
- }]
1625
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
1626
- type: HostListener,
1627
- args: ['input', ['$event.target']]
1628
- }] } });
1629
-
1630
- class RadioValueAccessor extends ValueAccessor {
1631
- constructor(injector, el) {
1632
- super(injector, el);
1633
- }
1634
- handleChangeEvent(el) {
1635
- this.handleValueChange(el, this.value);
1636
- }
1637
- ngOnInit() {
1638
- this.checkName();
1639
- }
1640
- writeValue(value) {
1641
- this.el.nativeElement.checked = value === this.value;
1642
- this.updateValidation();
1643
- }
1644
- checkName() {
1645
- if (this.name && this.formControlName && this.name !== this.formControlName) {
1646
- throw new Error(`
1647
- If you define both a name and a formControlName attribute on your radio button, their values
1648
- must match. Ex: <six-input type="radio" formControlName="food" name="food">
1649
- `);
1650
- }
1651
- if (!this.name && this.formControlName) {
1652
- this.name = this.formControlName;
1653
- this.el.nativeElement.name = this.formControlName;
1654
- }
1655
- }
1656
- }
1657
- 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 });
1658
- 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: [
1659
- {
1660
- provide: NG_VALUE_ACCESSOR,
1661
- useExisting: RadioValueAccessor,
1662
- multi: true,
1663
- },
1664
- ], usesInheritance: true, ngImport: i0 });
1665
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
1666
- type: Directive,
1667
- args: [{
1668
- selector: 'six-radio',
1669
- providers: [
1670
- {
1671
- provide: NG_VALUE_ACCESSOR,
1672
- useExisting: RadioValueAccessor,
1673
- multi: true,
1674
- },
1675
- ],
1676
- }]
1677
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { value: [{
1678
- type: Input
1679
- }], formControlName: [{
1680
- type: Input
1681
- }], name: [{
1682
- type: Input
1683
- }], handleChangeEvent: [{
1684
- type: HostListener,
1685
- args: ['change', ['$event.target']]
1686
- }] } });
1687
-
1688
- class DatepickerValueAccessor extends ValueAccessor {
1689
- constructor(injector, el) {
1690
- super(injector, el);
1691
- }
1692
- handleChangeEvent(el) {
1693
- this.handleValueChange(el, el.value);
1694
- }
1695
- }
1696
- 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 });
1697
- DatepickerValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: DatepickerValueAccessor, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
1698
- {
1699
- provide: NG_VALUE_ACCESSOR,
1700
- useExisting: DatepickerValueAccessor,
1701
- multi: true,
1702
- },
1703
- ], usesInheritance: true, ngImport: i0 });
1704
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
1705
- type: Directive,
1706
- args: [{
1707
- selector: 'six-datepicker',
1708
- providers: [
1709
- {
1710
- provide: NG_VALUE_ACCESSOR,
1711
- useExisting: DatepickerValueAccessor,
1712
- multi: true,
1713
- },
1714
- ],
1715
- }]
1716
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
1717
- type: HostListener,
1718
- args: ['change', ['$event.target']]
1719
- }] } });
1720
-
1721
- class SixFormUtilDirective {
1722
- constructor(elementRef, injector) {
1723
- this.elementRef = elementRef;
1724
- this.injector = injector;
1725
- }
1726
- focusInvalidField() {
1727
- const formGroupDirective = this.injector.get(FormGroupDirective);
1728
- if (formGroupDirective) {
1729
- formGroupDirective.form.markAllAsTouched();
1730
- markAllAsDirty(formGroupDirective.form);
1731
- const invalidField = this.elementRef.nativeElement.querySelector('.ng-invalid');
1732
- if (typeof (invalidField === null || invalidField === void 0 ? void 0 : invalidField.setFocus) === 'function') {
1733
- invalidField.setFocus();
1734
- }
1735
- else if (typeof (invalidField === null || invalidField === void 0 ? void 0 : invalidField.focus) === 'function') {
1736
- invalidField === null || invalidField === void 0 ? void 0 : invalidField.focus();
1737
- }
1738
- }
1739
- }
1740
- }
1741
- 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 });
1742
- SixFormUtilDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SixFormUtilDirective, selector: "[sixFormUtil]", ngImport: i0 });
1743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFormUtilDirective, decorators: [{
1744
- type: Directive,
1745
- args: [{
1746
- selector: '[sixFormUtil]',
1747
- }]
1748
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Injector }]; } });
1749
- function markAllAsDirty(formGroup) {
1750
- function markAllControlsAsDirty(controls) {
1751
- controls.forEach((control) => {
1752
- if (control instanceof FormControl) {
1753
- control.markAsDirty({ onlySelf: true });
1754
- }
1755
- else if (control instanceof FormGroup) {
1756
- markAllControlsAsDirty(Object.values(control.controls));
1757
- }
1758
- else if (control instanceof FormArray) {
1759
- markAllControlsAsDirty(control.controls);
1760
- }
1761
- });
1762
- }
1763
- markAllControlsAsDirty(Object.values(formGroup.controls));
1764
- }
1765
-
1766
- class SixUiLibraryValidators {
1767
- static minDate(mindate) {
1768
- return (control) => {
1769
- if (control.value == null)
1770
- return null;
1771
- const actualDate = control.value;
1772
- return actualDate.getTime() >= mindate.getTime() ? null : { mindate: { mindate, actual: actualDate } };
1773
- };
1774
- }
1775
- static maxDate(maxdate) {
1776
- return (control) => {
1777
- if (control.value == null)
1778
- return null;
1779
- const actualDate = control.value;
1780
- return actualDate.getTime() <= maxdate.getTime() ? null : { maxdate: { maxdate, actual: actualDate } };
1781
- };
1782
- }
1783
- static allowedDates(allowedDates = () => true) {
1784
- return (control) => {
1785
- if (control.value == null)
1786
- return null;
1787
- const allowed = allowedDates(control.value);
1788
- return allowed ? null : { invaliddate: { actual: control.value } };
1789
- };
1790
- }
1791
- }
1792
- class MinDateValidator {
1793
- validate(control) {
1794
- return SixUiLibraryValidators.minDate(this.mindate);
1795
- }
1796
- }
1797
- MinDateValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1798
- 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 });
1799
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinDateValidator, decorators: [{
1800
- type: Directive,
1801
- args: [{
1802
- selector: 'six-datepicker[min]',
1803
- providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
1804
- }]
1805
- }], propDecorators: { mindate: [{
1806
- type: Input
1807
- }] } });
1808
- class MaxDateValidator {
1809
- validate(control) {
1810
- return SixUiLibraryValidators.maxDate(this.maxdate);
1811
- }
1812
- }
1813
- MaxDateValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1814
- 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 });
1815
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxDateValidator, decorators: [{
1816
- type: Directive,
1817
- args: [{
1818
- selector: 'six-datepicker[max]',
1819
- providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
1820
- }]
1821
- }], propDecorators: { maxdate: [{
1822
- type: Input
1823
- }] } });
1824
- class AllowedDatesValidator {
1825
- constructor() {
1826
- this.allowedDates = () => true;
1827
- }
1828
- validate(control) {
1829
- return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
1830
- }
1831
- }
1832
- AllowedDatesValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1833
- 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 });
1834
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AllowedDatesValidator, decorators: [{
1835
- type: Directive,
1836
- args: [{
1837
- selector: 'six-datepicker[allowedDates]',
1838
- providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
1839
- }]
1840
- }], propDecorators: { allowedDates: [{
1841
- type: Input
1842
- }] } });
1843
- class MinValidator {
1844
- validate(control) {
1845
- return Validators.min(toFloat(this.min))(control);
1846
- }
1847
- }
1848
- MinValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1849
- 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 });
1850
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinValidator, decorators: [{
1851
- type: Directive,
1852
- args: [{
1853
- selector: 'six-input[type=number][min]',
1854
- providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
1855
- }]
1856
- }], propDecorators: { min: [{
1857
- type: Input
1858
- }] } });
1859
- class MaxValidator {
1860
- validate(control) {
1861
- return Validators.max(toFloat(this.max))(control);
1862
- }
1863
- }
1864
- MaxValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1865
- 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 });
1866
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxValidator, decorators: [{
1867
- type: Directive,
1868
- args: [{
1869
- selector: 'six-input[type=number][max]',
1870
- providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
1871
- }]
1872
- }], propDecorators: { max: [{
1873
- type: Input
1874
- }] } });
1875
- function toFloat(value) {
1876
- return typeof value === 'number' ? value : parseFloat(value);
1877
- }
1878
-
1879
- class SelectValueAccessor extends ValueAccessor {
1880
- constructor(injector, el) {
1881
- super(injector, el);
1882
- }
1883
- handleChangeEvent(el) {
1884
- this.handleValueChange(el, el.value);
1885
- }
1886
- }
1887
- 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 });
1888
- SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SelectValueAccessor, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
1889
- {
1890
- provide: NG_VALUE_ACCESSOR,
1891
- useExisting: SelectValueAccessor,
1892
- multi: true,
1893
- },
1894
- ], usesInheritance: true, ngImport: i0 });
1895
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
1896
- type: Directive,
1897
- args: [{
1898
- selector: 'six-select',
1899
- providers: [
1900
- {
1901
- provide: NG_VALUE_ACCESSOR,
1902
- useExisting: SelectValueAccessor,
1903
- multi: true,
1904
- },
1905
- ],
1906
- }]
1907
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
1908
- type: HostListener,
1909
- args: ['change', ['$event.target']]
1910
- }] } });
1911
-
1912
- class CheckboxValueAccessor extends ValueAccessor {
1913
- constructor(injector, el) {
1914
- super(injector, el);
1915
- }
1916
- handleChangeEvent(el) {
1917
- this.handleValueChange(el, el.checked);
1918
- }
1919
- writeValue(value) {
1920
- this.el.nativeElement.checked = value === true;
1921
- this.updateValidation();
1922
- }
1923
- }
1924
- 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 });
1925
- CheckboxValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: CheckboxValueAccessor, selector: "six-checkbox", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
1926
- {
1927
- provide: NG_VALUE_ACCESSOR,
1928
- useExisting: CheckboxValueAccessor,
1929
- multi: true,
1930
- },
1931
- ], usesInheritance: true, ngImport: i0 });
1932
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
1933
- type: Directive,
1934
- args: [{
1935
- selector: 'six-checkbox',
1936
- providers: [
1937
- {
1938
- provide: NG_VALUE_ACCESSOR,
1939
- useExisting: CheckboxValueAccessor,
1940
- multi: true,
1941
- },
1942
- ],
1943
- }]
1944
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
1945
- type: HostListener,
1946
- args: ['change', ['$event.target']]
1947
- }] } });
1948
-
1949
- class RangeValueAccessor extends ValueAccessor {
1950
- constructor(injector, el) {
1951
- super(injector, el);
1952
- }
1953
- handleInputEvent(el) {
1954
- this.handleValueChange(el, el.value);
1955
- }
1956
- registerOnChange(fn) {
1957
- super.registerOnChange((value) => {
1958
- fn(value === '' ? null : parseFloat(value));
1959
- });
1960
- }
1961
- }
1962
- 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 });
1963
- RangeValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: RangeValueAccessor, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
1964
- {
1965
- provide: NG_VALUE_ACCESSOR,
1966
- useExisting: RangeValueAccessor,
1967
- multi: true,
1968
- },
1969
- ], usesInheritance: true, ngImport: i0 });
1970
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RangeValueAccessor, decorators: [{
1971
- type: Directive,
1972
- args: [{
1973
- selector: 'six-range',
1974
- providers: [
1975
- {
1976
- provide: NG_VALUE_ACCESSOR,
1977
- useExisting: RangeValueAccessor,
1978
- multi: true,
1979
- },
1980
- ],
1981
- }]
1982
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
1983
- type: HostListener,
1984
- args: ['input', ['$event.target']]
1985
- }] } });
1986
-
1987
- class SwitchValueAccessor extends ValueAccessor {
1988
- constructor(injector, el) {
1989
- super(injector, el);
1990
- }
1991
- handleChangeEvent(el) {
1992
- this.handleValueChange(el, el.checked);
1993
- }
1994
- writeValue(value) {
1995
- this.el.nativeElement.checked = value === true;
1996
- this.updateValidation();
1997
- }
1998
- }
1999
- 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 });
2000
- SwitchValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SwitchValueAccessor, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2001
- {
2002
- provide: NG_VALUE_ACCESSOR,
2003
- useExisting: SwitchValueAccessor,
2004
- multi: true,
2005
- },
2006
- ], usesInheritance: true, ngImport: i0 });
2007
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SwitchValueAccessor, decorators: [{
2008
- type: Directive,
2009
- args: [{
2010
- selector: 'six-switch',
2011
- providers: [
2012
- {
2013
- provide: NG_VALUE_ACCESSOR,
2014
- useExisting: SwitchValueAccessor,
2015
- multi: true,
2016
- },
2017
- ],
2018
- }]
2019
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
2020
- type: HostListener,
2021
- args: ['change', ['$event.target']]
2022
- }] } });
2023
-
2024
- class TimepickerValueAccessor extends ValueAccessor {
2025
- constructor(injector, el) {
2026
- super(injector, el);
2027
- }
2028
- handleChangeEvent(el) {
2029
- this.handleValueChange(el, el.value);
2030
- }
2031
- }
2032
- 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 });
2033
- TimepickerValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: TimepickerValueAccessor, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
2034
- {
2035
- provide: NG_VALUE_ACCESSOR,
2036
- useExisting: TimepickerValueAccessor,
2037
- multi: true,
2038
- },
2039
- ], usesInheritance: true, ngImport: i0 });
2040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
2041
- type: Directive,
2042
- args: [{
2043
- selector: 'six-timepicker',
2044
- providers: [
2045
- {
2046
- provide: NG_VALUE_ACCESSOR,
2047
- useExisting: TimepickerValueAccessor,
2048
- multi: true,
2049
- },
2050
- ],
2051
- }]
2052
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
2053
- type: HostListener,
2054
- args: ['change', ['$event.target']]
2055
- }] } });
2056
-
2057
- class UiLibraryAngularModule {
2058
- static forRoot(customValidationMessagesService) {
2059
- return {
2060
- ngModule: UiLibraryAngularModule,
2061
- providers: [
2062
- {
2063
- provide: APP_INITIALIZER,
2064
- useFactory: () => {
2065
- return defineCustomElements();
2066
- },
2067
- },
2068
- { provide: ValidationMessagesService, useClass: customValidationMessagesService !== null && customValidationMessagesService !== void 0 ? customValidationMessagesService : ValidationMessagesService },
2069
- ],
2070
- };
2071
- }
2072
- }
2073
- UiLibraryAngularModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2074
- 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,
2075
- // value accessors
2076
- TextValueAccessor,
2077
- NumericValueAccessor,
2078
- RadioValueAccessor,
2079
- DatepickerValueAccessor,
2080
- TimepickerValueAccessor,
2081
- SelectValueAccessor,
2082
- CheckboxValueAccessor,
2083
- SwitchValueAccessor,
2084
- RangeValueAccessor,
2085
- // validators
2086
- MinValidator,
2087
- MaxValidator,
2088
- MinDateValidator,
2089
- MaxDateValidator,
2090
- AllowedDatesValidator,
2091
- // form helpers
2092
- 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,
2093
- // value accessors
2094
- TextValueAccessor,
2095
- NumericValueAccessor,
2096
- RadioValueAccessor,
2097
- DatepickerValueAccessor,
2098
- TimepickerValueAccessor,
2099
- SelectValueAccessor,
2100
- CheckboxValueAccessor,
2101
- SwitchValueAccessor,
2102
- RangeValueAccessor,
2103
- // validators
2104
- MinValidator,
2105
- MaxValidator,
2106
- MinDateValidator,
2107
- MaxDateValidator,
2108
- AllowedDatesValidator,
2109
- // form helpers
2110
- SixFormUtilDirective] });
2111
- UiLibraryAngularModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule });
2112
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
2113
- type: NgModule,
2114
- args: [{
2115
- declarations: [
2116
- // proxies
2117
- ...DIRECTIVES,
2118
- // value accessors
2119
- TextValueAccessor,
2120
- NumericValueAccessor,
2121
- RadioValueAccessor,
2122
- DatepickerValueAccessor,
2123
- TimepickerValueAccessor,
2124
- SelectValueAccessor,
2125
- CheckboxValueAccessor,
2126
- SwitchValueAccessor,
2127
- RangeValueAccessor,
2128
- // validators
2129
- MinValidator,
2130
- MaxValidator,
2131
- MinDateValidator,
2132
- MaxDateValidator,
2133
- AllowedDatesValidator,
2134
- // form helpers
2135
- SixFormUtilDirective,
2136
- ],
2137
- imports: [],
2138
- exports: [
2139
- // proxies
2140
- ...DIRECTIVES,
2141
- // value accessors
2142
- TextValueAccessor,
2143
- NumericValueAccessor,
2144
- RadioValueAccessor,
2145
- DatepickerValueAccessor,
2146
- TimepickerValueAccessor,
2147
- SelectValueAccessor,
2148
- CheckboxValueAccessor,
2149
- SwitchValueAccessor,
2150
- RangeValueAccessor,
2151
- // validators
2152
- MinValidator,
2153
- MaxValidator,
2154
- MinDateValidator,
2155
- MaxDateValidator,
2156
- AllowedDatesValidator,
2157
- // form helpers
2158
- SixFormUtilDirective,
2159
- ],
2160
- }]
2161
- }] });
2162
-
2163
- /*
2164
- * Public API Surface of ui-library-angular
2165
- */
2166
-
2167
- /**
2168
- * Generated bundle index. Do not edit.
2169
- */
2170
-
2171
- 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 };
2172
- //# sourceMappingURL=six-group-ui-library-angular.mjs.map