@six-group/ui-library-angular 4.3.3 → 5.0.0-rc.2
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 +729 -323
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/lib/control-value-accessors/date-value-accessor.d.ts +10 -0
- package/lib/control-value-accessors/value-accessor.d.ts +3 -1
- package/lib/sidebar/active-sidebar.directive.d.ts +59 -0
- package/lib/stencil-generated/components.d.ts +112 -93
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/ui-library-angular-config.d.ts +6 -0
- package/lib/ui-library-angular.module.d.ts +13 -10
- package/lib/validators/six-ui-library-validators.d.ts +27 -0
- package/package.json +6 -8
- package/public-api.d.ts +2 -0
- package/esm2022/lib/control-value-accessors/checkbox-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/stencil-generated/angular-component-lib/utils.mjs +0 -59
- package/esm2022/lib/stencil-generated/components.mjs +0 -1388
- package/esm2022/lib/stencil-generated/index.mjs +0 -60
- package/esm2022/lib/ui-library-angular.module.mjs +0 -135
- package/esm2022/lib/validators/six-ui-library-validators.mjs +0 -122
- package/esm2022/public-api.mjs +0 -28
- package/esm2022/six-group-ui-library-angular.mjs +0 -5
|
@@ -1,13 +1,14 @@
|
|
|
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';
|
|
11
|
+
import { RouterLinkActive } from '@angular/router';
|
|
11
12
|
|
|
12
13
|
/* eslint-disable */
|
|
13
14
|
/* tslint:disable */
|
|
@@ -74,8 +75,8 @@ let SixAlert = class SixAlert {
|
|
|
74
75
|
this.el = r.nativeElement;
|
|
75
76
|
proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
|
|
76
77
|
}
|
|
77
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
78
|
-
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 }); }
|
|
79
80
|
};
|
|
80
81
|
SixAlert = __decorate([
|
|
81
82
|
ProxyCmp({
|
|
@@ -83,7 +84,7 @@ SixAlert = __decorate([
|
|
|
83
84
|
methods: ['show', 'hide', 'toast']
|
|
84
85
|
})
|
|
85
86
|
], SixAlert);
|
|
86
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAlert, decorators: [{
|
|
87
88
|
type: Component,
|
|
88
89
|
args: [{
|
|
89
90
|
selector: 'six-alert',
|
|
@@ -91,23 +92,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
91
92
|
template: '<ng-content></ng-content>',
|
|
92
93
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
93
94
|
inputs: ['closable', 'duration', 'open', 'type'],
|
|
95
|
+
standalone: false
|
|
94
96
|
}]
|
|
95
|
-
}], ctorParameters:
|
|
97
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
96
98
|
let SixAvatar = class SixAvatar {
|
|
97
99
|
constructor(c, r, z) {
|
|
98
100
|
this.z = z;
|
|
99
101
|
c.detach();
|
|
100
102
|
this.el = r.nativeElement;
|
|
101
103
|
}
|
|
102
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
103
|
-
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 }); }
|
|
104
106
|
};
|
|
105
107
|
SixAvatar = __decorate([
|
|
106
108
|
ProxyCmp({
|
|
107
109
|
inputs: ['alt', 'image', 'initials', 'shape']
|
|
108
110
|
})
|
|
109
111
|
], SixAvatar);
|
|
110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixAvatar, decorators: [{
|
|
111
113
|
type: Component,
|
|
112
114
|
args: [{
|
|
113
115
|
selector: 'six-avatar',
|
|
@@ -115,23 +117,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
115
117
|
template: '<ng-content></ng-content>',
|
|
116
118
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
117
119
|
inputs: ['alt', 'image', 'initials', 'shape'],
|
|
120
|
+
standalone: false
|
|
118
121
|
}]
|
|
119
|
-
}], ctorParameters:
|
|
122
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
120
123
|
let SixBadge = class SixBadge {
|
|
121
124
|
constructor(c, r, z) {
|
|
122
125
|
this.z = z;
|
|
123
126
|
c.detach();
|
|
124
127
|
this.el = r.nativeElement;
|
|
125
128
|
}
|
|
126
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
127
|
-
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 }); }
|
|
128
131
|
};
|
|
129
132
|
SixBadge = __decorate([
|
|
130
133
|
ProxyCmp({
|
|
131
134
|
inputs: ['pill', 'pulse', 'type']
|
|
132
135
|
})
|
|
133
136
|
], SixBadge);
|
|
134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixBadge, decorators: [{
|
|
135
138
|
type: Component,
|
|
136
139
|
args: [{
|
|
137
140
|
selector: 'six-badge',
|
|
@@ -139,8 +142,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
139
142
|
template: '<ng-content></ng-content>',
|
|
140
143
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
141
144
|
inputs: ['pill', 'pulse', 'type'],
|
|
145
|
+
standalone: false
|
|
142
146
|
}]
|
|
143
|
-
}], ctorParameters:
|
|
147
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
144
148
|
let SixButton = class SixButton {
|
|
145
149
|
constructor(c, r, z) {
|
|
146
150
|
this.z = z;
|
|
@@ -148,8 +152,8 @@ let SixButton = class SixButton {
|
|
|
148
152
|
this.el = r.nativeElement;
|
|
149
153
|
proxyOutputs(this, this.el, ['six-button-blur', 'six-button-focus']);
|
|
150
154
|
}
|
|
151
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
152
|
-
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 }); }
|
|
153
157
|
};
|
|
154
158
|
SixButton = __decorate([
|
|
155
159
|
ProxyCmp({
|
|
@@ -157,7 +161,7 @@ SixButton = __decorate([
|
|
|
157
161
|
methods: ['setFocus', 'removeFocus']
|
|
158
162
|
})
|
|
159
163
|
], SixButton);
|
|
160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixButton, decorators: [{
|
|
161
165
|
type: Component,
|
|
162
166
|
args: [{
|
|
163
167
|
selector: 'six-button',
|
|
@@ -165,21 +169,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
165
169
|
template: '<ng-content></ng-content>',
|
|
166
170
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
167
171
|
inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
|
|
172
|
+
standalone: false
|
|
168
173
|
}]
|
|
169
|
-
}], ctorParameters:
|
|
174
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
170
175
|
let SixCard = class SixCard {
|
|
171
176
|
constructor(c, r, z) {
|
|
172
177
|
this.z = z;
|
|
173
178
|
c.detach();
|
|
174
179
|
this.el = r.nativeElement;
|
|
175
180
|
}
|
|
176
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
177
|
-
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 }); }
|
|
178
183
|
};
|
|
179
184
|
SixCard = __decorate([
|
|
180
185
|
ProxyCmp({})
|
|
181
186
|
], SixCard);
|
|
182
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCard, decorators: [{
|
|
183
188
|
type: Component,
|
|
184
189
|
args: [{
|
|
185
190
|
selector: 'six-card',
|
|
@@ -187,8 +192,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
187
192
|
template: '<ng-content></ng-content>',
|
|
188
193
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
189
194
|
inputs: [],
|
|
195
|
+
standalone: false
|
|
190
196
|
}]
|
|
191
|
-
}], ctorParameters:
|
|
197
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
192
198
|
let SixCheckbox = class SixCheckbox {
|
|
193
199
|
constructor(c, r, z) {
|
|
194
200
|
this.z = z;
|
|
@@ -196,8 +202,8 @@ let SixCheckbox = class SixCheckbox {
|
|
|
196
202
|
this.el = r.nativeElement;
|
|
197
203
|
proxyOutputs(this, this.el, ['six-checkbox-blur', 'six-checkbox-change', 'six-checkbox-focus']);
|
|
198
204
|
}
|
|
199
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
200
|
-
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 }); }
|
|
201
207
|
};
|
|
202
208
|
SixCheckbox = __decorate([
|
|
203
209
|
ProxyCmp({
|
|
@@ -205,7 +211,7 @@ SixCheckbox = __decorate([
|
|
|
205
211
|
methods: ['setFocus', 'removeFocus']
|
|
206
212
|
})
|
|
207
213
|
], SixCheckbox);
|
|
208
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixCheckbox, decorators: [{
|
|
209
215
|
type: Component,
|
|
210
216
|
args: [{
|
|
211
217
|
selector: 'six-checkbox',
|
|
@@ -213,8 +219,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
213
219
|
template: '<ng-content></ng-content>',
|
|
214
220
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
215
221
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
222
|
+
standalone: false
|
|
216
223
|
}]
|
|
217
|
-
}], ctorParameters:
|
|
224
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
225
|
+
let SixDate = class SixDate {
|
|
226
|
+
constructor(c, r, z) {
|
|
227
|
+
this.z = z;
|
|
228
|
+
c.detach();
|
|
229
|
+
this.el = r.nativeElement;
|
|
230
|
+
proxyOutputs(this, this.el, ['six-change', 'six-blur']);
|
|
231
|
+
}
|
|
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 }); }
|
|
234
|
+
};
|
|
235
|
+
SixDate = __decorate([
|
|
236
|
+
ProxyCmp({
|
|
237
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
238
|
+
methods: ['setFocus']
|
|
239
|
+
})
|
|
240
|
+
], SixDate);
|
|
241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDate, decorators: [{
|
|
242
|
+
type: Component,
|
|
243
|
+
args: [{
|
|
244
|
+
selector: 'six-date',
|
|
245
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
246
|
+
template: '<ng-content></ng-content>',
|
|
247
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
248
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
249
|
+
standalone: false
|
|
250
|
+
}]
|
|
251
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
218
252
|
let SixDatepicker = class SixDatepicker {
|
|
219
253
|
constructor(c, r, z) {
|
|
220
254
|
this.z = z;
|
|
@@ -222,8 +256,8 @@ let SixDatepicker = class SixDatepicker {
|
|
|
222
256
|
this.el = r.nativeElement;
|
|
223
257
|
proxyOutputs(this, this.el, ['six-datepicker-select', 'six-datepicker-clear', 'six-datepicker-blur']);
|
|
224
258
|
}
|
|
225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
226
|
-
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 }); }
|
|
227
261
|
};
|
|
228
262
|
SixDatepicker = __decorate([
|
|
229
263
|
ProxyCmp({
|
|
@@ -231,7 +265,7 @@ SixDatepicker = __decorate([
|
|
|
231
265
|
methods: ['setFocus', 'select']
|
|
232
266
|
})
|
|
233
267
|
], SixDatepicker);
|
|
234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDatepicker, decorators: [{
|
|
235
269
|
type: Component,
|
|
236
270
|
args: [{
|
|
237
271
|
selector: 'six-datepicker',
|
|
@@ -239,8 +273,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
239
273
|
template: '<ng-content></ng-content>',
|
|
240
274
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
241
275
|
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'],
|
|
276
|
+
standalone: false
|
|
242
277
|
}]
|
|
243
|
-
}], ctorParameters:
|
|
278
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
244
279
|
let SixDetails = class SixDetails {
|
|
245
280
|
constructor(c, r, z) {
|
|
246
281
|
this.z = z;
|
|
@@ -248,8 +283,8 @@ let SixDetails = class SixDetails {
|
|
|
248
283
|
this.el = r.nativeElement;
|
|
249
284
|
proxyOutputs(this, this.el, ['six-details-show', 'six-details-after-show', 'six-details-hide', 'six-details-after-hide']);
|
|
250
285
|
}
|
|
251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
252
|
-
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 }); }
|
|
253
288
|
};
|
|
254
289
|
SixDetails = __decorate([
|
|
255
290
|
ProxyCmp({
|
|
@@ -257,7 +292,7 @@ SixDetails = __decorate([
|
|
|
257
292
|
methods: ['show', 'hide']
|
|
258
293
|
})
|
|
259
294
|
], SixDetails);
|
|
260
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDetails, decorators: [{
|
|
261
296
|
type: Component,
|
|
262
297
|
args: [{
|
|
263
298
|
selector: 'six-details',
|
|
@@ -265,17 +300,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
265
300
|
template: '<ng-content></ng-content>',
|
|
266
301
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
267
302
|
inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
|
|
303
|
+
standalone: false
|
|
268
304
|
}]
|
|
269
|
-
}], ctorParameters:
|
|
305
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
270
306
|
let SixDialog = class SixDialog {
|
|
271
307
|
constructor(c, r, z) {
|
|
272
308
|
this.z = z;
|
|
273
309
|
c.detach();
|
|
274
310
|
this.el = r.nativeElement;
|
|
275
|
-
proxyOutputs(this, this.el, ['six-dialog-show', 'six-dialog-after-show', 'six-dialog-hide', 'six-dialog-after-hide', 'six-dialog-initial-focus', 'six-dialog-
|
|
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']);
|
|
276
312
|
}
|
|
277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
278
|
-
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 }); }
|
|
279
315
|
};
|
|
280
316
|
SixDialog = __decorate([
|
|
281
317
|
ProxyCmp({
|
|
@@ -283,7 +319,7 @@ SixDialog = __decorate([
|
|
|
283
319
|
methods: ['show', 'hide']
|
|
284
320
|
})
|
|
285
321
|
], SixDialog);
|
|
286
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDialog, decorators: [{
|
|
287
323
|
type: Component,
|
|
288
324
|
args: [{
|
|
289
325
|
selector: 'six-dialog',
|
|
@@ -291,17 +327,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
291
327
|
template: '<ng-content></ng-content>',
|
|
292
328
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
293
329
|
inputs: ['label', 'noHeader', 'open'],
|
|
330
|
+
standalone: false
|
|
294
331
|
}]
|
|
295
|
-
}], ctorParameters:
|
|
332
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
296
333
|
let SixDrawer = class SixDrawer {
|
|
297
334
|
constructor(c, r, z) {
|
|
298
335
|
this.z = z;
|
|
299
336
|
c.detach();
|
|
300
337
|
this.el = r.nativeElement;
|
|
301
|
-
proxyOutputs(this, this.el, ['six-drawer-show', 'six-drawer-after-show', 'six-drawer-hide', 'six-drawer-after-hide', 'six-drawer-initial-focus', 'six-drawer-
|
|
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']);
|
|
302
339
|
}
|
|
303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
304
|
-
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 }); }
|
|
305
342
|
};
|
|
306
343
|
SixDrawer = __decorate([
|
|
307
344
|
ProxyCmp({
|
|
@@ -309,7 +346,7 @@ SixDrawer = __decorate([
|
|
|
309
346
|
methods: ['show', 'hide']
|
|
310
347
|
})
|
|
311
348
|
], SixDrawer);
|
|
312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDrawer, decorators: [{
|
|
313
350
|
type: Component,
|
|
314
351
|
args: [{
|
|
315
352
|
selector: 'six-drawer',
|
|
@@ -317,8 +354,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
317
354
|
template: '<ng-content></ng-content>',
|
|
318
355
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
319
356
|
inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
|
|
357
|
+
standalone: false
|
|
320
358
|
}]
|
|
321
|
-
}], ctorParameters:
|
|
359
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
322
360
|
let SixDropdown = class SixDropdown {
|
|
323
361
|
constructor(c, r, z) {
|
|
324
362
|
this.z = z;
|
|
@@ -326,16 +364,16 @@ let SixDropdown = class SixDropdown {
|
|
|
326
364
|
this.el = r.nativeElement;
|
|
327
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']);
|
|
328
366
|
}
|
|
329
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
330
|
-
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 }); }
|
|
331
369
|
};
|
|
332
370
|
SixDropdown = __decorate([
|
|
333
371
|
ProxyCmp({
|
|
334
372
|
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
335
|
-
methods: ['show', 'hide'
|
|
373
|
+
methods: ['show', 'hide']
|
|
336
374
|
})
|
|
337
375
|
], SixDropdown);
|
|
338
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixDropdown, decorators: [{
|
|
339
377
|
type: Component,
|
|
340
378
|
args: [{
|
|
341
379
|
selector: 'six-dropdown',
|
|
@@ -343,21 +381,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
343
381
|
template: '<ng-content></ng-content>',
|
|
344
382
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
345
383
|
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
384
|
+
standalone: false
|
|
346
385
|
}]
|
|
347
|
-
}], ctorParameters:
|
|
386
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
348
387
|
let SixError = class SixError {
|
|
349
388
|
constructor(c, r, z) {
|
|
350
389
|
this.z = z;
|
|
351
390
|
c.detach();
|
|
352
391
|
this.el = r.nativeElement;
|
|
353
392
|
}
|
|
354
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
355
|
-
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 }); }
|
|
356
395
|
};
|
|
357
396
|
SixError = __decorate([
|
|
358
397
|
ProxyCmp({})
|
|
359
398
|
], SixError);
|
|
360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixError, decorators: [{
|
|
361
400
|
type: Component,
|
|
362
401
|
args: [{
|
|
363
402
|
selector: 'six-error',
|
|
@@ -365,23 +404,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
365
404
|
template: '<ng-content></ng-content>',
|
|
366
405
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
367
406
|
inputs: [],
|
|
407
|
+
standalone: false
|
|
368
408
|
}]
|
|
369
|
-
}], ctorParameters:
|
|
409
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
370
410
|
let SixErrorPage = class SixErrorPage {
|
|
371
411
|
constructor(c, r, z) {
|
|
372
412
|
this.z = z;
|
|
373
413
|
c.detach();
|
|
374
414
|
this.el = r.nativeElement;
|
|
375
415
|
}
|
|
376
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
377
|
-
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 }); }
|
|
378
418
|
};
|
|
379
419
|
SixErrorPage = __decorate([
|
|
380
420
|
ProxyCmp({
|
|
381
421
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
|
|
382
422
|
})
|
|
383
423
|
], SixErrorPage);
|
|
384
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixErrorPage, decorators: [{
|
|
385
425
|
type: Component,
|
|
386
426
|
args: [{
|
|
387
427
|
selector: 'six-error-page',
|
|
@@ -389,21 +429,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
389
429
|
template: '<ng-content></ng-content>',
|
|
390
430
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
391
431
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language'],
|
|
432
|
+
standalone: false
|
|
392
433
|
}]
|
|
393
|
-
}], ctorParameters:
|
|
434
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
394
435
|
let SixFileList = class SixFileList {
|
|
395
436
|
constructor(c, r, z) {
|
|
396
437
|
this.z = z;
|
|
397
438
|
c.detach();
|
|
398
439
|
this.el = r.nativeElement;
|
|
399
440
|
}
|
|
400
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
401
|
-
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 }); }
|
|
402
443
|
};
|
|
403
444
|
SixFileList = __decorate([
|
|
404
445
|
ProxyCmp({})
|
|
405
446
|
], SixFileList);
|
|
406
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileList, decorators: [{
|
|
407
448
|
type: Component,
|
|
408
449
|
args: [{
|
|
409
450
|
selector: 'six-file-list',
|
|
@@ -411,8 +452,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
411
452
|
template: '<ng-content></ng-content>',
|
|
412
453
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
413
454
|
inputs: [],
|
|
455
|
+
standalone: false
|
|
414
456
|
}]
|
|
415
|
-
}], ctorParameters:
|
|
457
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
416
458
|
let SixFileListItem = class SixFileListItem {
|
|
417
459
|
constructor(c, r, z) {
|
|
418
460
|
this.z = z;
|
|
@@ -420,15 +462,15 @@ let SixFileListItem = class SixFileListItem {
|
|
|
420
462
|
this.el = r.nativeElement;
|
|
421
463
|
proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
|
|
422
464
|
}
|
|
423
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
424
|
-
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 }); }
|
|
425
467
|
};
|
|
426
468
|
SixFileListItem = __decorate([
|
|
427
469
|
ProxyCmp({
|
|
428
470
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
|
|
429
471
|
})
|
|
430
472
|
], SixFileListItem);
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileListItem, decorators: [{
|
|
432
474
|
type: Component,
|
|
433
475
|
args: [{
|
|
434
476
|
selector: 'six-file-list-item',
|
|
@@ -436,8 +478,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
436
478
|
template: '<ng-content></ng-content>',
|
|
437
479
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
438
480
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size'],
|
|
481
|
+
standalone: false
|
|
439
482
|
}]
|
|
440
|
-
}], ctorParameters:
|
|
483
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
441
484
|
let SixFileUpload = class SixFileUpload {
|
|
442
485
|
constructor(c, r, z) {
|
|
443
486
|
this.z = z;
|
|
@@ -445,15 +488,15 @@ let SixFileUpload = class SixFileUpload {
|
|
|
445
488
|
this.el = r.nativeElement;
|
|
446
489
|
proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
|
|
447
490
|
}
|
|
448
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
449
|
-
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 }); }
|
|
450
493
|
};
|
|
451
494
|
SixFileUpload = __decorate([
|
|
452
495
|
ProxyCmp({
|
|
453
496
|
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading']
|
|
454
497
|
})
|
|
455
498
|
], SixFileUpload);
|
|
456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFileUpload, decorators: [{
|
|
457
500
|
type: Component,
|
|
458
501
|
args: [{
|
|
459
502
|
selector: 'six-file-upload',
|
|
@@ -461,21 +504,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
461
504
|
template: '<ng-content></ng-content>',
|
|
462
505
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
463
506
|
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
|
|
507
|
+
standalone: false
|
|
464
508
|
}]
|
|
465
|
-
}], ctorParameters:
|
|
509
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
466
510
|
let SixFooter = class SixFooter {
|
|
467
511
|
constructor(c, r, z) {
|
|
468
512
|
this.z = z;
|
|
469
513
|
c.detach();
|
|
470
514
|
this.el = r.nativeElement;
|
|
471
515
|
}
|
|
472
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
473
|
-
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 }); }
|
|
474
518
|
};
|
|
475
519
|
SixFooter = __decorate([
|
|
476
520
|
ProxyCmp({})
|
|
477
521
|
], SixFooter);
|
|
478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFooter, decorators: [{
|
|
479
523
|
type: Component,
|
|
480
524
|
args: [{
|
|
481
525
|
selector: 'six-footer',
|
|
@@ -483,23 +527,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
483
527
|
template: '<ng-content></ng-content>',
|
|
484
528
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
485
529
|
inputs: [],
|
|
530
|
+
standalone: false
|
|
486
531
|
}]
|
|
487
|
-
}], ctorParameters:
|
|
532
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
488
533
|
let SixGroupLabel = class SixGroupLabel {
|
|
489
534
|
constructor(c, r, z) {
|
|
490
535
|
this.z = z;
|
|
491
536
|
c.detach();
|
|
492
537
|
this.el = r.nativeElement;
|
|
493
538
|
}
|
|
494
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
495
|
-
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 }); }
|
|
496
541
|
};
|
|
497
542
|
SixGroupLabel = __decorate([
|
|
498
543
|
ProxyCmp({
|
|
499
544
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size']
|
|
500
545
|
})
|
|
501
546
|
], SixGroupLabel);
|
|
502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixGroupLabel, decorators: [{
|
|
503
548
|
type: Component,
|
|
504
549
|
args: [{
|
|
505
550
|
selector: 'six-group-label',
|
|
@@ -507,71 +552,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
507
552
|
template: '<ng-content></ng-content>',
|
|
508
553
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
509
554
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size'],
|
|
555
|
+
standalone: false
|
|
510
556
|
}]
|
|
511
|
-
}], ctorParameters:
|
|
557
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
512
558
|
let SixHeader = class SixHeader {
|
|
513
559
|
constructor(c, r, z) {
|
|
514
560
|
this.z = z;
|
|
515
561
|
c.detach();
|
|
516
562
|
this.el = r.nativeElement;
|
|
517
|
-
proxyOutputs(this, this.el, ['six-header-app-name-clicked', 'six-header-app-switcher-select', 'six-header-profile-select', 'six-header-hamburger-menu-clicked', 'six-header-logo-clicked', 'six-header-search-field-toggle']);
|
|
518
563
|
}
|
|
519
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
520
|
-
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 }); }
|
|
521
566
|
};
|
|
522
567
|
SixHeader = __decorate([
|
|
523
568
|
ProxyCmp({
|
|
524
|
-
inputs: ['
|
|
525
|
-
methods: ['setSearchOpenState', 'getIsSearchOpen']
|
|
569
|
+
inputs: ['openSearch', 'shiftContent']
|
|
526
570
|
})
|
|
527
571
|
], SixHeader);
|
|
528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeader, decorators: [{
|
|
529
573
|
type: Component,
|
|
530
574
|
args: [{
|
|
531
575
|
selector: 'six-header',
|
|
532
576
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
533
577
|
template: '<ng-content></ng-content>',
|
|
534
578
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
|
-
inputs: ['
|
|
579
|
+
inputs: ['openSearch', 'shiftContent'],
|
|
580
|
+
standalone: false
|
|
536
581
|
}]
|
|
537
|
-
}], ctorParameters:
|
|
582
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
538
583
|
let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
539
584
|
constructor(c, r, z) {
|
|
540
585
|
this.z = z;
|
|
541
586
|
c.detach();
|
|
542
587
|
this.el = r.nativeElement;
|
|
543
588
|
}
|
|
544
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
545
|
-
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 }); }
|
|
546
591
|
};
|
|
547
592
|
SixHeaderDropdownItem = __decorate([
|
|
548
|
-
ProxyCmp({
|
|
593
|
+
ProxyCmp({
|
|
594
|
+
inputs: ['filter', 'filterPlaceholder']
|
|
595
|
+
})
|
|
549
596
|
], SixHeaderDropdownItem);
|
|
550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
|
|
551
598
|
type: Component,
|
|
552
599
|
args: [{
|
|
553
600
|
selector: 'six-header-dropdown-item',
|
|
554
601
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
555
602
|
template: '<ng-content></ng-content>',
|
|
556
603
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
557
|
-
inputs: [],
|
|
604
|
+
inputs: ['filter', 'filterPlaceholder'],
|
|
605
|
+
standalone: false
|
|
558
606
|
}]
|
|
559
|
-
}], ctorParameters:
|
|
607
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
560
608
|
let SixHeaderItem = class SixHeaderItem {
|
|
561
609
|
constructor(c, r, z) {
|
|
562
610
|
this.z = z;
|
|
563
611
|
c.detach();
|
|
564
612
|
this.el = r.nativeElement;
|
|
565
613
|
}
|
|
566
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
567
|
-
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 }); }
|
|
568
616
|
};
|
|
569
617
|
SixHeaderItem = __decorate([
|
|
570
618
|
ProxyCmp({
|
|
571
619
|
inputs: ['active']
|
|
572
620
|
})
|
|
573
621
|
], SixHeaderItem);
|
|
574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderItem, decorators: [{
|
|
575
623
|
type: Component,
|
|
576
624
|
args: [{
|
|
577
625
|
selector: 'six-header-item',
|
|
@@ -579,47 +627,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
579
627
|
template: '<ng-content></ng-content>',
|
|
580
628
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
581
629
|
inputs: ['active'],
|
|
630
|
+
standalone: false
|
|
582
631
|
}]
|
|
583
|
-
}], ctorParameters:
|
|
632
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
584
633
|
let SixHeaderMenuButton = class SixHeaderMenuButton {
|
|
585
634
|
constructor(c, r, z) {
|
|
586
635
|
this.z = z;
|
|
587
636
|
c.detach();
|
|
588
637
|
this.el = r.nativeElement;
|
|
589
638
|
}
|
|
590
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
591
|
-
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 }); }
|
|
592
641
|
};
|
|
593
642
|
SixHeaderMenuButton = __decorate([
|
|
594
643
|
ProxyCmp({
|
|
595
|
-
inputs: ['
|
|
644
|
+
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit']
|
|
596
645
|
})
|
|
597
646
|
], SixHeaderMenuButton);
|
|
598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
|
|
599
648
|
type: Component,
|
|
600
649
|
args: [{
|
|
601
650
|
selector: 'six-header-menu-button',
|
|
602
651
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
603
652
|
template: '<ng-content></ng-content>',
|
|
604
653
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
605
|
-
inputs: ['
|
|
654
|
+
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
|
|
655
|
+
standalone: false
|
|
606
656
|
}]
|
|
607
|
-
}], ctorParameters:
|
|
657
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
608
658
|
let SixIcon = class SixIcon {
|
|
609
659
|
constructor(c, r, z) {
|
|
610
660
|
this.z = z;
|
|
611
661
|
c.detach();
|
|
612
662
|
this.el = r.nativeElement;
|
|
613
663
|
}
|
|
614
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
615
|
-
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 }); }
|
|
616
666
|
};
|
|
617
667
|
SixIcon = __decorate([
|
|
618
668
|
ProxyCmp({
|
|
619
669
|
inputs: ['filled', 'size']
|
|
620
670
|
})
|
|
621
671
|
], SixIcon);
|
|
622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIcon, decorators: [{
|
|
623
673
|
type: Component,
|
|
624
674
|
args: [{
|
|
625
675
|
selector: 'six-icon',
|
|
@@ -627,23 +677,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
627
677
|
template: '<ng-content></ng-content>',
|
|
628
678
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
629
679
|
inputs: ['filled', 'size'],
|
|
680
|
+
standalone: false
|
|
630
681
|
}]
|
|
631
|
-
}], ctorParameters:
|
|
682
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
632
683
|
let SixIconButton = class SixIconButton {
|
|
633
684
|
constructor(c, r, z) {
|
|
634
685
|
this.z = z;
|
|
635
686
|
c.detach();
|
|
636
687
|
this.el = r.nativeElement;
|
|
637
688
|
}
|
|
638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
639
|
-
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 }); }
|
|
640
691
|
};
|
|
641
692
|
SixIconButton = __decorate([
|
|
642
693
|
ProxyCmp({
|
|
643
694
|
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
|
|
644
695
|
})
|
|
645
696
|
], SixIconButton);
|
|
646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixIconButton, decorators: [{
|
|
647
698
|
type: Component,
|
|
648
699
|
args: [{
|
|
649
700
|
selector: 'six-icon-button',
|
|
@@ -651,8 +702,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
651
702
|
template: '<ng-content></ng-content>',
|
|
652
703
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
653
704
|
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
|
|
705
|
+
standalone: false
|
|
654
706
|
}]
|
|
655
|
-
}], ctorParameters:
|
|
707
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
656
708
|
let SixInput = class SixInput {
|
|
657
709
|
constructor(c, r, z) {
|
|
658
710
|
this.z = z;
|
|
@@ -660,8 +712,8 @@ let SixInput = class SixInput {
|
|
|
660
712
|
this.el = r.nativeElement;
|
|
661
713
|
proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
|
|
662
714
|
}
|
|
663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
664
|
-
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 }); }
|
|
665
717
|
};
|
|
666
718
|
SixInput = __decorate([
|
|
667
719
|
ProxyCmp({
|
|
@@ -669,7 +721,7 @@ SixInput = __decorate([
|
|
|
669
721
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'getSelectionRange', 'setRangeText']
|
|
670
722
|
})
|
|
671
723
|
], SixInput);
|
|
672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixInput, decorators: [{
|
|
673
725
|
type: Component,
|
|
674
726
|
args: [{
|
|
675
727
|
selector: 'six-input',
|
|
@@ -677,8 +729,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
677
729
|
template: '<ng-content></ng-content>',
|
|
678
730
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
679
731
|
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'],
|
|
732
|
+
standalone: false
|
|
680
733
|
}]
|
|
681
|
-
}], ctorParameters:
|
|
734
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
682
735
|
let SixItemPicker = class SixItemPicker {
|
|
683
736
|
constructor(c, r, z) {
|
|
684
737
|
this.z = z;
|
|
@@ -686,15 +739,15 @@ let SixItemPicker = class SixItemPicker {
|
|
|
686
739
|
this.el = r.nativeElement;
|
|
687
740
|
proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
|
|
688
741
|
}
|
|
689
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
690
|
-
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 }); }
|
|
691
744
|
};
|
|
692
745
|
SixItemPicker = __decorate([
|
|
693
746
|
ProxyCmp({
|
|
694
747
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
|
|
695
748
|
})
|
|
696
749
|
], SixItemPicker);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixItemPicker, decorators: [{
|
|
698
751
|
type: Component,
|
|
699
752
|
args: [{
|
|
700
753
|
selector: 'six-item-picker',
|
|
@@ -702,8 +755,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
702
755
|
template: '<ng-content></ng-content>',
|
|
703
756
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
704
757
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value'],
|
|
758
|
+
standalone: false
|
|
705
759
|
}]
|
|
706
|
-
}], ctorParameters:
|
|
760
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
707
761
|
let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
708
762
|
constructor(c, r, z) {
|
|
709
763
|
this.z = z;
|
|
@@ -711,15 +765,15 @@ let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
|
711
765
|
this.el = r.nativeElement;
|
|
712
766
|
proxyOutputs(this, this.el, ['six-language-switcher-change']);
|
|
713
767
|
}
|
|
714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
715
|
-
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 }); }
|
|
716
770
|
};
|
|
717
771
|
SixLanguageSwitcher = __decorate([
|
|
718
772
|
ProxyCmp({
|
|
719
773
|
inputs: ['languages', 'selected']
|
|
720
774
|
})
|
|
721
775
|
], SixLanguageSwitcher);
|
|
722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
|
|
723
777
|
type: Component,
|
|
724
778
|
args: [{
|
|
725
779
|
selector: 'six-language-switcher',
|
|
@@ -727,23 +781,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
727
781
|
template: '<ng-content></ng-content>',
|
|
728
782
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
729
783
|
inputs: ['languages', 'selected'],
|
|
784
|
+
standalone: false
|
|
730
785
|
}]
|
|
731
|
-
}], ctorParameters:
|
|
786
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
732
787
|
let SixLayoutGrid = class SixLayoutGrid {
|
|
733
788
|
constructor(c, r, z) {
|
|
734
789
|
this.z = z;
|
|
735
790
|
c.detach();
|
|
736
791
|
this.el = r.nativeElement;
|
|
737
792
|
}
|
|
738
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
739
|
-
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 }); }
|
|
740
795
|
};
|
|
741
796
|
SixLayoutGrid = __decorate([
|
|
742
797
|
ProxyCmp({
|
|
743
798
|
inputs: ['columns']
|
|
744
799
|
})
|
|
745
800
|
], SixLayoutGrid);
|
|
746
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLayoutGrid, decorators: [{
|
|
747
802
|
type: Component,
|
|
748
803
|
args: [{
|
|
749
804
|
selector: 'six-layout-grid',
|
|
@@ -751,23 +806,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
751
806
|
template: '<ng-content></ng-content>',
|
|
752
807
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
753
808
|
inputs: ['columns'],
|
|
809
|
+
standalone: false
|
|
754
810
|
}]
|
|
755
|
-
}], ctorParameters:
|
|
811
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
756
812
|
let SixLogo = class SixLogo {
|
|
757
813
|
constructor(c, r, z) {
|
|
758
814
|
this.z = z;
|
|
759
815
|
c.detach();
|
|
760
816
|
this.el = r.nativeElement;
|
|
761
817
|
}
|
|
762
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
763
|
-
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 }); }
|
|
764
820
|
};
|
|
765
821
|
SixLogo = __decorate([
|
|
766
822
|
ProxyCmp({
|
|
767
823
|
inputs: ['brand']
|
|
768
824
|
})
|
|
769
825
|
], SixLogo);
|
|
770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixLogo, decorators: [{
|
|
771
827
|
type: Component,
|
|
772
828
|
args: [{
|
|
773
829
|
selector: 'six-logo',
|
|
@@ -775,23 +831,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
775
831
|
template: '<ng-content></ng-content>',
|
|
776
832
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
777
833
|
inputs: ['brand'],
|
|
834
|
+
standalone: false
|
|
778
835
|
}]
|
|
779
|
-
}], ctorParameters:
|
|
836
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
780
837
|
let SixMainContainer = class SixMainContainer {
|
|
781
838
|
constructor(c, r, z) {
|
|
782
839
|
this.z = z;
|
|
783
840
|
c.detach();
|
|
784
841
|
this.el = r.nativeElement;
|
|
785
842
|
}
|
|
786
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
787
|
-
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 }); }
|
|
788
845
|
};
|
|
789
846
|
SixMainContainer = __decorate([
|
|
790
847
|
ProxyCmp({
|
|
791
848
|
inputs: ['padded']
|
|
792
849
|
})
|
|
793
850
|
], SixMainContainer);
|
|
794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMainContainer, decorators: [{
|
|
795
852
|
type: Component,
|
|
796
853
|
args: [{
|
|
797
854
|
selector: 'six-main-container',
|
|
@@ -799,8 +856,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
799
856
|
template: '<ng-content></ng-content>',
|
|
800
857
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
801
858
|
inputs: ['padded'],
|
|
859
|
+
standalone: false
|
|
802
860
|
}]
|
|
803
|
-
}], ctorParameters:
|
|
861
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
804
862
|
let SixMenu = class SixMenu {
|
|
805
863
|
constructor(c, r, z) {
|
|
806
864
|
this.z = z;
|
|
@@ -808,8 +866,8 @@ let SixMenu = class SixMenu {
|
|
|
808
866
|
this.el = r.nativeElement;
|
|
809
867
|
proxyOutputs(this, this.el, ['six-menu-item-selected']);
|
|
810
868
|
}
|
|
811
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
812
|
-
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 }); }
|
|
813
871
|
};
|
|
814
872
|
SixMenu = __decorate([
|
|
815
873
|
ProxyCmp({
|
|
@@ -817,7 +875,7 @@ SixMenu = __decorate([
|
|
|
817
875
|
methods: ['typeToSelect']
|
|
818
876
|
})
|
|
819
877
|
], SixMenu);
|
|
820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
878
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenu, decorators: [{
|
|
821
879
|
type: Component,
|
|
822
880
|
args: [{
|
|
823
881
|
selector: 'six-menu',
|
|
@@ -825,21 +883,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
825
883
|
template: '<ng-content></ng-content>',
|
|
826
884
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
827
885
|
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
886
|
+
standalone: false
|
|
828
887
|
}]
|
|
829
|
-
}], ctorParameters:
|
|
888
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
830
889
|
let SixMenuDivider = class SixMenuDivider {
|
|
831
890
|
constructor(c, r, z) {
|
|
832
891
|
this.z = z;
|
|
833
892
|
c.detach();
|
|
834
893
|
this.el = r.nativeElement;
|
|
835
894
|
}
|
|
836
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
837
|
-
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 }); }
|
|
838
897
|
};
|
|
839
898
|
SixMenuDivider = __decorate([
|
|
840
899
|
ProxyCmp({})
|
|
841
900
|
], SixMenuDivider);
|
|
842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuDivider, decorators: [{
|
|
843
902
|
type: Component,
|
|
844
903
|
args: [{
|
|
845
904
|
selector: 'six-menu-divider',
|
|
@@ -847,16 +906,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
847
906
|
template: '<ng-content></ng-content>',
|
|
848
907
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
849
908
|
inputs: [],
|
|
909
|
+
standalone: false
|
|
850
910
|
}]
|
|
851
|
-
}], ctorParameters:
|
|
911
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
852
912
|
let SixMenuItem = class SixMenuItem {
|
|
853
913
|
constructor(c, r, z) {
|
|
854
914
|
this.z = z;
|
|
855
915
|
c.detach();
|
|
856
916
|
this.el = r.nativeElement;
|
|
857
917
|
}
|
|
858
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
859
|
-
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 }); }
|
|
860
920
|
};
|
|
861
921
|
SixMenuItem = __decorate([
|
|
862
922
|
ProxyCmp({
|
|
@@ -864,7 +924,7 @@ SixMenuItem = __decorate([
|
|
|
864
924
|
methods: ['setFocus', 'removeFocus', 'getTextLabel']
|
|
865
925
|
})
|
|
866
926
|
], SixMenuItem);
|
|
867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuItem, decorators: [{
|
|
868
928
|
type: Component,
|
|
869
929
|
args: [{
|
|
870
930
|
selector: 'six-menu-item',
|
|
@@ -872,21 +932,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
872
932
|
template: '<ng-content></ng-content>',
|
|
873
933
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
874
934
|
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
935
|
+
standalone: false
|
|
875
936
|
}]
|
|
876
|
-
}], ctorParameters:
|
|
937
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
877
938
|
let SixMenuLabel = class SixMenuLabel {
|
|
878
939
|
constructor(c, r, z) {
|
|
879
940
|
this.z = z;
|
|
880
941
|
c.detach();
|
|
881
942
|
this.el = r.nativeElement;
|
|
882
943
|
}
|
|
883
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
884
|
-
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 }); }
|
|
885
946
|
};
|
|
886
947
|
SixMenuLabel = __decorate([
|
|
887
948
|
ProxyCmp({})
|
|
888
949
|
], SixMenuLabel);
|
|
889
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixMenuLabel, decorators: [{
|
|
890
951
|
type: Component,
|
|
891
952
|
args: [{
|
|
892
953
|
selector: 'six-menu-label',
|
|
@@ -894,23 +955,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
894
955
|
template: '<ng-content></ng-content>',
|
|
895
956
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
896
957
|
inputs: [],
|
|
958
|
+
standalone: false
|
|
897
959
|
}]
|
|
898
|
-
}], ctorParameters:
|
|
960
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
899
961
|
let SixPicto = class SixPicto {
|
|
900
962
|
constructor(c, r, z) {
|
|
901
963
|
this.z = z;
|
|
902
964
|
c.detach();
|
|
903
965
|
this.el = r.nativeElement;
|
|
904
966
|
}
|
|
905
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
906
|
-
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 }); }
|
|
907
969
|
};
|
|
908
970
|
SixPicto = __decorate([
|
|
909
971
|
ProxyCmp({
|
|
910
972
|
inputs: ['size']
|
|
911
973
|
})
|
|
912
974
|
], SixPicto);
|
|
913
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixPicto, decorators: [{
|
|
914
976
|
type: Component,
|
|
915
977
|
args: [{
|
|
916
978
|
selector: 'six-picto',
|
|
@@ -918,23 +980,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
918
980
|
template: '<ng-content></ng-content>',
|
|
919
981
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
920
982
|
inputs: ['size'],
|
|
983
|
+
standalone: false
|
|
921
984
|
}]
|
|
922
|
-
}], ctorParameters:
|
|
985
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
923
986
|
let SixProgressBar = class SixProgressBar {
|
|
924
987
|
constructor(c, r, z) {
|
|
925
988
|
this.z = z;
|
|
926
989
|
c.detach();
|
|
927
990
|
this.el = r.nativeElement;
|
|
928
991
|
}
|
|
929
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
930
|
-
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 }); }
|
|
931
994
|
};
|
|
932
995
|
SixProgressBar = __decorate([
|
|
933
996
|
ProxyCmp({
|
|
934
997
|
inputs: ['indeterminate', 'percentage']
|
|
935
998
|
})
|
|
936
999
|
], SixProgressBar);
|
|
937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressBar, decorators: [{
|
|
938
1001
|
type: Component,
|
|
939
1002
|
args: [{
|
|
940
1003
|
selector: 'six-progress-bar',
|
|
@@ -942,23 +1005,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
942
1005
|
template: '<ng-content></ng-content>',
|
|
943
1006
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
944
1007
|
inputs: ['indeterminate', 'percentage'],
|
|
1008
|
+
standalone: false
|
|
945
1009
|
}]
|
|
946
|
-
}], ctorParameters:
|
|
1010
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
947
1011
|
let SixProgressRing = class SixProgressRing {
|
|
948
1012
|
constructor(c, r, z) {
|
|
949
1013
|
this.z = z;
|
|
950
1014
|
c.detach();
|
|
951
1015
|
this.el = r.nativeElement;
|
|
952
1016
|
}
|
|
953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
954
|
-
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 }); }
|
|
955
1019
|
};
|
|
956
1020
|
SixProgressRing = __decorate([
|
|
957
1021
|
ProxyCmp({
|
|
958
1022
|
inputs: ['percentage', 'size', 'strokeWidth']
|
|
959
1023
|
})
|
|
960
1024
|
], SixProgressRing);
|
|
961
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixProgressRing, decorators: [{
|
|
962
1026
|
type: Component,
|
|
963
1027
|
args: [{
|
|
964
1028
|
selector: 'six-progress-ring',
|
|
@@ -966,8 +1030,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
966
1030
|
template: '<ng-content></ng-content>',
|
|
967
1031
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
968
1032
|
inputs: ['percentage', 'size', 'strokeWidth'],
|
|
1033
|
+
standalone: false
|
|
969
1034
|
}]
|
|
970
|
-
}], ctorParameters:
|
|
1035
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
971
1036
|
let SixRadio = class SixRadio {
|
|
972
1037
|
constructor(c, r, z) {
|
|
973
1038
|
this.z = z;
|
|
@@ -975,8 +1040,8 @@ let SixRadio = class SixRadio {
|
|
|
975
1040
|
this.el = r.nativeElement;
|
|
976
1041
|
proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
|
|
977
1042
|
}
|
|
978
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
979
|
-
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 }); }
|
|
980
1045
|
};
|
|
981
1046
|
SixRadio = __decorate([
|
|
982
1047
|
ProxyCmp({
|
|
@@ -984,7 +1049,7 @@ SixRadio = __decorate([
|
|
|
984
1049
|
methods: ['setFocus', 'removeFocus']
|
|
985
1050
|
})
|
|
986
1051
|
], SixRadio);
|
|
987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRadio, decorators: [{
|
|
988
1053
|
type: Component,
|
|
989
1054
|
args: [{
|
|
990
1055
|
selector: 'six-radio',
|
|
@@ -992,8 +1057,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
992
1057
|
template: '<ng-content></ng-content>',
|
|
993
1058
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
994
1059
|
inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
|
|
1060
|
+
standalone: false
|
|
995
1061
|
}]
|
|
996
|
-
}], ctorParameters:
|
|
1062
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
997
1063
|
let SixRange = class SixRange {
|
|
998
1064
|
constructor(c, r, z) {
|
|
999
1065
|
this.z = z;
|
|
@@ -1001,8 +1067,8 @@ let SixRange = class SixRange {
|
|
|
1001
1067
|
this.el = r.nativeElement;
|
|
1002
1068
|
proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
|
|
1003
1069
|
}
|
|
1004
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1005
|
-
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 }); }
|
|
1006
1072
|
};
|
|
1007
1073
|
SixRange = __decorate([
|
|
1008
1074
|
ProxyCmp({
|
|
@@ -1010,7 +1076,7 @@ SixRange = __decorate([
|
|
|
1010
1076
|
methods: ['setFocus', 'removeFocus']
|
|
1011
1077
|
})
|
|
1012
1078
|
], SixRange);
|
|
1013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRange, decorators: [{
|
|
1014
1080
|
type: Component,
|
|
1015
1081
|
args: [{
|
|
1016
1082
|
selector: 'six-range',
|
|
@@ -1018,23 +1084,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1018
1084
|
template: '<ng-content></ng-content>',
|
|
1019
1085
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1020
1086
|
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
1087
|
+
standalone: false
|
|
1021
1088
|
}]
|
|
1022
|
-
}], ctorParameters:
|
|
1089
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1090
|
+
let SixRating = class SixRating {
|
|
1091
|
+
constructor(c, r, z) {
|
|
1092
|
+
this.z = z;
|
|
1093
|
+
c.detach();
|
|
1094
|
+
this.el = r.nativeElement;
|
|
1095
|
+
proxyOutputs(this, this.el, ['six-rating-blur', 'six-rating-change', 'six-rating-focus']);
|
|
1096
|
+
}
|
|
1097
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1098
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: SixRating, isStandalone: false, selector: "six-rating", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", name: "name", readonly: "readonly", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1099
|
+
};
|
|
1100
|
+
SixRating = __decorate([
|
|
1101
|
+
ProxyCmp({
|
|
1102
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value']
|
|
1103
|
+
})
|
|
1104
|
+
], SixRating);
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRating, decorators: [{
|
|
1106
|
+
type: Component,
|
|
1107
|
+
args: [{
|
|
1108
|
+
selector: 'six-rating',
|
|
1109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1110
|
+
template: '<ng-content></ng-content>',
|
|
1111
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1112
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value'],
|
|
1113
|
+
standalone: false
|
|
1114
|
+
}]
|
|
1115
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1023
1116
|
let SixRoot = class SixRoot {
|
|
1024
1117
|
constructor(c, r, z) {
|
|
1025
1118
|
this.z = z;
|
|
1026
1119
|
c.detach();
|
|
1027
1120
|
this.el = r.nativeElement;
|
|
1028
1121
|
}
|
|
1029
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1030
|
-
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: SixRoot, 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: 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 }); }
|
|
1031
1124
|
};
|
|
1032
1125
|
SixRoot = __decorate([
|
|
1033
1126
|
ProxyCmp({
|
|
1034
1127
|
inputs: ['padded', 'stage', 'version']
|
|
1035
1128
|
})
|
|
1036
1129
|
], SixRoot);
|
|
1037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRoot, decorators: [{
|
|
1038
1131
|
type: Component,
|
|
1039
1132
|
args: [{
|
|
1040
1133
|
selector: 'six-root',
|
|
@@ -1042,8 +1135,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1042
1135
|
template: '<ng-content></ng-content>',
|
|
1043
1136
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1044
1137
|
inputs: ['padded', 'stage', 'version'],
|
|
1138
|
+
standalone: false
|
|
1045
1139
|
}]
|
|
1046
|
-
}], ctorParameters:
|
|
1140
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1047
1141
|
let SixSearchField = class SixSearchField {
|
|
1048
1142
|
constructor(c, r, z) {
|
|
1049
1143
|
this.z = z;
|
|
@@ -1051,15 +1145,15 @@ let SixSearchField = class SixSearchField {
|
|
|
1051
1145
|
this.el = r.nativeElement;
|
|
1052
1146
|
proxyOutputs(this, this.el, ['six-search-field-change']);
|
|
1053
1147
|
}
|
|
1054
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1055
|
-
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: SixSearchField, 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: 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 }); }
|
|
1056
1150
|
};
|
|
1057
1151
|
SixSearchField = __decorate([
|
|
1058
1152
|
ProxyCmp({
|
|
1059
1153
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
|
|
1060
1154
|
})
|
|
1061
1155
|
], SixSearchField);
|
|
1062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSearchField, decorators: [{
|
|
1063
1157
|
type: Component,
|
|
1064
1158
|
args: [{
|
|
1065
1159
|
selector: 'six-search-field',
|
|
@@ -1067,8 +1161,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1067
1161
|
template: '<ng-content></ng-content>',
|
|
1068
1162
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1069
1163
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
|
|
1164
|
+
standalone: false
|
|
1070
1165
|
}]
|
|
1071
|
-
}], ctorParameters:
|
|
1166
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1072
1167
|
let SixSelect = class SixSelect {
|
|
1073
1168
|
constructor(c, r, z) {
|
|
1074
1169
|
this.z = z;
|
|
@@ -1076,25 +1171,26 @@ let SixSelect = class SixSelect {
|
|
|
1076
1171
|
this.el = r.nativeElement;
|
|
1077
1172
|
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
1078
1173
|
}
|
|
1079
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1080
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1174
|
+
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 }); }
|
|
1175
|
+
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 }); }
|
|
1081
1176
|
};
|
|
1082
1177
|
SixSelect = __decorate([
|
|
1083
1178
|
ProxyCmp({
|
|
1084
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1179
|
+
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'],
|
|
1085
1180
|
methods: ['setFocus']
|
|
1086
1181
|
})
|
|
1087
1182
|
], SixSelect);
|
|
1088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1183
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSelect, decorators: [{
|
|
1089
1184
|
type: Component,
|
|
1090
1185
|
args: [{
|
|
1091
1186
|
selector: 'six-select',
|
|
1092
1187
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1093
1188
|
template: '<ng-content></ng-content>',
|
|
1094
1189
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1095
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1190
|
+
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'],
|
|
1191
|
+
standalone: false
|
|
1096
1192
|
}]
|
|
1097
|
-
}], ctorParameters:
|
|
1193
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1098
1194
|
let SixSidebar = class SixSidebar {
|
|
1099
1195
|
constructor(c, r, z) {
|
|
1100
1196
|
this.z = z;
|
|
@@ -1102,8 +1198,8 @@ let SixSidebar = class SixSidebar {
|
|
|
1102
1198
|
this.el = r.nativeElement;
|
|
1103
1199
|
proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
|
|
1104
1200
|
}
|
|
1105
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1106
|
-
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: SixSidebar, 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: 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 }); }
|
|
1107
1203
|
};
|
|
1108
1204
|
SixSidebar = __decorate([
|
|
1109
1205
|
ProxyCmp({
|
|
@@ -1111,7 +1207,7 @@ SixSidebar = __decorate([
|
|
|
1111
1207
|
methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
|
|
1112
1208
|
})
|
|
1113
1209
|
], SixSidebar);
|
|
1114
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebar, decorators: [{
|
|
1115
1211
|
type: Component,
|
|
1116
1212
|
args: [{
|
|
1117
1213
|
selector: 'six-sidebar',
|
|
@@ -1119,47 +1215,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1119
1215
|
template: '<ng-content></ng-content>',
|
|
1120
1216
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1121
1217
|
inputs: ['open', 'position', 'toggled', 'width'],
|
|
1218
|
+
standalone: false
|
|
1122
1219
|
}]
|
|
1123
|
-
}], ctorParameters:
|
|
1220
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1124
1221
|
let SixSidebarItem = class SixSidebarItem {
|
|
1125
1222
|
constructor(c, r, z) {
|
|
1126
1223
|
this.z = z;
|
|
1127
1224
|
c.detach();
|
|
1128
1225
|
this.el = r.nativeElement;
|
|
1129
1226
|
}
|
|
1130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1131
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1227
|
+
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 }); }
|
|
1228
|
+
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 }); }
|
|
1132
1229
|
};
|
|
1133
1230
|
SixSidebarItem = __decorate([
|
|
1134
1231
|
ProxyCmp({
|
|
1135
|
-
inputs: ['disabled', 'href', 'selected', 'value']
|
|
1232
|
+
inputs: ['disabled', 'href', 'icon', 'selected', 'value']
|
|
1136
1233
|
})
|
|
1137
1234
|
], SixSidebarItem);
|
|
1138
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
1139
1236
|
type: Component,
|
|
1140
1237
|
args: [{
|
|
1141
1238
|
selector: 'six-sidebar-item',
|
|
1142
1239
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1143
1240
|
template: '<ng-content></ng-content>',
|
|
1144
1241
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1145
|
-
inputs: ['disabled', 'href', 'selected', 'value'],
|
|
1242
|
+
inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
|
|
1243
|
+
standalone: false
|
|
1146
1244
|
}]
|
|
1147
|
-
}], ctorParameters:
|
|
1245
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1148
1246
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
1149
1247
|
constructor(c, r, z) {
|
|
1150
1248
|
this.z = z;
|
|
1151
1249
|
c.detach();
|
|
1152
1250
|
this.el = r.nativeElement;
|
|
1153
1251
|
}
|
|
1154
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1155
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1252
|
+
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 }); }
|
|
1253
|
+
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 }); }
|
|
1156
1254
|
};
|
|
1157
1255
|
SixSidebarItemGroup = __decorate([
|
|
1158
1256
|
ProxyCmp({
|
|
1159
1257
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1160
1258
|
})
|
|
1161
1259
|
], SixSidebarItemGroup);
|
|
1162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
|
|
1163
1261
|
type: Component,
|
|
1164
1262
|
args: [{
|
|
1165
1263
|
selector: 'six-sidebar-item-group',
|
|
@@ -1167,23 +1265,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1167
1265
|
template: '<ng-content></ng-content>',
|
|
1168
1266
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1169
1267
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1268
|
+
standalone: false
|
|
1170
1269
|
}]
|
|
1171
|
-
}], ctorParameters:
|
|
1270
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1172
1271
|
let SixSpinner = class SixSpinner {
|
|
1173
1272
|
constructor(c, r, z) {
|
|
1174
1273
|
this.z = z;
|
|
1175
1274
|
c.detach();
|
|
1176
1275
|
this.el = r.nativeElement;
|
|
1177
1276
|
}
|
|
1178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1179
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1277
|
+
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 }); }
|
|
1278
|
+
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 }); }
|
|
1180
1279
|
};
|
|
1181
1280
|
SixSpinner = __decorate([
|
|
1182
1281
|
ProxyCmp({
|
|
1183
1282
|
inputs: ['logo', 'six']
|
|
1184
1283
|
})
|
|
1185
1284
|
], SixSpinner);
|
|
1186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSpinner, decorators: [{
|
|
1187
1286
|
type: Component,
|
|
1188
1287
|
args: [{
|
|
1189
1288
|
selector: 'six-spinner',
|
|
@@ -1191,23 +1290,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1191
1290
|
template: '<ng-content></ng-content>',
|
|
1192
1291
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1193
1292
|
inputs: ['logo', 'six'],
|
|
1293
|
+
standalone: false
|
|
1194
1294
|
}]
|
|
1195
|
-
}], ctorParameters:
|
|
1295
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1196
1296
|
let SixStageIndicator = class SixStageIndicator {
|
|
1197
1297
|
constructor(c, r, z) {
|
|
1198
1298
|
this.z = z;
|
|
1199
1299
|
c.detach();
|
|
1200
1300
|
this.el = r.nativeElement;
|
|
1201
1301
|
}
|
|
1202
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1203
|
-
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: SixStageIndicator, 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: SixStageIndicator, isStandalone: false, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1204
1304
|
};
|
|
1205
1305
|
SixStageIndicator = __decorate([
|
|
1206
1306
|
ProxyCmp({
|
|
1207
1307
|
inputs: ['stage']
|
|
1208
1308
|
})
|
|
1209
1309
|
], SixStageIndicator);
|
|
1210
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixStageIndicator, decorators: [{
|
|
1211
1311
|
type: Component,
|
|
1212
1312
|
args: [{
|
|
1213
1313
|
selector: 'six-stage-indicator',
|
|
@@ -1215,8 +1315,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1215
1315
|
template: '<ng-content></ng-content>',
|
|
1216
1316
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1217
1317
|
inputs: ['stage'],
|
|
1318
|
+
standalone: false
|
|
1218
1319
|
}]
|
|
1219
|
-
}], ctorParameters:
|
|
1320
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1220
1321
|
let SixSwitch = class SixSwitch {
|
|
1221
1322
|
constructor(c, r, z) {
|
|
1222
1323
|
this.z = z;
|
|
@@ -1224,8 +1325,8 @@ let SixSwitch = class SixSwitch {
|
|
|
1224
1325
|
this.el = r.nativeElement;
|
|
1225
1326
|
proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
|
|
1226
1327
|
}
|
|
1227
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1228
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1328
|
+
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 }); }
|
|
1329
|
+
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 }); }
|
|
1229
1330
|
};
|
|
1230
1331
|
SixSwitch = __decorate([
|
|
1231
1332
|
ProxyCmp({
|
|
@@ -1233,7 +1334,7 @@ SixSwitch = __decorate([
|
|
|
1233
1334
|
methods: ['setFocus', 'removeFocus']
|
|
1234
1335
|
})
|
|
1235
1336
|
], SixSwitch);
|
|
1236
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixSwitch, decorators: [{
|
|
1237
1338
|
type: Component,
|
|
1238
1339
|
args: [{
|
|
1239
1340
|
selector: 'six-switch',
|
|
@@ -1241,8 +1342,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1241
1342
|
template: '<ng-content></ng-content>',
|
|
1242
1343
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1243
1344
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1345
|
+
standalone: false
|
|
1244
1346
|
}]
|
|
1245
|
-
}], ctorParameters:
|
|
1347
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1246
1348
|
let SixTab = class SixTab {
|
|
1247
1349
|
constructor(c, r, z) {
|
|
1248
1350
|
this.z = z;
|
|
@@ -1250,8 +1352,8 @@ let SixTab = class SixTab {
|
|
|
1250
1352
|
this.el = r.nativeElement;
|
|
1251
1353
|
proxyOutputs(this, this.el, ['six-tab-close']);
|
|
1252
1354
|
}
|
|
1253
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1254
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1355
|
+
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 }); }
|
|
1356
|
+
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 }); }
|
|
1255
1357
|
};
|
|
1256
1358
|
SixTab = __decorate([
|
|
1257
1359
|
ProxyCmp({
|
|
@@ -1259,7 +1361,7 @@ SixTab = __decorate([
|
|
|
1259
1361
|
methods: ['setFocus', 'removeFocus']
|
|
1260
1362
|
})
|
|
1261
1363
|
], SixTab);
|
|
1262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTab, decorators: [{
|
|
1263
1365
|
type: Component,
|
|
1264
1366
|
args: [{
|
|
1265
1367
|
selector: 'six-tab',
|
|
@@ -1267,8 +1369,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1267
1369
|
template: '<ng-content></ng-content>',
|
|
1268
1370
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1269
1371
|
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1372
|
+
standalone: false
|
|
1270
1373
|
}]
|
|
1271
|
-
}], ctorParameters:
|
|
1374
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1272
1375
|
let SixTabGroup = class SixTabGroup {
|
|
1273
1376
|
constructor(c, r, z) {
|
|
1274
1377
|
this.z = z;
|
|
@@ -1276,8 +1379,8 @@ let SixTabGroup = class SixTabGroup {
|
|
|
1276
1379
|
this.el = r.nativeElement;
|
|
1277
1380
|
proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
|
|
1278
1381
|
}
|
|
1279
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1280
|
-
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: SixTabGroup, 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: 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 }); }
|
|
1281
1384
|
};
|
|
1282
1385
|
SixTabGroup = __decorate([
|
|
1283
1386
|
ProxyCmp({
|
|
@@ -1285,7 +1388,7 @@ SixTabGroup = __decorate([
|
|
|
1285
1388
|
methods: ['show']
|
|
1286
1389
|
})
|
|
1287
1390
|
], SixTabGroup);
|
|
1288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabGroup, decorators: [{
|
|
1289
1392
|
type: Component,
|
|
1290
1393
|
args: [{
|
|
1291
1394
|
selector: 'six-tab-group',
|
|
@@ -1293,23 +1396,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1293
1396
|
template: '<ng-content></ng-content>',
|
|
1294
1397
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1295
1398
|
inputs: ['noScrollControls', 'placement'],
|
|
1399
|
+
standalone: false
|
|
1296
1400
|
}]
|
|
1297
|
-
}], ctorParameters:
|
|
1401
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1298
1402
|
let SixTabPanel = class SixTabPanel {
|
|
1299
1403
|
constructor(c, r, z) {
|
|
1300
1404
|
this.z = z;
|
|
1301
1405
|
c.detach();
|
|
1302
1406
|
this.el = r.nativeElement;
|
|
1303
1407
|
}
|
|
1304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1305
|
-
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: SixTabPanel, 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: 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 }); }
|
|
1306
1410
|
};
|
|
1307
1411
|
SixTabPanel = __decorate([
|
|
1308
1412
|
ProxyCmp({
|
|
1309
1413
|
inputs: ['active', 'name']
|
|
1310
1414
|
})
|
|
1311
1415
|
], SixTabPanel);
|
|
1312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTabPanel, decorators: [{
|
|
1313
1417
|
type: Component,
|
|
1314
1418
|
args: [{
|
|
1315
1419
|
selector: 'six-tab-panel',
|
|
@@ -1317,8 +1421,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1317
1421
|
template: '<ng-content></ng-content>',
|
|
1318
1422
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1319
1423
|
inputs: ['active', 'name'],
|
|
1424
|
+
standalone: false
|
|
1320
1425
|
}]
|
|
1321
|
-
}], ctorParameters:
|
|
1426
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1322
1427
|
let SixTag = class SixTag {
|
|
1323
1428
|
constructor(c, r, z) {
|
|
1324
1429
|
this.z = z;
|
|
@@ -1326,15 +1431,15 @@ let SixTag = class SixTag {
|
|
|
1326
1431
|
this.el = r.nativeElement;
|
|
1327
1432
|
proxyOutputs(this, this.el, ['six-tag-clear']);
|
|
1328
1433
|
}
|
|
1329
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1330
|
-
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: SixTag, 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: 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 }); }
|
|
1331
1436
|
};
|
|
1332
1437
|
SixTag = __decorate([
|
|
1333
1438
|
ProxyCmp({
|
|
1334
1439
|
inputs: ['clearable', 'pill', 'size', 'type']
|
|
1335
1440
|
})
|
|
1336
1441
|
], SixTag);
|
|
1337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTag, decorators: [{
|
|
1338
1443
|
type: Component,
|
|
1339
1444
|
args: [{
|
|
1340
1445
|
selector: 'six-tag',
|
|
@@ -1342,8 +1447,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1342
1447
|
template: '<ng-content></ng-content>',
|
|
1343
1448
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1344
1449
|
inputs: ['clearable', 'pill', 'size', 'type'],
|
|
1450
|
+
standalone: false
|
|
1345
1451
|
}]
|
|
1346
|
-
}], ctorParameters:
|
|
1452
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1347
1453
|
let SixTextarea = class SixTextarea {
|
|
1348
1454
|
constructor(c, r, z) {
|
|
1349
1455
|
this.z = z;
|
|
@@ -1351,8 +1457,8 @@ let SixTextarea = class SixTextarea {
|
|
|
1351
1457
|
this.el = r.nativeElement;
|
|
1352
1458
|
proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
|
|
1353
1459
|
}
|
|
1354
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1355
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1460
|
+
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 }); }
|
|
1461
|
+
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 }); }
|
|
1356
1462
|
};
|
|
1357
1463
|
SixTextarea = __decorate([
|
|
1358
1464
|
ProxyCmp({
|
|
@@ -1360,7 +1466,7 @@ SixTextarea = __decorate([
|
|
|
1360
1466
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
1361
1467
|
})
|
|
1362
1468
|
], SixTextarea);
|
|
1363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTextarea, decorators: [{
|
|
1364
1470
|
type: Component,
|
|
1365
1471
|
args: [{
|
|
1366
1472
|
selector: 'six-textarea',
|
|
@@ -1368,8 +1474,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1368
1474
|
template: '<ng-content></ng-content>',
|
|
1369
1475
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1370
1476
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1477
|
+
standalone: false
|
|
1371
1478
|
}]
|
|
1372
|
-
}], ctorParameters:
|
|
1479
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1373
1480
|
let SixTile = class SixTile {
|
|
1374
1481
|
constructor(c, r, z) {
|
|
1375
1482
|
this.z = z;
|
|
@@ -1377,8 +1484,8 @@ let SixTile = class SixTile {
|
|
|
1377
1484
|
this.el = r.nativeElement;
|
|
1378
1485
|
proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
|
|
1379
1486
|
}
|
|
1380
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1381
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1487
|
+
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 }); }
|
|
1488
|
+
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 }); }
|
|
1382
1489
|
};
|
|
1383
1490
|
SixTile = __decorate([
|
|
1384
1491
|
ProxyCmp({
|
|
@@ -1386,7 +1493,7 @@ SixTile = __decorate([
|
|
|
1386
1493
|
methods: ['hide', 'show']
|
|
1387
1494
|
})
|
|
1388
1495
|
], SixTile);
|
|
1389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTile, decorators: [{
|
|
1390
1497
|
type: Component,
|
|
1391
1498
|
args: [{
|
|
1392
1499
|
selector: 'six-tile',
|
|
@@ -1394,8 +1501,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1394
1501
|
template: '<ng-content></ng-content>',
|
|
1395
1502
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1396
1503
|
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1504
|
+
standalone: false
|
|
1397
1505
|
}]
|
|
1398
|
-
}], ctorParameters:
|
|
1506
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1399
1507
|
let SixTimepicker = class SixTimepicker {
|
|
1400
1508
|
constructor(c, r, z) {
|
|
1401
1509
|
this.z = z;
|
|
@@ -1403,8 +1511,8 @@ let SixTimepicker = class SixTimepicker {
|
|
|
1403
1511
|
this.el = r.nativeElement;
|
|
1404
1512
|
proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
|
|
1405
1513
|
}
|
|
1406
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1407
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1514
|
+
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 }); }
|
|
1515
|
+
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 }); }
|
|
1408
1516
|
};
|
|
1409
1517
|
SixTimepicker = __decorate([
|
|
1410
1518
|
ProxyCmp({
|
|
@@ -1412,7 +1520,7 @@ SixTimepicker = __decorate([
|
|
|
1412
1520
|
methods: ['setFocus']
|
|
1413
1521
|
})
|
|
1414
1522
|
], SixTimepicker);
|
|
1415
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTimepicker, decorators: [{
|
|
1416
1524
|
type: Component,
|
|
1417
1525
|
args: [{
|
|
1418
1526
|
selector: 'six-timepicker',
|
|
@@ -1420,8 +1528,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1420
1528
|
template: '<ng-content></ng-content>',
|
|
1421
1529
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1422
1530
|
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1531
|
+
standalone: false
|
|
1423
1532
|
}]
|
|
1424
|
-
}], ctorParameters:
|
|
1533
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1425
1534
|
let SixTooltip = class SixTooltip {
|
|
1426
1535
|
constructor(c, r, z) {
|
|
1427
1536
|
this.z = z;
|
|
@@ -1429,8 +1538,8 @@ let SixTooltip = class SixTooltip {
|
|
|
1429
1538
|
this.el = r.nativeElement;
|
|
1430
1539
|
proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
|
|
1431
1540
|
}
|
|
1432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1433
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1541
|
+
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 }); }
|
|
1542
|
+
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 }); }
|
|
1434
1543
|
};
|
|
1435
1544
|
SixTooltip = __decorate([
|
|
1436
1545
|
ProxyCmp({
|
|
@@ -1438,7 +1547,7 @@ SixTooltip = __decorate([
|
|
|
1438
1547
|
methods: ['show', 'hide']
|
|
1439
1548
|
})
|
|
1440
1549
|
], SixTooltip);
|
|
1441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixTooltip, decorators: [{
|
|
1442
1551
|
type: Component,
|
|
1443
1552
|
args: [{
|
|
1444
1553
|
selector: 'six-tooltip',
|
|
@@ -1446,8 +1555,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1446
1555
|
template: '<ng-content></ng-content>',
|
|
1447
1556
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1448
1557
|
inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
|
|
1558
|
+
standalone: false
|
|
1449
1559
|
}]
|
|
1450
|
-
}], ctorParameters:
|
|
1560
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1451
1561
|
|
|
1452
1562
|
const DIRECTIVES = [
|
|
1453
1563
|
SixAlert,
|
|
@@ -1456,6 +1566,7 @@ const DIRECTIVES = [
|
|
|
1456
1566
|
SixButton,
|
|
1457
1567
|
SixCard,
|
|
1458
1568
|
SixCheckbox,
|
|
1569
|
+
SixDate,
|
|
1459
1570
|
SixDatepicker,
|
|
1460
1571
|
SixDetails,
|
|
1461
1572
|
SixDialog,
|
|
@@ -1489,6 +1600,7 @@ const DIRECTIVES = [
|
|
|
1489
1600
|
SixProgressRing,
|
|
1490
1601
|
SixRadio,
|
|
1491
1602
|
SixRange,
|
|
1603
|
+
SixRating,
|
|
1492
1604
|
SixRoot,
|
|
1493
1605
|
SixSearchField,
|
|
1494
1606
|
SixSelect,
|
|
@@ -1512,19 +1624,25 @@ class ValidationMessagesService {
|
|
|
1512
1624
|
getErrorMessage(language, error) {
|
|
1513
1625
|
return getErrorMessage(language, error);
|
|
1514
1626
|
}
|
|
1515
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1516
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1627
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1628
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' }); }
|
|
1517
1629
|
}
|
|
1518
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1630
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1519
1631
|
type: Injectable,
|
|
1520
1632
|
args: [{ providedIn: 'root' }]
|
|
1521
1633
|
}] });
|
|
1522
1634
|
|
|
1635
|
+
const DEFAULT_UI_LIBRARY_CONFIG = {
|
|
1636
|
+
showAsteriskOnRequiredValidator: false,
|
|
1637
|
+
};
|
|
1638
|
+
const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
|
|
1639
|
+
|
|
1523
1640
|
class ValueAccessor {
|
|
1524
1641
|
constructor(injector, el) {
|
|
1525
1642
|
this.injector = injector;
|
|
1526
1643
|
this.el = el;
|
|
1527
1644
|
this.validationMessagesService = inject(ValidationMessagesService);
|
|
1645
|
+
this.config = inject(UI_LIBRARY_CONFIG);
|
|
1528
1646
|
this.onChange = () => { };
|
|
1529
1647
|
this.onTouched = () => { };
|
|
1530
1648
|
}
|
|
@@ -1576,6 +1694,10 @@ class ValueAccessor {
|
|
|
1576
1694
|
}
|
|
1577
1695
|
element.invalid = invalid;
|
|
1578
1696
|
element.errorText = errorTexts ?? '';
|
|
1697
|
+
// When the module is configured to do so, display an asterisk next to any form control that has a required validator
|
|
1698
|
+
if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
|
|
1699
|
+
element.required = true;
|
|
1700
|
+
}
|
|
1579
1701
|
});
|
|
1580
1702
|
}
|
|
1581
1703
|
setDisabledState(isDisabled) {
|
|
@@ -1634,12 +1756,12 @@ class ValueAccessor {
|
|
|
1634
1756
|
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1635
1757
|
});
|
|
1636
1758
|
}
|
|
1637
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1638
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1759
|
+
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 }); }
|
|
1760
|
+
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 }); }
|
|
1639
1761
|
}
|
|
1640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1641
1763
|
type: Directive
|
|
1642
|
-
}], ctorParameters:
|
|
1764
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
1643
1765
|
type: HostListener,
|
|
1644
1766
|
args: ['blur', ['$event.target']]
|
|
1645
1767
|
}] } });
|
|
@@ -1660,8 +1782,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1660
1782
|
handleInputEvent(el) {
|
|
1661
1783
|
this.handleValueChange(el, el.value);
|
|
1662
1784
|
}
|
|
1663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1664
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1785
|
+
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 }); }
|
|
1786
|
+
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: [
|
|
1665
1787
|
{
|
|
1666
1788
|
provide: NG_VALUE_ACCESSOR,
|
|
1667
1789
|
useExisting: TextValueAccessor,
|
|
@@ -1669,7 +1791,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1669
1791
|
},
|
|
1670
1792
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1671
1793
|
}
|
|
1672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1673
1795
|
type: Directive,
|
|
1674
1796
|
args: [{
|
|
1675
1797
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1680,8 +1802,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1680
1802
|
multi: true,
|
|
1681
1803
|
},
|
|
1682
1804
|
],
|
|
1805
|
+
standalone: false,
|
|
1683
1806
|
}]
|
|
1684
|
-
}], ctorParameters:
|
|
1807
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1685
1808
|
type: HostListener,
|
|
1686
1809
|
args: ['input', ['$event.target']]
|
|
1687
1810
|
}] } });
|
|
@@ -1698,8 +1821,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1698
1821
|
fn(value === '' ? null : parseFloat(value));
|
|
1699
1822
|
});
|
|
1700
1823
|
}
|
|
1701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1702
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1824
|
+
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 }); }
|
|
1825
|
+
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: [
|
|
1703
1826
|
{
|
|
1704
1827
|
provide: NG_VALUE_ACCESSOR,
|
|
1705
1828
|
useExisting: NumericValueAccessor,
|
|
@@ -1707,7 +1830,7 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1707
1830
|
},
|
|
1708
1831
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1709
1832
|
}
|
|
1710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1711
1834
|
type: Directive,
|
|
1712
1835
|
args: [{
|
|
1713
1836
|
selector: 'six-input[type=number]',
|
|
@@ -1718,8 +1841,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1718
1841
|
multi: true,
|
|
1719
1842
|
},
|
|
1720
1843
|
],
|
|
1844
|
+
standalone: false,
|
|
1721
1845
|
}]
|
|
1722
|
-
}], ctorParameters:
|
|
1846
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1723
1847
|
type: HostListener,
|
|
1724
1848
|
args: ['input', ['$event.target']]
|
|
1725
1849
|
}] } });
|
|
@@ -1750,8 +1874,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1750
1874
|
this.el.nativeElement.name = this.formControlName;
|
|
1751
1875
|
}
|
|
1752
1876
|
}
|
|
1753
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1754
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1877
|
+
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 }); }
|
|
1878
|
+
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: [
|
|
1755
1879
|
{
|
|
1756
1880
|
provide: NG_VALUE_ACCESSOR,
|
|
1757
1881
|
useExisting: RadioValueAccessor,
|
|
@@ -1759,7 +1883,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1759
1883
|
},
|
|
1760
1884
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1761
1885
|
}
|
|
1762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1763
1887
|
type: Directive,
|
|
1764
1888
|
args: [{
|
|
1765
1889
|
selector: 'six-radio',
|
|
@@ -1770,8 +1894,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1770
1894
|
multi: true,
|
|
1771
1895
|
},
|
|
1772
1896
|
],
|
|
1897
|
+
standalone: false,
|
|
1773
1898
|
}]
|
|
1774
|
-
}], ctorParameters:
|
|
1899
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
1775
1900
|
type: Input
|
|
1776
1901
|
}], formControlName: [{
|
|
1777
1902
|
type: Input
|
|
@@ -1789,8 +1914,8 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1789
1914
|
handleChangeEvent(el) {
|
|
1790
1915
|
this.handleValueChange(el, el.value);
|
|
1791
1916
|
}
|
|
1792
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1793
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1917
|
+
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 }); }
|
|
1918
|
+
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: [
|
|
1794
1919
|
{
|
|
1795
1920
|
provide: NG_VALUE_ACCESSOR,
|
|
1796
1921
|
useExisting: DatepickerValueAccessor,
|
|
@@ -1798,7 +1923,7 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1798
1923
|
},
|
|
1799
1924
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1800
1925
|
}
|
|
1801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1926
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1802
1927
|
type: Directive,
|
|
1803
1928
|
args: [{
|
|
1804
1929
|
selector: 'six-datepicker',
|
|
@@ -1809,8 +1934,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1809
1934
|
multi: true,
|
|
1810
1935
|
},
|
|
1811
1936
|
],
|
|
1937
|
+
standalone: false,
|
|
1812
1938
|
}]
|
|
1813
|
-
}], ctorParameters:
|
|
1939
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
1814
1940
|
type: HostListener,
|
|
1815
1941
|
args: ['change', ['$event.target']]
|
|
1816
1942
|
}] } });
|
|
@@ -1851,15 +1977,16 @@ class SixFormDirective {
|
|
|
1851
1977
|
*/
|
|
1852
1978
|
this.sixSubmit = new EventEmitter();
|
|
1853
1979
|
}
|
|
1854
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1855
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1980
|
+
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 }); }
|
|
1981
|
+
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 }); }
|
|
1856
1982
|
}
|
|
1857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1858
1984
|
type: Directive,
|
|
1859
1985
|
args: [{
|
|
1860
1986
|
selector: 'form[sixForm]',
|
|
1987
|
+
standalone: false,
|
|
1861
1988
|
}]
|
|
1862
|
-
}], ctorParameters:
|
|
1989
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
|
|
1863
1990
|
type: Output
|
|
1864
1991
|
}], onNgSubmit: [{
|
|
1865
1992
|
type: HostListener,
|
|
@@ -1902,15 +2029,16 @@ class SixFormUtilDirective {
|
|
|
1902
2029
|
focusInvalidField() {
|
|
1903
2030
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1904
2031
|
}
|
|
1905
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1906
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2032
|
+
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 }); }
|
|
2033
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 }); }
|
|
1907
2034
|
}
|
|
1908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1909
2036
|
type: Directive,
|
|
1910
2037
|
args: [{
|
|
1911
2038
|
selector: '[sixFormUtil]',
|
|
2039
|
+
standalone: false,
|
|
1912
2040
|
}]
|
|
1913
|
-
}], ctorParameters:
|
|
2041
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
|
|
1914
2042
|
function focusInvalidField(formGroupDirective, formElement) {
|
|
1915
2043
|
formGroupDirective.form.markAllAsTouched();
|
|
1916
2044
|
markAllAsDirty([formGroupDirective.form]);
|
|
@@ -1970,6 +2098,30 @@ class SixUiLibraryValidators {
|
|
|
1970
2098
|
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
1971
2099
|
};
|
|
1972
2100
|
}
|
|
2101
|
+
static minDateIso(mindate) {
|
|
2102
|
+
return (control) => {
|
|
2103
|
+
if (control.value == null || control.value === '')
|
|
2104
|
+
return null;
|
|
2105
|
+
const actualDate = control.value;
|
|
2106
|
+
return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
|
|
2107
|
+
};
|
|
2108
|
+
}
|
|
2109
|
+
static maxDateIso(maxdate) {
|
|
2110
|
+
return (control) => {
|
|
2111
|
+
if (control.value == null || control.value === '')
|
|
2112
|
+
return null;
|
|
2113
|
+
const actualDate = control.value;
|
|
2114
|
+
return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
|
|
2115
|
+
};
|
|
2116
|
+
}
|
|
2117
|
+
static allowedDatesIso(allowedDates = () => true) {
|
|
2118
|
+
return (control) => {
|
|
2119
|
+
if (control.value == null || control.value === '')
|
|
2120
|
+
return null;
|
|
2121
|
+
const allowed = allowedDates(control.value);
|
|
2122
|
+
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
2123
|
+
};
|
|
2124
|
+
}
|
|
1973
2125
|
}
|
|
1974
2126
|
class MinDateValidator {
|
|
1975
2127
|
validate(control) {
|
|
@@ -1978,14 +2130,15 @@ class MinDateValidator {
|
|
|
1978
2130
|
}
|
|
1979
2131
|
return null;
|
|
1980
2132
|
}
|
|
1981
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1982
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2134
|
+
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 }); }
|
|
1983
2135
|
}
|
|
1984
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1985
2137
|
type: Directive,
|
|
1986
2138
|
args: [{
|
|
1987
2139
|
selector: 'six-datepicker[min]',
|
|
1988
2140
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
2141
|
+
standalone: false,
|
|
1989
2142
|
}]
|
|
1990
2143
|
}], propDecorators: { min: [{
|
|
1991
2144
|
type: Input
|
|
@@ -1997,14 +2150,15 @@ class MaxDateValidator {
|
|
|
1997
2150
|
}
|
|
1998
2151
|
return null;
|
|
1999
2152
|
}
|
|
2000
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2001
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2153
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2154
|
+
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 }); }
|
|
2002
2155
|
}
|
|
2003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
2004
2157
|
type: Directive,
|
|
2005
2158
|
args: [{
|
|
2006
2159
|
selector: 'six-datepicker[max]',
|
|
2007
2160
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
2161
|
+
standalone: false,
|
|
2008
2162
|
}]
|
|
2009
2163
|
}], propDecorators: { max: [{
|
|
2010
2164
|
type: Input
|
|
@@ -2016,14 +2170,75 @@ class AllowedDatesValidator {
|
|
|
2016
2170
|
validate(control) {
|
|
2017
2171
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
2018
2172
|
}
|
|
2019
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2020
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2174
|
+
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 }); }
|
|
2021
2175
|
}
|
|
2022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
2023
2177
|
type: Directive,
|
|
2024
2178
|
args: [{
|
|
2025
2179
|
selector: 'six-datepicker[allowedDates]',
|
|
2026
2180
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
|
|
2181
|
+
standalone: false,
|
|
2182
|
+
}]
|
|
2183
|
+
}], propDecorators: { allowedDates: [{
|
|
2184
|
+
type: Input
|
|
2185
|
+
}] } });
|
|
2186
|
+
class MinDateValidatorIso {
|
|
2187
|
+
validate(control) {
|
|
2188
|
+
if (this.min != null) {
|
|
2189
|
+
return SixUiLibraryValidators.minDateIso(this.min)(control);
|
|
2190
|
+
}
|
|
2191
|
+
return null;
|
|
2192
|
+
}
|
|
2193
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2194
|
+
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 }); }
|
|
2195
|
+
}
|
|
2196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2197
|
+
type: Directive,
|
|
2198
|
+
args: [{
|
|
2199
|
+
selector: 'six-date[min]',
|
|
2200
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2201
|
+
standalone: false,
|
|
2202
|
+
}]
|
|
2203
|
+
}], propDecorators: { min: [{
|
|
2204
|
+
type: Input
|
|
2205
|
+
}] } });
|
|
2206
|
+
class MaxDateValidatorIso {
|
|
2207
|
+
validate(control) {
|
|
2208
|
+
if (this.max != null) {
|
|
2209
|
+
return SixUiLibraryValidators.maxDateIso(this.max)(control);
|
|
2210
|
+
}
|
|
2211
|
+
return null;
|
|
2212
|
+
}
|
|
2213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2214
|
+
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 }); }
|
|
2215
|
+
}
|
|
2216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2217
|
+
type: Directive,
|
|
2218
|
+
args: [{
|
|
2219
|
+
selector: 'six-date[max]',
|
|
2220
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2221
|
+
standalone: false,
|
|
2222
|
+
}]
|
|
2223
|
+
}], propDecorators: { max: [{
|
|
2224
|
+
type: Input
|
|
2225
|
+
}] } });
|
|
2226
|
+
class AllowedDatesValidatorIso {
|
|
2227
|
+
constructor() {
|
|
2228
|
+
this.allowedDates = () => true;
|
|
2229
|
+
}
|
|
2230
|
+
validate(control) {
|
|
2231
|
+
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2232
|
+
}
|
|
2233
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2234
|
+
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 }); }
|
|
2235
|
+
}
|
|
2236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2237
|
+
type: Directive,
|
|
2238
|
+
args: [{
|
|
2239
|
+
selector: 'six-date[allowedDates]',
|
|
2240
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2241
|
+
standalone: false,
|
|
2027
2242
|
}]
|
|
2028
2243
|
}], propDecorators: { allowedDates: [{
|
|
2029
2244
|
type: Input
|
|
@@ -2032,14 +2247,15 @@ class MinValidator {
|
|
|
2032
2247
|
validate(control) {
|
|
2033
2248
|
return Validators.min(toFloat(this.min))(control);
|
|
2034
2249
|
}
|
|
2035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2036
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2250
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2251
|
+
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 }); }
|
|
2037
2252
|
}
|
|
2038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, decorators: [{
|
|
2039
2254
|
type: Directive,
|
|
2040
2255
|
args: [{
|
|
2041
2256
|
selector: 'six-input[type=number][min]',
|
|
2042
2257
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
|
|
2258
|
+
standalone: false,
|
|
2043
2259
|
}]
|
|
2044
2260
|
}], propDecorators: { min: [{
|
|
2045
2261
|
type: Input
|
|
@@ -2048,14 +2264,15 @@ class MaxValidator {
|
|
|
2048
2264
|
validate(control) {
|
|
2049
2265
|
return Validators.max(toFloat(this.max))(control);
|
|
2050
2266
|
}
|
|
2051
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2052
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2267
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2268
|
+
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 }); }
|
|
2053
2269
|
}
|
|
2054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, decorators: [{
|
|
2055
2271
|
type: Directive,
|
|
2056
2272
|
args: [{
|
|
2057
2273
|
selector: 'six-input[type=number][max]',
|
|
2058
2274
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
|
|
2275
|
+
standalone: false,
|
|
2059
2276
|
}]
|
|
2060
2277
|
}], propDecorators: { max: [{
|
|
2061
2278
|
type: Input
|
|
@@ -2071,8 +2288,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
2071
2288
|
handleChangeEvent(el) {
|
|
2072
2289
|
this.handleValueChange(el, el.value);
|
|
2073
2290
|
}
|
|
2074
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2075
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2291
|
+
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 }); }
|
|
2292
|
+
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: [
|
|
2076
2293
|
{
|
|
2077
2294
|
provide: NG_VALUE_ACCESSOR,
|
|
2078
2295
|
useExisting: SelectValueAccessor,
|
|
@@ -2080,7 +2297,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
2080
2297
|
},
|
|
2081
2298
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2082
2299
|
}
|
|
2083
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2084
2301
|
type: Directive,
|
|
2085
2302
|
args: [{
|
|
2086
2303
|
selector: 'six-select',
|
|
@@ -2091,8 +2308,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2091
2308
|
multi: true,
|
|
2092
2309
|
},
|
|
2093
2310
|
],
|
|
2311
|
+
standalone: false,
|
|
2094
2312
|
}]
|
|
2095
|
-
}], ctorParameters:
|
|
2313
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2096
2314
|
type: HostListener,
|
|
2097
2315
|
args: ['change', ['$event.target']]
|
|
2098
2316
|
}] } });
|
|
@@ -2108,8 +2326,8 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2108
2326
|
this.el.nativeElement.checked = value === true;
|
|
2109
2327
|
this.updateValidation();
|
|
2110
2328
|
}
|
|
2111
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2112
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2329
|
+
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 }); }
|
|
2330
|
+
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: [
|
|
2113
2331
|
{
|
|
2114
2332
|
provide: NG_VALUE_ACCESSOR,
|
|
2115
2333
|
useExisting: CheckboxValueAccessor,
|
|
@@ -2117,7 +2335,7 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2117
2335
|
},
|
|
2118
2336
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2119
2337
|
}
|
|
2120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2121
2339
|
type: Directive,
|
|
2122
2340
|
args: [{
|
|
2123
2341
|
selector: 'six-checkbox',
|
|
@@ -2128,8 +2346,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2128
2346
|
multi: true,
|
|
2129
2347
|
},
|
|
2130
2348
|
],
|
|
2349
|
+
standalone: false,
|
|
2131
2350
|
}]
|
|
2132
|
-
}], ctorParameters:
|
|
2351
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2133
2352
|
type: HostListener,
|
|
2134
2353
|
args: ['change', ['$event.target']]
|
|
2135
2354
|
}] } });
|
|
@@ -2146,8 +2365,8 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2146
2365
|
fn(value === '' ? null : parseFloat(value));
|
|
2147
2366
|
});
|
|
2148
2367
|
}
|
|
2149
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2150
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2368
|
+
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 }); }
|
|
2369
|
+
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: [
|
|
2151
2370
|
{
|
|
2152
2371
|
provide: NG_VALUE_ACCESSOR,
|
|
2153
2372
|
useExisting: RangeValueAccessor,
|
|
@@ -2155,7 +2374,7 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2155
2374
|
},
|
|
2156
2375
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2157
2376
|
}
|
|
2158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2159
2378
|
type: Directive,
|
|
2160
2379
|
args: [{
|
|
2161
2380
|
selector: 'six-range',
|
|
@@ -2166,8 +2385,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2166
2385
|
multi: true,
|
|
2167
2386
|
},
|
|
2168
2387
|
],
|
|
2388
|
+
standalone: false,
|
|
2169
2389
|
}]
|
|
2170
|
-
}], ctorParameters:
|
|
2390
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2171
2391
|
type: HostListener,
|
|
2172
2392
|
args: ['input', ['$event.target']]
|
|
2173
2393
|
}] } });
|
|
@@ -2183,8 +2403,8 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2183
2403
|
this.el.nativeElement.checked = value === true;
|
|
2184
2404
|
this.updateValidation();
|
|
2185
2405
|
}
|
|
2186
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2187
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2406
|
+
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 }); }
|
|
2407
|
+
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: [
|
|
2188
2408
|
{
|
|
2189
2409
|
provide: NG_VALUE_ACCESSOR,
|
|
2190
2410
|
useExisting: SwitchValueAccessor,
|
|
@@ -2192,7 +2412,7 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2192
2412
|
},
|
|
2193
2413
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2194
2414
|
}
|
|
2195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2196
2416
|
type: Directive,
|
|
2197
2417
|
args: [{
|
|
2198
2418
|
selector: 'six-switch',
|
|
@@ -2203,8 +2423,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2203
2423
|
multi: true,
|
|
2204
2424
|
},
|
|
2205
2425
|
],
|
|
2426
|
+
standalone: false,
|
|
2206
2427
|
}]
|
|
2207
|
-
}], ctorParameters:
|
|
2428
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2208
2429
|
type: HostListener,
|
|
2209
2430
|
args: ['change', ['$event.target']]
|
|
2210
2431
|
}] } });
|
|
@@ -2216,8 +2437,8 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2216
2437
|
handleChangeEvent(el) {
|
|
2217
2438
|
this.handleValueChange(el, el.value);
|
|
2218
2439
|
}
|
|
2219
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2220
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2440
|
+
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 }); }
|
|
2441
|
+
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: [
|
|
2221
2442
|
{
|
|
2222
2443
|
provide: NG_VALUE_ACCESSOR,
|
|
2223
2444
|
useExisting: TimepickerValueAccessor,
|
|
@@ -2225,7 +2446,7 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2225
2446
|
},
|
|
2226
2447
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2227
2448
|
}
|
|
2228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2229
2450
|
type: Directive,
|
|
2230
2451
|
args: [{
|
|
2231
2452
|
selector: 'six-timepicker',
|
|
@@ -2236,8 +2457,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2236
2457
|
multi: true,
|
|
2237
2458
|
},
|
|
2238
2459
|
],
|
|
2460
|
+
standalone: false,
|
|
2239
2461
|
}]
|
|
2240
|
-
}], ctorParameters:
|
|
2462
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2241
2463
|
type: HostListener,
|
|
2242
2464
|
args: ['change', ['$event.target']]
|
|
2243
2465
|
}] } });
|
|
@@ -2274,17 +2496,18 @@ class SixRouterLinkDirective {
|
|
|
2274
2496
|
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2275
2497
|
}
|
|
2276
2498
|
}
|
|
2277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2278
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2499
|
+
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 }); }
|
|
2500
|
+
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 }); }
|
|
2279
2501
|
}
|
|
2280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2281
2503
|
type: Directive,
|
|
2282
2504
|
args: [{
|
|
2283
2505
|
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
2506
|
+
standalone: false,
|
|
2284
2507
|
}]
|
|
2285
|
-
}], ctorParameters:
|
|
2508
|
+
}], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2286
2509
|
type: Optional
|
|
2287
|
-
}] }]
|
|
2510
|
+
}] }], propDecorators: { onClick: [{
|
|
2288
2511
|
type: HostListener,
|
|
2289
2512
|
args: ['click', ['$event']]
|
|
2290
2513
|
}], routerLink: [{
|
|
@@ -2299,8 +2522,158 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2299
2522
|
type: Input
|
|
2300
2523
|
}] } });
|
|
2301
2524
|
|
|
2525
|
+
/**
|
|
2526
|
+
* Enables Angular router integration for the six-sidebar component.
|
|
2527
|
+
*
|
|
2528
|
+
* When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
|
|
2529
|
+
* it activates automatic route-based selection for sidebar items and groups.
|
|
2530
|
+
*
|
|
2531
|
+
* @recommended Add this directive to enable automatic route-based navigation in sidebars.
|
|
2532
|
+
*
|
|
2533
|
+
* @example
|
|
2534
|
+
* ```html
|
|
2535
|
+
* <six-sidebar sixRouterLinkActive>
|
|
2536
|
+
* <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
|
|
2537
|
+
* <six-sidebar-item-group>
|
|
2538
|
+
* <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
|
|
2539
|
+
* </six-sidebar-item-group>
|
|
2540
|
+
* </six-sidebar>
|
|
2541
|
+
* ```
|
|
2542
|
+
*/
|
|
2543
|
+
class ActiveSidebarDirective {
|
|
2544
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2545
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
|
|
2546
|
+
}
|
|
2547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
|
|
2548
|
+
type: Directive,
|
|
2549
|
+
args: [{
|
|
2550
|
+
selector: 'six-sidebar[sixRouterLinkActive]',
|
|
2551
|
+
standalone: false,
|
|
2552
|
+
}]
|
|
2553
|
+
}] });
|
|
2554
|
+
/**
|
|
2555
|
+
* Enhances six-sidebar-item with Angular router integration.
|
|
2556
|
+
*
|
|
2557
|
+
* This directive automatically manages the 'selected' state of sidebar items based on the current route.
|
|
2558
|
+
* When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
|
|
2559
|
+
*
|
|
2560
|
+
* @requires RouterLinkActive
|
|
2561
|
+
* @optional ActiveSidebarDirective - If present, enables route-based selection
|
|
2562
|
+
*/
|
|
2563
|
+
class ActiveSidebarItemDirective {
|
|
2564
|
+
constructor() {
|
|
2565
|
+
this.routerLinkActive = inject(RouterLinkActive);
|
|
2566
|
+
this.sidebarItem = inject(SixSidebarItem);
|
|
2567
|
+
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2568
|
+
}
|
|
2569
|
+
get selected() {
|
|
2570
|
+
if (this.activeSidebarDirective == null) {
|
|
2571
|
+
return this.sidebarItem.selected;
|
|
2572
|
+
}
|
|
2573
|
+
else {
|
|
2574
|
+
return this.routerLinkActive.isActive;
|
|
2575
|
+
}
|
|
2576
|
+
}
|
|
2577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2578
|
+
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 }); }
|
|
2579
|
+
}
|
|
2580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
|
|
2581
|
+
type: Directive,
|
|
2582
|
+
args: [{
|
|
2583
|
+
selector: 'six-sidebar-item',
|
|
2584
|
+
hostDirectives: [RouterLinkActive],
|
|
2585
|
+
standalone: false,
|
|
2586
|
+
}]
|
|
2587
|
+
}], propDecorators: { selected: [{
|
|
2588
|
+
type: HostBinding,
|
|
2589
|
+
args: ['selected']
|
|
2590
|
+
}] } });
|
|
2591
|
+
/**
|
|
2592
|
+
* Enhances six-sidebar-item-group with Angular router integration.
|
|
2593
|
+
*
|
|
2594
|
+
* This directive automatically manages the 'open' state of sidebar groups based on the active route.
|
|
2595
|
+
* When a child route is active, the group automatically expands to show the active item.
|
|
2596
|
+
*
|
|
2597
|
+
* @requires RouterLinkActive
|
|
2598
|
+
* @optional ActiveSidebarDirective - If present, enables route-based expansion
|
|
2599
|
+
*/
|
|
2600
|
+
class ActiveSidebarItemGroupDirective {
|
|
2601
|
+
constructor() {
|
|
2602
|
+
this.routerLinkActive = inject(RouterLinkActive);
|
|
2603
|
+
this.sidebarItemGroup = inject(SixSidebarItemGroup);
|
|
2604
|
+
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2605
|
+
}
|
|
2606
|
+
get open() {
|
|
2607
|
+
if (this.activeSidebarDirective == null) {
|
|
2608
|
+
return this.sidebarItemGroup.open;
|
|
2609
|
+
}
|
|
2610
|
+
if (this.sidebarItems?.length > 0) {
|
|
2611
|
+
return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
|
|
2612
|
+
}
|
|
2613
|
+
return this.routerLinkActive.isActive;
|
|
2614
|
+
}
|
|
2615
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2616
|
+
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 }); }
|
|
2617
|
+
}
|
|
2618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
|
|
2619
|
+
type: Directive,
|
|
2620
|
+
args: [{
|
|
2621
|
+
selector: 'six-sidebar-item-group',
|
|
2622
|
+
hostDirectives: [RouterLinkActive],
|
|
2623
|
+
standalone: false,
|
|
2624
|
+
}]
|
|
2625
|
+
}], propDecorators: { sidebarItems: [{
|
|
2626
|
+
type: ContentChildren,
|
|
2627
|
+
args: [SixSidebarItem]
|
|
2628
|
+
}], open: [{
|
|
2629
|
+
type: HostBinding,
|
|
2630
|
+
args: ['open']
|
|
2631
|
+
}] } });
|
|
2632
|
+
|
|
2633
|
+
class DateValueAccessor extends ValueAccessor {
|
|
2634
|
+
constructor(injector, el) {
|
|
2635
|
+
super(injector, el);
|
|
2636
|
+
}
|
|
2637
|
+
handleInputEvent(el) {
|
|
2638
|
+
this.handleValueChange(el, el.value);
|
|
2639
|
+
}
|
|
2640
|
+
writeValue(value) {
|
|
2641
|
+
this.el.nativeElement.value = value == null ? '' : value;
|
|
2642
|
+
this.updateValidation();
|
|
2643
|
+
}
|
|
2644
|
+
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 }); }
|
|
2645
|
+
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: [
|
|
2646
|
+
{
|
|
2647
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2648
|
+
useExisting: DateValueAccessor,
|
|
2649
|
+
multi: true,
|
|
2650
|
+
},
|
|
2651
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2652
|
+
}
|
|
2653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
2654
|
+
type: Directive,
|
|
2655
|
+
args: [{
|
|
2656
|
+
selector: 'six-date',
|
|
2657
|
+
providers: [
|
|
2658
|
+
{
|
|
2659
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2660
|
+
useExisting: DateValueAccessor,
|
|
2661
|
+
multi: true,
|
|
2662
|
+
},
|
|
2663
|
+
],
|
|
2664
|
+
standalone: false,
|
|
2665
|
+
}]
|
|
2666
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2667
|
+
type: HostListener,
|
|
2668
|
+
args: ['change', ['$event.target']]
|
|
2669
|
+
}] } });
|
|
2670
|
+
|
|
2302
2671
|
class UiLibraryAngularModule {
|
|
2303
|
-
static forRoot(customValidationMessagesService) {
|
|
2672
|
+
static forRoot(customValidationMessagesService, config) {
|
|
2673
|
+
const mergedConfig = {
|
|
2674
|
+
...DEFAULT_UI_LIBRARY_CONFIG,
|
|
2675
|
+
...config,
|
|
2676
|
+
};
|
|
2304
2677
|
return {
|
|
2305
2678
|
ngModule: UiLibraryAngularModule,
|
|
2306
2679
|
providers: [
|
|
@@ -2310,16 +2683,18 @@ class UiLibraryAngularModule {
|
|
|
2310
2683
|
multi: true,
|
|
2311
2684
|
},
|
|
2312
2685
|
{ provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
|
|
2686
|
+
{ provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
|
|
2313
2687
|
],
|
|
2314
2688
|
};
|
|
2315
2689
|
}
|
|
2316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2317
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2690
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2691
|
+
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, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2318
2692
|
// value accessors
|
|
2319
2693
|
TextValueAccessor,
|
|
2320
2694
|
NumericValueAccessor,
|
|
2321
2695
|
RadioValueAccessor,
|
|
2322
2696
|
DatepickerValueAccessor,
|
|
2697
|
+
DateValueAccessor,
|
|
2323
2698
|
TimepickerValueAccessor,
|
|
2324
2699
|
SelectValueAccessor,
|
|
2325
2700
|
CheckboxValueAccessor,
|
|
@@ -2331,16 +2706,24 @@ class UiLibraryAngularModule {
|
|
|
2331
2706
|
MinDateValidator,
|
|
2332
2707
|
MaxDateValidator,
|
|
2333
2708
|
AllowedDatesValidator,
|
|
2709
|
+
MinDateValidatorIso,
|
|
2710
|
+
MaxDateValidatorIso,
|
|
2711
|
+
AllowedDatesValidatorIso,
|
|
2334
2712
|
// form helpers
|
|
2335
2713
|
SixFormDirective,
|
|
2336
2714
|
SixFormUtilDirective,
|
|
2337
2715
|
// router link directive
|
|
2338
|
-
SixRouterLinkDirective
|
|
2716
|
+
SixRouterLinkDirective,
|
|
2717
|
+
// sidebar helpers
|
|
2718
|
+
ActiveSidebarItemDirective,
|
|
2719
|
+
ActiveSidebarItemGroupDirective,
|
|
2720
|
+
ActiveSidebarDirective], exports: [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, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2339
2721
|
// value accessors
|
|
2340
2722
|
TextValueAccessor,
|
|
2341
2723
|
NumericValueAccessor,
|
|
2342
2724
|
RadioValueAccessor,
|
|
2343
2725
|
DatepickerValueAccessor,
|
|
2726
|
+
DateValueAccessor,
|
|
2344
2727
|
TimepickerValueAccessor,
|
|
2345
2728
|
SelectValueAccessor,
|
|
2346
2729
|
CheckboxValueAccessor,
|
|
@@ -2352,14 +2735,21 @@ class UiLibraryAngularModule {
|
|
|
2352
2735
|
MinDateValidator,
|
|
2353
2736
|
MaxDateValidator,
|
|
2354
2737
|
AllowedDatesValidator,
|
|
2738
|
+
MinDateValidatorIso,
|
|
2739
|
+
MaxDateValidatorIso,
|
|
2740
|
+
AllowedDatesValidatorIso,
|
|
2355
2741
|
// form helpers
|
|
2356
2742
|
SixFormDirective,
|
|
2357
2743
|
SixFormUtilDirective,
|
|
2358
2744
|
// router link directive
|
|
2359
|
-
SixRouterLinkDirective
|
|
2360
|
-
|
|
2745
|
+
SixRouterLinkDirective,
|
|
2746
|
+
// sidebar helpers
|
|
2747
|
+
ActiveSidebarItemDirective,
|
|
2748
|
+
ActiveSidebarItemGroupDirective,
|
|
2749
|
+
ActiveSidebarDirective] }); }
|
|
2750
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule }); }
|
|
2361
2751
|
}
|
|
2362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2363
2753
|
type: NgModule,
|
|
2364
2754
|
args: [{
|
|
2365
2755
|
declarations: [
|
|
@@ -2370,6 +2760,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2370
2760
|
NumericValueAccessor,
|
|
2371
2761
|
RadioValueAccessor,
|
|
2372
2762
|
DatepickerValueAccessor,
|
|
2763
|
+
DateValueAccessor,
|
|
2373
2764
|
TimepickerValueAccessor,
|
|
2374
2765
|
SelectValueAccessor,
|
|
2375
2766
|
CheckboxValueAccessor,
|
|
@@ -2381,11 +2772,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2381
2772
|
MinDateValidator,
|
|
2382
2773
|
MaxDateValidator,
|
|
2383
2774
|
AllowedDatesValidator,
|
|
2775
|
+
MinDateValidatorIso,
|
|
2776
|
+
MaxDateValidatorIso,
|
|
2777
|
+
AllowedDatesValidatorIso,
|
|
2384
2778
|
// form helpers
|
|
2385
2779
|
SixFormDirective,
|
|
2386
2780
|
SixFormUtilDirective,
|
|
2387
2781
|
// router link directive
|
|
2388
2782
|
SixRouterLinkDirective,
|
|
2783
|
+
// sidebar helpers
|
|
2784
|
+
ActiveSidebarItemDirective,
|
|
2785
|
+
ActiveSidebarItemGroupDirective,
|
|
2786
|
+
ActiveSidebarDirective,
|
|
2389
2787
|
],
|
|
2390
2788
|
imports: [],
|
|
2391
2789
|
exports: [
|
|
@@ -2396,6 +2794,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2396
2794
|
NumericValueAccessor,
|
|
2397
2795
|
RadioValueAccessor,
|
|
2398
2796
|
DatepickerValueAccessor,
|
|
2797
|
+
DateValueAccessor,
|
|
2399
2798
|
TimepickerValueAccessor,
|
|
2400
2799
|
SelectValueAccessor,
|
|
2401
2800
|
CheckboxValueAccessor,
|
|
@@ -2407,11 +2806,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2407
2806
|
MinDateValidator,
|
|
2408
2807
|
MaxDateValidator,
|
|
2409
2808
|
AllowedDatesValidator,
|
|
2809
|
+
MinDateValidatorIso,
|
|
2810
|
+
MaxDateValidatorIso,
|
|
2811
|
+
AllowedDatesValidatorIso,
|
|
2410
2812
|
// form helpers
|
|
2411
2813
|
SixFormDirective,
|
|
2412
2814
|
SixFormUtilDirective,
|
|
2413
2815
|
// router link directive
|
|
2414
2816
|
SixRouterLinkDirective,
|
|
2817
|
+
// sidebar helpers
|
|
2818
|
+
ActiveSidebarItemDirective,
|
|
2819
|
+
ActiveSidebarItemGroupDirective,
|
|
2820
|
+
ActiveSidebarDirective,
|
|
2415
2821
|
],
|
|
2416
2822
|
}]
|
|
2417
2823
|
}] });
|
|
@@ -2426,10 +2832,10 @@ class AlertService {
|
|
|
2426
2832
|
showAlert(message, alertType, duration, iconName) {
|
|
2427
2833
|
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2428
2834
|
}
|
|
2429
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2430
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2835
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2836
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, providedIn: 'root' }); }
|
|
2431
2837
|
}
|
|
2432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, decorators: [{
|
|
2433
2839
|
type: Injectable,
|
|
2434
2840
|
args: [{ providedIn: 'root' }]
|
|
2435
2841
|
}] });
|
|
@@ -2442,5 +2848,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2442
2848
|
* Generated bundle index. Do not edit.
|
|
2443
2849
|
*/
|
|
2444
2850
|
|
|
2445
|
-
export { AlertService, AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
|
|
2851
|
+
export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
|
|
2446
2852
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|