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