@six-group/ui-library-angular 0.0.0-insider.b2db78f → 0.0.0-insider.b85326c
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.
- package/fesm2022/six-group-ui-library-angular.mjs +431 -335
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/lib/control-value-accessors/value-accessor.d.ts +3 -1
- package/lib/stencil-generated/components.d.ts +68 -62
- package/lib/ui-library-angular-config.d.ts +6 -0
- package/lib/ui-library-angular.module.d.ts +2 -1
- package/package.json +6 -11
- package/esm2022/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
- package/esm2022/lib/control-value-accessors/date-value-accessor.mjs +0 -41
- package/esm2022/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
- package/esm2022/lib/control-value-accessors/radio-value-accessor.mjs +0 -62
- package/esm2022/lib/control-value-accessors/range-value-accessor.mjs +0 -42
- package/esm2022/lib/control-value-accessors/select-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
- package/esm2022/lib/control-value-accessors/text-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/value-accessor.mjs +0 -138
- package/esm2022/lib/form/six-form.directive.mjs +0 -134
- package/esm2022/lib/link/six-router-link.directive.mjs +0 -61
- package/esm2022/lib/services/alert.service.mjs +0 -21
- package/esm2022/lib/services/validation-messages.service.mjs +0 -15
- package/esm2022/lib/sidebar/active-sidebar.directive.mjs +0 -110
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +0 -59
- package/esm2022/lib/stencil-generated/components.mjs +0 -1414
- package/esm2022/lib/stencil-generated/index.mjs +0 -61
- package/esm2022/lib/ui-library-angular.module.mjs +0 -169
- package/esm2022/lib/validators/six-ui-library-validators.mjs +0 -203
- package/esm2022/public-api.mjs +0 -31
- package/esm2022/six-group-ui-library-angular.mjs +0 -5
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeDetectionStrategy, Component, Injectable, InjectionToken, inject, HostListener, Directive, Input, EventEmitter, Output, Optional, HostBinding, ContentChildren, APP_INITIALIZER, NgModule, NgZone } from '@angular/core';
|
|
3
3
|
import { __decorate } from 'tslib';
|
|
4
4
|
import { fromEvent } from 'rxjs';
|
|
5
5
|
import { defineCustomElements } from '@six-group/ui-library/loader';
|
|
6
6
|
import * as i1 from '@angular/forms';
|
|
7
|
-
import { NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS
|
|
7
|
+
import { Validators, NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS } from '@angular/forms';
|
|
8
8
|
import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
|
|
9
9
|
import * as i1$1 from '@angular/common';
|
|
10
10
|
import * as i2 from '@angular/router';
|
|
@@ -75,8 +75,8 @@ let SixAlert = class SixAlert {
|
|
|
75
75
|
this.el = r.nativeElement;
|
|
76
76
|
proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
|
|
77
77
|
}
|
|
78
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
79
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
78
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
79
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixAlert, isStandalone: false, selector: "six-alert", inputs: { closable: "closable", duration: "duration", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
80
80
|
};
|
|
81
81
|
SixAlert = __decorate([
|
|
82
82
|
ProxyCmp({
|
|
@@ -84,64 +84,67 @@ SixAlert = __decorate([
|
|
|
84
84
|
methods: ['show', 'hide', 'toast']
|
|
85
85
|
})
|
|
86
86
|
], SixAlert);
|
|
87
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAlert, decorators: [{
|
|
88
88
|
type: Component,
|
|
89
89
|
args: [{
|
|
90
|
+
standalone: false,
|
|
90
91
|
selector: 'six-alert',
|
|
91
92
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
92
93
|
template: '<ng-content></ng-content>',
|
|
93
94
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
94
95
|
inputs: ['closable', 'duration', 'open', 'type'],
|
|
95
96
|
}]
|
|
96
|
-
}], ctorParameters:
|
|
97
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
97
98
|
let SixAvatar = class SixAvatar {
|
|
98
99
|
constructor(c, r, z) {
|
|
99
100
|
this.z = z;
|
|
100
101
|
c.detach();
|
|
101
102
|
this.el = r.nativeElement;
|
|
102
103
|
}
|
|
103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
104
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
104
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
105
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixAvatar, isStandalone: false, selector: "six-avatar", inputs: { alt: "alt", image: "image", initials: "initials", shape: "shape" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
105
106
|
};
|
|
106
107
|
SixAvatar = __decorate([
|
|
107
108
|
ProxyCmp({
|
|
108
109
|
inputs: ['alt', 'image', 'initials', 'shape']
|
|
109
110
|
})
|
|
110
111
|
], SixAvatar);
|
|
111
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAvatar, decorators: [{
|
|
112
113
|
type: Component,
|
|
113
114
|
args: [{
|
|
115
|
+
standalone: false,
|
|
114
116
|
selector: 'six-avatar',
|
|
115
117
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
116
118
|
template: '<ng-content></ng-content>',
|
|
117
119
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
118
120
|
inputs: ['alt', 'image', 'initials', 'shape'],
|
|
119
121
|
}]
|
|
120
|
-
}], ctorParameters:
|
|
122
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
121
123
|
let SixBadge = class SixBadge {
|
|
122
124
|
constructor(c, r, z) {
|
|
123
125
|
this.z = z;
|
|
124
126
|
c.detach();
|
|
125
127
|
this.el = r.nativeElement;
|
|
126
128
|
}
|
|
127
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
128
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
129
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
130
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixBadge, isStandalone: false, selector: "six-badge", inputs: { pill: "pill", pulse: "pulse", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
129
131
|
};
|
|
130
132
|
SixBadge = __decorate([
|
|
131
133
|
ProxyCmp({
|
|
132
134
|
inputs: ['pill', 'pulse', 'type']
|
|
133
135
|
})
|
|
134
136
|
], SixBadge);
|
|
135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixBadge, decorators: [{
|
|
136
138
|
type: Component,
|
|
137
139
|
args: [{
|
|
140
|
+
standalone: false,
|
|
138
141
|
selector: 'six-badge',
|
|
139
142
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
140
143
|
template: '<ng-content></ng-content>',
|
|
141
144
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
142
145
|
inputs: ['pill', 'pulse', 'type'],
|
|
143
146
|
}]
|
|
144
|
-
}], ctorParameters:
|
|
147
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
145
148
|
let SixButton = class SixButton {
|
|
146
149
|
constructor(c, r, z) {
|
|
147
150
|
this.z = z;
|
|
@@ -149,8 +152,8 @@ let SixButton = class SixButton {
|
|
|
149
152
|
this.el = r.nativeElement;
|
|
150
153
|
proxyOutputs(this, this.el, ['six-button-blur', 'six-button-focus']);
|
|
151
154
|
}
|
|
152
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
153
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
155
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
156
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixButton, isStandalone: false, selector: "six-button", inputs: { caret: "caret", circle: "circle", disabled: "disabled", download: "download", href: "href", loading: "loading", name: "name", pill: "pill", reset: "reset", size: "size", submit: "submit", target: "target", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
154
157
|
};
|
|
155
158
|
SixButton = __decorate([
|
|
156
159
|
ProxyCmp({
|
|
@@ -158,38 +161,40 @@ SixButton = __decorate([
|
|
|
158
161
|
methods: ['setFocus', 'removeFocus']
|
|
159
162
|
})
|
|
160
163
|
], SixButton);
|
|
161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixButton, decorators: [{
|
|
162
165
|
type: Component,
|
|
163
166
|
args: [{
|
|
167
|
+
standalone: false,
|
|
164
168
|
selector: 'six-button',
|
|
165
169
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
166
170
|
template: '<ng-content></ng-content>',
|
|
167
171
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
168
172
|
inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
|
|
169
173
|
}]
|
|
170
|
-
}], ctorParameters:
|
|
174
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
171
175
|
let SixCard = class SixCard {
|
|
172
176
|
constructor(c, r, z) {
|
|
173
177
|
this.z = z;
|
|
174
178
|
c.detach();
|
|
175
179
|
this.el = r.nativeElement;
|
|
176
180
|
}
|
|
177
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
178
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
182
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixCard, isStandalone: false, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
179
183
|
};
|
|
180
184
|
SixCard = __decorate([
|
|
181
185
|
ProxyCmp({})
|
|
182
186
|
], SixCard);
|
|
183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCard, decorators: [{
|
|
184
188
|
type: Component,
|
|
185
189
|
args: [{
|
|
190
|
+
standalone: false,
|
|
186
191
|
selector: 'six-card',
|
|
187
192
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
188
193
|
template: '<ng-content></ng-content>',
|
|
189
194
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
190
195
|
inputs: [],
|
|
191
196
|
}]
|
|
192
|
-
}], ctorParameters:
|
|
197
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
193
198
|
let SixCheckbox = class SixCheckbox {
|
|
194
199
|
constructor(c, r, z) {
|
|
195
200
|
this.z = z;
|
|
@@ -197,8 +202,8 @@ let SixCheckbox = class SixCheckbox {
|
|
|
197
202
|
this.el = r.nativeElement;
|
|
198
203
|
proxyOutputs(this, this.el, ['six-checkbox-blur', 'six-checkbox-change', 'six-checkbox-focus']);
|
|
199
204
|
}
|
|
200
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
201
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
205
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
206
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixCheckbox, isStandalone: false, selector: "six-checkbox", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", indeterminate: "indeterminate", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
202
207
|
};
|
|
203
208
|
SixCheckbox = __decorate([
|
|
204
209
|
ProxyCmp({
|
|
@@ -206,16 +211,17 @@ SixCheckbox = __decorate([
|
|
|
206
211
|
methods: ['setFocus', 'removeFocus']
|
|
207
212
|
})
|
|
208
213
|
], SixCheckbox);
|
|
209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCheckbox, decorators: [{
|
|
210
215
|
type: Component,
|
|
211
216
|
args: [{
|
|
217
|
+
standalone: false,
|
|
212
218
|
selector: 'six-checkbox',
|
|
213
219
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
214
220
|
template: '<ng-content></ng-content>',
|
|
215
221
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
216
222
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
217
223
|
}]
|
|
218
|
-
}], ctorParameters:
|
|
224
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
219
225
|
let SixDate = class SixDate {
|
|
220
226
|
constructor(c, r, z) {
|
|
221
227
|
this.z = z;
|
|
@@ -223,25 +229,26 @@ let SixDate = class SixDate {
|
|
|
223
229
|
this.el = r.nativeElement;
|
|
224
230
|
proxyOutputs(this, this.el, ['six-change', 'six-blur']);
|
|
225
231
|
}
|
|
226
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
227
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
233
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDate, isStandalone: false, selector: "six-date", inputs: { allowedDates: "allowedDates", clearable: "clearable", dateFormat: "dateFormat", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", language: "language", max: "max", min: "min", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
228
234
|
};
|
|
229
235
|
SixDate = __decorate([
|
|
230
236
|
ProxyCmp({
|
|
231
|
-
inputs: ['allowedDates', 'clearable', 'dateFormat', '
|
|
237
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
232
238
|
methods: ['setFocus']
|
|
233
239
|
})
|
|
234
240
|
], SixDate);
|
|
235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDate, decorators: [{
|
|
236
242
|
type: Component,
|
|
237
243
|
args: [{
|
|
244
|
+
standalone: false,
|
|
238
245
|
selector: 'six-date',
|
|
239
246
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
240
247
|
template: '<ng-content></ng-content>',
|
|
241
248
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
242
|
-
inputs: ['allowedDates', 'clearable', 'dateFormat', '
|
|
249
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
243
250
|
}]
|
|
244
|
-
}], ctorParameters:
|
|
251
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
245
252
|
let SixDatepicker = class SixDatepicker {
|
|
246
253
|
constructor(c, r, z) {
|
|
247
254
|
this.z = z;
|
|
@@ -249,8 +256,8 @@ let SixDatepicker = class SixDatepicker {
|
|
|
249
256
|
this.el = r.nativeElement;
|
|
250
257
|
proxyOutputs(this, this.el, ['six-datepicker-select', 'six-datepicker-clear', 'six-datepicker-blur']);
|
|
251
258
|
}
|
|
252
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
253
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
260
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDatepicker, isStandalone: false, selector: "six-datepicker", inputs: { allowedDates: "allowedDates", clearable: "clearable", closeOnSelect: "closeOnSelect", containingElement: "containingElement", dateFormat: "dateFormat", debounce: "debounce", defaultDate: "defaultDate", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", invalid: "invalid", label: "label", locale: "locale", max: "max", min: "min", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
254
261
|
};
|
|
255
262
|
SixDatepicker = __decorate([
|
|
256
263
|
ProxyCmp({
|
|
@@ -258,16 +265,17 @@ SixDatepicker = __decorate([
|
|
|
258
265
|
methods: ['setFocus', 'select']
|
|
259
266
|
})
|
|
260
267
|
], SixDatepicker);
|
|
261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDatepicker, decorators: [{
|
|
262
269
|
type: Component,
|
|
263
270
|
args: [{
|
|
271
|
+
standalone: false,
|
|
264
272
|
selector: 'six-datepicker',
|
|
265
273
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
266
274
|
template: '<ng-content></ng-content>',
|
|
267
275
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
268
276
|
inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorText', 'errorTextCount', 'hoist', 'iconPosition', 'inline', 'invalid', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
|
|
269
277
|
}]
|
|
270
|
-
}], ctorParameters:
|
|
278
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
271
279
|
let SixDetails = class SixDetails {
|
|
272
280
|
constructor(c, r, z) {
|
|
273
281
|
this.z = z;
|
|
@@ -275,8 +283,8 @@ let SixDetails = class SixDetails {
|
|
|
275
283
|
this.el = r.nativeElement;
|
|
276
284
|
proxyOutputs(this, this.el, ['six-details-show', 'six-details-after-show', 'six-details-hide', 'six-details-after-hide']);
|
|
277
285
|
}
|
|
278
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
279
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
286
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
287
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDetails, isStandalone: false, selector: "six-details", inputs: { disabled: "disabled", hasContent: "hasContent", inline: "inline", open: "open", selectableEmpty: "selectableEmpty", summary: "summary", summaryIcon: "summaryIcon", summaryIconSize: "summaryIconSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
280
288
|
};
|
|
281
289
|
SixDetails = __decorate([
|
|
282
290
|
ProxyCmp({
|
|
@@ -284,25 +292,26 @@ SixDetails = __decorate([
|
|
|
284
292
|
methods: ['show', 'hide']
|
|
285
293
|
})
|
|
286
294
|
], SixDetails);
|
|
287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDetails, decorators: [{
|
|
288
296
|
type: Component,
|
|
289
297
|
args: [{
|
|
298
|
+
standalone: false,
|
|
290
299
|
selector: 'six-details',
|
|
291
300
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
292
301
|
template: '<ng-content></ng-content>',
|
|
293
302
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
294
303
|
inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
|
|
295
304
|
}]
|
|
296
|
-
}], ctorParameters:
|
|
305
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
297
306
|
let SixDialog = class SixDialog {
|
|
298
307
|
constructor(c, r, z) {
|
|
299
308
|
this.z = z;
|
|
300
309
|
c.detach();
|
|
301
310
|
this.el = r.nativeElement;
|
|
302
|
-
proxyOutputs(this, this.el, ['six-dialog-show', 'six-dialog-after-show', 'six-dialog-hide', 'six-dialog-after-hide', 'six-dialog-initial-focus', 'six-dialog-
|
|
311
|
+
proxyOutputs(this, this.el, ['six-dialog-show', 'six-dialog-after-show', 'six-dialog-hide', 'six-dialog-after-hide', 'six-dialog-initial-focus', 'six-dialog-request-close']);
|
|
303
312
|
}
|
|
304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
305
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
313
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
314
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDialog, isStandalone: false, selector: "six-dialog", inputs: { label: "label", noHeader: "noHeader", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
306
315
|
};
|
|
307
316
|
SixDialog = __decorate([
|
|
308
317
|
ProxyCmp({
|
|
@@ -310,25 +319,26 @@ SixDialog = __decorate([
|
|
|
310
319
|
methods: ['show', 'hide']
|
|
311
320
|
})
|
|
312
321
|
], SixDialog);
|
|
313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDialog, decorators: [{
|
|
314
323
|
type: Component,
|
|
315
324
|
args: [{
|
|
325
|
+
standalone: false,
|
|
316
326
|
selector: 'six-dialog',
|
|
317
327
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
318
328
|
template: '<ng-content></ng-content>',
|
|
319
329
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
320
330
|
inputs: ['label', 'noHeader', 'open'],
|
|
321
331
|
}]
|
|
322
|
-
}], ctorParameters:
|
|
332
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
323
333
|
let SixDrawer = class SixDrawer {
|
|
324
334
|
constructor(c, r, z) {
|
|
325
335
|
this.z = z;
|
|
326
336
|
c.detach();
|
|
327
337
|
this.el = r.nativeElement;
|
|
328
|
-
proxyOutputs(this, this.el, ['six-drawer-show', 'six-drawer-after-show', 'six-drawer-hide', 'six-drawer-after-hide', 'six-drawer-initial-focus', 'six-drawer-
|
|
338
|
+
proxyOutputs(this, this.el, ['six-drawer-show', 'six-drawer-after-show', 'six-drawer-hide', 'six-drawer-after-hide', 'six-drawer-initial-focus', 'six-drawer-request-close']);
|
|
329
339
|
}
|
|
330
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
331
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
340
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
341
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDrawer, isStandalone: false, selector: "six-drawer", inputs: { contained: "contained", label: "label", noHeader: "noHeader", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
332
342
|
};
|
|
333
343
|
SixDrawer = __decorate([
|
|
334
344
|
ProxyCmp({
|
|
@@ -336,16 +346,17 @@ SixDrawer = __decorate([
|
|
|
336
346
|
methods: ['show', 'hide']
|
|
337
347
|
})
|
|
338
348
|
], SixDrawer);
|
|
339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDrawer, decorators: [{
|
|
340
350
|
type: Component,
|
|
341
351
|
args: [{
|
|
352
|
+
standalone: false,
|
|
342
353
|
selector: 'six-drawer',
|
|
343
354
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
344
355
|
template: '<ng-content></ng-content>',
|
|
345
356
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
346
357
|
inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
|
|
347
358
|
}]
|
|
348
|
-
}], ctorParameters:
|
|
359
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
349
360
|
let SixDropdown = class SixDropdown {
|
|
350
361
|
constructor(c, r, z) {
|
|
351
362
|
this.z = z;
|
|
@@ -353,8 +364,8 @@ let SixDropdown = class SixDropdown {
|
|
|
353
364
|
this.el = r.nativeElement;
|
|
354
365
|
proxyOutputs(this, this.el, ['six-dropdown-show', 'six-dropdown-after-show', 'six-dropdown-hide', 'six-dropdown-after-hide', 'six-dropdown-auto-filter-fired', 'six-async-filter-fired', 'six-dropdown-scroll']);
|
|
355
366
|
}
|
|
356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
357
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
367
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
368
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixDropdown, isStandalone: false, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", matchTriggerWidth: "matchTriggerWidth", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
358
369
|
};
|
|
359
370
|
SixDropdown = __decorate([
|
|
360
371
|
ProxyCmp({
|
|
@@ -362,84 +373,88 @@ SixDropdown = __decorate([
|
|
|
362
373
|
methods: ['show', 'hide']
|
|
363
374
|
})
|
|
364
375
|
], SixDropdown);
|
|
365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDropdown, decorators: [{
|
|
366
377
|
type: Component,
|
|
367
378
|
args: [{
|
|
379
|
+
standalone: false,
|
|
368
380
|
selector: 'six-dropdown',
|
|
369
381
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
370
382
|
template: '<ng-content></ng-content>',
|
|
371
383
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
372
384
|
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
373
385
|
}]
|
|
374
|
-
}], ctorParameters:
|
|
386
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
375
387
|
let SixError = class SixError {
|
|
376
388
|
constructor(c, r, z) {
|
|
377
389
|
this.z = z;
|
|
378
390
|
c.detach();
|
|
379
391
|
this.el = r.nativeElement;
|
|
380
392
|
}
|
|
381
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
382
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
393
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
394
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixError, isStandalone: false, selector: "six-error", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
383
395
|
};
|
|
384
396
|
SixError = __decorate([
|
|
385
397
|
ProxyCmp({})
|
|
386
398
|
], SixError);
|
|
387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixError, decorators: [{
|
|
388
400
|
type: Component,
|
|
389
401
|
args: [{
|
|
402
|
+
standalone: false,
|
|
390
403
|
selector: 'six-error',
|
|
391
404
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
392
405
|
template: '<ng-content></ng-content>',
|
|
393
406
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
394
407
|
inputs: [],
|
|
395
408
|
}]
|
|
396
|
-
}], ctorParameters:
|
|
409
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
397
410
|
let SixErrorPage = class SixErrorPage {
|
|
398
411
|
constructor(c, r, z) {
|
|
399
412
|
this.z = z;
|
|
400
413
|
c.detach();
|
|
401
414
|
this.el = r.nativeElement;
|
|
402
415
|
}
|
|
403
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
404
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
416
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
417
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixErrorPage, isStandalone: false, selector: "six-error-page", inputs: { customDescription: "customDescription", customIcon: "customIcon", customTitle: "customTitle", errorCode: "errorCode", language: "language" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
405
418
|
};
|
|
406
419
|
SixErrorPage = __decorate([
|
|
407
420
|
ProxyCmp({
|
|
408
421
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
|
|
409
422
|
})
|
|
410
423
|
], SixErrorPage);
|
|
411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixErrorPage, decorators: [{
|
|
412
425
|
type: Component,
|
|
413
426
|
args: [{
|
|
427
|
+
standalone: false,
|
|
414
428
|
selector: 'six-error-page',
|
|
415
429
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
416
430
|
template: '<ng-content></ng-content>',
|
|
417
431
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
418
432
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language'],
|
|
419
433
|
}]
|
|
420
|
-
}], ctorParameters:
|
|
434
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
421
435
|
let SixFileList = class SixFileList {
|
|
422
436
|
constructor(c, r, z) {
|
|
423
437
|
this.z = z;
|
|
424
438
|
c.detach();
|
|
425
439
|
this.el = r.nativeElement;
|
|
426
440
|
}
|
|
427
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
428
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
441
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
442
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFileList, isStandalone: false, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
429
443
|
};
|
|
430
444
|
SixFileList = __decorate([
|
|
431
445
|
ProxyCmp({})
|
|
432
446
|
], SixFileList);
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileList, decorators: [{
|
|
434
448
|
type: Component,
|
|
435
449
|
args: [{
|
|
450
|
+
standalone: false,
|
|
436
451
|
selector: 'six-file-list',
|
|
437
452
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
438
453
|
template: '<ng-content></ng-content>',
|
|
439
454
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
440
455
|
inputs: [],
|
|
441
456
|
}]
|
|
442
|
-
}], ctorParameters:
|
|
457
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
443
458
|
let SixFileListItem = class SixFileListItem {
|
|
444
459
|
constructor(c, r, z) {
|
|
445
460
|
this.z = z;
|
|
@@ -447,24 +462,25 @@ let SixFileListItem = class SixFileListItem {
|
|
|
447
462
|
this.el = r.nativeElement;
|
|
448
463
|
proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
|
|
449
464
|
}
|
|
450
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
451
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
466
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFileListItem, isStandalone: false, selector: "six-file-list-item", inputs: { date: "date", identifier: "identifier", name: "name", nodelete: "nodelete", nodownload: "nodownload", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
452
467
|
};
|
|
453
468
|
SixFileListItem = __decorate([
|
|
454
469
|
ProxyCmp({
|
|
455
470
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
|
|
456
471
|
})
|
|
457
472
|
], SixFileListItem);
|
|
458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileListItem, decorators: [{
|
|
459
474
|
type: Component,
|
|
460
475
|
args: [{
|
|
476
|
+
standalone: false,
|
|
461
477
|
selector: 'six-file-list-item',
|
|
462
478
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
463
479
|
template: '<ng-content></ng-content>',
|
|
464
480
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
465
481
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size'],
|
|
466
482
|
}]
|
|
467
|
-
}], ctorParameters:
|
|
483
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
468
484
|
let SixFileUpload = class SixFileUpload {
|
|
469
485
|
constructor(c, r, z) {
|
|
470
486
|
this.z = z;
|
|
@@ -472,214 +488,223 @@ let SixFileUpload = class SixFileUpload {
|
|
|
472
488
|
this.el = r.nativeElement;
|
|
473
489
|
proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
|
|
474
490
|
}
|
|
475
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
476
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
491
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
492
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFileUpload, isStandalone: false, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", errorText: "errorText", invalid: "invalid", label: "label", maxFileSize: "maxFileSize", multiple: "multiple", uploading: "uploading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
477
493
|
};
|
|
478
494
|
SixFileUpload = __decorate([
|
|
479
495
|
ProxyCmp({
|
|
480
496
|
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading']
|
|
481
497
|
})
|
|
482
498
|
], SixFileUpload);
|
|
483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileUpload, decorators: [{
|
|
484
500
|
type: Component,
|
|
485
501
|
args: [{
|
|
502
|
+
standalone: false,
|
|
486
503
|
selector: 'six-file-upload',
|
|
487
504
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
488
505
|
template: '<ng-content></ng-content>',
|
|
489
506
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
490
507
|
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
|
|
491
508
|
}]
|
|
492
|
-
}], ctorParameters:
|
|
509
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
493
510
|
let SixFooter = class SixFooter {
|
|
494
511
|
constructor(c, r, z) {
|
|
495
512
|
this.z = z;
|
|
496
513
|
c.detach();
|
|
497
514
|
this.el = r.nativeElement;
|
|
498
515
|
}
|
|
499
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
500
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
516
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
517
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixFooter, isStandalone: false, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
501
518
|
};
|
|
502
519
|
SixFooter = __decorate([
|
|
503
520
|
ProxyCmp({})
|
|
504
521
|
], SixFooter);
|
|
505
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFooter, decorators: [{
|
|
506
523
|
type: Component,
|
|
507
524
|
args: [{
|
|
525
|
+
standalone: false,
|
|
508
526
|
selector: 'six-footer',
|
|
509
527
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
510
528
|
template: '<ng-content></ng-content>',
|
|
511
529
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
512
530
|
inputs: [],
|
|
513
531
|
}]
|
|
514
|
-
}], ctorParameters:
|
|
532
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
515
533
|
let SixGroupLabel = class SixGroupLabel {
|
|
516
534
|
constructor(c, r, z) {
|
|
517
535
|
this.z = z;
|
|
518
536
|
c.detach();
|
|
519
537
|
this.el = r.nativeElement;
|
|
520
538
|
}
|
|
521
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
522
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
539
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
540
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixGroupLabel, isStandalone: false, selector: "six-group-label", inputs: { disabled: "disabled", helpText: "helpText", label: "label", required: "required", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
523
541
|
};
|
|
524
542
|
SixGroupLabel = __decorate([
|
|
525
543
|
ProxyCmp({
|
|
526
544
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size']
|
|
527
545
|
})
|
|
528
546
|
], SixGroupLabel);
|
|
529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixGroupLabel, decorators: [{
|
|
530
548
|
type: Component,
|
|
531
549
|
args: [{
|
|
550
|
+
standalone: false,
|
|
532
551
|
selector: 'six-group-label',
|
|
533
552
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
534
553
|
template: '<ng-content></ng-content>',
|
|
535
554
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
536
555
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size'],
|
|
537
556
|
}]
|
|
538
|
-
}], ctorParameters:
|
|
557
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
539
558
|
let SixHeader = class SixHeader {
|
|
540
559
|
constructor(c, r, z) {
|
|
541
560
|
this.z = z;
|
|
542
561
|
c.detach();
|
|
543
562
|
this.el = r.nativeElement;
|
|
544
563
|
}
|
|
545
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
546
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
564
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
565
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeader, isStandalone: false, selector: "six-header", inputs: { openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
547
566
|
};
|
|
548
567
|
SixHeader = __decorate([
|
|
549
568
|
ProxyCmp({
|
|
550
569
|
inputs: ['openSearch', 'shiftContent']
|
|
551
570
|
})
|
|
552
571
|
], SixHeader);
|
|
553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeader, decorators: [{
|
|
554
573
|
type: Component,
|
|
555
574
|
args: [{
|
|
575
|
+
standalone: false,
|
|
556
576
|
selector: 'six-header',
|
|
557
577
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
558
578
|
template: '<ng-content></ng-content>',
|
|
559
579
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
560
580
|
inputs: ['openSearch', 'shiftContent'],
|
|
561
581
|
}]
|
|
562
|
-
}], ctorParameters:
|
|
582
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
563
583
|
let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
564
584
|
constructor(c, r, z) {
|
|
565
585
|
this.z = z;
|
|
566
586
|
c.detach();
|
|
567
587
|
this.el = r.nativeElement;
|
|
568
588
|
}
|
|
569
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
570
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
589
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
590
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeaderDropdownItem, isStandalone: false, selector: "six-header-dropdown-item", inputs: { filter: "filter", filterPlaceholder: "filterPlaceholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
571
591
|
};
|
|
572
592
|
SixHeaderDropdownItem = __decorate([
|
|
573
593
|
ProxyCmp({
|
|
574
594
|
inputs: ['filter', 'filterPlaceholder']
|
|
575
595
|
})
|
|
576
596
|
], SixHeaderDropdownItem);
|
|
577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
|
|
578
598
|
type: Component,
|
|
579
599
|
args: [{
|
|
600
|
+
standalone: false,
|
|
580
601
|
selector: 'six-header-dropdown-item',
|
|
581
602
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
582
603
|
template: '<ng-content></ng-content>',
|
|
583
604
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
584
605
|
inputs: ['filter', 'filterPlaceholder'],
|
|
585
606
|
}]
|
|
586
|
-
}], ctorParameters:
|
|
607
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
587
608
|
let SixHeaderItem = class SixHeaderItem {
|
|
588
609
|
constructor(c, r, z) {
|
|
589
610
|
this.z = z;
|
|
590
611
|
c.detach();
|
|
591
612
|
this.el = r.nativeElement;
|
|
592
613
|
}
|
|
593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
594
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
615
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeaderItem, isStandalone: false, selector: "six-header-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
595
616
|
};
|
|
596
617
|
SixHeaderItem = __decorate([
|
|
597
618
|
ProxyCmp({
|
|
598
619
|
inputs: ['active']
|
|
599
620
|
})
|
|
600
621
|
], SixHeaderItem);
|
|
601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderItem, decorators: [{
|
|
602
623
|
type: Component,
|
|
603
624
|
args: [{
|
|
625
|
+
standalone: false,
|
|
604
626
|
selector: 'six-header-item',
|
|
605
627
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
606
628
|
template: '<ng-content></ng-content>',
|
|
607
629
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
608
630
|
inputs: ['active'],
|
|
609
631
|
}]
|
|
610
|
-
}], ctorParameters:
|
|
632
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
611
633
|
let SixHeaderMenuButton = class SixHeaderMenuButton {
|
|
612
634
|
constructor(c, r, z) {
|
|
613
635
|
this.z = z;
|
|
614
636
|
c.detach();
|
|
615
637
|
this.el = r.nativeElement;
|
|
616
638
|
}
|
|
617
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
618
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
640
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixHeaderMenuButton, isStandalone: false, selector: "six-header-menu-button", inputs: { caret: "caret", disabled: "disabled", loading: "loading", reset: "reset", submit: "submit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
619
641
|
};
|
|
620
642
|
SixHeaderMenuButton = __decorate([
|
|
621
643
|
ProxyCmp({
|
|
622
644
|
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit']
|
|
623
645
|
})
|
|
624
646
|
], SixHeaderMenuButton);
|
|
625
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
|
|
626
648
|
type: Component,
|
|
627
649
|
args: [{
|
|
650
|
+
standalone: false,
|
|
628
651
|
selector: 'six-header-menu-button',
|
|
629
652
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
630
653
|
template: '<ng-content></ng-content>',
|
|
631
654
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
632
655
|
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
|
|
633
656
|
}]
|
|
634
|
-
}], ctorParameters:
|
|
657
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
635
658
|
let SixIcon = class SixIcon {
|
|
636
659
|
constructor(c, r, z) {
|
|
637
660
|
this.z = z;
|
|
638
661
|
c.detach();
|
|
639
662
|
this.el = r.nativeElement;
|
|
640
663
|
}
|
|
641
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
642
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
664
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
665
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixIcon, isStandalone: false, selector: "six-icon", inputs: { filled: "filled", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
643
666
|
};
|
|
644
667
|
SixIcon = __decorate([
|
|
645
668
|
ProxyCmp({
|
|
646
669
|
inputs: ['filled', 'size']
|
|
647
670
|
})
|
|
648
671
|
], SixIcon);
|
|
649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIcon, decorators: [{
|
|
650
673
|
type: Component,
|
|
651
674
|
args: [{
|
|
675
|
+
standalone: false,
|
|
652
676
|
selector: 'six-icon',
|
|
653
677
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
654
678
|
template: '<ng-content></ng-content>',
|
|
655
679
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
656
680
|
inputs: ['filled', 'size'],
|
|
657
681
|
}]
|
|
658
|
-
}], ctorParameters:
|
|
682
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
659
683
|
let SixIconButton = class SixIconButton {
|
|
660
684
|
constructor(c, r, z) {
|
|
661
685
|
this.z = z;
|
|
662
686
|
c.detach();
|
|
663
687
|
this.el = r.nativeElement;
|
|
664
688
|
}
|
|
665
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
666
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
690
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixIconButton, isStandalone: false, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
667
691
|
};
|
|
668
692
|
SixIconButton = __decorate([
|
|
669
693
|
ProxyCmp({
|
|
670
694
|
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
|
|
671
695
|
})
|
|
672
696
|
], SixIconButton);
|
|
673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIconButton, decorators: [{
|
|
674
698
|
type: Component,
|
|
675
699
|
args: [{
|
|
700
|
+
standalone: false,
|
|
676
701
|
selector: 'six-icon-button',
|
|
677
702
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
678
703
|
template: '<ng-content></ng-content>',
|
|
679
704
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
680
705
|
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
|
|
681
706
|
}]
|
|
682
|
-
}], ctorParameters:
|
|
707
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
683
708
|
let SixInput = class SixInput {
|
|
684
709
|
constructor(c, r, z) {
|
|
685
710
|
this.z = z;
|
|
@@ -687,8 +712,8 @@ let SixInput = class SixInput {
|
|
|
687
712
|
this.el = r.nativeElement;
|
|
688
713
|
proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
|
|
689
714
|
}
|
|
690
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
691
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
715
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
716
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixInput, isStandalone: false, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", dropdownSearch: "dropdownSearch", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", line: "line", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", pill: "pill", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", spellcheck: "spellcheck", step: "step", togglePassword: "togglePassword", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
692
717
|
};
|
|
693
718
|
SixInput = __decorate([
|
|
694
719
|
ProxyCmp({
|
|
@@ -696,16 +721,17 @@ SixInput = __decorate([
|
|
|
696
721
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'getSelectionRange', 'setRangeText']
|
|
697
722
|
})
|
|
698
723
|
], SixInput);
|
|
699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixInput, decorators: [{
|
|
700
725
|
type: Component,
|
|
701
726
|
args: [{
|
|
727
|
+
standalone: false,
|
|
702
728
|
selector: 'six-input',
|
|
703
729
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
704
730
|
template: '<ng-content></ng-content>',
|
|
705
731
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
706
732
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'dropdownSearch', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
707
733
|
}]
|
|
708
|
-
}], ctorParameters:
|
|
734
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
709
735
|
let SixItemPicker = class SixItemPicker {
|
|
710
736
|
constructor(c, r, z) {
|
|
711
737
|
this.z = z;
|
|
@@ -713,24 +739,25 @@ let SixItemPicker = class SixItemPicker {
|
|
|
713
739
|
this.el = r.nativeElement;
|
|
714
740
|
proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
|
|
715
741
|
}
|
|
716
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
717
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
742
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
743
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixItemPicker, isStandalone: false, selector: "six-item-picker", inputs: { debounce: "debounce", interval: "interval", items: "items", max: "max", min: "min", padded: "padded", paddingChar: "paddingChar", paddingDirection: "paddingDirection", paddingLength: "paddingLength", roundtrip: "roundtrip", step: "step", timeout: "timeout", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
718
744
|
};
|
|
719
745
|
SixItemPicker = __decorate([
|
|
720
746
|
ProxyCmp({
|
|
721
747
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
|
|
722
748
|
})
|
|
723
749
|
], SixItemPicker);
|
|
724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixItemPicker, decorators: [{
|
|
725
751
|
type: Component,
|
|
726
752
|
args: [{
|
|
753
|
+
standalone: false,
|
|
727
754
|
selector: 'six-item-picker',
|
|
728
755
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
729
756
|
template: '<ng-content></ng-content>',
|
|
730
757
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
731
758
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value'],
|
|
732
759
|
}]
|
|
733
|
-
}], ctorParameters:
|
|
760
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
734
761
|
let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
735
762
|
constructor(c, r, z) {
|
|
736
763
|
this.z = z;
|
|
@@ -738,96 +765,100 @@ let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
|
738
765
|
this.el = r.nativeElement;
|
|
739
766
|
proxyOutputs(this, this.el, ['six-language-switcher-change']);
|
|
740
767
|
}
|
|
741
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
742
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
768
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
769
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixLanguageSwitcher, isStandalone: false, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
743
770
|
};
|
|
744
771
|
SixLanguageSwitcher = __decorate([
|
|
745
772
|
ProxyCmp({
|
|
746
773
|
inputs: ['languages', 'selected']
|
|
747
774
|
})
|
|
748
775
|
], SixLanguageSwitcher);
|
|
749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
|
|
750
777
|
type: Component,
|
|
751
778
|
args: [{
|
|
779
|
+
standalone: false,
|
|
752
780
|
selector: 'six-language-switcher',
|
|
753
781
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
754
782
|
template: '<ng-content></ng-content>',
|
|
755
783
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
756
784
|
inputs: ['languages', 'selected'],
|
|
757
785
|
}]
|
|
758
|
-
}], ctorParameters:
|
|
786
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
759
787
|
let SixLayoutGrid = class SixLayoutGrid {
|
|
760
788
|
constructor(c, r, z) {
|
|
761
789
|
this.z = z;
|
|
762
790
|
c.detach();
|
|
763
791
|
this.el = r.nativeElement;
|
|
764
792
|
}
|
|
765
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
766
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
794
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixLayoutGrid, isStandalone: false, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
767
795
|
};
|
|
768
796
|
SixLayoutGrid = __decorate([
|
|
769
797
|
ProxyCmp({
|
|
770
798
|
inputs: ['columns']
|
|
771
799
|
})
|
|
772
800
|
], SixLayoutGrid);
|
|
773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLayoutGrid, decorators: [{
|
|
774
802
|
type: Component,
|
|
775
803
|
args: [{
|
|
804
|
+
standalone: false,
|
|
776
805
|
selector: 'six-layout-grid',
|
|
777
806
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
778
807
|
template: '<ng-content></ng-content>',
|
|
779
808
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
780
809
|
inputs: ['columns'],
|
|
781
810
|
}]
|
|
782
|
-
}], ctorParameters:
|
|
811
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
783
812
|
let SixLogo = class SixLogo {
|
|
784
813
|
constructor(c, r, z) {
|
|
785
814
|
this.z = z;
|
|
786
815
|
c.detach();
|
|
787
816
|
this.el = r.nativeElement;
|
|
788
817
|
}
|
|
789
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
790
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
818
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
819
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixLogo, isStandalone: false, selector: "six-logo", inputs: { brand: "brand" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
791
820
|
};
|
|
792
821
|
SixLogo = __decorate([
|
|
793
822
|
ProxyCmp({
|
|
794
823
|
inputs: ['brand']
|
|
795
824
|
})
|
|
796
825
|
], SixLogo);
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLogo, decorators: [{
|
|
798
827
|
type: Component,
|
|
799
828
|
args: [{
|
|
829
|
+
standalone: false,
|
|
800
830
|
selector: 'six-logo',
|
|
801
831
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
802
832
|
template: '<ng-content></ng-content>',
|
|
803
833
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
834
|
inputs: ['brand'],
|
|
805
835
|
}]
|
|
806
|
-
}], ctorParameters:
|
|
836
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
807
837
|
let SixMainContainer = class SixMainContainer {
|
|
808
838
|
constructor(c, r, z) {
|
|
809
839
|
this.z = z;
|
|
810
840
|
c.detach();
|
|
811
841
|
this.el = r.nativeElement;
|
|
812
842
|
}
|
|
813
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
814
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
844
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMainContainer, isStandalone: false, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
815
845
|
};
|
|
816
846
|
SixMainContainer = __decorate([
|
|
817
847
|
ProxyCmp({
|
|
818
848
|
inputs: ['padded']
|
|
819
849
|
})
|
|
820
850
|
], SixMainContainer);
|
|
821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMainContainer, decorators: [{
|
|
822
852
|
type: Component,
|
|
823
853
|
args: [{
|
|
854
|
+
standalone: false,
|
|
824
855
|
selector: 'six-main-container',
|
|
825
856
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
826
857
|
template: '<ng-content></ng-content>',
|
|
827
858
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
828
859
|
inputs: ['padded'],
|
|
829
860
|
}]
|
|
830
|
-
}], ctorParameters:
|
|
861
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
831
862
|
let SixMenu = class SixMenu {
|
|
832
863
|
constructor(c, r, z) {
|
|
833
864
|
this.z = z;
|
|
@@ -835,8 +866,8 @@ let SixMenu = class SixMenu {
|
|
|
835
866
|
this.el = r.nativeElement;
|
|
836
867
|
proxyOutputs(this, this.el, ['six-menu-item-selected']);
|
|
837
868
|
}
|
|
838
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
839
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
869
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
870
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenu, isStandalone: false, selector: "six-menu", inputs: { disableKeyboardHandling: "disableKeyboardHandling", itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
840
871
|
};
|
|
841
872
|
SixMenu = __decorate([
|
|
842
873
|
ProxyCmp({
|
|
@@ -844,46 +875,48 @@ SixMenu = __decorate([
|
|
|
844
875
|
methods: ['typeToSelect']
|
|
845
876
|
})
|
|
846
877
|
], SixMenu);
|
|
847
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
878
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenu, decorators: [{
|
|
848
879
|
type: Component,
|
|
849
880
|
args: [{
|
|
881
|
+
standalone: false,
|
|
850
882
|
selector: 'six-menu',
|
|
851
883
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
852
884
|
template: '<ng-content></ng-content>',
|
|
853
885
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
854
886
|
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
855
887
|
}]
|
|
856
|
-
}], ctorParameters:
|
|
888
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
857
889
|
let SixMenuDivider = class SixMenuDivider {
|
|
858
890
|
constructor(c, r, z) {
|
|
859
891
|
this.z = z;
|
|
860
892
|
c.detach();
|
|
861
893
|
this.el = r.nativeElement;
|
|
862
894
|
}
|
|
863
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
864
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
895
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenuDivider, isStandalone: false, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
865
897
|
};
|
|
866
898
|
SixMenuDivider = __decorate([
|
|
867
899
|
ProxyCmp({})
|
|
868
900
|
], SixMenuDivider);
|
|
869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuDivider, decorators: [{
|
|
870
902
|
type: Component,
|
|
871
903
|
args: [{
|
|
904
|
+
standalone: false,
|
|
872
905
|
selector: 'six-menu-divider',
|
|
873
906
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
874
907
|
template: '<ng-content></ng-content>',
|
|
875
908
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
876
909
|
inputs: [],
|
|
877
910
|
}]
|
|
878
|
-
}], ctorParameters:
|
|
911
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
879
912
|
let SixMenuItem = class SixMenuItem {
|
|
880
913
|
constructor(c, r, z) {
|
|
881
914
|
this.z = z;
|
|
882
915
|
c.detach();
|
|
883
916
|
this.el = r.nativeElement;
|
|
884
917
|
}
|
|
885
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
886
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
919
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenuItem, isStandalone: false, selector: "six-menu-item", inputs: { checkType: "checkType", checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
887
920
|
};
|
|
888
921
|
SixMenuItem = __decorate([
|
|
889
922
|
ProxyCmp({
|
|
@@ -891,110 +924,115 @@ SixMenuItem = __decorate([
|
|
|
891
924
|
methods: ['setFocus', 'removeFocus', 'getTextLabel']
|
|
892
925
|
})
|
|
893
926
|
], SixMenuItem);
|
|
894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuItem, decorators: [{
|
|
895
928
|
type: Component,
|
|
896
929
|
args: [{
|
|
930
|
+
standalone: false,
|
|
897
931
|
selector: 'six-menu-item',
|
|
898
932
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
899
933
|
template: '<ng-content></ng-content>',
|
|
900
934
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
901
935
|
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
902
936
|
}]
|
|
903
|
-
}], ctorParameters:
|
|
937
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
904
938
|
let SixMenuLabel = class SixMenuLabel {
|
|
905
939
|
constructor(c, r, z) {
|
|
906
940
|
this.z = z;
|
|
907
941
|
c.detach();
|
|
908
942
|
this.el = r.nativeElement;
|
|
909
943
|
}
|
|
910
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
911
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
944
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
945
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixMenuLabel, isStandalone: false, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
912
946
|
};
|
|
913
947
|
SixMenuLabel = __decorate([
|
|
914
948
|
ProxyCmp({})
|
|
915
949
|
], SixMenuLabel);
|
|
916
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuLabel, decorators: [{
|
|
917
951
|
type: Component,
|
|
918
952
|
args: [{
|
|
953
|
+
standalone: false,
|
|
919
954
|
selector: 'six-menu-label',
|
|
920
955
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
921
956
|
template: '<ng-content></ng-content>',
|
|
922
957
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
923
958
|
inputs: [],
|
|
924
959
|
}]
|
|
925
|
-
}], ctorParameters:
|
|
960
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
926
961
|
let SixPicto = class SixPicto {
|
|
927
962
|
constructor(c, r, z) {
|
|
928
963
|
this.z = z;
|
|
929
964
|
c.detach();
|
|
930
965
|
this.el = r.nativeElement;
|
|
931
966
|
}
|
|
932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
933
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
967
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
968
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixPicto, isStandalone: false, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
934
969
|
};
|
|
935
970
|
SixPicto = __decorate([
|
|
936
971
|
ProxyCmp({
|
|
937
972
|
inputs: ['size']
|
|
938
973
|
})
|
|
939
974
|
], SixPicto);
|
|
940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixPicto, decorators: [{
|
|
941
976
|
type: Component,
|
|
942
977
|
args: [{
|
|
978
|
+
standalone: false,
|
|
943
979
|
selector: 'six-picto',
|
|
944
980
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
945
981
|
template: '<ng-content></ng-content>',
|
|
946
982
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
947
983
|
inputs: ['size'],
|
|
948
984
|
}]
|
|
949
|
-
}], ctorParameters:
|
|
985
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
950
986
|
let SixProgressBar = class SixProgressBar {
|
|
951
987
|
constructor(c, r, z) {
|
|
952
988
|
this.z = z;
|
|
953
989
|
c.detach();
|
|
954
990
|
this.el = r.nativeElement;
|
|
955
991
|
}
|
|
956
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
957
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
992
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
993
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixProgressBar, isStandalone: false, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
958
994
|
};
|
|
959
995
|
SixProgressBar = __decorate([
|
|
960
996
|
ProxyCmp({
|
|
961
997
|
inputs: ['indeterminate', 'percentage']
|
|
962
998
|
})
|
|
963
999
|
], SixProgressBar);
|
|
964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressBar, decorators: [{
|
|
965
1001
|
type: Component,
|
|
966
1002
|
args: [{
|
|
1003
|
+
standalone: false,
|
|
967
1004
|
selector: 'six-progress-bar',
|
|
968
1005
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
969
1006
|
template: '<ng-content></ng-content>',
|
|
970
1007
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
971
1008
|
inputs: ['indeterminate', 'percentage'],
|
|
972
1009
|
}]
|
|
973
|
-
}], ctorParameters:
|
|
1010
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
974
1011
|
let SixProgressRing = class SixProgressRing {
|
|
975
1012
|
constructor(c, r, z) {
|
|
976
1013
|
this.z = z;
|
|
977
1014
|
c.detach();
|
|
978
1015
|
this.el = r.nativeElement;
|
|
979
1016
|
}
|
|
980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
981
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1018
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixProgressRing, isStandalone: false, selector: "six-progress-ring", inputs: { percentage: "percentage", size: "size", strokeWidth: "strokeWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
982
1019
|
};
|
|
983
1020
|
SixProgressRing = __decorate([
|
|
984
1021
|
ProxyCmp({
|
|
985
1022
|
inputs: ['percentage', 'size', 'strokeWidth']
|
|
986
1023
|
})
|
|
987
1024
|
], SixProgressRing);
|
|
988
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressRing, decorators: [{
|
|
989
1026
|
type: Component,
|
|
990
1027
|
args: [{
|
|
1028
|
+
standalone: false,
|
|
991
1029
|
selector: 'six-progress-ring',
|
|
992
1030
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
993
1031
|
template: '<ng-content></ng-content>',
|
|
994
1032
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
995
1033
|
inputs: ['percentage', 'size', 'strokeWidth'],
|
|
996
1034
|
}]
|
|
997
|
-
}], ctorParameters:
|
|
1035
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
998
1036
|
let SixRadio = class SixRadio {
|
|
999
1037
|
constructor(c, r, z) {
|
|
1000
1038
|
this.z = z;
|
|
@@ -1002,8 +1040,8 @@ let SixRadio = class SixRadio {
|
|
|
1002
1040
|
this.el = r.nativeElement;
|
|
1003
1041
|
proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
|
|
1004
1042
|
}
|
|
1005
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1006
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1043
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1044
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRadio, isStandalone: false, selector: "six-radio", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1007
1045
|
};
|
|
1008
1046
|
SixRadio = __decorate([
|
|
1009
1047
|
ProxyCmp({
|
|
@@ -1011,16 +1049,17 @@ SixRadio = __decorate([
|
|
|
1011
1049
|
methods: ['setFocus', 'removeFocus']
|
|
1012
1050
|
})
|
|
1013
1051
|
], SixRadio);
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRadio, decorators: [{
|
|
1015
1053
|
type: Component,
|
|
1016
1054
|
args: [{
|
|
1055
|
+
standalone: false,
|
|
1017
1056
|
selector: 'six-radio',
|
|
1018
1057
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1019
1058
|
template: '<ng-content></ng-content>',
|
|
1020
1059
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1021
1060
|
inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
|
|
1022
1061
|
}]
|
|
1023
|
-
}], ctorParameters:
|
|
1062
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1024
1063
|
let SixRange = class SixRange {
|
|
1025
1064
|
constructor(c, r, z) {
|
|
1026
1065
|
this.z = z;
|
|
@@ -1028,8 +1067,8 @@ let SixRange = class SixRange {
|
|
|
1028
1067
|
this.el = r.nativeElement;
|
|
1029
1068
|
proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
|
|
1030
1069
|
}
|
|
1031
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1032
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1071
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRange, isStandalone: false, selector: "six-range", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", min: "min", name: "name", required: "required", step: "step", tooltip: "tooltip", tooltipFormatter: "tooltipFormatter", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1033
1072
|
};
|
|
1034
1073
|
SixRange = __decorate([
|
|
1035
1074
|
ProxyCmp({
|
|
@@ -1037,40 +1076,42 @@ SixRange = __decorate([
|
|
|
1037
1076
|
methods: ['setFocus', 'removeFocus']
|
|
1038
1077
|
})
|
|
1039
1078
|
], SixRange);
|
|
1040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRange, decorators: [{
|
|
1041
1080
|
type: Component,
|
|
1042
1081
|
args: [{
|
|
1082
|
+
standalone: false,
|
|
1043
1083
|
selector: 'six-range',
|
|
1044
1084
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1045
1085
|
template: '<ng-content></ng-content>',
|
|
1046
1086
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1047
1087
|
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
1048
1088
|
}]
|
|
1049
|
-
}], ctorParameters:
|
|
1089
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1050
1090
|
let SixRoot = class SixRoot {
|
|
1051
1091
|
constructor(c, r, z) {
|
|
1052
1092
|
this.z = z;
|
|
1053
1093
|
c.detach();
|
|
1054
1094
|
this.el = r.nativeElement;
|
|
1055
1095
|
}
|
|
1056
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1057
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1096
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1097
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRoot, isStandalone: false, selector: "six-root", inputs: { padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1058
1098
|
};
|
|
1059
1099
|
SixRoot = __decorate([
|
|
1060
1100
|
ProxyCmp({
|
|
1061
1101
|
inputs: ['padded', 'stage', 'version']
|
|
1062
1102
|
})
|
|
1063
1103
|
], SixRoot);
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRoot, decorators: [{
|
|
1065
1105
|
type: Component,
|
|
1066
1106
|
args: [{
|
|
1107
|
+
standalone: false,
|
|
1067
1108
|
selector: 'six-root',
|
|
1068
1109
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1069
1110
|
template: '<ng-content></ng-content>',
|
|
1070
1111
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1071
1112
|
inputs: ['padded', 'stage', 'version'],
|
|
1072
1113
|
}]
|
|
1073
|
-
}], ctorParameters:
|
|
1114
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1074
1115
|
let SixSearchField = class SixSearchField {
|
|
1075
1116
|
constructor(c, r, z) {
|
|
1076
1117
|
this.z = z;
|
|
@@ -1078,24 +1119,25 @@ let SixSearchField = class SixSearchField {
|
|
|
1078
1119
|
this.el = r.nativeElement;
|
|
1079
1120
|
proxyOutputs(this, this.el, ['six-search-field-change']);
|
|
1080
1121
|
}
|
|
1081
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1082
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1123
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSearchField, isStandalone: false, selector: "six-search-field", inputs: { clearable: "clearable", debounce: "debounce", disabled: "disabled", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1083
1124
|
};
|
|
1084
1125
|
SixSearchField = __decorate([
|
|
1085
1126
|
ProxyCmp({
|
|
1086
1127
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
|
|
1087
1128
|
})
|
|
1088
1129
|
], SixSearchField);
|
|
1089
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSearchField, decorators: [{
|
|
1090
1131
|
type: Component,
|
|
1091
1132
|
args: [{
|
|
1133
|
+
standalone: false,
|
|
1092
1134
|
selector: 'six-search-field',
|
|
1093
1135
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1094
1136
|
template: '<ng-content></ng-content>',
|
|
1095
1137
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1096
1138
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
|
|
1097
1139
|
}]
|
|
1098
|
-
}], ctorParameters:
|
|
1140
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1099
1141
|
let SixSelect = class SixSelect {
|
|
1100
1142
|
constructor(c, r, z) {
|
|
1101
1143
|
this.z = z;
|
|
@@ -1103,8 +1145,8 @@ let SixSelect = class SixSelect {
|
|
|
1103
1145
|
this.el = r.nativeElement;
|
|
1104
1146
|
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
1105
1147
|
}
|
|
1106
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1107
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1148
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1149
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSelect, isStandalone: false, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line", multiple: "multiple", name: "name", options: "options", pill: "pill", placeholder: "placeholder", required: "required", selectAllButton: "selectAllButton", selectAllText: "selectAllText", size: "size", value: "value", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1108
1150
|
};
|
|
1109
1151
|
SixSelect = __decorate([
|
|
1110
1152
|
ProxyCmp({
|
|
@@ -1112,16 +1154,17 @@ SixSelect = __decorate([
|
|
|
1112
1154
|
methods: ['setFocus']
|
|
1113
1155
|
})
|
|
1114
1156
|
], SixSelect);
|
|
1115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSelect, decorators: [{
|
|
1116
1158
|
type: Component,
|
|
1117
1159
|
args: [{
|
|
1160
|
+
standalone: false,
|
|
1118
1161
|
selector: 'six-select',
|
|
1119
1162
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1120
1163
|
template: '<ng-content></ng-content>',
|
|
1121
1164
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1122
1165
|
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
|
|
1123
1166
|
}]
|
|
1124
|
-
}], ctorParameters:
|
|
1167
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1125
1168
|
let SixSidebar = class SixSidebar {
|
|
1126
1169
|
constructor(c, r, z) {
|
|
1127
1170
|
this.z = z;
|
|
@@ -1129,8 +1172,8 @@ let SixSidebar = class SixSidebar {
|
|
|
1129
1172
|
this.el = r.nativeElement;
|
|
1130
1173
|
proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
|
|
1131
1174
|
}
|
|
1132
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1133
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1175
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1176
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSidebar, isStandalone: false, selector: "six-sidebar", inputs: { open: "open", position: "position", toggled: "toggled", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1134
1177
|
};
|
|
1135
1178
|
SixSidebar = __decorate([
|
|
1136
1179
|
ProxyCmp({
|
|
@@ -1138,112 +1181,117 @@ SixSidebar = __decorate([
|
|
|
1138
1181
|
methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
|
|
1139
1182
|
})
|
|
1140
1183
|
], SixSidebar);
|
|
1141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebar, decorators: [{
|
|
1142
1185
|
type: Component,
|
|
1143
1186
|
args: [{
|
|
1187
|
+
standalone: false,
|
|
1144
1188
|
selector: 'six-sidebar',
|
|
1145
1189
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1146
1190
|
template: '<ng-content></ng-content>',
|
|
1147
1191
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1148
1192
|
inputs: ['open', 'position', 'toggled', 'width'],
|
|
1149
1193
|
}]
|
|
1150
|
-
}], ctorParameters:
|
|
1194
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1151
1195
|
let SixSidebarItem = class SixSidebarItem {
|
|
1152
1196
|
constructor(c, r, z) {
|
|
1153
1197
|
this.z = z;
|
|
1154
1198
|
c.detach();
|
|
1155
1199
|
this.el = r.nativeElement;
|
|
1156
1200
|
}
|
|
1157
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1158
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1202
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSidebarItem, isStandalone: false, selector: "six-sidebar-item", inputs: { disabled: "disabled", href: "href", icon: "icon", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1159
1203
|
};
|
|
1160
1204
|
SixSidebarItem = __decorate([
|
|
1161
1205
|
ProxyCmp({
|
|
1162
1206
|
inputs: ['disabled', 'href', 'icon', 'selected', 'value']
|
|
1163
1207
|
})
|
|
1164
1208
|
], SixSidebarItem);
|
|
1165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
1166
1210
|
type: Component,
|
|
1167
1211
|
args: [{
|
|
1212
|
+
standalone: false,
|
|
1168
1213
|
selector: 'six-sidebar-item',
|
|
1169
1214
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1170
1215
|
template: '<ng-content></ng-content>',
|
|
1171
1216
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1172
1217
|
inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
|
|
1173
1218
|
}]
|
|
1174
|
-
}], ctorParameters:
|
|
1219
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1175
1220
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
1176
1221
|
constructor(c, r, z) {
|
|
1177
1222
|
this.z = z;
|
|
1178
1223
|
c.detach();
|
|
1179
1224
|
this.el = r.nativeElement;
|
|
1180
1225
|
}
|
|
1181
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1182
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1226
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1227
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSidebarItemGroup, isStandalone: false, selector: "six-sidebar-item-group", inputs: { href: "href", icon: "icon", name: "name", open: "open", summaryIcon: "summaryIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1183
1228
|
};
|
|
1184
1229
|
SixSidebarItemGroup = __decorate([
|
|
1185
1230
|
ProxyCmp({
|
|
1186
1231
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1187
1232
|
})
|
|
1188
1233
|
], SixSidebarItemGroup);
|
|
1189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
|
|
1190
1235
|
type: Component,
|
|
1191
1236
|
args: [{
|
|
1237
|
+
standalone: false,
|
|
1192
1238
|
selector: 'six-sidebar-item-group',
|
|
1193
1239
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1194
1240
|
template: '<ng-content></ng-content>',
|
|
1195
1241
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1196
1242
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1197
1243
|
}]
|
|
1198
|
-
}], ctorParameters:
|
|
1244
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1199
1245
|
let SixSpinner = class SixSpinner {
|
|
1200
1246
|
constructor(c, r, z) {
|
|
1201
1247
|
this.z = z;
|
|
1202
1248
|
c.detach();
|
|
1203
1249
|
this.el = r.nativeElement;
|
|
1204
1250
|
}
|
|
1205
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1206
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1252
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSpinner, isStandalone: false, selector: "six-spinner", inputs: { logo: "logo", six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1207
1253
|
};
|
|
1208
1254
|
SixSpinner = __decorate([
|
|
1209
1255
|
ProxyCmp({
|
|
1210
1256
|
inputs: ['logo', 'six']
|
|
1211
1257
|
})
|
|
1212
1258
|
], SixSpinner);
|
|
1213
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSpinner, decorators: [{
|
|
1214
1260
|
type: Component,
|
|
1215
1261
|
args: [{
|
|
1262
|
+
standalone: false,
|
|
1216
1263
|
selector: 'six-spinner',
|
|
1217
1264
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1218
1265
|
template: '<ng-content></ng-content>',
|
|
1219
1266
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1220
1267
|
inputs: ['logo', 'six'],
|
|
1221
1268
|
}]
|
|
1222
|
-
}], ctorParameters:
|
|
1269
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1223
1270
|
let SixStageIndicator = class SixStageIndicator {
|
|
1224
1271
|
constructor(c, r, z) {
|
|
1225
1272
|
this.z = z;
|
|
1226
1273
|
c.detach();
|
|
1227
1274
|
this.el = r.nativeElement;
|
|
1228
1275
|
}
|
|
1229
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1230
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1276
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1277
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixStageIndicator, isStandalone: false, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1231
1278
|
};
|
|
1232
1279
|
SixStageIndicator = __decorate([
|
|
1233
1280
|
ProxyCmp({
|
|
1234
1281
|
inputs: ['stage']
|
|
1235
1282
|
})
|
|
1236
1283
|
], SixStageIndicator);
|
|
1237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixStageIndicator, decorators: [{
|
|
1238
1285
|
type: Component,
|
|
1239
1286
|
args: [{
|
|
1287
|
+
standalone: false,
|
|
1240
1288
|
selector: 'six-stage-indicator',
|
|
1241
1289
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1242
1290
|
template: '<ng-content></ng-content>',
|
|
1243
1291
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1244
1292
|
inputs: ['stage'],
|
|
1245
1293
|
}]
|
|
1246
|
-
}], ctorParameters:
|
|
1294
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1247
1295
|
let SixSwitch = class SixSwitch {
|
|
1248
1296
|
constructor(c, r, z) {
|
|
1249
1297
|
this.z = z;
|
|
@@ -1251,8 +1299,8 @@ let SixSwitch = class SixSwitch {
|
|
|
1251
1299
|
this.el = r.nativeElement;
|
|
1252
1300
|
proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
|
|
1253
1301
|
}
|
|
1254
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1255
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1303
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixSwitch, isStandalone: false, selector: "six-switch", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1256
1304
|
};
|
|
1257
1305
|
SixSwitch = __decorate([
|
|
1258
1306
|
ProxyCmp({
|
|
@@ -1260,16 +1308,17 @@ SixSwitch = __decorate([
|
|
|
1260
1308
|
methods: ['setFocus', 'removeFocus']
|
|
1261
1309
|
})
|
|
1262
1310
|
], SixSwitch);
|
|
1263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSwitch, decorators: [{
|
|
1264
1312
|
type: Component,
|
|
1265
1313
|
args: [{
|
|
1314
|
+
standalone: false,
|
|
1266
1315
|
selector: 'six-switch',
|
|
1267
1316
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1268
1317
|
template: '<ng-content></ng-content>',
|
|
1269
1318
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1270
1319
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1271
1320
|
}]
|
|
1272
|
-
}], ctorParameters:
|
|
1321
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1273
1322
|
let SixTab = class SixTab {
|
|
1274
1323
|
constructor(c, r, z) {
|
|
1275
1324
|
this.z = z;
|
|
@@ -1277,8 +1326,8 @@ let SixTab = class SixTab {
|
|
|
1277
1326
|
this.el = r.nativeElement;
|
|
1278
1327
|
proxyOutputs(this, this.el, ['six-tab-close']);
|
|
1279
1328
|
}
|
|
1280
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1281
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1329
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1330
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTab, isStandalone: false, selector: "six-tab", inputs: { active: "active", closable: "closable", disabled: "disabled", panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1282
1331
|
};
|
|
1283
1332
|
SixTab = __decorate([
|
|
1284
1333
|
ProxyCmp({
|
|
@@ -1286,16 +1335,17 @@ SixTab = __decorate([
|
|
|
1286
1335
|
methods: ['setFocus', 'removeFocus']
|
|
1287
1336
|
})
|
|
1288
1337
|
], SixTab);
|
|
1289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTab, decorators: [{
|
|
1290
1339
|
type: Component,
|
|
1291
1340
|
args: [{
|
|
1341
|
+
standalone: false,
|
|
1292
1342
|
selector: 'six-tab',
|
|
1293
1343
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1294
1344
|
template: '<ng-content></ng-content>',
|
|
1295
1345
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1296
1346
|
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1297
1347
|
}]
|
|
1298
|
-
}], ctorParameters:
|
|
1348
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1299
1349
|
let SixTabGroup = class SixTabGroup {
|
|
1300
1350
|
constructor(c, r, z) {
|
|
1301
1351
|
this.z = z;
|
|
@@ -1303,8 +1353,8 @@ let SixTabGroup = class SixTabGroup {
|
|
|
1303
1353
|
this.el = r.nativeElement;
|
|
1304
1354
|
proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
|
|
1305
1355
|
}
|
|
1306
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1307
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1356
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1357
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTabGroup, isStandalone: false, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1308
1358
|
};
|
|
1309
1359
|
SixTabGroup = __decorate([
|
|
1310
1360
|
ProxyCmp({
|
|
@@ -1312,40 +1362,42 @@ SixTabGroup = __decorate([
|
|
|
1312
1362
|
methods: ['show']
|
|
1313
1363
|
})
|
|
1314
1364
|
], SixTabGroup);
|
|
1315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabGroup, decorators: [{
|
|
1316
1366
|
type: Component,
|
|
1317
1367
|
args: [{
|
|
1368
|
+
standalone: false,
|
|
1318
1369
|
selector: 'six-tab-group',
|
|
1319
1370
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1320
1371
|
template: '<ng-content></ng-content>',
|
|
1321
1372
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1322
1373
|
inputs: ['noScrollControls', 'placement'],
|
|
1323
1374
|
}]
|
|
1324
|
-
}], ctorParameters:
|
|
1375
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1325
1376
|
let SixTabPanel = class SixTabPanel {
|
|
1326
1377
|
constructor(c, r, z) {
|
|
1327
1378
|
this.z = z;
|
|
1328
1379
|
c.detach();
|
|
1329
1380
|
this.el = r.nativeElement;
|
|
1330
1381
|
}
|
|
1331
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1332
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1382
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1383
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTabPanel, isStandalone: false, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1333
1384
|
};
|
|
1334
1385
|
SixTabPanel = __decorate([
|
|
1335
1386
|
ProxyCmp({
|
|
1336
1387
|
inputs: ['active', 'name']
|
|
1337
1388
|
})
|
|
1338
1389
|
], SixTabPanel);
|
|
1339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabPanel, decorators: [{
|
|
1340
1391
|
type: Component,
|
|
1341
1392
|
args: [{
|
|
1393
|
+
standalone: false,
|
|
1342
1394
|
selector: 'six-tab-panel',
|
|
1343
1395
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1344
1396
|
template: '<ng-content></ng-content>',
|
|
1345
1397
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1346
1398
|
inputs: ['active', 'name'],
|
|
1347
1399
|
}]
|
|
1348
|
-
}], ctorParameters:
|
|
1400
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1349
1401
|
let SixTag = class SixTag {
|
|
1350
1402
|
constructor(c, r, z) {
|
|
1351
1403
|
this.z = z;
|
|
@@ -1353,24 +1405,25 @@ let SixTag = class SixTag {
|
|
|
1353
1405
|
this.el = r.nativeElement;
|
|
1354
1406
|
proxyOutputs(this, this.el, ['six-tag-clear']);
|
|
1355
1407
|
}
|
|
1356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1357
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1408
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1409
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTag, isStandalone: false, selector: "six-tag", inputs: { clearable: "clearable", pill: "pill", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1358
1410
|
};
|
|
1359
1411
|
SixTag = __decorate([
|
|
1360
1412
|
ProxyCmp({
|
|
1361
1413
|
inputs: ['clearable', 'pill', 'size', 'type']
|
|
1362
1414
|
})
|
|
1363
1415
|
], SixTag);
|
|
1364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTag, decorators: [{
|
|
1365
1417
|
type: Component,
|
|
1366
1418
|
args: [{
|
|
1419
|
+
standalone: false,
|
|
1367
1420
|
selector: 'six-tag',
|
|
1368
1421
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1369
1422
|
template: '<ng-content></ng-content>',
|
|
1370
1423
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1371
1424
|
inputs: ['clearable', 'pill', 'size', 'type'],
|
|
1372
1425
|
}]
|
|
1373
|
-
}], ctorParameters:
|
|
1426
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1374
1427
|
let SixTextarea = class SixTextarea {
|
|
1375
1428
|
constructor(c, r, z) {
|
|
1376
1429
|
this.z = z;
|
|
@@ -1378,8 +1431,8 @@ let SixTextarea = class SixTextarea {
|
|
|
1378
1431
|
this.el = r.nativeElement;
|
|
1379
1432
|
proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
|
|
1380
1433
|
}
|
|
1381
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1382
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1434
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1435
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTextarea, isStandalone: false, selector: "six-textarea", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", maxlength: "maxlength", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", size: "size", spellcheck: "spellcheck", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1383
1436
|
};
|
|
1384
1437
|
SixTextarea = __decorate([
|
|
1385
1438
|
ProxyCmp({
|
|
@@ -1387,16 +1440,17 @@ SixTextarea = __decorate([
|
|
|
1387
1440
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
1388
1441
|
})
|
|
1389
1442
|
], SixTextarea);
|
|
1390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTextarea, decorators: [{
|
|
1391
1444
|
type: Component,
|
|
1392
1445
|
args: [{
|
|
1446
|
+
standalone: false,
|
|
1393
1447
|
selector: 'six-textarea',
|
|
1394
1448
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1395
1449
|
template: '<ng-content></ng-content>',
|
|
1396
1450
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1397
1451
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1398
1452
|
}]
|
|
1399
|
-
}], ctorParameters:
|
|
1453
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1400
1454
|
let SixTile = class SixTile {
|
|
1401
1455
|
constructor(c, r, z) {
|
|
1402
1456
|
this.z = z;
|
|
@@ -1404,8 +1458,8 @@ let SixTile = class SixTile {
|
|
|
1404
1458
|
this.el = r.nativeElement;
|
|
1405
1459
|
proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
|
|
1406
1460
|
}
|
|
1407
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1408
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1461
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1462
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTile, isStandalone: false, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1409
1463
|
};
|
|
1410
1464
|
SixTile = __decorate([
|
|
1411
1465
|
ProxyCmp({
|
|
@@ -1413,16 +1467,17 @@ SixTile = __decorate([
|
|
|
1413
1467
|
methods: ['hide', 'show']
|
|
1414
1468
|
})
|
|
1415
1469
|
], SixTile);
|
|
1416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1470
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTile, decorators: [{
|
|
1417
1471
|
type: Component,
|
|
1418
1472
|
args: [{
|
|
1473
|
+
standalone: false,
|
|
1419
1474
|
selector: 'six-tile',
|
|
1420
1475
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1421
1476
|
template: '<ng-content></ng-content>',
|
|
1422
1477
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1423
1478
|
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1424
1479
|
}]
|
|
1425
|
-
}], ctorParameters:
|
|
1480
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1426
1481
|
let SixTimepicker = class SixTimepicker {
|
|
1427
1482
|
constructor(c, r, z) {
|
|
1428
1483
|
this.z = z;
|
|
@@ -1430,8 +1485,8 @@ let SixTimepicker = class SixTimepicker {
|
|
|
1430
1485
|
this.el = r.nativeElement;
|
|
1431
1486
|
proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
|
|
1432
1487
|
}
|
|
1433
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1434
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1489
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTimepicker, isStandalone: false, selector: "six-timepicker", inputs: { clearable: "clearable", debounce: "debounce", defaultTime: "defaultTime", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", format: "format", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", interval: "interval", invalid: "invalid", label: "label", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", separator: "separator", size: "size", timeout: "timeout", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1435
1490
|
};
|
|
1436
1491
|
SixTimepicker = __decorate([
|
|
1437
1492
|
ProxyCmp({
|
|
@@ -1439,16 +1494,17 @@ SixTimepicker = __decorate([
|
|
|
1439
1494
|
methods: ['setFocus']
|
|
1440
1495
|
})
|
|
1441
1496
|
], SixTimepicker);
|
|
1442
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTimepicker, decorators: [{
|
|
1443
1498
|
type: Component,
|
|
1444
1499
|
args: [{
|
|
1500
|
+
standalone: false,
|
|
1445
1501
|
selector: 'six-timepicker',
|
|
1446
1502
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1447
1503
|
template: '<ng-content></ng-content>',
|
|
1448
1504
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1449
1505
|
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1450
1506
|
}]
|
|
1451
|
-
}], ctorParameters:
|
|
1507
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1452
1508
|
let SixTooltip = class SixTooltip {
|
|
1453
1509
|
constructor(c, r, z) {
|
|
1454
1510
|
this.z = z;
|
|
@@ -1456,8 +1512,8 @@ let SixTooltip = class SixTooltip {
|
|
|
1456
1512
|
this.el = r.nativeElement;
|
|
1457
1513
|
proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
|
|
1458
1514
|
}
|
|
1459
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1460
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1515
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1516
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixTooltip, isStandalone: false, selector: "six-tooltip", inputs: { content: "content", disabled: "disabled", distance: "distance", open: "open", placement: "placement", skidding: "skidding", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1461
1517
|
};
|
|
1462
1518
|
SixTooltip = __decorate([
|
|
1463
1519
|
ProxyCmp({
|
|
@@ -1465,16 +1521,17 @@ SixTooltip = __decorate([
|
|
|
1465
1521
|
methods: ['show', 'hide']
|
|
1466
1522
|
})
|
|
1467
1523
|
], SixTooltip);
|
|
1468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTooltip, decorators: [{
|
|
1469
1525
|
type: Component,
|
|
1470
1526
|
args: [{
|
|
1527
|
+
standalone: false,
|
|
1471
1528
|
selector: 'six-tooltip',
|
|
1472
1529
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1473
1530
|
template: '<ng-content></ng-content>',
|
|
1474
1531
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1475
1532
|
inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
|
|
1476
1533
|
}]
|
|
1477
|
-
}], ctorParameters:
|
|
1534
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1478
1535
|
|
|
1479
1536
|
const DIRECTIVES = [
|
|
1480
1537
|
SixAlert,
|
|
@@ -1540,19 +1597,25 @@ class ValidationMessagesService {
|
|
|
1540
1597
|
getErrorMessage(language, error) {
|
|
1541
1598
|
return getErrorMessage(language, error);
|
|
1542
1599
|
}
|
|
1543
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1544
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1600
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1601
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' }); }
|
|
1545
1602
|
}
|
|
1546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1547
1604
|
type: Injectable,
|
|
1548
1605
|
args: [{ providedIn: 'root' }]
|
|
1549
1606
|
}] });
|
|
1550
1607
|
|
|
1608
|
+
const DEFAULT_UI_LIBRARY_CONFIG = {
|
|
1609
|
+
showAsteriskOnRequiredValidator: false,
|
|
1610
|
+
};
|
|
1611
|
+
const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
|
|
1612
|
+
|
|
1551
1613
|
class ValueAccessor {
|
|
1552
1614
|
constructor(injector, el) {
|
|
1553
1615
|
this.injector = injector;
|
|
1554
1616
|
this.el = el;
|
|
1555
1617
|
this.validationMessagesService = inject(ValidationMessagesService);
|
|
1618
|
+
this.config = inject(UI_LIBRARY_CONFIG);
|
|
1556
1619
|
this.onChange = () => { };
|
|
1557
1620
|
this.onTouched = () => { };
|
|
1558
1621
|
}
|
|
@@ -1604,6 +1667,10 @@ class ValueAccessor {
|
|
|
1604
1667
|
}
|
|
1605
1668
|
element.invalid = invalid;
|
|
1606
1669
|
element.errorText = errorTexts ?? '';
|
|
1670
|
+
// When the module is configured to do so, display an asterisk next to any form control that has a required validator
|
|
1671
|
+
if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
|
|
1672
|
+
element.required = true;
|
|
1673
|
+
}
|
|
1607
1674
|
});
|
|
1608
1675
|
}
|
|
1609
1676
|
setDisabledState(isDisabled) {
|
|
@@ -1662,12 +1729,12 @@ class ValueAccessor {
|
|
|
1662
1729
|
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1663
1730
|
});
|
|
1664
1731
|
}
|
|
1665
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1666
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1732
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1733
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ValueAccessor, isStandalone: true, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 }); }
|
|
1667
1734
|
}
|
|
1668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1669
1736
|
type: Directive
|
|
1670
|
-
}], ctorParameters:
|
|
1737
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
1671
1738
|
type: HostListener,
|
|
1672
1739
|
args: ['blur', ['$event.target']]
|
|
1673
1740
|
}] } });
|
|
@@ -1688,8 +1755,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1688
1755
|
handleInputEvent(el) {
|
|
1689
1756
|
this.handleValueChange(el, el.value);
|
|
1690
1757
|
}
|
|
1691
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1692
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1758
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1759
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: TextValueAccessor, isStandalone: false, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1693
1760
|
{
|
|
1694
1761
|
provide: NG_VALUE_ACCESSOR,
|
|
1695
1762
|
useExisting: TextValueAccessor,
|
|
@@ -1697,7 +1764,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1697
1764
|
},
|
|
1698
1765
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1699
1766
|
}
|
|
1700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1701
1768
|
type: Directive,
|
|
1702
1769
|
args: [{
|
|
1703
1770
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1708,8 +1775,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1708
1775
|
multi: true,
|
|
1709
1776
|
},
|
|
1710
1777
|
],
|
|
1778
|
+
standalone: false,
|
|
1711
1779
|
}]
|
|
1712
|
-
}], ctorParameters:
|
|
1780
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1713
1781
|
type: HostListener,
|
|
1714
1782
|
args: ['input', ['$event.target']]
|
|
1715
1783
|
}] } });
|
|
@@ -1726,8 +1794,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1726
1794
|
fn(value === '' ? null : parseFloat(value));
|
|
1727
1795
|
});
|
|
1728
1796
|
}
|
|
1729
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1730
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1797
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1798
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: NumericValueAccessor, isStandalone: false, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1731
1799
|
{
|
|
1732
1800
|
provide: NG_VALUE_ACCESSOR,
|
|
1733
1801
|
useExisting: NumericValueAccessor,
|
|
@@ -1735,7 +1803,7 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1735
1803
|
},
|
|
1736
1804
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1737
1805
|
}
|
|
1738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1739
1807
|
type: Directive,
|
|
1740
1808
|
args: [{
|
|
1741
1809
|
selector: 'six-input[type=number]',
|
|
@@ -1746,8 +1814,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1746
1814
|
multi: true,
|
|
1747
1815
|
},
|
|
1748
1816
|
],
|
|
1817
|
+
standalone: false,
|
|
1749
1818
|
}]
|
|
1750
|
-
}], ctorParameters:
|
|
1819
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1751
1820
|
type: HostListener,
|
|
1752
1821
|
args: ['input', ['$event.target']]
|
|
1753
1822
|
}] } });
|
|
@@ -1778,8 +1847,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1778
1847
|
this.el.nativeElement.name = this.formControlName;
|
|
1779
1848
|
}
|
|
1780
1849
|
}
|
|
1781
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1782
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1850
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1851
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: RadioValueAccessor, isStandalone: false, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1783
1852
|
{
|
|
1784
1853
|
provide: NG_VALUE_ACCESSOR,
|
|
1785
1854
|
useExisting: RadioValueAccessor,
|
|
@@ -1787,7 +1856,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1787
1856
|
},
|
|
1788
1857
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1789
1858
|
}
|
|
1790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1791
1860
|
type: Directive,
|
|
1792
1861
|
args: [{
|
|
1793
1862
|
selector: 'six-radio',
|
|
@@ -1798,8 +1867,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1798
1867
|
multi: true,
|
|
1799
1868
|
},
|
|
1800
1869
|
],
|
|
1870
|
+
standalone: false,
|
|
1801
1871
|
}]
|
|
1802
|
-
}], ctorParameters:
|
|
1872
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
1803
1873
|
type: Input
|
|
1804
1874
|
}], formControlName: [{
|
|
1805
1875
|
type: Input
|
|
@@ -1817,8 +1887,8 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1817
1887
|
handleChangeEvent(el) {
|
|
1818
1888
|
this.handleValueChange(el, el.value);
|
|
1819
1889
|
}
|
|
1820
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1821
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1890
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1891
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: DatepickerValueAccessor, isStandalone: false, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1822
1892
|
{
|
|
1823
1893
|
provide: NG_VALUE_ACCESSOR,
|
|
1824
1894
|
useExisting: DatepickerValueAccessor,
|
|
@@ -1826,7 +1896,7 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1826
1896
|
},
|
|
1827
1897
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1828
1898
|
}
|
|
1829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1830
1900
|
type: Directive,
|
|
1831
1901
|
args: [{
|
|
1832
1902
|
selector: 'six-datepicker',
|
|
@@ -1837,8 +1907,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1837
1907
|
multi: true,
|
|
1838
1908
|
},
|
|
1839
1909
|
],
|
|
1910
|
+
standalone: false,
|
|
1840
1911
|
}]
|
|
1841
|
-
}], ctorParameters:
|
|
1912
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
1842
1913
|
type: HostListener,
|
|
1843
1914
|
args: ['change', ['$event.target']]
|
|
1844
1915
|
}] } });
|
|
@@ -1879,15 +1950,16 @@ class SixFormDirective {
|
|
|
1879
1950
|
*/
|
|
1880
1951
|
this.sixSubmit = new EventEmitter();
|
|
1881
1952
|
}
|
|
1882
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1883
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1953
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1954
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormDirective, isStandalone: false, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 }); }
|
|
1884
1955
|
}
|
|
1885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1956
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1886
1957
|
type: Directive,
|
|
1887
1958
|
args: [{
|
|
1888
1959
|
selector: 'form[sixForm]',
|
|
1960
|
+
standalone: false,
|
|
1889
1961
|
}]
|
|
1890
|
-
}], ctorParameters:
|
|
1962
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
|
|
1891
1963
|
type: Output
|
|
1892
1964
|
}], onNgSubmit: [{
|
|
1893
1965
|
type: HostListener,
|
|
@@ -1930,15 +2002,16 @@ class SixFormUtilDirective {
|
|
|
1930
2002
|
focusInvalidField() {
|
|
1931
2003
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1932
2004
|
}
|
|
1933
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1934
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2005
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2006
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 }); }
|
|
1935
2007
|
}
|
|
1936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1937
2009
|
type: Directive,
|
|
1938
2010
|
args: [{
|
|
1939
2011
|
selector: '[sixFormUtil]',
|
|
2012
|
+
standalone: false,
|
|
1940
2013
|
}]
|
|
1941
|
-
}], ctorParameters:
|
|
2014
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
|
|
1942
2015
|
function focusInvalidField(formGroupDirective, formElement) {
|
|
1943
2016
|
formGroupDirective.form.markAllAsTouched();
|
|
1944
2017
|
markAllAsDirty([formGroupDirective.form]);
|
|
@@ -2030,14 +2103,15 @@ class MinDateValidator {
|
|
|
2030
2103
|
}
|
|
2031
2104
|
return null;
|
|
2032
2105
|
}
|
|
2033
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2034
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2107
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MinDateValidator, isStandalone: false, selector: "six-datepicker[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 }); }
|
|
2035
2108
|
}
|
|
2036
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
2037
2110
|
type: Directive,
|
|
2038
2111
|
args: [{
|
|
2039
2112
|
selector: 'six-datepicker[min]',
|
|
2040
2113
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
2114
|
+
standalone: false,
|
|
2041
2115
|
}]
|
|
2042
2116
|
}], propDecorators: { min: [{
|
|
2043
2117
|
type: Input
|
|
@@ -2049,14 +2123,15 @@ class MaxDateValidator {
|
|
|
2049
2123
|
}
|
|
2050
2124
|
return null;
|
|
2051
2125
|
}
|
|
2052
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2053
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2126
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2127
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MaxDateValidator, isStandalone: false, selector: "six-datepicker[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 }); }
|
|
2054
2128
|
}
|
|
2055
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
2056
2130
|
type: Directive,
|
|
2057
2131
|
args: [{
|
|
2058
2132
|
selector: 'six-datepicker[max]',
|
|
2059
2133
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
2134
|
+
standalone: false,
|
|
2060
2135
|
}]
|
|
2061
2136
|
}], propDecorators: { max: [{
|
|
2062
2137
|
type: Input
|
|
@@ -2068,14 +2143,15 @@ class AllowedDatesValidator {
|
|
|
2068
2143
|
validate(control) {
|
|
2069
2144
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
2070
2145
|
}
|
|
2071
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2072
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2147
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: AllowedDatesValidator, isStandalone: false, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 }); }
|
|
2073
2148
|
}
|
|
2074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2149
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
2075
2150
|
type: Directive,
|
|
2076
2151
|
args: [{
|
|
2077
2152
|
selector: 'six-datepicker[allowedDates]',
|
|
2078
2153
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
|
|
2154
|
+
standalone: false,
|
|
2079
2155
|
}]
|
|
2080
2156
|
}], propDecorators: { allowedDates: [{
|
|
2081
2157
|
type: Input
|
|
@@ -2087,14 +2163,15 @@ class MinDateValidatorIso {
|
|
|
2087
2163
|
}
|
|
2088
2164
|
return null;
|
|
2089
2165
|
}
|
|
2090
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2091
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2166
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2167
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MinDateValidatorIso, isStandalone: false, selector: "six-date[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }], ngImport: i0 }); }
|
|
2092
2168
|
}
|
|
2093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2094
2170
|
type: Directive,
|
|
2095
2171
|
args: [{
|
|
2096
2172
|
selector: 'six-date[min]',
|
|
2097
2173
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2174
|
+
standalone: false,
|
|
2098
2175
|
}]
|
|
2099
2176
|
}], propDecorators: { min: [{
|
|
2100
2177
|
type: Input
|
|
@@ -2106,14 +2183,15 @@ class MaxDateValidatorIso {
|
|
|
2106
2183
|
}
|
|
2107
2184
|
return null;
|
|
2108
2185
|
}
|
|
2109
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2110
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2187
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MaxDateValidatorIso, isStandalone: false, selector: "six-date[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }], ngImport: i0 }); }
|
|
2111
2188
|
}
|
|
2112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2113
2190
|
type: Directive,
|
|
2114
2191
|
args: [{
|
|
2115
2192
|
selector: 'six-date[max]',
|
|
2116
2193
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2194
|
+
standalone: false,
|
|
2117
2195
|
}]
|
|
2118
2196
|
}], propDecorators: { max: [{
|
|
2119
2197
|
type: Input
|
|
@@ -2125,14 +2203,15 @@ class AllowedDatesValidatorIso {
|
|
|
2125
2203
|
validate(control) {
|
|
2126
2204
|
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2127
2205
|
}
|
|
2128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2129
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2207
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: AllowedDatesValidatorIso, isStandalone: false, selector: "six-date[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }], ngImport: i0 }); }
|
|
2130
2208
|
}
|
|
2131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2132
2210
|
type: Directive,
|
|
2133
2211
|
args: [{
|
|
2134
2212
|
selector: 'six-date[allowedDates]',
|
|
2135
2213
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2214
|
+
standalone: false,
|
|
2136
2215
|
}]
|
|
2137
2216
|
}], propDecorators: { allowedDates: [{
|
|
2138
2217
|
type: Input
|
|
@@ -2141,14 +2220,15 @@ class MinValidator {
|
|
|
2141
2220
|
validate(control) {
|
|
2142
2221
|
return Validators.min(toFloat(this.min))(control);
|
|
2143
2222
|
}
|
|
2144
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2145
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2224
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MinValidator, isStandalone: false, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 }); }
|
|
2146
2225
|
}
|
|
2147
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, decorators: [{
|
|
2148
2227
|
type: Directive,
|
|
2149
2228
|
args: [{
|
|
2150
2229
|
selector: 'six-input[type=number][min]',
|
|
2151
2230
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
|
|
2231
|
+
standalone: false,
|
|
2152
2232
|
}]
|
|
2153
2233
|
}], propDecorators: { min: [{
|
|
2154
2234
|
type: Input
|
|
@@ -2157,14 +2237,15 @@ class MaxValidator {
|
|
|
2157
2237
|
validate(control) {
|
|
2158
2238
|
return Validators.max(toFloat(this.max))(control);
|
|
2159
2239
|
}
|
|
2160
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2161
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2241
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: MaxValidator, isStandalone: false, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 }); }
|
|
2162
2242
|
}
|
|
2163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, decorators: [{
|
|
2164
2244
|
type: Directive,
|
|
2165
2245
|
args: [{
|
|
2166
2246
|
selector: 'six-input[type=number][max]',
|
|
2167
2247
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
|
|
2248
|
+
standalone: false,
|
|
2168
2249
|
}]
|
|
2169
2250
|
}], propDecorators: { max: [{
|
|
2170
2251
|
type: Input
|
|
@@ -2180,8 +2261,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
2180
2261
|
handleChangeEvent(el) {
|
|
2181
2262
|
this.handleValueChange(el, el.value);
|
|
2182
2263
|
}
|
|
2183
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2184
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2264
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2265
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SelectValueAccessor, isStandalone: false, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2185
2266
|
{
|
|
2186
2267
|
provide: NG_VALUE_ACCESSOR,
|
|
2187
2268
|
useExisting: SelectValueAccessor,
|
|
@@ -2189,7 +2270,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
2189
2270
|
},
|
|
2190
2271
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2191
2272
|
}
|
|
2192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2193
2274
|
type: Directive,
|
|
2194
2275
|
args: [{
|
|
2195
2276
|
selector: 'six-select',
|
|
@@ -2200,8 +2281,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2200
2281
|
multi: true,
|
|
2201
2282
|
},
|
|
2202
2283
|
],
|
|
2284
|
+
standalone: false,
|
|
2203
2285
|
}]
|
|
2204
|
-
}], ctorParameters:
|
|
2286
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2205
2287
|
type: HostListener,
|
|
2206
2288
|
args: ['change', ['$event.target']]
|
|
2207
2289
|
}] } });
|
|
@@ -2217,8 +2299,8 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2217
2299
|
this.el.nativeElement.checked = value === true;
|
|
2218
2300
|
this.updateValidation();
|
|
2219
2301
|
}
|
|
2220
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2221
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2303
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: CheckboxValueAccessor, isStandalone: false, selector: "six-checkbox", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2222
2304
|
{
|
|
2223
2305
|
provide: NG_VALUE_ACCESSOR,
|
|
2224
2306
|
useExisting: CheckboxValueAccessor,
|
|
@@ -2226,7 +2308,7 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2226
2308
|
},
|
|
2227
2309
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2228
2310
|
}
|
|
2229
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2230
2312
|
type: Directive,
|
|
2231
2313
|
args: [{
|
|
2232
2314
|
selector: 'six-checkbox',
|
|
@@ -2237,8 +2319,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2237
2319
|
multi: true,
|
|
2238
2320
|
},
|
|
2239
2321
|
],
|
|
2322
|
+
standalone: false,
|
|
2240
2323
|
}]
|
|
2241
|
-
}], ctorParameters:
|
|
2324
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2242
2325
|
type: HostListener,
|
|
2243
2326
|
args: ['change', ['$event.target']]
|
|
2244
2327
|
}] } });
|
|
@@ -2255,8 +2338,8 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2255
2338
|
fn(value === '' ? null : parseFloat(value));
|
|
2256
2339
|
});
|
|
2257
2340
|
}
|
|
2258
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2259
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2342
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: RangeValueAccessor, isStandalone: false, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
2260
2343
|
{
|
|
2261
2344
|
provide: NG_VALUE_ACCESSOR,
|
|
2262
2345
|
useExisting: RangeValueAccessor,
|
|
@@ -2264,7 +2347,7 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2264
2347
|
},
|
|
2265
2348
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2266
2349
|
}
|
|
2267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2268
2351
|
type: Directive,
|
|
2269
2352
|
args: [{
|
|
2270
2353
|
selector: 'six-range',
|
|
@@ -2275,8 +2358,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2275
2358
|
multi: true,
|
|
2276
2359
|
},
|
|
2277
2360
|
],
|
|
2361
|
+
standalone: false,
|
|
2278
2362
|
}]
|
|
2279
|
-
}], ctorParameters:
|
|
2363
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2280
2364
|
type: HostListener,
|
|
2281
2365
|
args: ['input', ['$event.target']]
|
|
2282
2366
|
}] } });
|
|
@@ -2292,8 +2376,8 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2292
2376
|
this.el.nativeElement.checked = value === true;
|
|
2293
2377
|
this.updateValidation();
|
|
2294
2378
|
}
|
|
2295
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2296
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2379
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2380
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SwitchValueAccessor, isStandalone: false, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2297
2381
|
{
|
|
2298
2382
|
provide: NG_VALUE_ACCESSOR,
|
|
2299
2383
|
useExisting: SwitchValueAccessor,
|
|
@@ -2301,7 +2385,7 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2301
2385
|
},
|
|
2302
2386
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2303
2387
|
}
|
|
2304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2305
2389
|
type: Directive,
|
|
2306
2390
|
args: [{
|
|
2307
2391
|
selector: 'six-switch',
|
|
@@ -2312,8 +2396,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2312
2396
|
multi: true,
|
|
2313
2397
|
},
|
|
2314
2398
|
],
|
|
2399
|
+
standalone: false,
|
|
2315
2400
|
}]
|
|
2316
|
-
}], ctorParameters:
|
|
2401
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2317
2402
|
type: HostListener,
|
|
2318
2403
|
args: ['change', ['$event.target']]
|
|
2319
2404
|
}] } });
|
|
@@ -2325,8 +2410,8 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2325
2410
|
handleChangeEvent(el) {
|
|
2326
2411
|
this.handleValueChange(el, el.value);
|
|
2327
2412
|
}
|
|
2328
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2329
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2413
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2414
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: TimepickerValueAccessor, isStandalone: false, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2330
2415
|
{
|
|
2331
2416
|
provide: NG_VALUE_ACCESSOR,
|
|
2332
2417
|
useExisting: TimepickerValueAccessor,
|
|
@@ -2334,7 +2419,7 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2334
2419
|
},
|
|
2335
2420
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2336
2421
|
}
|
|
2337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2338
2423
|
type: Directive,
|
|
2339
2424
|
args: [{
|
|
2340
2425
|
selector: 'six-timepicker',
|
|
@@ -2345,8 +2430,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2345
2430
|
multi: true,
|
|
2346
2431
|
},
|
|
2347
2432
|
],
|
|
2433
|
+
standalone: false,
|
|
2348
2434
|
}]
|
|
2349
|
-
}], ctorParameters:
|
|
2435
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2350
2436
|
type: HostListener,
|
|
2351
2437
|
args: ['change', ['$event.target']]
|
|
2352
2438
|
}] } });
|
|
@@ -2383,17 +2469,18 @@ class SixRouterLinkDirective {
|
|
|
2383
2469
|
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2384
2470
|
}
|
|
2385
2471
|
}
|
|
2386
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2387
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2472
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, deps: [{ token: i1$1.LocationStrategy }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.Renderer2 }, { token: i2.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2473
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixRouterLinkDirective, isStandalone: false, selector: "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
2388
2474
|
}
|
|
2389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2390
2476
|
type: Directive,
|
|
2391
2477
|
args: [{
|
|
2392
2478
|
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
2479
|
+
standalone: false,
|
|
2393
2480
|
}]
|
|
2394
|
-
}], ctorParameters:
|
|
2481
|
+
}], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2395
2482
|
type: Optional
|
|
2396
|
-
}] }]
|
|
2483
|
+
}] }], propDecorators: { onClick: [{
|
|
2397
2484
|
type: HostListener,
|
|
2398
2485
|
args: ['click', ['$event']]
|
|
2399
2486
|
}], routerLink: [{
|
|
@@ -2427,13 +2514,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2427
2514
|
* ```
|
|
2428
2515
|
*/
|
|
2429
2516
|
class ActiveSidebarDirective {
|
|
2430
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2431
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2517
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2518
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
|
|
2432
2519
|
}
|
|
2433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
|
|
2434
2521
|
type: Directive,
|
|
2435
2522
|
args: [{
|
|
2436
2523
|
selector: 'six-sidebar[sixRouterLinkActive]',
|
|
2524
|
+
standalone: false,
|
|
2437
2525
|
}]
|
|
2438
2526
|
}] });
|
|
2439
2527
|
/**
|
|
@@ -2459,14 +2547,15 @@ class ActiveSidebarItemDirective {
|
|
|
2459
2547
|
return this.routerLinkActive.isActive;
|
|
2460
2548
|
}
|
|
2461
2549
|
}
|
|
2462
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2463
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2550
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2551
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarItemDirective, isStandalone: false, selector: "six-sidebar-item", host: { properties: { "selected": "this.selected" } }, hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 }); }
|
|
2464
2552
|
}
|
|
2465
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
|
|
2466
2554
|
type: Directive,
|
|
2467
2555
|
args: [{
|
|
2468
2556
|
selector: 'six-sidebar-item',
|
|
2469
2557
|
hostDirectives: [RouterLinkActive],
|
|
2558
|
+
standalone: false,
|
|
2470
2559
|
}]
|
|
2471
2560
|
}], propDecorators: { selected: [{
|
|
2472
2561
|
type: HostBinding,
|
|
@@ -2496,14 +2585,15 @@ class ActiveSidebarItemGroupDirective {
|
|
|
2496
2585
|
}
|
|
2497
2586
|
return this.routerLinkActive.isActive;
|
|
2498
2587
|
}
|
|
2499
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2500
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2588
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2589
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarItemGroupDirective, isStandalone: false, selector: "six-sidebar-item-group", host: { properties: { "open": "this.open" } }, queries: [{ propertyName: "sidebarItems", predicate: SixSidebarItem }], hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 }); }
|
|
2501
2590
|
}
|
|
2502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
|
|
2503
2592
|
type: Directive,
|
|
2504
2593
|
args: [{
|
|
2505
2594
|
selector: 'six-sidebar-item-group',
|
|
2506
2595
|
hostDirectives: [RouterLinkActive],
|
|
2596
|
+
standalone: false,
|
|
2507
2597
|
}]
|
|
2508
2598
|
}], propDecorators: { sidebarItems: [{
|
|
2509
2599
|
type: ContentChildren,
|
|
@@ -2524,8 +2614,8 @@ class DateValueAccessor extends ValueAccessor {
|
|
|
2524
2614
|
this.el.nativeElement.value = value == null ? '' : value;
|
|
2525
2615
|
this.updateValidation();
|
|
2526
2616
|
}
|
|
2527
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2528
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2618
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: DateValueAccessor, isStandalone: false, selector: "six-date", host: { listeners: { "change": "handleInputEvent($event.target)" } }, providers: [
|
|
2529
2619
|
{
|
|
2530
2620
|
provide: NG_VALUE_ACCESSOR,
|
|
2531
2621
|
useExisting: DateValueAccessor,
|
|
@@ -2533,7 +2623,7 @@ class DateValueAccessor extends ValueAccessor {
|
|
|
2533
2623
|
},
|
|
2534
2624
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2535
2625
|
}
|
|
2536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
2537
2627
|
type: Directive,
|
|
2538
2628
|
args: [{
|
|
2539
2629
|
selector: 'six-date',
|
|
@@ -2544,14 +2634,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2544
2634
|
multi: true,
|
|
2545
2635
|
},
|
|
2546
2636
|
],
|
|
2637
|
+
standalone: false,
|
|
2547
2638
|
}]
|
|
2548
|
-
}], ctorParameters:
|
|
2639
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2549
2640
|
type: HostListener,
|
|
2550
2641
|
args: ['change', ['$event.target']]
|
|
2551
2642
|
}] } });
|
|
2552
2643
|
|
|
2553
2644
|
class UiLibraryAngularModule {
|
|
2554
|
-
static forRoot(customValidationMessagesService) {
|
|
2645
|
+
static forRoot(customValidationMessagesService, config) {
|
|
2646
|
+
const mergedConfig = {
|
|
2647
|
+
...DEFAULT_UI_LIBRARY_CONFIG,
|
|
2648
|
+
...config,
|
|
2649
|
+
};
|
|
2555
2650
|
return {
|
|
2556
2651
|
ngModule: UiLibraryAngularModule,
|
|
2557
2652
|
providers: [
|
|
@@ -2561,11 +2656,12 @@ class UiLibraryAngularModule {
|
|
|
2561
2656
|
multi: true,
|
|
2562
2657
|
},
|
|
2563
2658
|
{ provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
|
|
2659
|
+
{ provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
|
|
2564
2660
|
],
|
|
2565
2661
|
};
|
|
2566
2662
|
}
|
|
2567
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2568
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2664
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, declarations: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2569
2665
|
// value accessors
|
|
2570
2666
|
TextValueAccessor,
|
|
2571
2667
|
NumericValueAccessor,
|
|
@@ -2624,9 +2720,9 @@ class UiLibraryAngularModule {
|
|
|
2624
2720
|
ActiveSidebarItemDirective,
|
|
2625
2721
|
ActiveSidebarItemGroupDirective,
|
|
2626
2722
|
ActiveSidebarDirective] }); }
|
|
2627
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2723
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule }); }
|
|
2628
2724
|
}
|
|
2629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2630
2726
|
type: NgModule,
|
|
2631
2727
|
args: [{
|
|
2632
2728
|
declarations: [
|
|
@@ -2709,10 +2805,10 @@ class AlertService {
|
|
|
2709
2805
|
showAlert(message, alertType, duration, iconName) {
|
|
2710
2806
|
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2711
2807
|
}
|
|
2712
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2713
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2808
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2809
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, providedIn: 'root' }); }
|
|
2714
2810
|
}
|
|
2715
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, decorators: [{
|
|
2716
2812
|
type: Injectable,
|
|
2717
2813
|
args: [{ providedIn: 'root' }]
|
|
2718
2814
|
}] });
|