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