@six-group/ui-library-angular 0.0.0-insider.d005298 → 0.0.0-insider.d1e67f0
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 +884 -322
- 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 +166 -93
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/ui-library-angular-config.d.ts +7 -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 +14 -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,38 +414,39 @@ 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", noScroll: "noScroll", 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
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
335
|
-
methods: ['show', 'hide'
|
|
422
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'noScroll', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
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',
|
|
342
430
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
343
431
|
template: '<ng-content></ng-content>',
|
|
344
432
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
345
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
433
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'noScroll', '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,37 +538,38 @@ 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
|
-
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple']
|
|
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',
|
|
460
553
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
461
554
|
template: '<ng-content></ng-content>',
|
|
462
555
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
463
|
-
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple'],
|
|
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
|
|
656
|
+
}]
|
|
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
|
|
536
681
|
}]
|
|
537
|
-
}], ctorParameters:
|
|
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
|
|
684
860
|
}]
|
|
685
|
-
}], ctorParameters:
|
|
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
|
|
885
|
+
}]
|
|
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,25 +1402,26 @@ 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", hoverContent: "hoverContent", panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1161
1407
|
};
|
|
1162
1408
|
SixTab = __decorate([
|
|
1163
1409
|
ProxyCmp({
|
|
1164
|
-
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1410
|
+
inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
|
|
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',
|
|
1172
1418
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1173
1419
|
template: '<ng-content></ng-content>',
|
|
1174
1420
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1175
|
-
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1421
|
+
inputs: ['active', 'closable', 'disabled', 'hoverContent', '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,26 @@ 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
|
+
disableValidationService: false,
|
|
1690
|
+
};
|
|
1691
|
+
const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
|
|
1692
|
+
|
|
1425
1693
|
class ValueAccessor {
|
|
1426
1694
|
constructor(injector, el) {
|
|
1427
1695
|
this.injector = injector;
|
|
1428
1696
|
this.el = el;
|
|
1429
1697
|
this.validationMessagesService = inject(ValidationMessagesService);
|
|
1698
|
+
this.config = inject(UI_LIBRARY_CONFIG);
|
|
1430
1699
|
this.onChange = () => { };
|
|
1431
1700
|
this.onTouched = () => { };
|
|
1432
1701
|
}
|
|
@@ -1472,12 +1741,16 @@ class ValueAccessor {
|
|
|
1472
1741
|
const element = this.el.nativeElement;
|
|
1473
1742
|
const control = this.ngControl?.control;
|
|
1474
1743
|
const invalid = control.status === 'INVALID' && control.dirty && control.touched;
|
|
1475
|
-
let errorTexts;
|
|
1476
|
-
if (invalid) {
|
|
1477
|
-
errorTexts = this.initialErrorText || this.getErrorTexts(control);
|
|
1478
|
-
}
|
|
1479
1744
|
element.invalid = invalid;
|
|
1480
|
-
|
|
1745
|
+
// If the module is configured to do so, display error messages for invalid controls
|
|
1746
|
+
if (!this.config.disableValidationService) {
|
|
1747
|
+
const errorTexts = invalid ? this.initialErrorText || this.getErrorTexts(control) : undefined;
|
|
1748
|
+
element.errorText = errorTexts ?? '';
|
|
1749
|
+
}
|
|
1750
|
+
// When the module is configured to do so, display an asterisk next to any form control that has a required validator
|
|
1751
|
+
if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
|
|
1752
|
+
element.required = true;
|
|
1753
|
+
}
|
|
1481
1754
|
});
|
|
1482
1755
|
}
|
|
1483
1756
|
setDisabledState(isDisabled) {
|
|
@@ -1536,12 +1809,12 @@ class ValueAccessor {
|
|
|
1536
1809
|
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1537
1810
|
});
|
|
1538
1811
|
}
|
|
1539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1540
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1812
|
+
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 }); }
|
|
1813
|
+
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
1814
|
}
|
|
1542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1543
1816
|
type: Directive
|
|
1544
|
-
}], ctorParameters:
|
|
1817
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
1545
1818
|
type: HostListener,
|
|
1546
1819
|
args: ['blur', ['$event.target']]
|
|
1547
1820
|
}] } });
|
|
@@ -1562,8 +1835,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1562
1835
|
handleInputEvent(el) {
|
|
1563
1836
|
this.handleValueChange(el, el.value);
|
|
1564
1837
|
}
|
|
1565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1566
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1838
|
+
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 }); }
|
|
1839
|
+
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
1840
|
{
|
|
1568
1841
|
provide: NG_VALUE_ACCESSOR,
|
|
1569
1842
|
useExisting: TextValueAccessor,
|
|
@@ -1571,7 +1844,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1571
1844
|
},
|
|
1572
1845
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1573
1846
|
}
|
|
1574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1847
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1575
1848
|
type: Directive,
|
|
1576
1849
|
args: [{
|
|
1577
1850
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1582,8 +1855,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1582
1855
|
multi: true,
|
|
1583
1856
|
},
|
|
1584
1857
|
],
|
|
1858
|
+
standalone: false,
|
|
1585
1859
|
}]
|
|
1586
|
-
}], ctorParameters:
|
|
1860
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1587
1861
|
type: HostListener,
|
|
1588
1862
|
args: ['input', ['$event.target']]
|
|
1589
1863
|
}] } });
|
|
@@ -1600,8 +1874,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1600
1874
|
fn(value === '' ? null : parseFloat(value));
|
|
1601
1875
|
});
|
|
1602
1876
|
}
|
|
1603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1604
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1877
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1878
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: NumericValueAccessor, isStandalone: false, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1605
1879
|
{
|
|
1606
1880
|
provide: NG_VALUE_ACCESSOR,
|
|
1607
1881
|
useExisting: NumericValueAccessor,
|
|
@@ -1609,7 +1883,7 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1609
1883
|
},
|
|
1610
1884
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1611
1885
|
}
|
|
1612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1613
1887
|
type: Directive,
|
|
1614
1888
|
args: [{
|
|
1615
1889
|
selector: 'six-input[type=number]',
|
|
@@ -1620,8 +1894,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1620
1894
|
multi: true,
|
|
1621
1895
|
},
|
|
1622
1896
|
],
|
|
1897
|
+
standalone: false,
|
|
1623
1898
|
}]
|
|
1624
|
-
}], ctorParameters:
|
|
1899
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1625
1900
|
type: HostListener,
|
|
1626
1901
|
args: ['input', ['$event.target']]
|
|
1627
1902
|
}] } });
|
|
@@ -1652,8 +1927,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1652
1927
|
this.el.nativeElement.name = this.formControlName;
|
|
1653
1928
|
}
|
|
1654
1929
|
}
|
|
1655
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1656
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1930
|
+
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 }); }
|
|
1931
|
+
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
1932
|
{
|
|
1658
1933
|
provide: NG_VALUE_ACCESSOR,
|
|
1659
1934
|
useExisting: RadioValueAccessor,
|
|
@@ -1661,7 +1936,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1661
1936
|
},
|
|
1662
1937
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1663
1938
|
}
|
|
1664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1665
1940
|
type: Directive,
|
|
1666
1941
|
args: [{
|
|
1667
1942
|
selector: 'six-radio',
|
|
@@ -1672,8 +1947,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1672
1947
|
multi: true,
|
|
1673
1948
|
},
|
|
1674
1949
|
],
|
|
1950
|
+
standalone: false,
|
|
1675
1951
|
}]
|
|
1676
|
-
}], ctorParameters:
|
|
1952
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
1677
1953
|
type: Input
|
|
1678
1954
|
}], formControlName: [{
|
|
1679
1955
|
type: Input
|
|
@@ -1691,8 +1967,8 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1691
1967
|
handleChangeEvent(el) {
|
|
1692
1968
|
this.handleValueChange(el, el.value);
|
|
1693
1969
|
}
|
|
1694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1695
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1970
|
+
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 }); }
|
|
1971
|
+
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
1972
|
{
|
|
1697
1973
|
provide: NG_VALUE_ACCESSOR,
|
|
1698
1974
|
useExisting: DatepickerValueAccessor,
|
|
@@ -1700,7 +1976,7 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1700
1976
|
},
|
|
1701
1977
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1702
1978
|
}
|
|
1703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1704
1980
|
type: Directive,
|
|
1705
1981
|
args: [{
|
|
1706
1982
|
selector: 'six-datepicker',
|
|
@@ -1711,8 +1987,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1711
1987
|
multi: true,
|
|
1712
1988
|
},
|
|
1713
1989
|
],
|
|
1990
|
+
standalone: false,
|
|
1714
1991
|
}]
|
|
1715
|
-
}], ctorParameters:
|
|
1992
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
1716
1993
|
type: HostListener,
|
|
1717
1994
|
args: ['change', ['$event.target']]
|
|
1718
1995
|
}] } });
|
|
@@ -1753,15 +2030,16 @@ class SixFormDirective {
|
|
|
1753
2030
|
*/
|
|
1754
2031
|
this.sixSubmit = new EventEmitter();
|
|
1755
2032
|
}
|
|
1756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1757
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2033
|
+
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 }); }
|
|
2034
|
+
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
2035
|
}
|
|
1759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1760
2037
|
type: Directive,
|
|
1761
2038
|
args: [{
|
|
1762
2039
|
selector: 'form[sixForm]',
|
|
2040
|
+
standalone: false,
|
|
1763
2041
|
}]
|
|
1764
|
-
}], ctorParameters:
|
|
2042
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
|
|
1765
2043
|
type: Output
|
|
1766
2044
|
}], onNgSubmit: [{
|
|
1767
2045
|
type: HostListener,
|
|
@@ -1804,15 +2082,16 @@ class SixFormUtilDirective {
|
|
|
1804
2082
|
focusInvalidField() {
|
|
1805
2083
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1806
2084
|
}
|
|
1807
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1808
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2085
|
+
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 }); }
|
|
2086
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 }); }
|
|
1809
2087
|
}
|
|
1810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1811
2089
|
type: Directive,
|
|
1812
2090
|
args: [{
|
|
1813
2091
|
selector: '[sixFormUtil]',
|
|
2092
|
+
standalone: false,
|
|
1814
2093
|
}]
|
|
1815
|
-
}], ctorParameters:
|
|
2094
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
|
|
1816
2095
|
function focusInvalidField(formGroupDirective, formElement) {
|
|
1817
2096
|
formGroupDirective.form.markAllAsTouched();
|
|
1818
2097
|
markAllAsDirty([formGroupDirective.form]);
|
|
@@ -1872,6 +2151,30 @@ class SixUiLibraryValidators {
|
|
|
1872
2151
|
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
1873
2152
|
};
|
|
1874
2153
|
}
|
|
2154
|
+
static minDateIso(mindate) {
|
|
2155
|
+
return (control) => {
|
|
2156
|
+
if (control.value == null || control.value === '')
|
|
2157
|
+
return null;
|
|
2158
|
+
const actualDate = control.value;
|
|
2159
|
+
return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
|
|
2160
|
+
};
|
|
2161
|
+
}
|
|
2162
|
+
static maxDateIso(maxdate) {
|
|
2163
|
+
return (control) => {
|
|
2164
|
+
if (control.value == null || control.value === '')
|
|
2165
|
+
return null;
|
|
2166
|
+
const actualDate = control.value;
|
|
2167
|
+
return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
|
|
2168
|
+
};
|
|
2169
|
+
}
|
|
2170
|
+
static allowedDatesIso(allowedDates = () => true) {
|
|
2171
|
+
return (control) => {
|
|
2172
|
+
if (control.value == null || control.value === '')
|
|
2173
|
+
return null;
|
|
2174
|
+
const allowed = allowedDates(control.value);
|
|
2175
|
+
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
2176
|
+
};
|
|
2177
|
+
}
|
|
1875
2178
|
}
|
|
1876
2179
|
class MinDateValidator {
|
|
1877
2180
|
validate(control) {
|
|
@@ -1880,14 +2183,15 @@ class MinDateValidator {
|
|
|
1880
2183
|
}
|
|
1881
2184
|
return null;
|
|
1882
2185
|
}
|
|
1883
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1884
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2187
|
+
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
2188
|
}
|
|
1886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1887
2190
|
type: Directive,
|
|
1888
2191
|
args: [{
|
|
1889
2192
|
selector: 'six-datepicker[min]',
|
|
1890
2193
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
2194
|
+
standalone: false,
|
|
1891
2195
|
}]
|
|
1892
2196
|
}], propDecorators: { min: [{
|
|
1893
2197
|
type: Input
|
|
@@ -1899,14 +2203,15 @@ class MaxDateValidator {
|
|
|
1899
2203
|
}
|
|
1900
2204
|
return null;
|
|
1901
2205
|
}
|
|
1902
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1903
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2207
|
+
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
2208
|
}
|
|
1905
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
1906
2210
|
type: Directive,
|
|
1907
2211
|
args: [{
|
|
1908
2212
|
selector: 'six-datepicker[max]',
|
|
1909
2213
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
2214
|
+
standalone: false,
|
|
1910
2215
|
}]
|
|
1911
2216
|
}], propDecorators: { max: [{
|
|
1912
2217
|
type: Input
|
|
@@ -1918,14 +2223,75 @@ class AllowedDatesValidator {
|
|
|
1918
2223
|
validate(control) {
|
|
1919
2224
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
1920
2225
|
}
|
|
1921
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1922
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2226
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2227
|
+
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
2228
|
}
|
|
1924
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
1925
2230
|
type: Directive,
|
|
1926
2231
|
args: [{
|
|
1927
2232
|
selector: 'six-datepicker[allowedDates]',
|
|
1928
2233
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
|
|
2234
|
+
standalone: false,
|
|
2235
|
+
}]
|
|
2236
|
+
}], propDecorators: { allowedDates: [{
|
|
2237
|
+
type: Input
|
|
2238
|
+
}] } });
|
|
2239
|
+
class MinDateValidatorIso {
|
|
2240
|
+
validate(control) {
|
|
2241
|
+
if (this.min != null) {
|
|
2242
|
+
return SixUiLibraryValidators.minDateIso(this.min)(control);
|
|
2243
|
+
}
|
|
2244
|
+
return null;
|
|
2245
|
+
}
|
|
2246
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2247
|
+
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 }); }
|
|
2248
|
+
}
|
|
2249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2250
|
+
type: Directive,
|
|
2251
|
+
args: [{
|
|
2252
|
+
selector: 'six-date[min]',
|
|
2253
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2254
|
+
standalone: false,
|
|
2255
|
+
}]
|
|
2256
|
+
}], propDecorators: { min: [{
|
|
2257
|
+
type: Input
|
|
2258
|
+
}] } });
|
|
2259
|
+
class MaxDateValidatorIso {
|
|
2260
|
+
validate(control) {
|
|
2261
|
+
if (this.max != null) {
|
|
2262
|
+
return SixUiLibraryValidators.maxDateIso(this.max)(control);
|
|
2263
|
+
}
|
|
2264
|
+
return null;
|
|
2265
|
+
}
|
|
2266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2267
|
+
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 }); }
|
|
2268
|
+
}
|
|
2269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2270
|
+
type: Directive,
|
|
2271
|
+
args: [{
|
|
2272
|
+
selector: 'six-date[max]',
|
|
2273
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2274
|
+
standalone: false,
|
|
2275
|
+
}]
|
|
2276
|
+
}], propDecorators: { max: [{
|
|
2277
|
+
type: Input
|
|
2278
|
+
}] } });
|
|
2279
|
+
class AllowedDatesValidatorIso {
|
|
2280
|
+
constructor() {
|
|
2281
|
+
this.allowedDates = () => true;
|
|
2282
|
+
}
|
|
2283
|
+
validate(control) {
|
|
2284
|
+
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2285
|
+
}
|
|
2286
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2287
|
+
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 }); }
|
|
2288
|
+
}
|
|
2289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2290
|
+
type: Directive,
|
|
2291
|
+
args: [{
|
|
2292
|
+
selector: 'six-date[allowedDates]',
|
|
2293
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2294
|
+
standalone: false,
|
|
1929
2295
|
}]
|
|
1930
2296
|
}], propDecorators: { allowedDates: [{
|
|
1931
2297
|
type: Input
|
|
@@ -1934,14 +2300,15 @@ class MinValidator {
|
|
|
1934
2300
|
validate(control) {
|
|
1935
2301
|
return Validators.min(toFloat(this.min))(control);
|
|
1936
2302
|
}
|
|
1937
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1938
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2304
|
+
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
2305
|
}
|
|
1940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MinValidator, decorators: [{
|
|
1941
2307
|
type: Directive,
|
|
1942
2308
|
args: [{
|
|
1943
2309
|
selector: 'six-input[type=number][min]',
|
|
1944
2310
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
|
|
2311
|
+
standalone: false,
|
|
1945
2312
|
}]
|
|
1946
2313
|
}], propDecorators: { min: [{
|
|
1947
2314
|
type: Input
|
|
@@ -1950,14 +2317,15 @@ class MaxValidator {
|
|
|
1950
2317
|
validate(control) {
|
|
1951
2318
|
return Validators.max(toFloat(this.max))(control);
|
|
1952
2319
|
}
|
|
1953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1954
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2320
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2321
|
+
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
2322
|
}
|
|
1956
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: MaxValidator, decorators: [{
|
|
1957
2324
|
type: Directive,
|
|
1958
2325
|
args: [{
|
|
1959
2326
|
selector: 'six-input[type=number][max]',
|
|
1960
2327
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
|
|
2328
|
+
standalone: false,
|
|
1961
2329
|
}]
|
|
1962
2330
|
}], propDecorators: { max: [{
|
|
1963
2331
|
type: Input
|
|
@@ -1973,8 +2341,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
1973
2341
|
handleChangeEvent(el) {
|
|
1974
2342
|
this.handleValueChange(el, el.value);
|
|
1975
2343
|
}
|
|
1976
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1977
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2344
|
+
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 }); }
|
|
2345
|
+
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
2346
|
{
|
|
1979
2347
|
provide: NG_VALUE_ACCESSOR,
|
|
1980
2348
|
useExisting: SelectValueAccessor,
|
|
@@ -1982,7 +2350,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
1982
2350
|
},
|
|
1983
2351
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1984
2352
|
}
|
|
1985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
1986
2354
|
type: Directive,
|
|
1987
2355
|
args: [{
|
|
1988
2356
|
selector: 'six-select',
|
|
@@ -1993,8 +2361,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1993
2361
|
multi: true,
|
|
1994
2362
|
},
|
|
1995
2363
|
],
|
|
2364
|
+
standalone: false,
|
|
1996
2365
|
}]
|
|
1997
|
-
}], ctorParameters:
|
|
2366
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
1998
2367
|
type: HostListener,
|
|
1999
2368
|
args: ['change', ['$event.target']]
|
|
2000
2369
|
}] } });
|
|
@@ -2010,8 +2379,8 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2010
2379
|
this.el.nativeElement.checked = value === true;
|
|
2011
2380
|
this.updateValidation();
|
|
2012
2381
|
}
|
|
2013
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2014
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2382
|
+
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 }); }
|
|
2383
|
+
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
2384
|
{
|
|
2016
2385
|
provide: NG_VALUE_ACCESSOR,
|
|
2017
2386
|
useExisting: CheckboxValueAccessor,
|
|
@@ -2019,7 +2388,7 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2019
2388
|
},
|
|
2020
2389
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2021
2390
|
}
|
|
2022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2023
2392
|
type: Directive,
|
|
2024
2393
|
args: [{
|
|
2025
2394
|
selector: 'six-checkbox',
|
|
@@ -2030,8 +2399,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2030
2399
|
multi: true,
|
|
2031
2400
|
},
|
|
2032
2401
|
],
|
|
2402
|
+
standalone: false,
|
|
2033
2403
|
}]
|
|
2034
|
-
}], ctorParameters:
|
|
2404
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2035
2405
|
type: HostListener,
|
|
2036
2406
|
args: ['change', ['$event.target']]
|
|
2037
2407
|
}] } });
|
|
@@ -2048,8 +2418,8 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2048
2418
|
fn(value === '' ? null : parseFloat(value));
|
|
2049
2419
|
});
|
|
2050
2420
|
}
|
|
2051
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2052
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2421
|
+
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 }); }
|
|
2422
|
+
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
2423
|
{
|
|
2054
2424
|
provide: NG_VALUE_ACCESSOR,
|
|
2055
2425
|
useExisting: RangeValueAccessor,
|
|
@@ -2057,7 +2427,7 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2057
2427
|
},
|
|
2058
2428
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2059
2429
|
}
|
|
2060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2061
2431
|
type: Directive,
|
|
2062
2432
|
args: [{
|
|
2063
2433
|
selector: 'six-range',
|
|
@@ -2068,8 +2438,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2068
2438
|
multi: true,
|
|
2069
2439
|
},
|
|
2070
2440
|
],
|
|
2441
|
+
standalone: false,
|
|
2071
2442
|
}]
|
|
2072
|
-
}], ctorParameters:
|
|
2443
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2073
2444
|
type: HostListener,
|
|
2074
2445
|
args: ['input', ['$event.target']]
|
|
2075
2446
|
}] } });
|
|
@@ -2085,8 +2456,8 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2085
2456
|
this.el.nativeElement.checked = value === true;
|
|
2086
2457
|
this.updateValidation();
|
|
2087
2458
|
}
|
|
2088
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2089
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2459
|
+
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 }); }
|
|
2460
|
+
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
2461
|
{
|
|
2091
2462
|
provide: NG_VALUE_ACCESSOR,
|
|
2092
2463
|
useExisting: SwitchValueAccessor,
|
|
@@ -2094,7 +2465,7 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2094
2465
|
},
|
|
2095
2466
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2096
2467
|
}
|
|
2097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2098
2469
|
type: Directive,
|
|
2099
2470
|
args: [{
|
|
2100
2471
|
selector: 'six-switch',
|
|
@@ -2105,8 +2476,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2105
2476
|
multi: true,
|
|
2106
2477
|
},
|
|
2107
2478
|
],
|
|
2479
|
+
standalone: false,
|
|
2108
2480
|
}]
|
|
2109
|
-
}], ctorParameters:
|
|
2481
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2110
2482
|
type: HostListener,
|
|
2111
2483
|
args: ['change', ['$event.target']]
|
|
2112
2484
|
}] } });
|
|
@@ -2118,8 +2490,8 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2118
2490
|
handleChangeEvent(el) {
|
|
2119
2491
|
this.handleValueChange(el, el.value);
|
|
2120
2492
|
}
|
|
2121
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2122
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2493
|
+
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 }); }
|
|
2494
|
+
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
2495
|
{
|
|
2124
2496
|
provide: NG_VALUE_ACCESSOR,
|
|
2125
2497
|
useExisting: TimepickerValueAccessor,
|
|
@@ -2127,7 +2499,7 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2127
2499
|
},
|
|
2128
2500
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2129
2501
|
}
|
|
2130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2131
2503
|
type: Directive,
|
|
2132
2504
|
args: [{
|
|
2133
2505
|
selector: 'six-timepicker',
|
|
@@ -2138,8 +2510,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2138
2510
|
multi: true,
|
|
2139
2511
|
},
|
|
2140
2512
|
],
|
|
2513
|
+
standalone: false,
|
|
2141
2514
|
}]
|
|
2142
|
-
}], ctorParameters:
|
|
2515
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2143
2516
|
type: HostListener,
|
|
2144
2517
|
args: ['change', ['$event.target']]
|
|
2145
2518
|
}] } });
|
|
@@ -2169,19 +2542,25 @@ class SixRouterLinkDirective {
|
|
|
2169
2542
|
if (this.routerLinkDirective?.urlTree) {
|
|
2170
2543
|
const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
|
|
2171
2544
|
this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
|
|
2545
|
+
// Remove the `tabindex` attribute to prevent redundant focus behavior.
|
|
2546
|
+
// Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
|
|
2547
|
+
// but custom components like `six-button` already handle focusability.
|
|
2548
|
+
// Keeping the tabindex would cause the element to receive focus twice.
|
|
2549
|
+
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2172
2550
|
}
|
|
2173
2551
|
}
|
|
2174
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2175
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2552
|
+
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 }); }
|
|
2553
|
+
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
2554
|
}
|
|
2177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2178
2556
|
type: Directive,
|
|
2179
2557
|
args: [{
|
|
2180
|
-
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]',
|
|
2558
|
+
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
2559
|
+
standalone: false,
|
|
2181
2560
|
}]
|
|
2182
|
-
}], ctorParameters:
|
|
2561
|
+
}], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2183
2562
|
type: Optional
|
|
2184
|
-
}] }]
|
|
2563
|
+
}] }], propDecorators: { onClick: [{
|
|
2185
2564
|
type: HostListener,
|
|
2186
2565
|
args: ['click', ['$event']]
|
|
2187
2566
|
}], routerLink: [{
|
|
@@ -2196,8 +2575,158 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2196
2575
|
type: Input
|
|
2197
2576
|
}] } });
|
|
2198
2577
|
|
|
2578
|
+
/**
|
|
2579
|
+
* Enables Angular router integration for the six-sidebar component.
|
|
2580
|
+
*
|
|
2581
|
+
* When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
|
|
2582
|
+
* it activates automatic route-based selection for sidebar items and groups.
|
|
2583
|
+
*
|
|
2584
|
+
* @recommended Add this directive to enable automatic route-based navigation in sidebars.
|
|
2585
|
+
*
|
|
2586
|
+
* @example
|
|
2587
|
+
* ```html
|
|
2588
|
+
* <six-sidebar sixRouterLinkActive>
|
|
2589
|
+
* <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
|
|
2590
|
+
* <six-sidebar-item-group>
|
|
2591
|
+
* <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
|
|
2592
|
+
* </six-sidebar-item-group>
|
|
2593
|
+
* </six-sidebar>
|
|
2594
|
+
* ```
|
|
2595
|
+
*/
|
|
2596
|
+
class ActiveSidebarDirective {
|
|
2597
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2598
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
|
|
2599
|
+
}
|
|
2600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
|
|
2601
|
+
type: Directive,
|
|
2602
|
+
args: [{
|
|
2603
|
+
selector: 'six-sidebar[sixRouterLinkActive]',
|
|
2604
|
+
standalone: false,
|
|
2605
|
+
}]
|
|
2606
|
+
}] });
|
|
2607
|
+
/**
|
|
2608
|
+
* Enhances six-sidebar-item with Angular router integration.
|
|
2609
|
+
*
|
|
2610
|
+
* This directive automatically manages the 'selected' state of sidebar items based on the current route.
|
|
2611
|
+
* When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
|
|
2612
|
+
*
|
|
2613
|
+
* @requires RouterLinkActive
|
|
2614
|
+
* @optional ActiveSidebarDirective - If present, enables route-based selection
|
|
2615
|
+
*/
|
|
2616
|
+
class ActiveSidebarItemDirective {
|
|
2617
|
+
constructor() {
|
|
2618
|
+
this.routerLinkActive = inject(RouterLinkActive);
|
|
2619
|
+
this.sidebarItem = inject(SixSidebarItem);
|
|
2620
|
+
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2621
|
+
}
|
|
2622
|
+
get selected() {
|
|
2623
|
+
if (this.activeSidebarDirective == null) {
|
|
2624
|
+
return this.sidebarItem.selected;
|
|
2625
|
+
}
|
|
2626
|
+
else {
|
|
2627
|
+
return this.routerLinkActive.isActive;
|
|
2628
|
+
}
|
|
2629
|
+
}
|
|
2630
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2631
|
+
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 }); }
|
|
2632
|
+
}
|
|
2633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
|
|
2634
|
+
type: Directive,
|
|
2635
|
+
args: [{
|
|
2636
|
+
selector: 'six-sidebar-item',
|
|
2637
|
+
hostDirectives: [RouterLinkActive],
|
|
2638
|
+
standalone: false,
|
|
2639
|
+
}]
|
|
2640
|
+
}], propDecorators: { selected: [{
|
|
2641
|
+
type: HostBinding,
|
|
2642
|
+
args: ['selected']
|
|
2643
|
+
}] } });
|
|
2644
|
+
/**
|
|
2645
|
+
* Enhances six-sidebar-item-group with Angular router integration.
|
|
2646
|
+
*
|
|
2647
|
+
* This directive automatically manages the 'open' state of sidebar groups based on the active route.
|
|
2648
|
+
* When a child route is active, the group automatically expands to show the active item.
|
|
2649
|
+
*
|
|
2650
|
+
* @requires RouterLinkActive
|
|
2651
|
+
* @optional ActiveSidebarDirective - If present, enables route-based expansion
|
|
2652
|
+
*/
|
|
2653
|
+
class ActiveSidebarItemGroupDirective {
|
|
2654
|
+
constructor() {
|
|
2655
|
+
this.routerLinkActive = inject(RouterLinkActive);
|
|
2656
|
+
this.sidebarItemGroup = inject(SixSidebarItemGroup);
|
|
2657
|
+
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2658
|
+
}
|
|
2659
|
+
get open() {
|
|
2660
|
+
if (this.activeSidebarDirective == null) {
|
|
2661
|
+
return this.sidebarItemGroup.open;
|
|
2662
|
+
}
|
|
2663
|
+
if (this.sidebarItems?.length > 0) {
|
|
2664
|
+
return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
|
|
2665
|
+
}
|
|
2666
|
+
return this.routerLinkActive.isActive;
|
|
2667
|
+
}
|
|
2668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2669
|
+
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 }); }
|
|
2670
|
+
}
|
|
2671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
|
|
2672
|
+
type: Directive,
|
|
2673
|
+
args: [{
|
|
2674
|
+
selector: 'six-sidebar-item-group',
|
|
2675
|
+
hostDirectives: [RouterLinkActive],
|
|
2676
|
+
standalone: false,
|
|
2677
|
+
}]
|
|
2678
|
+
}], propDecorators: { sidebarItems: [{
|
|
2679
|
+
type: ContentChildren,
|
|
2680
|
+
args: [SixSidebarItem]
|
|
2681
|
+
}], open: [{
|
|
2682
|
+
type: HostBinding,
|
|
2683
|
+
args: ['open']
|
|
2684
|
+
}] } });
|
|
2685
|
+
|
|
2686
|
+
class DateValueAccessor extends ValueAccessor {
|
|
2687
|
+
constructor(injector, el) {
|
|
2688
|
+
super(injector, el);
|
|
2689
|
+
}
|
|
2690
|
+
handleInputEvent(el) {
|
|
2691
|
+
this.handleValueChange(el, el.value);
|
|
2692
|
+
}
|
|
2693
|
+
writeValue(value) {
|
|
2694
|
+
this.el.nativeElement.value = value == null ? '' : value;
|
|
2695
|
+
this.updateValidation();
|
|
2696
|
+
}
|
|
2697
|
+
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 }); }
|
|
2698
|
+
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: [
|
|
2699
|
+
{
|
|
2700
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2701
|
+
useExisting: DateValueAccessor,
|
|
2702
|
+
multi: true,
|
|
2703
|
+
},
|
|
2704
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2705
|
+
}
|
|
2706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
2707
|
+
type: Directive,
|
|
2708
|
+
args: [{
|
|
2709
|
+
selector: 'six-date',
|
|
2710
|
+
providers: [
|
|
2711
|
+
{
|
|
2712
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2713
|
+
useExisting: DateValueAccessor,
|
|
2714
|
+
multi: true,
|
|
2715
|
+
},
|
|
2716
|
+
],
|
|
2717
|
+
standalone: false,
|
|
2718
|
+
}]
|
|
2719
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2720
|
+
type: HostListener,
|
|
2721
|
+
args: ['change', ['$event.target']]
|
|
2722
|
+
}] } });
|
|
2723
|
+
|
|
2199
2724
|
class UiLibraryAngularModule {
|
|
2200
|
-
static forRoot(customValidationMessagesService) {
|
|
2725
|
+
static forRoot(customValidationMessagesService, config) {
|
|
2726
|
+
const mergedConfig = {
|
|
2727
|
+
...DEFAULT_UI_LIBRARY_CONFIG,
|
|
2728
|
+
...config,
|
|
2729
|
+
};
|
|
2201
2730
|
return {
|
|
2202
2731
|
ngModule: UiLibraryAngularModule,
|
|
2203
2732
|
providers: [
|
|
@@ -2207,16 +2736,18 @@ class UiLibraryAngularModule {
|
|
|
2207
2736
|
multi: true,
|
|
2208
2737
|
},
|
|
2209
2738
|
{ provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
|
|
2739
|
+
{ provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
|
|
2210
2740
|
],
|
|
2211
2741
|
};
|
|
2212
2742
|
}
|
|
2213
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2214
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2743
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2744
|
+
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
2745
|
// value accessors
|
|
2216
2746
|
TextValueAccessor,
|
|
2217
2747
|
NumericValueAccessor,
|
|
2218
2748
|
RadioValueAccessor,
|
|
2219
2749
|
DatepickerValueAccessor,
|
|
2750
|
+
DateValueAccessor,
|
|
2220
2751
|
TimepickerValueAccessor,
|
|
2221
2752
|
SelectValueAccessor,
|
|
2222
2753
|
CheckboxValueAccessor,
|
|
@@ -2228,16 +2759,24 @@ class UiLibraryAngularModule {
|
|
|
2228
2759
|
MinDateValidator,
|
|
2229
2760
|
MaxDateValidator,
|
|
2230
2761
|
AllowedDatesValidator,
|
|
2762
|
+
MinDateValidatorIso,
|
|
2763
|
+
MaxDateValidatorIso,
|
|
2764
|
+
AllowedDatesValidatorIso,
|
|
2231
2765
|
// form helpers
|
|
2232
2766
|
SixFormDirective,
|
|
2233
2767
|
SixFormUtilDirective,
|
|
2234
2768
|
// router link directive
|
|
2235
|
-
SixRouterLinkDirective
|
|
2769
|
+
SixRouterLinkDirective,
|
|
2770
|
+
// sidebar helpers
|
|
2771
|
+
ActiveSidebarItemDirective,
|
|
2772
|
+
ActiveSidebarItemGroupDirective,
|
|
2773
|
+
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
2774
|
// value accessors
|
|
2237
2775
|
TextValueAccessor,
|
|
2238
2776
|
NumericValueAccessor,
|
|
2239
2777
|
RadioValueAccessor,
|
|
2240
2778
|
DatepickerValueAccessor,
|
|
2779
|
+
DateValueAccessor,
|
|
2241
2780
|
TimepickerValueAccessor,
|
|
2242
2781
|
SelectValueAccessor,
|
|
2243
2782
|
CheckboxValueAccessor,
|
|
@@ -2249,14 +2788,21 @@ class UiLibraryAngularModule {
|
|
|
2249
2788
|
MinDateValidator,
|
|
2250
2789
|
MaxDateValidator,
|
|
2251
2790
|
AllowedDatesValidator,
|
|
2791
|
+
MinDateValidatorIso,
|
|
2792
|
+
MaxDateValidatorIso,
|
|
2793
|
+
AllowedDatesValidatorIso,
|
|
2252
2794
|
// form helpers
|
|
2253
2795
|
SixFormDirective,
|
|
2254
2796
|
SixFormUtilDirective,
|
|
2255
2797
|
// router link directive
|
|
2256
|
-
SixRouterLinkDirective
|
|
2257
|
-
|
|
2798
|
+
SixRouterLinkDirective,
|
|
2799
|
+
// sidebar helpers
|
|
2800
|
+
ActiveSidebarItemDirective,
|
|
2801
|
+
ActiveSidebarItemGroupDirective,
|
|
2802
|
+
ActiveSidebarDirective] }); }
|
|
2803
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule }); }
|
|
2258
2804
|
}
|
|
2259
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2260
2806
|
type: NgModule,
|
|
2261
2807
|
args: [{
|
|
2262
2808
|
declarations: [
|
|
@@ -2267,6 +2813,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2267
2813
|
NumericValueAccessor,
|
|
2268
2814
|
RadioValueAccessor,
|
|
2269
2815
|
DatepickerValueAccessor,
|
|
2816
|
+
DateValueAccessor,
|
|
2270
2817
|
TimepickerValueAccessor,
|
|
2271
2818
|
SelectValueAccessor,
|
|
2272
2819
|
CheckboxValueAccessor,
|
|
@@ -2278,11 +2825,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2278
2825
|
MinDateValidator,
|
|
2279
2826
|
MaxDateValidator,
|
|
2280
2827
|
AllowedDatesValidator,
|
|
2828
|
+
MinDateValidatorIso,
|
|
2829
|
+
MaxDateValidatorIso,
|
|
2830
|
+
AllowedDatesValidatorIso,
|
|
2281
2831
|
// form helpers
|
|
2282
2832
|
SixFormDirective,
|
|
2283
2833
|
SixFormUtilDirective,
|
|
2284
2834
|
// router link directive
|
|
2285
2835
|
SixRouterLinkDirective,
|
|
2836
|
+
// sidebar helpers
|
|
2837
|
+
ActiveSidebarItemDirective,
|
|
2838
|
+
ActiveSidebarItemGroupDirective,
|
|
2839
|
+
ActiveSidebarDirective,
|
|
2286
2840
|
],
|
|
2287
2841
|
imports: [],
|
|
2288
2842
|
exports: [
|
|
@@ -2293,6 +2847,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2293
2847
|
NumericValueAccessor,
|
|
2294
2848
|
RadioValueAccessor,
|
|
2295
2849
|
DatepickerValueAccessor,
|
|
2850
|
+
DateValueAccessor,
|
|
2296
2851
|
TimepickerValueAccessor,
|
|
2297
2852
|
SelectValueAccessor,
|
|
2298
2853
|
CheckboxValueAccessor,
|
|
@@ -2304,11 +2859,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2304
2859
|
MinDateValidator,
|
|
2305
2860
|
MaxDateValidator,
|
|
2306
2861
|
AllowedDatesValidator,
|
|
2862
|
+
MinDateValidatorIso,
|
|
2863
|
+
MaxDateValidatorIso,
|
|
2864
|
+
AllowedDatesValidatorIso,
|
|
2307
2865
|
// form helpers
|
|
2308
2866
|
SixFormDirective,
|
|
2309
2867
|
SixFormUtilDirective,
|
|
2310
2868
|
// router link directive
|
|
2311
2869
|
SixRouterLinkDirective,
|
|
2870
|
+
// sidebar helpers
|
|
2871
|
+
ActiveSidebarItemDirective,
|
|
2872
|
+
ActiveSidebarItemGroupDirective,
|
|
2873
|
+
ActiveSidebarDirective,
|
|
2312
2874
|
],
|
|
2313
2875
|
}]
|
|
2314
2876
|
}] });
|
|
@@ -2323,10 +2885,10 @@ class AlertService {
|
|
|
2323
2885
|
showAlert(message, alertType, duration, iconName) {
|
|
2324
2886
|
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2325
2887
|
}
|
|
2326
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2327
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2888
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2889
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, providedIn: 'root' }); }
|
|
2328
2890
|
}
|
|
2329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AlertService, decorators: [{
|
|
2330
2892
|
type: Injectable,
|
|
2331
2893
|
args: [{ providedIn: 'root' }]
|
|
2332
2894
|
}] });
|
|
@@ -2339,5 +2901,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2339
2901
|
* Generated bundle index. Do not edit.
|
|
2340
2902
|
*/
|
|
2341
2903
|
|
|
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 };
|
|
2904
|
+
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
2905
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|