@six-group/ui-library-angular 0.0.0-insider.cec66ef → 0.0.0-insider.cee44ca
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/README.md +2 -1
- package/fesm2022/six-group-ui-library-angular.mjs +1120 -425
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/package.json +19 -14
- package/types/six-group-ui-library-angular.d.ts +1404 -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 -144
- package/esm2022/lib/form/six-form.directive.mjs +0 -134
- package/esm2022/lib/link/six-router-link.directive.mjs +0 -61
- package/esm2022/lib/services/alert.service.mjs +0 -21
- package/esm2022/lib/services/validation-messages.service.mjs +0 -15
- package/esm2022/lib/sidebar/active-sidebar.directive.mjs +0 -110
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +0 -59
- package/esm2022/lib/stencil-generated/components.mjs +0 -1414
- package/esm2022/lib/stencil-generated/index.mjs +0 -61
- package/esm2022/lib/ui-library-angular-config.mjs +0 -6
- package/esm2022/lib/ui-library-angular.module.mjs +0 -175
- package/esm2022/lib/validators/six-ui-library-validators.mjs +0 -203
- package/esm2022/public-api.mjs +0 -31
- package/esm2022/six-group-ui-library-angular.mjs +0 -5
- package/index.d.ts +0 -5
- package/lib/control-value-accessors/checkbox-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/date-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/datepicker-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/numeric-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/radio-value-accessor.d.ts +0 -15
- package/lib/control-value-accessors/range-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/select-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/switch-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/text-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/timepicker-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/value-accessor.d.ts +0 -41
- package/lib/form/six-form.directive.d.ts +0 -71
- package/lib/link/six-router-link.directive.d.ts +0 -26
- package/lib/services/alert.service.d.ts +0 -11
- package/lib/services/validation-messages.service.d.ts +0 -7
- package/lib/sidebar/active-sidebar.directive.d.ts +0 -59
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +0 -9
- package/lib/stencil-generated/components.d.ts +0 -897
- package/lib/stencil-generated/index.d.ts +0 -2
- package/lib/ui-library-angular-config.d.ts +0 -6
- package/lib/ui-library-angular.module.d.ts +0 -25
- package/lib/validators/six-ui-library-validators.d.ts +0 -74
- package/public-api.d.ts +0 -20
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { EventEmitter, Output, ChangeDetectionStrategy, Component, Injectable, InjectionToken, inject, HostListener, Directive, Input, 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';
|
|
@@ -69,14 +69,19 @@ function ProxyCmp(opts) {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
let SixAlert = class SixAlert {
|
|
72
|
+
z;
|
|
73
|
+
el;
|
|
74
|
+
sixAlertShow = new EventEmitter();
|
|
75
|
+
sixAlertAfterShow = new EventEmitter();
|
|
76
|
+
sixAlertHide = new EventEmitter();
|
|
77
|
+
sixAlertAfterHide = new EventEmitter();
|
|
72
78
|
constructor(c, r, z) {
|
|
73
79
|
this.z = z;
|
|
74
80
|
c.detach();
|
|
75
81
|
this.el = r.nativeElement;
|
|
76
|
-
proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
|
|
77
82
|
}
|
|
78
|
-
static
|
|
79
|
-
static
|
|
83
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
84
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixAlert, isStandalone: false, selector: "six-alert", inputs: { closable: "closable", duration: "duration", open: "open", type: "type" }, outputs: { sixAlertShow: "sixAlertShow", sixAlertAfterShow: "sixAlertAfterShow", sixAlertHide: "sixAlertHide", sixAlertAfterHide: "sixAlertAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
80
85
|
};
|
|
81
86
|
SixAlert = __decorate([
|
|
82
87
|
ProxyCmp({
|
|
@@ -84,7 +89,7 @@ SixAlert = __decorate([
|
|
|
84
89
|
methods: ['show', 'hide', 'toast']
|
|
85
90
|
})
|
|
86
91
|
], SixAlert);
|
|
87
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
92
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixAlert, decorators: [{
|
|
88
93
|
type: Component,
|
|
89
94
|
args: [{
|
|
90
95
|
selector: 'six-alert',
|
|
@@ -92,23 +97,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
92
97
|
template: '<ng-content></ng-content>',
|
|
93
98
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
94
99
|
inputs: ['closable', 'duration', 'open', 'type'],
|
|
100
|
+
outputs: ['sixAlertShow:six-alert-show', 'sixAlertAfterShow:six-alert-after-show', 'sixAlertHide:six-alert-hide', 'sixAlertAfterHide:six-alert-after-hide'],
|
|
101
|
+
standalone: false
|
|
95
102
|
}]
|
|
96
|
-
}], ctorParameters:
|
|
103
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixAlertShow: [{
|
|
104
|
+
type: Output
|
|
105
|
+
}], sixAlertAfterShow: [{
|
|
106
|
+
type: Output
|
|
107
|
+
}], sixAlertHide: [{
|
|
108
|
+
type: Output
|
|
109
|
+
}], sixAlertAfterHide: [{
|
|
110
|
+
type: Output
|
|
111
|
+
}] } });
|
|
97
112
|
let SixAvatar = class SixAvatar {
|
|
113
|
+
z;
|
|
114
|
+
el;
|
|
98
115
|
constructor(c, r, z) {
|
|
99
116
|
this.z = z;
|
|
100
117
|
c.detach();
|
|
101
118
|
this.el = r.nativeElement;
|
|
102
119
|
}
|
|
103
|
-
static
|
|
104
|
-
static
|
|
120
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixAvatar, isStandalone: false, selector: "six-avatar", inputs: { alt: "alt", image: "image", initials: "initials", shape: "shape" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
105
122
|
};
|
|
106
123
|
SixAvatar = __decorate([
|
|
107
124
|
ProxyCmp({
|
|
108
125
|
inputs: ['alt', 'image', 'initials', 'shape']
|
|
109
126
|
})
|
|
110
127
|
], SixAvatar);
|
|
111
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
128
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixAvatar, decorators: [{
|
|
112
129
|
type: Component,
|
|
113
130
|
args: [{
|
|
114
131
|
selector: 'six-avatar',
|
|
@@ -116,23 +133,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
116
133
|
template: '<ng-content></ng-content>',
|
|
117
134
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
118
135
|
inputs: ['alt', 'image', 'initials', 'shape'],
|
|
136
|
+
standalone: false
|
|
119
137
|
}]
|
|
120
|
-
}], ctorParameters:
|
|
138
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
121
139
|
let SixBadge = class SixBadge {
|
|
140
|
+
z;
|
|
141
|
+
el;
|
|
122
142
|
constructor(c, r, z) {
|
|
123
143
|
this.z = z;
|
|
124
144
|
c.detach();
|
|
125
145
|
this.el = r.nativeElement;
|
|
126
146
|
}
|
|
127
|
-
static
|
|
128
|
-
static
|
|
147
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
148
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixBadge, isStandalone: false, selector: "six-badge", inputs: { pill: "pill", pulse: "pulse", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
129
149
|
};
|
|
130
150
|
SixBadge = __decorate([
|
|
131
151
|
ProxyCmp({
|
|
132
152
|
inputs: ['pill', 'pulse', 'type']
|
|
133
153
|
})
|
|
134
154
|
], SixBadge);
|
|
135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBadge, decorators: [{
|
|
136
156
|
type: Component,
|
|
137
157
|
args: [{
|
|
138
158
|
selector: 'six-badge',
|
|
@@ -140,17 +160,75 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
140
160
|
template: '<ng-content></ng-content>',
|
|
141
161
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
142
162
|
inputs: ['pill', 'pulse', 'type'],
|
|
163
|
+
standalone: false
|
|
164
|
+
}]
|
|
165
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
166
|
+
let SixBreadcrumbs = class SixBreadcrumbs {
|
|
167
|
+
z;
|
|
168
|
+
el;
|
|
169
|
+
constructor(c, r, z) {
|
|
170
|
+
this.z = z;
|
|
171
|
+
c.detach();
|
|
172
|
+
this.el = r.nativeElement;
|
|
173
|
+
}
|
|
174
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
175
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixBreadcrumbs, isStandalone: false, selector: "six-breadcrumbs", inputs: { separatorIcon: "separatorIcon", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
176
|
+
};
|
|
177
|
+
SixBreadcrumbs = __decorate([
|
|
178
|
+
ProxyCmp({
|
|
179
|
+
inputs: ['separatorIcon', 'size']
|
|
180
|
+
})
|
|
181
|
+
], SixBreadcrumbs);
|
|
182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBreadcrumbs, decorators: [{
|
|
183
|
+
type: Component,
|
|
184
|
+
args: [{
|
|
185
|
+
selector: 'six-breadcrumbs',
|
|
186
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
187
|
+
template: '<ng-content></ng-content>',
|
|
188
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
189
|
+
inputs: ['separatorIcon', 'size'],
|
|
190
|
+
standalone: false
|
|
191
|
+
}]
|
|
192
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
193
|
+
let SixBreadcrumbsItem = class SixBreadcrumbsItem {
|
|
194
|
+
z;
|
|
195
|
+
el;
|
|
196
|
+
constructor(c, r, z) {
|
|
197
|
+
this.z = z;
|
|
198
|
+
c.detach();
|
|
199
|
+
this.el = r.nativeElement;
|
|
200
|
+
}
|
|
201
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBreadcrumbsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
202
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixBreadcrumbsItem, isStandalone: false, selector: "six-breadcrumbs-item", inputs: { href: "href", readonly: "readonly", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
203
|
+
};
|
|
204
|
+
SixBreadcrumbsItem = __decorate([
|
|
205
|
+
ProxyCmp({
|
|
206
|
+
inputs: ['href', 'readonly', 'target']
|
|
207
|
+
})
|
|
208
|
+
], SixBreadcrumbsItem);
|
|
209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBreadcrumbsItem, decorators: [{
|
|
210
|
+
type: Component,
|
|
211
|
+
args: [{
|
|
212
|
+
selector: 'six-breadcrumbs-item',
|
|
213
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
214
|
+
template: '<ng-content></ng-content>',
|
|
215
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
216
|
+
inputs: ['href', 'readonly', 'target'],
|
|
217
|
+
standalone: false
|
|
143
218
|
}]
|
|
144
|
-
}], ctorParameters:
|
|
219
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
145
220
|
let SixButton = class SixButton {
|
|
221
|
+
z;
|
|
222
|
+
el;
|
|
223
|
+
sixButtonBlur = new EventEmitter();
|
|
224
|
+
sixButtonFocus = new EventEmitter();
|
|
146
225
|
constructor(c, r, z) {
|
|
147
226
|
this.z = z;
|
|
148
227
|
c.detach();
|
|
149
228
|
this.el = r.nativeElement;
|
|
150
|
-
proxyOutputs(this, this.el, ['six-button-blur', 'six-button-focus']);
|
|
151
229
|
}
|
|
152
|
-
static
|
|
153
|
-
static
|
|
230
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
231
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixButtonBlur: "sixButtonBlur", sixButtonFocus: "sixButtonFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
154
232
|
};
|
|
155
233
|
SixButton = __decorate([
|
|
156
234
|
ProxyCmp({
|
|
@@ -158,7 +236,7 @@ SixButton = __decorate([
|
|
|
158
236
|
methods: ['setFocus', 'removeFocus']
|
|
159
237
|
})
|
|
160
238
|
], SixButton);
|
|
161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixButton, decorators: [{
|
|
162
240
|
type: Component,
|
|
163
241
|
args: [{
|
|
164
242
|
selector: 'six-button',
|
|
@@ -166,21 +244,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
166
244
|
template: '<ng-content></ng-content>',
|
|
167
245
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
168
246
|
inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
|
|
247
|
+
outputs: ['sixButtonBlur:six-button-blur', 'sixButtonFocus:six-button-focus'],
|
|
248
|
+
standalone: false
|
|
169
249
|
}]
|
|
170
|
-
}], ctorParameters:
|
|
250
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixButtonBlur: [{
|
|
251
|
+
type: Output
|
|
252
|
+
}], sixButtonFocus: [{
|
|
253
|
+
type: Output
|
|
254
|
+
}] } });
|
|
171
255
|
let SixCard = class SixCard {
|
|
256
|
+
z;
|
|
257
|
+
el;
|
|
172
258
|
constructor(c, r, z) {
|
|
173
259
|
this.z = z;
|
|
174
260
|
c.detach();
|
|
175
261
|
this.el = r.nativeElement;
|
|
176
262
|
}
|
|
177
|
-
static
|
|
178
|
-
static
|
|
263
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
264
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixCard, isStandalone: false, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
179
265
|
};
|
|
180
266
|
SixCard = __decorate([
|
|
181
267
|
ProxyCmp({})
|
|
182
268
|
], SixCard);
|
|
183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCard, decorators: [{
|
|
184
270
|
type: Component,
|
|
185
271
|
args: [{
|
|
186
272
|
selector: 'six-card',
|
|
@@ -188,17 +274,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
188
274
|
template: '<ng-content></ng-content>',
|
|
189
275
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
190
276
|
inputs: [],
|
|
277
|
+
standalone: false
|
|
191
278
|
}]
|
|
192
|
-
}], ctorParameters:
|
|
279
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
193
280
|
let SixCheckbox = class SixCheckbox {
|
|
281
|
+
z;
|
|
282
|
+
el;
|
|
283
|
+
sixCheckboxBlur = new EventEmitter();
|
|
284
|
+
sixCheckboxChange = new EventEmitter();
|
|
285
|
+
sixCheckboxFocus = new EventEmitter();
|
|
194
286
|
constructor(c, r, z) {
|
|
195
287
|
this.z = z;
|
|
196
288
|
c.detach();
|
|
197
289
|
this.el = r.nativeElement;
|
|
198
|
-
proxyOutputs(this, this.el, ['six-checkbox-blur', 'six-checkbox-change', 'six-checkbox-focus']);
|
|
199
290
|
}
|
|
200
|
-
static
|
|
201
|
-
static
|
|
291
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
292
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixCheckboxBlur: "sixCheckboxBlur", sixCheckboxChange: "sixCheckboxChange", sixCheckboxFocus: "sixCheckboxFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
202
293
|
};
|
|
203
294
|
SixCheckbox = __decorate([
|
|
204
295
|
ProxyCmp({
|
|
@@ -206,7 +297,7 @@ SixCheckbox = __decorate([
|
|
|
206
297
|
methods: ['setFocus', 'removeFocus']
|
|
207
298
|
})
|
|
208
299
|
], SixCheckbox);
|
|
209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCheckbox, decorators: [{
|
|
210
301
|
type: Component,
|
|
211
302
|
args: [{
|
|
212
303
|
selector: 'six-checkbox',
|
|
@@ -214,43 +305,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
214
305
|
template: '<ng-content></ng-content>',
|
|
215
306
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
216
307
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
308
|
+
outputs: ['sixCheckboxBlur:six-checkbox-blur', 'sixCheckboxChange:six-checkbox-change', 'sixCheckboxFocus:six-checkbox-focus'],
|
|
309
|
+
standalone: false
|
|
217
310
|
}]
|
|
218
|
-
}], ctorParameters:
|
|
311
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixCheckboxBlur: [{
|
|
312
|
+
type: Output
|
|
313
|
+
}], sixCheckboxChange: [{
|
|
314
|
+
type: Output
|
|
315
|
+
}], sixCheckboxFocus: [{
|
|
316
|
+
type: Output
|
|
317
|
+
}] } });
|
|
219
318
|
let SixDate = class SixDate {
|
|
319
|
+
z;
|
|
320
|
+
el;
|
|
321
|
+
sixChange = new EventEmitter();
|
|
322
|
+
sixBlur = new EventEmitter();
|
|
220
323
|
constructor(c, r, z) {
|
|
221
324
|
this.z = z;
|
|
222
325
|
c.detach();
|
|
223
326
|
this.el = r.nativeElement;
|
|
224
|
-
proxyOutputs(this, this.el, ['six-change', 'six-blur']);
|
|
225
327
|
}
|
|
226
|
-
static
|
|
227
|
-
static
|
|
328
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
329
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixChange: "sixChange", sixBlur: "sixBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
228
330
|
};
|
|
229
331
|
SixDate = __decorate([
|
|
230
332
|
ProxyCmp({
|
|
231
|
-
inputs: ['allowedDates', 'clearable', 'dateFormat', '
|
|
333
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
232
334
|
methods: ['setFocus']
|
|
233
335
|
})
|
|
234
336
|
], SixDate);
|
|
235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDate, decorators: [{
|
|
236
338
|
type: Component,
|
|
237
339
|
args: [{
|
|
238
340
|
selector: 'six-date',
|
|
239
341
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
240
342
|
template: '<ng-content></ng-content>',
|
|
241
343
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
242
|
-
inputs: ['allowedDates', 'clearable', 'dateFormat', '
|
|
344
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
345
|
+
outputs: ['sixChange:six-change', 'sixBlur:six-blur'],
|
|
346
|
+
standalone: false
|
|
243
347
|
}]
|
|
244
|
-
}], ctorParameters:
|
|
348
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixChange: [{
|
|
349
|
+
type: Output
|
|
350
|
+
}], sixBlur: [{
|
|
351
|
+
type: Output
|
|
352
|
+
}] } });
|
|
245
353
|
let SixDatepicker = class SixDatepicker {
|
|
354
|
+
z;
|
|
355
|
+
el;
|
|
356
|
+
sixDatepickerSelect = new EventEmitter();
|
|
357
|
+
sixDatepickerClear = new EventEmitter();
|
|
358
|
+
sixDatepickerBlur = new EventEmitter();
|
|
246
359
|
constructor(c, r, z) {
|
|
247
360
|
this.z = z;
|
|
248
361
|
c.detach();
|
|
249
362
|
this.el = r.nativeElement;
|
|
250
|
-
proxyOutputs(this, this.el, ['six-datepicker-select', 'six-datepicker-clear', 'six-datepicker-blur']);
|
|
251
363
|
}
|
|
252
|
-
static
|
|
253
|
-
static
|
|
364
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
365
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixDatepickerSelect: "sixDatepickerSelect", sixDatepickerClear: "sixDatepickerClear", sixDatepickerBlur: "sixDatepickerBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
254
366
|
};
|
|
255
367
|
SixDatepicker = __decorate([
|
|
256
368
|
ProxyCmp({
|
|
@@ -258,7 +370,7 @@ SixDatepicker = __decorate([
|
|
|
258
370
|
methods: ['setFocus', 'select']
|
|
259
371
|
})
|
|
260
372
|
], SixDatepicker);
|
|
261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDatepicker, decorators: [{
|
|
262
374
|
type: Component,
|
|
263
375
|
args: [{
|
|
264
376
|
selector: 'six-datepicker',
|
|
@@ -266,17 +378,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
266
378
|
template: '<ng-content></ng-content>',
|
|
267
379
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
268
380
|
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'],
|
|
381
|
+
outputs: ['sixDatepickerSelect:six-datepicker-select', 'sixDatepickerClear:six-datepicker-clear', 'sixDatepickerBlur:six-datepicker-blur'],
|
|
382
|
+
standalone: false
|
|
269
383
|
}]
|
|
270
|
-
}], ctorParameters:
|
|
384
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixDatepickerSelect: [{
|
|
385
|
+
type: Output
|
|
386
|
+
}], sixDatepickerClear: [{
|
|
387
|
+
type: Output
|
|
388
|
+
}], sixDatepickerBlur: [{
|
|
389
|
+
type: Output
|
|
390
|
+
}] } });
|
|
271
391
|
let SixDetails = class SixDetails {
|
|
392
|
+
z;
|
|
393
|
+
el;
|
|
394
|
+
sixDetailsShow = new EventEmitter();
|
|
395
|
+
sixDetailsAfterShow = new EventEmitter();
|
|
396
|
+
sixDetailsHide = new EventEmitter();
|
|
397
|
+
sixDetailsAfterHide = new EventEmitter();
|
|
272
398
|
constructor(c, r, z) {
|
|
273
399
|
this.z = z;
|
|
274
400
|
c.detach();
|
|
275
401
|
this.el = r.nativeElement;
|
|
276
|
-
proxyOutputs(this, this.el, ['six-details-show', 'six-details-after-show', 'six-details-hide', 'six-details-after-hide']);
|
|
277
402
|
}
|
|
278
|
-
static
|
|
279
|
-
static
|
|
403
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
404
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDetails, isStandalone: false, selector: "six-details", inputs: { disabled: "disabled", hasContent: "hasContent", inline: "inline", open: "open", selectableEmpty: "selectableEmpty", summary: "summary", summaryIcon: "summaryIcon", summaryIconSize: "summaryIconSize" }, outputs: { sixDetailsShow: "sixDetailsShow", sixDetailsAfterShow: "sixDetailsAfterShow", sixDetailsHide: "sixDetailsHide", sixDetailsAfterHide: "sixDetailsAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
280
405
|
};
|
|
281
406
|
SixDetails = __decorate([
|
|
282
407
|
ProxyCmp({
|
|
@@ -284,7 +409,7 @@ SixDetails = __decorate([
|
|
|
284
409
|
methods: ['show', 'hide']
|
|
285
410
|
})
|
|
286
411
|
], SixDetails);
|
|
287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
412
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDetails, decorators: [{
|
|
288
413
|
type: Component,
|
|
289
414
|
args: [{
|
|
290
415
|
selector: 'six-details',
|
|
@@ -292,17 +417,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
292
417
|
template: '<ng-content></ng-content>',
|
|
293
418
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
294
419
|
inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
|
|
420
|
+
outputs: ['sixDetailsShow:six-details-show', 'sixDetailsAfterShow:six-details-after-show', 'sixDetailsHide:six-details-hide', 'sixDetailsAfterHide:six-details-after-hide'],
|
|
421
|
+
standalone: false
|
|
295
422
|
}]
|
|
296
|
-
}], ctorParameters:
|
|
423
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixDetailsShow: [{
|
|
424
|
+
type: Output
|
|
425
|
+
}], sixDetailsAfterShow: [{
|
|
426
|
+
type: Output
|
|
427
|
+
}], sixDetailsHide: [{
|
|
428
|
+
type: Output
|
|
429
|
+
}], sixDetailsAfterHide: [{
|
|
430
|
+
type: Output
|
|
431
|
+
}] } });
|
|
297
432
|
let SixDialog = class SixDialog {
|
|
433
|
+
z;
|
|
434
|
+
el;
|
|
435
|
+
sixDialogShow = new EventEmitter();
|
|
436
|
+
sixDialogAfterShow = new EventEmitter();
|
|
437
|
+
sixDialogHide = new EventEmitter();
|
|
438
|
+
sixDialogAfterHide = new EventEmitter();
|
|
439
|
+
sixDialogInitialFocus = new EventEmitter();
|
|
440
|
+
sixDialogRequestClose = new EventEmitter();
|
|
298
441
|
constructor(c, r, z) {
|
|
299
442
|
this.z = z;
|
|
300
443
|
c.detach();
|
|
301
444
|
this.el = r.nativeElement;
|
|
302
|
-
proxyOutputs(this, this.el, ['six-dialog-show', 'six-dialog-after-show', 'six-dialog-hide', 'six-dialog-after-hide', 'six-dialog-initial-focus', 'six-dialog-overlay-dismiss']);
|
|
303
445
|
}
|
|
304
|
-
static
|
|
305
|
-
static
|
|
446
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
447
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDialog, isStandalone: false, selector: "six-dialog", inputs: { label: "label", noHeader: "noHeader", open: "open" }, outputs: { sixDialogShow: "sixDialogShow", sixDialogAfterShow: "sixDialogAfterShow", sixDialogHide: "sixDialogHide", sixDialogAfterHide: "sixDialogAfterHide", sixDialogInitialFocus: "sixDialogInitialFocus", sixDialogRequestClose: "sixDialogRequestClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
306
448
|
};
|
|
307
449
|
SixDialog = __decorate([
|
|
308
450
|
ProxyCmp({
|
|
@@ -310,7 +452,7 @@ SixDialog = __decorate([
|
|
|
310
452
|
methods: ['show', 'hide']
|
|
311
453
|
})
|
|
312
454
|
], SixDialog);
|
|
313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDialog, decorators: [{
|
|
314
456
|
type: Component,
|
|
315
457
|
args: [{
|
|
316
458
|
selector: 'six-dialog',
|
|
@@ -318,17 +460,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
318
460
|
template: '<ng-content></ng-content>',
|
|
319
461
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
320
462
|
inputs: ['label', 'noHeader', 'open'],
|
|
463
|
+
outputs: ['sixDialogShow:six-dialog-show', 'sixDialogAfterShow:six-dialog-after-show', 'sixDialogHide:six-dialog-hide', 'sixDialogAfterHide:six-dialog-after-hide', 'sixDialogInitialFocus:six-dialog-initial-focus', 'sixDialogRequestClose:six-dialog-request-close'],
|
|
464
|
+
standalone: false
|
|
321
465
|
}]
|
|
322
|
-
}], ctorParameters:
|
|
466
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixDialogShow: [{
|
|
467
|
+
type: Output
|
|
468
|
+
}], sixDialogAfterShow: [{
|
|
469
|
+
type: Output
|
|
470
|
+
}], sixDialogHide: [{
|
|
471
|
+
type: Output
|
|
472
|
+
}], sixDialogAfterHide: [{
|
|
473
|
+
type: Output
|
|
474
|
+
}], sixDialogInitialFocus: [{
|
|
475
|
+
type: Output
|
|
476
|
+
}], sixDialogRequestClose: [{
|
|
477
|
+
type: Output
|
|
478
|
+
}] } });
|
|
323
479
|
let SixDrawer = class SixDrawer {
|
|
480
|
+
z;
|
|
481
|
+
el;
|
|
482
|
+
sixDrawerShow = new EventEmitter();
|
|
483
|
+
sixDrawerAfterShow = new EventEmitter();
|
|
484
|
+
sixDrawerHide = new EventEmitter();
|
|
485
|
+
sixDrawerAfterHide = new EventEmitter();
|
|
486
|
+
sixDrawerInitialFocus = new EventEmitter();
|
|
487
|
+
sixDrawerRequestClose = new EventEmitter();
|
|
324
488
|
constructor(c, r, z) {
|
|
325
489
|
this.z = z;
|
|
326
490
|
c.detach();
|
|
327
491
|
this.el = r.nativeElement;
|
|
328
|
-
proxyOutputs(this, this.el, ['six-drawer-show', 'six-drawer-after-show', 'six-drawer-hide', 'six-drawer-after-hide', 'six-drawer-initial-focus', 'six-drawer-overlay-dismiss']);
|
|
329
492
|
}
|
|
330
|
-
static
|
|
331
|
-
static
|
|
493
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
494
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDrawer, isStandalone: false, selector: "six-drawer", inputs: { contained: "contained", label: "label", noHeader: "noHeader", open: "open", placement: "placement" }, outputs: { sixDrawerShow: "sixDrawerShow", sixDrawerAfterShow: "sixDrawerAfterShow", sixDrawerHide: "sixDrawerHide", sixDrawerAfterHide: "sixDrawerAfterHide", sixDrawerInitialFocus: "sixDrawerInitialFocus", sixDrawerRequestClose: "sixDrawerRequestClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
332
495
|
};
|
|
333
496
|
SixDrawer = __decorate([
|
|
334
497
|
ProxyCmp({
|
|
@@ -336,7 +499,7 @@ SixDrawer = __decorate([
|
|
|
336
499
|
methods: ['show', 'hide']
|
|
337
500
|
})
|
|
338
501
|
], SixDrawer);
|
|
339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDrawer, decorators: [{
|
|
340
503
|
type: Component,
|
|
341
504
|
args: [{
|
|
342
505
|
selector: 'six-drawer',
|
|
@@ -344,47 +507,87 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
344
507
|
template: '<ng-content></ng-content>',
|
|
345
508
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
346
509
|
inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
|
|
510
|
+
outputs: ['sixDrawerShow:six-drawer-show', 'sixDrawerAfterShow:six-drawer-after-show', 'sixDrawerHide:six-drawer-hide', 'sixDrawerAfterHide:six-drawer-after-hide', 'sixDrawerInitialFocus:six-drawer-initial-focus', 'sixDrawerRequestClose:six-drawer-request-close'],
|
|
511
|
+
standalone: false
|
|
347
512
|
}]
|
|
348
|
-
}], ctorParameters:
|
|
513
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixDrawerShow: [{
|
|
514
|
+
type: Output
|
|
515
|
+
}], sixDrawerAfterShow: [{
|
|
516
|
+
type: Output
|
|
517
|
+
}], sixDrawerHide: [{
|
|
518
|
+
type: Output
|
|
519
|
+
}], sixDrawerAfterHide: [{
|
|
520
|
+
type: Output
|
|
521
|
+
}], sixDrawerInitialFocus: [{
|
|
522
|
+
type: Output
|
|
523
|
+
}], sixDrawerRequestClose: [{
|
|
524
|
+
type: Output
|
|
525
|
+
}] } });
|
|
349
526
|
let SixDropdown = class SixDropdown {
|
|
527
|
+
z;
|
|
528
|
+
el;
|
|
529
|
+
sixDropdownShow = new EventEmitter();
|
|
530
|
+
sixDropdownAfterShow = new EventEmitter();
|
|
531
|
+
sixDropdownHide = new EventEmitter();
|
|
532
|
+
sixDropdownAfterHide = new EventEmitter();
|
|
533
|
+
sixDropdownAutoFilterFired = new EventEmitter();
|
|
534
|
+
sixAsyncFilterFired = new EventEmitter();
|
|
535
|
+
sixDropdownScroll = new EventEmitter();
|
|
350
536
|
constructor(c, r, z) {
|
|
351
537
|
this.z = z;
|
|
352
538
|
c.detach();
|
|
353
539
|
this.el = r.nativeElement;
|
|
354
|
-
proxyOutputs(this, this.el, ['six-dropdown-show', 'six-dropdown-after-show', 'six-dropdown-hide', 'six-dropdown-after-hide', 'six-dropdown-auto-filter-fired', 'six-async-filter-fired', 'six-dropdown-scroll']);
|
|
355
540
|
}
|
|
356
|
-
static
|
|
357
|
-
static
|
|
541
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
542
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDropdown, isStandalone: false, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", disableTypeToSelect: "disableTypeToSelect", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", matchTriggerWidth: "matchTriggerWidth", noScroll: "noScroll", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, outputs: { sixDropdownShow: "sixDropdownShow", sixDropdownAfterShow: "sixDropdownAfterShow", sixDropdownHide: "sixDropdownHide", sixDropdownAfterHide: "sixDropdownAfterHide", sixDropdownAutoFilterFired: "sixDropdownAutoFilterFired", sixAsyncFilterFired: "sixAsyncFilterFired", sixDropdownScroll: "sixDropdownScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
358
543
|
};
|
|
359
544
|
SixDropdown = __decorate([
|
|
360
545
|
ProxyCmp({
|
|
361
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
546
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'disableTypeToSelect', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'noScroll', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
362
547
|
methods: ['show', 'hide']
|
|
363
548
|
})
|
|
364
549
|
], SixDropdown);
|
|
365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixDropdown, decorators: [{
|
|
366
551
|
type: Component,
|
|
367
552
|
args: [{
|
|
368
553
|
selector: 'six-dropdown',
|
|
369
554
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
370
555
|
template: '<ng-content></ng-content>',
|
|
371
556
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
372
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
557
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'disableTypeToSelect', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'noScroll', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
558
|
+
outputs: ['sixDropdownShow:six-dropdown-show', 'sixDropdownAfterShow:six-dropdown-after-show', 'sixDropdownHide:six-dropdown-hide', 'sixDropdownAfterHide:six-dropdown-after-hide', 'sixDropdownAutoFilterFired:six-dropdown-auto-filter-fired', 'sixAsyncFilterFired:six-async-filter-fired', 'sixDropdownScroll:six-dropdown-scroll'],
|
|
559
|
+
standalone: false
|
|
373
560
|
}]
|
|
374
|
-
}], ctorParameters:
|
|
561
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixDropdownShow: [{
|
|
562
|
+
type: Output
|
|
563
|
+
}], sixDropdownAfterShow: [{
|
|
564
|
+
type: Output
|
|
565
|
+
}], sixDropdownHide: [{
|
|
566
|
+
type: Output
|
|
567
|
+
}], sixDropdownAfterHide: [{
|
|
568
|
+
type: Output
|
|
569
|
+
}], sixDropdownAutoFilterFired: [{
|
|
570
|
+
type: Output
|
|
571
|
+
}], sixAsyncFilterFired: [{
|
|
572
|
+
type: Output
|
|
573
|
+
}], sixDropdownScroll: [{
|
|
574
|
+
type: Output
|
|
575
|
+
}] } });
|
|
375
576
|
let SixError = class SixError {
|
|
577
|
+
z;
|
|
578
|
+
el;
|
|
376
579
|
constructor(c, r, z) {
|
|
377
580
|
this.z = z;
|
|
378
581
|
c.detach();
|
|
379
582
|
this.el = r.nativeElement;
|
|
380
583
|
}
|
|
381
|
-
static
|
|
382
|
-
static
|
|
584
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
585
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixError, isStandalone: false, selector: "six-error", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
383
586
|
};
|
|
384
587
|
SixError = __decorate([
|
|
385
588
|
ProxyCmp({})
|
|
386
589
|
], SixError);
|
|
387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixError, decorators: [{
|
|
388
591
|
type: Component,
|
|
389
592
|
args: [{
|
|
390
593
|
selector: 'six-error',
|
|
@@ -392,23 +595,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
392
595
|
template: '<ng-content></ng-content>',
|
|
393
596
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
394
597
|
inputs: [],
|
|
598
|
+
standalone: false
|
|
395
599
|
}]
|
|
396
|
-
}], ctorParameters:
|
|
600
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
397
601
|
let SixErrorPage = class SixErrorPage {
|
|
602
|
+
z;
|
|
603
|
+
el;
|
|
398
604
|
constructor(c, r, z) {
|
|
399
605
|
this.z = z;
|
|
400
606
|
c.detach();
|
|
401
607
|
this.el = r.nativeElement;
|
|
402
608
|
}
|
|
403
|
-
static
|
|
404
|
-
static
|
|
609
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
610
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixErrorPage, isStandalone: false, selector: "six-error-page", inputs: { customDescription: "customDescription", customIcon: "customIcon", customTitle: "customTitle", errorCode: "errorCode", language: "language" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
405
611
|
};
|
|
406
612
|
SixErrorPage = __decorate([
|
|
407
613
|
ProxyCmp({
|
|
408
614
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
|
|
409
615
|
})
|
|
410
616
|
], SixErrorPage);
|
|
411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixErrorPage, decorators: [{
|
|
412
618
|
type: Component,
|
|
413
619
|
args: [{
|
|
414
620
|
selector: 'six-error-page',
|
|
@@ -416,21 +622,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
416
622
|
template: '<ng-content></ng-content>',
|
|
417
623
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
418
624
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language'],
|
|
625
|
+
standalone: false
|
|
419
626
|
}]
|
|
420
|
-
}], ctorParameters:
|
|
627
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
421
628
|
let SixFileList = class SixFileList {
|
|
629
|
+
z;
|
|
630
|
+
el;
|
|
422
631
|
constructor(c, r, z) {
|
|
423
632
|
this.z = z;
|
|
424
633
|
c.detach();
|
|
425
634
|
this.el = r.nativeElement;
|
|
426
635
|
}
|
|
427
|
-
static
|
|
428
|
-
static
|
|
636
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
637
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFileList, isStandalone: false, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
429
638
|
};
|
|
430
639
|
SixFileList = __decorate([
|
|
431
640
|
ProxyCmp({})
|
|
432
641
|
], SixFileList);
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFileList, decorators: [{
|
|
434
643
|
type: Component,
|
|
435
644
|
args: [{
|
|
436
645
|
selector: 'six-file-list',
|
|
@@ -438,24 +647,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
438
647
|
template: '<ng-content></ng-content>',
|
|
439
648
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
440
649
|
inputs: [],
|
|
650
|
+
standalone: false
|
|
441
651
|
}]
|
|
442
|
-
}], ctorParameters:
|
|
652
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
443
653
|
let SixFileListItem = class SixFileListItem {
|
|
654
|
+
z;
|
|
655
|
+
el;
|
|
656
|
+
sixFileListItemDownload = new EventEmitter();
|
|
657
|
+
sixFileListItemRemove = new EventEmitter();
|
|
444
658
|
constructor(c, r, z) {
|
|
445
659
|
this.z = z;
|
|
446
660
|
c.detach();
|
|
447
661
|
this.el = r.nativeElement;
|
|
448
|
-
proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
|
|
449
662
|
}
|
|
450
|
-
static
|
|
451
|
-
static
|
|
663
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
664
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFileListItem, isStandalone: false, selector: "six-file-list-item", inputs: { date: "date", identifier: "identifier", name: "name", nodelete: "nodelete", nodownload: "nodownload", size: "size" }, outputs: { sixFileListItemDownload: "sixFileListItemDownload", sixFileListItemRemove: "sixFileListItemRemove" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
452
665
|
};
|
|
453
666
|
SixFileListItem = __decorate([
|
|
454
667
|
ProxyCmp({
|
|
455
668
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
|
|
456
669
|
})
|
|
457
670
|
], SixFileListItem);
|
|
458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFileListItem, decorators: [{
|
|
459
672
|
type: Component,
|
|
460
673
|
args: [{
|
|
461
674
|
selector: 'six-file-list-item',
|
|
@@ -463,24 +676,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
463
676
|
template: '<ng-content></ng-content>',
|
|
464
677
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
465
678
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size'],
|
|
679
|
+
outputs: ['sixFileListItemDownload:six-file-list-item-download', 'sixFileListItemRemove:six-file-list-item-remove'],
|
|
680
|
+
standalone: false
|
|
466
681
|
}]
|
|
467
|
-
}], ctorParameters:
|
|
682
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixFileListItemDownload: [{
|
|
683
|
+
type: Output
|
|
684
|
+
}], sixFileListItemRemove: [{
|
|
685
|
+
type: Output
|
|
686
|
+
}] } });
|
|
468
687
|
let SixFileUpload = class SixFileUpload {
|
|
688
|
+
z;
|
|
689
|
+
el;
|
|
690
|
+
sixFileUploadSuccess = new EventEmitter();
|
|
691
|
+
sixFileUploadFailure = new EventEmitter();
|
|
469
692
|
constructor(c, r, z) {
|
|
470
693
|
this.z = z;
|
|
471
694
|
c.detach();
|
|
472
695
|
this.el = r.nativeElement;
|
|
473
|
-
proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
|
|
474
696
|
}
|
|
475
|
-
static
|
|
476
|
-
static
|
|
697
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
698
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixFileUploadSuccess: "sixFileUploadSuccess", sixFileUploadFailure: "sixFileUploadFailure" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
477
699
|
};
|
|
478
700
|
SixFileUpload = __decorate([
|
|
479
701
|
ProxyCmp({
|
|
480
702
|
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading']
|
|
481
703
|
})
|
|
482
704
|
], SixFileUpload);
|
|
483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFileUpload, decorators: [{
|
|
484
706
|
type: Component,
|
|
485
707
|
args: [{
|
|
486
708
|
selector: 'six-file-upload',
|
|
@@ -488,21 +710,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
488
710
|
template: '<ng-content></ng-content>',
|
|
489
711
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
490
712
|
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
|
|
713
|
+
outputs: ['sixFileUploadSuccess:six-file-upload-success', 'sixFileUploadFailure:six-file-upload-failure'],
|
|
714
|
+
standalone: false
|
|
491
715
|
}]
|
|
492
|
-
}], ctorParameters:
|
|
716
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixFileUploadSuccess: [{
|
|
717
|
+
type: Output
|
|
718
|
+
}], sixFileUploadFailure: [{
|
|
719
|
+
type: Output
|
|
720
|
+
}] } });
|
|
493
721
|
let SixFooter = class SixFooter {
|
|
722
|
+
z;
|
|
723
|
+
el;
|
|
494
724
|
constructor(c, r, z) {
|
|
495
725
|
this.z = z;
|
|
496
726
|
c.detach();
|
|
497
727
|
this.el = r.nativeElement;
|
|
498
728
|
}
|
|
499
|
-
static
|
|
500
|
-
static
|
|
729
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
730
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFooter, isStandalone: false, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
501
731
|
};
|
|
502
732
|
SixFooter = __decorate([
|
|
503
733
|
ProxyCmp({})
|
|
504
734
|
], SixFooter);
|
|
505
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFooter, decorators: [{
|
|
506
736
|
type: Component,
|
|
507
737
|
args: [{
|
|
508
738
|
selector: 'six-footer',
|
|
@@ -510,23 +740,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
510
740
|
template: '<ng-content></ng-content>',
|
|
511
741
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
512
742
|
inputs: [],
|
|
743
|
+
standalone: false
|
|
513
744
|
}]
|
|
514
|
-
}], ctorParameters:
|
|
745
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
515
746
|
let SixGroupLabel = class SixGroupLabel {
|
|
747
|
+
z;
|
|
748
|
+
el;
|
|
516
749
|
constructor(c, r, z) {
|
|
517
750
|
this.z = z;
|
|
518
751
|
c.detach();
|
|
519
752
|
this.el = r.nativeElement;
|
|
520
753
|
}
|
|
521
|
-
static
|
|
522
|
-
static
|
|
754
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
755
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixGroupLabel, isStandalone: false, selector: "six-group-label", inputs: { disabled: "disabled", helpText: "helpText", label: "label", required: "required", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
523
756
|
};
|
|
524
757
|
SixGroupLabel = __decorate([
|
|
525
758
|
ProxyCmp({
|
|
526
759
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size']
|
|
527
760
|
})
|
|
528
761
|
], SixGroupLabel);
|
|
529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixGroupLabel, decorators: [{
|
|
530
763
|
type: Component,
|
|
531
764
|
args: [{
|
|
532
765
|
selector: 'six-group-label',
|
|
@@ -534,23 +767,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
534
767
|
template: '<ng-content></ng-content>',
|
|
535
768
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
536
769
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size'],
|
|
770
|
+
standalone: false
|
|
537
771
|
}]
|
|
538
|
-
}], ctorParameters:
|
|
772
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
539
773
|
let SixHeader = class SixHeader {
|
|
774
|
+
z;
|
|
775
|
+
el;
|
|
540
776
|
constructor(c, r, z) {
|
|
541
777
|
this.z = z;
|
|
542
778
|
c.detach();
|
|
543
779
|
this.el = r.nativeElement;
|
|
544
780
|
}
|
|
545
|
-
static
|
|
546
|
-
static
|
|
781
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
782
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeader, isStandalone: false, selector: "six-header", inputs: { openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
547
783
|
};
|
|
548
784
|
SixHeader = __decorate([
|
|
549
785
|
ProxyCmp({
|
|
550
786
|
inputs: ['openSearch', 'shiftContent']
|
|
551
787
|
})
|
|
552
788
|
], SixHeader);
|
|
553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeader, decorators: [{
|
|
554
790
|
type: Component,
|
|
555
791
|
args: [{
|
|
556
792
|
selector: 'six-header',
|
|
@@ -558,23 +794,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
558
794
|
template: '<ng-content></ng-content>',
|
|
559
795
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
560
796
|
inputs: ['openSearch', 'shiftContent'],
|
|
797
|
+
standalone: false
|
|
561
798
|
}]
|
|
562
|
-
}], ctorParameters:
|
|
799
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
563
800
|
let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
801
|
+
z;
|
|
802
|
+
el;
|
|
564
803
|
constructor(c, r, z) {
|
|
565
804
|
this.z = z;
|
|
566
805
|
c.detach();
|
|
567
806
|
this.el = r.nativeElement;
|
|
568
807
|
}
|
|
569
|
-
static
|
|
570
|
-
static
|
|
808
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeaderDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
809
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeaderDropdownItem, isStandalone: false, selector: "six-header-dropdown-item", inputs: { filter: "filter", filterPlaceholder: "filterPlaceholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
571
810
|
};
|
|
572
811
|
SixHeaderDropdownItem = __decorate([
|
|
573
812
|
ProxyCmp({
|
|
574
813
|
inputs: ['filter', 'filterPlaceholder']
|
|
575
814
|
})
|
|
576
815
|
], SixHeaderDropdownItem);
|
|
577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
|
|
578
817
|
type: Component,
|
|
579
818
|
args: [{
|
|
580
819
|
selector: 'six-header-dropdown-item',
|
|
@@ -582,23 +821,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
582
821
|
template: '<ng-content></ng-content>',
|
|
583
822
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
584
823
|
inputs: ['filter', 'filterPlaceholder'],
|
|
824
|
+
standalone: false
|
|
585
825
|
}]
|
|
586
|
-
}], ctorParameters:
|
|
826
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
587
827
|
let SixHeaderItem = class SixHeaderItem {
|
|
828
|
+
z;
|
|
829
|
+
el;
|
|
588
830
|
constructor(c, r, z) {
|
|
589
831
|
this.z = z;
|
|
590
832
|
c.detach();
|
|
591
833
|
this.el = r.nativeElement;
|
|
592
834
|
}
|
|
593
|
-
static
|
|
594
|
-
static
|
|
835
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
836
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeaderItem, isStandalone: false, selector: "six-header-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
595
837
|
};
|
|
596
838
|
SixHeaderItem = __decorate([
|
|
597
839
|
ProxyCmp({
|
|
598
840
|
inputs: ['active']
|
|
599
841
|
})
|
|
600
842
|
], SixHeaderItem);
|
|
601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
843
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeaderItem, decorators: [{
|
|
602
844
|
type: Component,
|
|
603
845
|
args: [{
|
|
604
846
|
selector: 'six-header-item',
|
|
@@ -606,23 +848,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
606
848
|
template: '<ng-content></ng-content>',
|
|
607
849
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
608
850
|
inputs: ['active'],
|
|
851
|
+
standalone: false
|
|
609
852
|
}]
|
|
610
|
-
}], ctorParameters:
|
|
853
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
611
854
|
let SixHeaderMenuButton = class SixHeaderMenuButton {
|
|
855
|
+
z;
|
|
856
|
+
el;
|
|
612
857
|
constructor(c, r, z) {
|
|
613
858
|
this.z = z;
|
|
614
859
|
c.detach();
|
|
615
860
|
this.el = r.nativeElement;
|
|
616
861
|
}
|
|
617
|
-
static
|
|
618
|
-
static
|
|
862
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
863
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeaderMenuButton, isStandalone: false, selector: "six-header-menu-button", inputs: { caret: "caret", disabled: "disabled", loading: "loading", reset: "reset", submit: "submit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
619
864
|
};
|
|
620
865
|
SixHeaderMenuButton = __decorate([
|
|
621
866
|
ProxyCmp({
|
|
622
867
|
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit']
|
|
623
868
|
})
|
|
624
869
|
], SixHeaderMenuButton);
|
|
625
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
|
|
626
871
|
type: Component,
|
|
627
872
|
args: [{
|
|
628
873
|
selector: 'six-header-menu-button',
|
|
@@ -630,65 +875,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
630
875
|
template: '<ng-content></ng-content>',
|
|
631
876
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
632
877
|
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
|
|
878
|
+
standalone: false
|
|
633
879
|
}]
|
|
634
|
-
}], ctorParameters:
|
|
880
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
635
881
|
let SixIcon = class SixIcon {
|
|
882
|
+
z;
|
|
883
|
+
el;
|
|
636
884
|
constructor(c, r, z) {
|
|
637
885
|
this.z = z;
|
|
638
886
|
c.detach();
|
|
639
887
|
this.el = r.nativeElement;
|
|
640
888
|
}
|
|
641
|
-
static
|
|
642
|
-
static
|
|
889
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixIcon, isStandalone: false, selector: "six-icon", inputs: { filled: "filled", inlineSvg: "inlineSvg", library: "library", name: "name", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
643
891
|
};
|
|
644
892
|
SixIcon = __decorate([
|
|
645
893
|
ProxyCmp({
|
|
646
|
-
inputs: ['filled', 'size']
|
|
894
|
+
inputs: ['filled', 'inlineSvg', 'library', 'name', 'size', 'src']
|
|
647
895
|
})
|
|
648
896
|
], SixIcon);
|
|
649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixIcon, decorators: [{
|
|
650
898
|
type: Component,
|
|
651
899
|
args: [{
|
|
652
900
|
selector: 'six-icon',
|
|
653
901
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
654
902
|
template: '<ng-content></ng-content>',
|
|
655
903
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
656
|
-
inputs: ['filled', 'size'],
|
|
904
|
+
inputs: ['filled', 'inlineSvg', 'library', 'name', 'size', 'src'],
|
|
905
|
+
standalone: false
|
|
657
906
|
}]
|
|
658
|
-
}], ctorParameters:
|
|
907
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
659
908
|
let SixIconButton = class SixIconButton {
|
|
909
|
+
z;
|
|
910
|
+
el;
|
|
660
911
|
constructor(c, r, z) {
|
|
661
912
|
this.z = z;
|
|
662
913
|
c.detach();
|
|
663
914
|
this.el = r.nativeElement;
|
|
664
915
|
}
|
|
665
|
-
static
|
|
666
|
-
static
|
|
916
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
917
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixIconButton, isStandalone: false, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", library: "library", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
667
918
|
};
|
|
668
919
|
SixIconButton = __decorate([
|
|
669
920
|
ProxyCmp({
|
|
670
|
-
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
|
|
921
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'library', 'name', 'size', 'target']
|
|
671
922
|
})
|
|
672
923
|
], SixIconButton);
|
|
673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixIconButton, decorators: [{
|
|
674
925
|
type: Component,
|
|
675
926
|
args: [{
|
|
676
927
|
selector: 'six-icon-button',
|
|
677
928
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
678
929
|
template: '<ng-content></ng-content>',
|
|
679
930
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
680
|
-
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
|
|
931
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'library', 'name', 'size', 'target'],
|
|
932
|
+
standalone: false
|
|
681
933
|
}]
|
|
682
|
-
}], ctorParameters:
|
|
934
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
683
935
|
let SixInput = class SixInput {
|
|
936
|
+
z;
|
|
937
|
+
el;
|
|
938
|
+
sixInputChange = new EventEmitter();
|
|
939
|
+
sixInputClear = new EventEmitter();
|
|
940
|
+
sixInputInput = new EventEmitter();
|
|
941
|
+
sixInputFocus = new EventEmitter();
|
|
942
|
+
sixInputBlur = new EventEmitter();
|
|
684
943
|
constructor(c, r, z) {
|
|
685
944
|
this.z = z;
|
|
686
945
|
c.detach();
|
|
687
946
|
this.el = r.nativeElement;
|
|
688
|
-
proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
|
|
689
947
|
}
|
|
690
|
-
static
|
|
691
|
-
static
|
|
948
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
949
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixInputChange: "sixInputChange", sixInputClear: "sixInputClear", sixInputInput: "sixInputInput", sixInputFocus: "sixInputFocus", sixInputBlur: "sixInputBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
692
950
|
};
|
|
693
951
|
SixInput = __decorate([
|
|
694
952
|
ProxyCmp({
|
|
@@ -696,7 +954,7 @@ SixInput = __decorate([
|
|
|
696
954
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'getSelectionRange', 'setRangeText']
|
|
697
955
|
})
|
|
698
956
|
], SixInput);
|
|
699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixInput, decorators: [{
|
|
700
958
|
type: Component,
|
|
701
959
|
args: [{
|
|
702
960
|
selector: 'six-input',
|
|
@@ -704,24 +962,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
704
962
|
template: '<ng-content></ng-content>',
|
|
705
963
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
706
964
|
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'],
|
|
965
|
+
outputs: ['sixInputChange:six-input-change', 'sixInputClear:six-input-clear', 'sixInputInput:six-input-input', 'sixInputFocus:six-input-focus', 'sixInputBlur:six-input-blur'],
|
|
966
|
+
standalone: false
|
|
707
967
|
}]
|
|
708
|
-
}], ctorParameters:
|
|
968
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixInputChange: [{
|
|
969
|
+
type: Output
|
|
970
|
+
}], sixInputClear: [{
|
|
971
|
+
type: Output
|
|
972
|
+
}], sixInputInput: [{
|
|
973
|
+
type: Output
|
|
974
|
+
}], sixInputFocus: [{
|
|
975
|
+
type: Output
|
|
976
|
+
}], sixInputBlur: [{
|
|
977
|
+
type: Output
|
|
978
|
+
}] } });
|
|
709
979
|
let SixItemPicker = class SixItemPicker {
|
|
980
|
+
z;
|
|
981
|
+
el;
|
|
982
|
+
sixItemPickerChange = new EventEmitter();
|
|
983
|
+
sixItemPickerChangeDebounced = new EventEmitter();
|
|
710
984
|
constructor(c, r, z) {
|
|
711
985
|
this.z = z;
|
|
712
986
|
c.detach();
|
|
713
987
|
this.el = r.nativeElement;
|
|
714
|
-
proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
|
|
715
988
|
}
|
|
716
|
-
static
|
|
717
|
-
static
|
|
989
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
990
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixItemPickerChange: "sixItemPickerChange", sixItemPickerChangeDebounced: "sixItemPickerChangeDebounced" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
718
991
|
};
|
|
719
992
|
SixItemPicker = __decorate([
|
|
720
993
|
ProxyCmp({
|
|
721
994
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
|
|
722
995
|
})
|
|
723
996
|
], SixItemPicker);
|
|
724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
997
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixItemPicker, decorators: [{
|
|
725
998
|
type: Component,
|
|
726
999
|
args: [{
|
|
727
1000
|
selector: 'six-item-picker',
|
|
@@ -729,24 +1002,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
729
1002
|
template: '<ng-content></ng-content>',
|
|
730
1003
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
731
1004
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value'],
|
|
1005
|
+
outputs: ['sixItemPickerChange:six-item-picker-change', 'sixItemPickerChangeDebounced:six-item-picker-change-debounced'],
|
|
1006
|
+
standalone: false
|
|
732
1007
|
}]
|
|
733
|
-
}], ctorParameters:
|
|
1008
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixItemPickerChange: [{
|
|
1009
|
+
type: Output
|
|
1010
|
+
}], sixItemPickerChangeDebounced: [{
|
|
1011
|
+
type: Output
|
|
1012
|
+
}] } });
|
|
734
1013
|
let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
1014
|
+
z;
|
|
1015
|
+
el;
|
|
1016
|
+
sixLanguageSwitcherChange = new EventEmitter();
|
|
735
1017
|
constructor(c, r, z) {
|
|
736
1018
|
this.z = z;
|
|
737
1019
|
c.detach();
|
|
738
1020
|
this.el = r.nativeElement;
|
|
739
|
-
proxyOutputs(this, this.el, ['six-language-switcher-change']);
|
|
740
1021
|
}
|
|
741
|
-
static
|
|
742
|
-
static
|
|
1022
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1023
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixLanguageSwitcher, isStandalone: false, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, outputs: { sixLanguageSwitcherChange: "sixLanguageSwitcherChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
743
1024
|
};
|
|
744
1025
|
SixLanguageSwitcher = __decorate([
|
|
745
1026
|
ProxyCmp({
|
|
746
1027
|
inputs: ['languages', 'selected']
|
|
747
1028
|
})
|
|
748
1029
|
], SixLanguageSwitcher);
|
|
749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1030
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
|
|
750
1031
|
type: Component,
|
|
751
1032
|
args: [{
|
|
752
1033
|
selector: 'six-language-switcher',
|
|
@@ -754,23 +1035,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
754
1035
|
template: '<ng-content></ng-content>',
|
|
755
1036
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
756
1037
|
inputs: ['languages', 'selected'],
|
|
1038
|
+
outputs: ['sixLanguageSwitcherChange:six-language-switcher-change'],
|
|
1039
|
+
standalone: false
|
|
757
1040
|
}]
|
|
758
|
-
}], ctorParameters:
|
|
1041
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixLanguageSwitcherChange: [{
|
|
1042
|
+
type: Output
|
|
1043
|
+
}] } });
|
|
759
1044
|
let SixLayoutGrid = class SixLayoutGrid {
|
|
1045
|
+
z;
|
|
1046
|
+
el;
|
|
760
1047
|
constructor(c, r, z) {
|
|
761
1048
|
this.z = z;
|
|
762
1049
|
c.detach();
|
|
763
1050
|
this.el = r.nativeElement;
|
|
764
1051
|
}
|
|
765
|
-
static
|
|
766
|
-
static
|
|
1052
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1053
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixLayoutGrid, isStandalone: false, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
767
1054
|
};
|
|
768
1055
|
SixLayoutGrid = __decorate([
|
|
769
1056
|
ProxyCmp({
|
|
770
1057
|
inputs: ['columns']
|
|
771
1058
|
})
|
|
772
1059
|
], SixLayoutGrid);
|
|
773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixLayoutGrid, decorators: [{
|
|
774
1061
|
type: Component,
|
|
775
1062
|
args: [{
|
|
776
1063
|
selector: 'six-layout-grid',
|
|
@@ -778,23 +1065,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
778
1065
|
template: '<ng-content></ng-content>',
|
|
779
1066
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
780
1067
|
inputs: ['columns'],
|
|
1068
|
+
standalone: false
|
|
781
1069
|
}]
|
|
782
|
-
}], ctorParameters:
|
|
1070
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
783
1071
|
let SixLogo = class SixLogo {
|
|
1072
|
+
z;
|
|
1073
|
+
el;
|
|
784
1074
|
constructor(c, r, z) {
|
|
785
1075
|
this.z = z;
|
|
786
1076
|
c.detach();
|
|
787
1077
|
this.el = r.nativeElement;
|
|
788
1078
|
}
|
|
789
|
-
static
|
|
790
|
-
static
|
|
1079
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1080
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixLogo, isStandalone: false, selector: "six-logo", inputs: { brand: "brand" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
791
1081
|
};
|
|
792
1082
|
SixLogo = __decorate([
|
|
793
1083
|
ProxyCmp({
|
|
794
1084
|
inputs: ['brand']
|
|
795
1085
|
})
|
|
796
1086
|
], SixLogo);
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixLogo, decorators: [{
|
|
798
1088
|
type: Component,
|
|
799
1089
|
args: [{
|
|
800
1090
|
selector: 'six-logo',
|
|
@@ -802,23 +1092,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
802
1092
|
template: '<ng-content></ng-content>',
|
|
803
1093
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
1094
|
inputs: ['brand'],
|
|
1095
|
+
standalone: false
|
|
805
1096
|
}]
|
|
806
|
-
}], ctorParameters:
|
|
1097
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
807
1098
|
let SixMainContainer = class SixMainContainer {
|
|
1099
|
+
z;
|
|
1100
|
+
el;
|
|
808
1101
|
constructor(c, r, z) {
|
|
809
1102
|
this.z = z;
|
|
810
1103
|
c.detach();
|
|
811
1104
|
this.el = r.nativeElement;
|
|
812
1105
|
}
|
|
813
|
-
static
|
|
814
|
-
static
|
|
1106
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1107
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMainContainer, isStandalone: false, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
815
1108
|
};
|
|
816
1109
|
SixMainContainer = __decorate([
|
|
817
1110
|
ProxyCmp({
|
|
818
1111
|
inputs: ['padded']
|
|
819
1112
|
})
|
|
820
1113
|
], SixMainContainer);
|
|
821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMainContainer, decorators: [{
|
|
822
1115
|
type: Component,
|
|
823
1116
|
args: [{
|
|
824
1117
|
selector: 'six-main-container',
|
|
@@ -826,17 +1119,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
826
1119
|
template: '<ng-content></ng-content>',
|
|
827
1120
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
828
1121
|
inputs: ['padded'],
|
|
1122
|
+
standalone: false
|
|
829
1123
|
}]
|
|
830
|
-
}], ctorParameters:
|
|
1124
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
831
1125
|
let SixMenu = class SixMenu {
|
|
1126
|
+
z;
|
|
1127
|
+
el;
|
|
1128
|
+
sixMenuItemSelected = new EventEmitter();
|
|
832
1129
|
constructor(c, r, z) {
|
|
833
1130
|
this.z = z;
|
|
834
1131
|
c.detach();
|
|
835
1132
|
this.el = r.nativeElement;
|
|
836
|
-
proxyOutputs(this, this.el, ['six-menu-item-selected']);
|
|
837
1133
|
}
|
|
838
|
-
static
|
|
839
|
-
static
|
|
1134
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1135
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenu, isStandalone: false, selector: "six-menu", inputs: { disableKeyboardHandling: "disableKeyboardHandling", itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, outputs: { sixMenuItemSelected: "sixMenuItemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
840
1136
|
};
|
|
841
1137
|
SixMenu = __decorate([
|
|
842
1138
|
ProxyCmp({
|
|
@@ -844,7 +1140,7 @@ SixMenu = __decorate([
|
|
|
844
1140
|
methods: ['typeToSelect']
|
|
845
1141
|
})
|
|
846
1142
|
], SixMenu);
|
|
847
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenu, decorators: [{
|
|
848
1144
|
type: Component,
|
|
849
1145
|
args: [{
|
|
850
1146
|
selector: 'six-menu',
|
|
@@ -852,21 +1148,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
852
1148
|
template: '<ng-content></ng-content>',
|
|
853
1149
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
854
1150
|
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
1151
|
+
outputs: ['sixMenuItemSelected:six-menu-item-selected'],
|
|
1152
|
+
standalone: false
|
|
855
1153
|
}]
|
|
856
|
-
}], ctorParameters:
|
|
1154
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixMenuItemSelected: [{
|
|
1155
|
+
type: Output
|
|
1156
|
+
}] } });
|
|
857
1157
|
let SixMenuDivider = class SixMenuDivider {
|
|
1158
|
+
z;
|
|
1159
|
+
el;
|
|
858
1160
|
constructor(c, r, z) {
|
|
859
1161
|
this.z = z;
|
|
860
1162
|
c.detach();
|
|
861
1163
|
this.el = r.nativeElement;
|
|
862
1164
|
}
|
|
863
|
-
static
|
|
864
|
-
static
|
|
1165
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenuDivider, isStandalone: false, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
865
1167
|
};
|
|
866
1168
|
SixMenuDivider = __decorate([
|
|
867
1169
|
ProxyCmp({})
|
|
868
1170
|
], SixMenuDivider);
|
|
869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenuDivider, decorators: [{
|
|
870
1172
|
type: Component,
|
|
871
1173
|
args: [{
|
|
872
1174
|
selector: 'six-menu-divider',
|
|
@@ -874,16 +1176,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
874
1176
|
template: '<ng-content></ng-content>',
|
|
875
1177
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
876
1178
|
inputs: [],
|
|
1179
|
+
standalone: false
|
|
877
1180
|
}]
|
|
878
|
-
}], ctorParameters:
|
|
1181
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
879
1182
|
let SixMenuItem = class SixMenuItem {
|
|
1183
|
+
z;
|
|
1184
|
+
el;
|
|
880
1185
|
constructor(c, r, z) {
|
|
881
1186
|
this.z = z;
|
|
882
1187
|
c.detach();
|
|
883
1188
|
this.el = r.nativeElement;
|
|
884
1189
|
}
|
|
885
|
-
static
|
|
886
|
-
static
|
|
1190
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1191
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenuItem, isStandalone: false, selector: "six-menu-item", inputs: { checkType: "checkType", checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
887
1192
|
};
|
|
888
1193
|
SixMenuItem = __decorate([
|
|
889
1194
|
ProxyCmp({
|
|
@@ -891,7 +1196,7 @@ SixMenuItem = __decorate([
|
|
|
891
1196
|
methods: ['setFocus', 'removeFocus', 'getTextLabel']
|
|
892
1197
|
})
|
|
893
1198
|
], SixMenuItem);
|
|
894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1199
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenuItem, decorators: [{
|
|
895
1200
|
type: Component,
|
|
896
1201
|
args: [{
|
|
897
1202
|
selector: 'six-menu-item',
|
|
@@ -899,21 +1204,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
899
1204
|
template: '<ng-content></ng-content>',
|
|
900
1205
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
901
1206
|
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
1207
|
+
standalone: false
|
|
902
1208
|
}]
|
|
903
|
-
}], ctorParameters:
|
|
1209
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
904
1210
|
let SixMenuLabel = class SixMenuLabel {
|
|
1211
|
+
z;
|
|
1212
|
+
el;
|
|
905
1213
|
constructor(c, r, z) {
|
|
906
1214
|
this.z = z;
|
|
907
1215
|
c.detach();
|
|
908
1216
|
this.el = r.nativeElement;
|
|
909
1217
|
}
|
|
910
|
-
static
|
|
911
|
-
static
|
|
1218
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1219
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenuLabel, isStandalone: false, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
912
1220
|
};
|
|
913
1221
|
SixMenuLabel = __decorate([
|
|
914
1222
|
ProxyCmp({})
|
|
915
1223
|
], SixMenuLabel);
|
|
916
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixMenuLabel, decorators: [{
|
|
917
1225
|
type: Component,
|
|
918
1226
|
args: [{
|
|
919
1227
|
selector: 'six-menu-label',
|
|
@@ -921,23 +1229,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
921
1229
|
template: '<ng-content></ng-content>',
|
|
922
1230
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
923
1231
|
inputs: [],
|
|
1232
|
+
standalone: false
|
|
1233
|
+
}]
|
|
1234
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1235
|
+
let SixPaginator = class SixPaginator {
|
|
1236
|
+
z;
|
|
1237
|
+
el;
|
|
1238
|
+
sixPaginatorResultsPerPageChanged = new EventEmitter();
|
|
1239
|
+
sixPaginatorPageChanged = new EventEmitter();
|
|
1240
|
+
constructor(c, r, z) {
|
|
1241
|
+
this.z = z;
|
|
1242
|
+
c.detach();
|
|
1243
|
+
this.el = r.nativeElement;
|
|
1244
|
+
}
|
|
1245
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPaginator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1246
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixPaginator, isStandalone: false, selector: "six-paginator", inputs: { clamp: "clamp", currentPage: "currentPage", disabled: "disabled", length: "length", resultsPerPage: "resultsPerPage", resultsPerPageOptions: "resultsPerPageOptions", totalPages: "totalPages", totalResults: "totalResults" }, outputs: { sixPaginatorResultsPerPageChanged: "sixPaginatorResultsPerPageChanged", sixPaginatorPageChanged: "sixPaginatorPageChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1247
|
+
};
|
|
1248
|
+
SixPaginator = __decorate([
|
|
1249
|
+
ProxyCmp({
|
|
1250
|
+
inputs: ['clamp', 'currentPage', 'disabled', 'length', 'resultsPerPage', 'resultsPerPageOptions', 'totalPages', 'totalResults']
|
|
1251
|
+
})
|
|
1252
|
+
], SixPaginator);
|
|
1253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPaginator, decorators: [{
|
|
1254
|
+
type: Component,
|
|
1255
|
+
args: [{
|
|
1256
|
+
selector: 'six-paginator',
|
|
1257
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1258
|
+
template: '<ng-content></ng-content>',
|
|
1259
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1260
|
+
inputs: ['clamp', 'currentPage', 'disabled', 'length', 'resultsPerPage', 'resultsPerPageOptions', { name: 'totalPages', required: true }, { name: 'totalResults', required: true }],
|
|
1261
|
+
outputs: ['sixPaginatorResultsPerPageChanged:six-paginator-results-per-page-changed', 'sixPaginatorPageChanged:six-paginator-page-changed'],
|
|
1262
|
+
standalone: false
|
|
924
1263
|
}]
|
|
925
|
-
}], ctorParameters:
|
|
1264
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixPaginatorResultsPerPageChanged: [{
|
|
1265
|
+
type: Output
|
|
1266
|
+
}], sixPaginatorPageChanged: [{
|
|
1267
|
+
type: Output
|
|
1268
|
+
}] } });
|
|
926
1269
|
let SixPicto = class SixPicto {
|
|
1270
|
+
z;
|
|
1271
|
+
el;
|
|
927
1272
|
constructor(c, r, z) {
|
|
928
1273
|
this.z = z;
|
|
929
1274
|
c.detach();
|
|
930
1275
|
this.el = r.nativeElement;
|
|
931
1276
|
}
|
|
932
|
-
static
|
|
933
|
-
static
|
|
1277
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1278
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixPicto, isStandalone: false, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
934
1279
|
};
|
|
935
1280
|
SixPicto = __decorate([
|
|
936
1281
|
ProxyCmp({
|
|
937
1282
|
inputs: ['size']
|
|
938
1283
|
})
|
|
939
1284
|
], SixPicto);
|
|
940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPicto, decorators: [{
|
|
941
1286
|
type: Component,
|
|
942
1287
|
args: [{
|
|
943
1288
|
selector: 'six-picto',
|
|
@@ -945,23 +1290,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
945
1290
|
template: '<ng-content></ng-content>',
|
|
946
1291
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
947
1292
|
inputs: ['size'],
|
|
1293
|
+
standalone: false
|
|
948
1294
|
}]
|
|
949
|
-
}], ctorParameters:
|
|
1295
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
950
1296
|
let SixProgressBar = class SixProgressBar {
|
|
1297
|
+
z;
|
|
1298
|
+
el;
|
|
951
1299
|
constructor(c, r, z) {
|
|
952
1300
|
this.z = z;
|
|
953
1301
|
c.detach();
|
|
954
1302
|
this.el = r.nativeElement;
|
|
955
1303
|
}
|
|
956
|
-
static
|
|
957
|
-
static
|
|
1304
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1305
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixProgressBar, isStandalone: false, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
958
1306
|
};
|
|
959
1307
|
SixProgressBar = __decorate([
|
|
960
1308
|
ProxyCmp({
|
|
961
1309
|
inputs: ['indeterminate', 'percentage']
|
|
962
1310
|
})
|
|
963
1311
|
], SixProgressBar);
|
|
964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressBar, decorators: [{
|
|
965
1313
|
type: Component,
|
|
966
1314
|
args: [{
|
|
967
1315
|
selector: 'six-progress-bar',
|
|
@@ -969,23 +1317,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
969
1317
|
template: '<ng-content></ng-content>',
|
|
970
1318
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
971
1319
|
inputs: ['indeterminate', 'percentage'],
|
|
1320
|
+
standalone: false
|
|
972
1321
|
}]
|
|
973
|
-
}], ctorParameters:
|
|
1322
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
974
1323
|
let SixProgressRing = class SixProgressRing {
|
|
1324
|
+
z;
|
|
1325
|
+
el;
|
|
975
1326
|
constructor(c, r, z) {
|
|
976
1327
|
this.z = z;
|
|
977
1328
|
c.detach();
|
|
978
1329
|
this.el = r.nativeElement;
|
|
979
1330
|
}
|
|
980
|
-
static
|
|
981
|
-
static
|
|
1331
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1332
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixProgressRing, isStandalone: false, selector: "six-progress-ring", inputs: { percentage: "percentage", size: "size", strokeWidth: "strokeWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
982
1333
|
};
|
|
983
1334
|
SixProgressRing = __decorate([
|
|
984
1335
|
ProxyCmp({
|
|
985
1336
|
inputs: ['percentage', 'size', 'strokeWidth']
|
|
986
1337
|
})
|
|
987
1338
|
], SixProgressRing);
|
|
988
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1339
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressRing, decorators: [{
|
|
989
1340
|
type: Component,
|
|
990
1341
|
args: [{
|
|
991
1342
|
selector: 'six-progress-ring',
|
|
@@ -993,17 +1344,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
993
1344
|
template: '<ng-content></ng-content>',
|
|
994
1345
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
995
1346
|
inputs: ['percentage', 'size', 'strokeWidth'],
|
|
1347
|
+
standalone: false
|
|
996
1348
|
}]
|
|
997
|
-
}], ctorParameters:
|
|
1349
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
998
1350
|
let SixRadio = class SixRadio {
|
|
1351
|
+
z;
|
|
1352
|
+
el;
|
|
1353
|
+
sixRadioBlur = new EventEmitter();
|
|
1354
|
+
sixRadioChange = new EventEmitter();
|
|
1355
|
+
sixRadioFocus = new EventEmitter();
|
|
999
1356
|
constructor(c, r, z) {
|
|
1000
1357
|
this.z = z;
|
|
1001
1358
|
c.detach();
|
|
1002
1359
|
this.el = r.nativeElement;
|
|
1003
|
-
proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
|
|
1004
1360
|
}
|
|
1005
|
-
static
|
|
1006
|
-
static
|
|
1361
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1362
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixRadio, isStandalone: false, selector: "six-radio", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, outputs: { sixRadioBlur: "sixRadioBlur", sixRadioChange: "sixRadioChange", sixRadioFocus: "sixRadioFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1007
1363
|
};
|
|
1008
1364
|
SixRadio = __decorate([
|
|
1009
1365
|
ProxyCmp({
|
|
@@ -1011,7 +1367,7 @@ SixRadio = __decorate([
|
|
|
1011
1367
|
methods: ['setFocus', 'removeFocus']
|
|
1012
1368
|
})
|
|
1013
1369
|
], SixRadio);
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRadio, decorators: [{
|
|
1015
1371
|
type: Component,
|
|
1016
1372
|
args: [{
|
|
1017
1373
|
selector: 'six-radio',
|
|
@@ -1019,17 +1375,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1019
1375
|
template: '<ng-content></ng-content>',
|
|
1020
1376
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1021
1377
|
inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
|
|
1378
|
+
outputs: ['sixRadioBlur:six-radio-blur', 'sixRadioChange:six-radio-change', 'sixRadioFocus:six-radio-focus'],
|
|
1379
|
+
standalone: false
|
|
1022
1380
|
}]
|
|
1023
|
-
}], ctorParameters:
|
|
1381
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRadioBlur: [{
|
|
1382
|
+
type: Output
|
|
1383
|
+
}], sixRadioChange: [{
|
|
1384
|
+
type: Output
|
|
1385
|
+
}], sixRadioFocus: [{
|
|
1386
|
+
type: Output
|
|
1387
|
+
}] } });
|
|
1024
1388
|
let SixRange = class SixRange {
|
|
1389
|
+
z;
|
|
1390
|
+
el;
|
|
1391
|
+
sixRangeChange = new EventEmitter();
|
|
1392
|
+
sixRangeBlur = new EventEmitter();
|
|
1393
|
+
sixRangeFocus = new EventEmitter();
|
|
1025
1394
|
constructor(c, r, z) {
|
|
1026
1395
|
this.z = z;
|
|
1027
1396
|
c.detach();
|
|
1028
1397
|
this.el = r.nativeElement;
|
|
1029
|
-
proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
|
|
1030
1398
|
}
|
|
1031
|
-
static
|
|
1032
|
-
static
|
|
1399
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1400
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixRangeChange: "sixRangeChange", sixRangeBlur: "sixRangeBlur", sixRangeFocus: "sixRangeFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1033
1401
|
};
|
|
1034
1402
|
SixRange = __decorate([
|
|
1035
1403
|
ProxyCmp({
|
|
@@ -1037,7 +1405,7 @@ SixRange = __decorate([
|
|
|
1037
1405
|
methods: ['setFocus', 'removeFocus']
|
|
1038
1406
|
})
|
|
1039
1407
|
], SixRange);
|
|
1040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRange, decorators: [{
|
|
1041
1409
|
type: Component,
|
|
1042
1410
|
args: [{
|
|
1043
1411
|
selector: 'six-range',
|
|
@@ -1045,23 +1413,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1045
1413
|
template: '<ng-content></ng-content>',
|
|
1046
1414
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1047
1415
|
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
1416
|
+
outputs: ['sixRangeChange:six-range-change', 'sixRangeBlur:six-range-blur', 'sixRangeFocus:six-range-focus'],
|
|
1417
|
+
standalone: false
|
|
1418
|
+
}]
|
|
1419
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRangeChange: [{
|
|
1420
|
+
type: Output
|
|
1421
|
+
}], sixRangeBlur: [{
|
|
1422
|
+
type: Output
|
|
1423
|
+
}], sixRangeFocus: [{
|
|
1424
|
+
type: Output
|
|
1425
|
+
}] } });
|
|
1426
|
+
let SixRating = class SixRating {
|
|
1427
|
+
z;
|
|
1428
|
+
el;
|
|
1429
|
+
sixRatingBlur = new EventEmitter();
|
|
1430
|
+
sixRatingChange = new EventEmitter();
|
|
1431
|
+
sixRatingFocus = new EventEmitter();
|
|
1432
|
+
constructor(c, r, z) {
|
|
1433
|
+
this.z = z;
|
|
1434
|
+
c.detach();
|
|
1435
|
+
this.el = r.nativeElement;
|
|
1436
|
+
}
|
|
1437
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1438
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixRatingBlur: "sixRatingBlur", sixRatingChange: "sixRatingChange", sixRatingFocus: "sixRatingFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1439
|
+
};
|
|
1440
|
+
SixRating = __decorate([
|
|
1441
|
+
ProxyCmp({
|
|
1442
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value']
|
|
1443
|
+
})
|
|
1444
|
+
], SixRating);
|
|
1445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRating, decorators: [{
|
|
1446
|
+
type: Component,
|
|
1447
|
+
args: [{
|
|
1448
|
+
selector: 'six-rating',
|
|
1449
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1450
|
+
template: '<ng-content></ng-content>',
|
|
1451
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1452
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value'],
|
|
1453
|
+
outputs: ['sixRatingBlur:six-rating-blur', 'sixRatingChange:six-rating-change', 'sixRatingFocus:six-rating-focus'],
|
|
1454
|
+
standalone: false
|
|
1048
1455
|
}]
|
|
1049
|
-
}], ctorParameters:
|
|
1456
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRatingBlur: [{
|
|
1457
|
+
type: Output
|
|
1458
|
+
}], sixRatingChange: [{
|
|
1459
|
+
type: Output
|
|
1460
|
+
}], sixRatingFocus: [{
|
|
1461
|
+
type: Output
|
|
1462
|
+
}] } });
|
|
1050
1463
|
let SixRoot = class SixRoot {
|
|
1464
|
+
z;
|
|
1465
|
+
el;
|
|
1051
1466
|
constructor(c, r, z) {
|
|
1052
1467
|
this.z = z;
|
|
1053
1468
|
c.detach();
|
|
1054
1469
|
this.el = r.nativeElement;
|
|
1055
1470
|
}
|
|
1056
|
-
static
|
|
1057
|
-
static
|
|
1471
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1472
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixRoot, isStandalone: false, selector: "six-root", inputs: { padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1058
1473
|
};
|
|
1059
1474
|
SixRoot = __decorate([
|
|
1060
1475
|
ProxyCmp({
|
|
1061
1476
|
inputs: ['padded', 'stage', 'version']
|
|
1062
1477
|
})
|
|
1063
1478
|
], SixRoot);
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRoot, decorators: [{
|
|
1065
1480
|
type: Component,
|
|
1066
1481
|
args: [{
|
|
1067
1482
|
selector: 'six-root',
|
|
@@ -1069,24 +1484,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1069
1484
|
template: '<ng-content></ng-content>',
|
|
1070
1485
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1071
1486
|
inputs: ['padded', 'stage', 'version'],
|
|
1487
|
+
standalone: false
|
|
1072
1488
|
}]
|
|
1073
|
-
}], ctorParameters:
|
|
1489
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1074
1490
|
let SixSearchField = class SixSearchField {
|
|
1491
|
+
z;
|
|
1492
|
+
el;
|
|
1493
|
+
sixSearchFieldChange = new EventEmitter();
|
|
1075
1494
|
constructor(c, r, z) {
|
|
1076
1495
|
this.z = z;
|
|
1077
1496
|
c.detach();
|
|
1078
1497
|
this.el = r.nativeElement;
|
|
1079
|
-
proxyOutputs(this, this.el, ['six-search-field-change']);
|
|
1080
1498
|
}
|
|
1081
|
-
static
|
|
1082
|
-
static
|
|
1499
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1500
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSearchField, isStandalone: false, selector: "six-search-field", inputs: { clearable: "clearable", debounce: "debounce", disabled: "disabled", placeholder: "placeholder", value: "value" }, outputs: { sixSearchFieldChange: "sixSearchFieldChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1083
1501
|
};
|
|
1084
1502
|
SixSearchField = __decorate([
|
|
1085
1503
|
ProxyCmp({
|
|
1086
1504
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
|
|
1087
1505
|
})
|
|
1088
1506
|
], SixSearchField);
|
|
1089
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSearchField, decorators: [{
|
|
1090
1508
|
type: Component,
|
|
1091
1509
|
args: [{
|
|
1092
1510
|
selector: 'six-search-field',
|
|
@@ -1094,17 +1512,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1094
1512
|
template: '<ng-content></ng-content>',
|
|
1095
1513
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1096
1514
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
|
|
1515
|
+
outputs: ['sixSearchFieldChange:six-search-field-change'],
|
|
1516
|
+
standalone: false
|
|
1097
1517
|
}]
|
|
1098
|
-
}], ctorParameters:
|
|
1518
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSearchFieldChange: [{
|
|
1519
|
+
type: Output
|
|
1520
|
+
}] } });
|
|
1099
1521
|
let SixSelect = class SixSelect {
|
|
1522
|
+
z;
|
|
1523
|
+
el;
|
|
1524
|
+
sixSelectChange = new EventEmitter();
|
|
1525
|
+
sixSelectFocus = new EventEmitter();
|
|
1526
|
+
sixSelectBlur = new EventEmitter();
|
|
1100
1527
|
constructor(c, r, z) {
|
|
1101
1528
|
this.z = z;
|
|
1102
1529
|
c.detach();
|
|
1103
1530
|
this.el = r.nativeElement;
|
|
1104
|
-
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
1105
1531
|
}
|
|
1106
|
-
static
|
|
1107
|
-
static
|
|
1532
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1533
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixSelectChange: "sixSelectChange", sixSelectFocus: "sixSelectFocus", sixSelectBlur: "sixSelectBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1108
1534
|
};
|
|
1109
1535
|
SixSelect = __decorate([
|
|
1110
1536
|
ProxyCmp({
|
|
@@ -1112,7 +1538,7 @@ SixSelect = __decorate([
|
|
|
1112
1538
|
methods: ['setFocus']
|
|
1113
1539
|
})
|
|
1114
1540
|
], SixSelect);
|
|
1115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSelect, decorators: [{
|
|
1116
1542
|
type: Component,
|
|
1117
1543
|
args: [{
|
|
1118
1544
|
selector: 'six-select',
|
|
@@ -1120,17 +1546,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1120
1546
|
template: '<ng-content></ng-content>',
|
|
1121
1547
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1122
1548
|
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'],
|
|
1549
|
+
outputs: ['sixSelectChange:six-select-change', 'sixSelectFocus:six-select-focus', 'sixSelectBlur:six-select-blur'],
|
|
1550
|
+
standalone: false
|
|
1123
1551
|
}]
|
|
1124
|
-
}], ctorParameters:
|
|
1552
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSelectChange: [{
|
|
1553
|
+
type: Output
|
|
1554
|
+
}], sixSelectFocus: [{
|
|
1555
|
+
type: Output
|
|
1556
|
+
}], sixSelectBlur: [{
|
|
1557
|
+
type: Output
|
|
1558
|
+
}] } });
|
|
1125
1559
|
let SixSidebar = class SixSidebar {
|
|
1560
|
+
z;
|
|
1561
|
+
el;
|
|
1562
|
+
sixSidebarShow = new EventEmitter();
|
|
1563
|
+
sixSidebarAfterShow = new EventEmitter();
|
|
1564
|
+
sixSidebarHide = new EventEmitter();
|
|
1565
|
+
sixSidebarAfterHide = new EventEmitter();
|
|
1566
|
+
sixSidebarInitialFocus = new EventEmitter();
|
|
1126
1567
|
constructor(c, r, z) {
|
|
1127
1568
|
this.z = z;
|
|
1128
1569
|
c.detach();
|
|
1129
1570
|
this.el = r.nativeElement;
|
|
1130
|
-
proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
|
|
1131
1571
|
}
|
|
1132
|
-
static
|
|
1133
|
-
static
|
|
1572
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1573
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSidebar, isStandalone: false, selector: "six-sidebar", inputs: { open: "open", position: "position", toggled: "toggled", width: "width" }, outputs: { sixSidebarShow: "sixSidebarShow", sixSidebarAfterShow: "sixSidebarAfterShow", sixSidebarHide: "sixSidebarHide", sixSidebarAfterHide: "sixSidebarAfterHide", sixSidebarInitialFocus: "sixSidebarInitialFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1134
1574
|
};
|
|
1135
1575
|
SixSidebar = __decorate([
|
|
1136
1576
|
ProxyCmp({
|
|
@@ -1138,7 +1578,7 @@ SixSidebar = __decorate([
|
|
|
1138
1578
|
methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
|
|
1139
1579
|
})
|
|
1140
1580
|
], SixSidebar);
|
|
1141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebar, decorators: [{
|
|
1142
1582
|
type: Component,
|
|
1143
1583
|
args: [{
|
|
1144
1584
|
selector: 'six-sidebar',
|
|
@@ -1146,23 +1586,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1146
1586
|
template: '<ng-content></ng-content>',
|
|
1147
1587
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1148
1588
|
inputs: ['open', 'position', 'toggled', 'width'],
|
|
1589
|
+
outputs: ['sixSidebarShow:six-sidebar-show', 'sixSidebarAfterShow:six-sidebar-after-show', 'sixSidebarHide:six-sidebar-hide', 'sixSidebarAfterHide:six-sidebar-after-hide', 'sixSidebarInitialFocus:six-sidebar-initial-focus'],
|
|
1590
|
+
standalone: false
|
|
1149
1591
|
}]
|
|
1150
|
-
}], ctorParameters:
|
|
1592
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSidebarShow: [{
|
|
1593
|
+
type: Output
|
|
1594
|
+
}], sixSidebarAfterShow: [{
|
|
1595
|
+
type: Output
|
|
1596
|
+
}], sixSidebarHide: [{
|
|
1597
|
+
type: Output
|
|
1598
|
+
}], sixSidebarAfterHide: [{
|
|
1599
|
+
type: Output
|
|
1600
|
+
}], sixSidebarInitialFocus: [{
|
|
1601
|
+
type: Output
|
|
1602
|
+
}] } });
|
|
1151
1603
|
let SixSidebarItem = class SixSidebarItem {
|
|
1604
|
+
z;
|
|
1605
|
+
el;
|
|
1152
1606
|
constructor(c, r, z) {
|
|
1153
1607
|
this.z = z;
|
|
1154
1608
|
c.detach();
|
|
1155
1609
|
this.el = r.nativeElement;
|
|
1156
1610
|
}
|
|
1157
|
-
static
|
|
1158
|
-
static
|
|
1611
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1612
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSidebarItem, isStandalone: false, selector: "six-sidebar-item", inputs: { disabled: "disabled", href: "href", icon: "icon", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1159
1613
|
};
|
|
1160
1614
|
SixSidebarItem = __decorate([
|
|
1161
1615
|
ProxyCmp({
|
|
1162
1616
|
inputs: ['disabled', 'href', 'icon', 'selected', 'value']
|
|
1163
1617
|
})
|
|
1164
1618
|
], SixSidebarItem);
|
|
1165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
1166
1620
|
type: Component,
|
|
1167
1621
|
args: [{
|
|
1168
1622
|
selector: 'six-sidebar-item',
|
|
@@ -1170,23 +1624,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1170
1624
|
template: '<ng-content></ng-content>',
|
|
1171
1625
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1172
1626
|
inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
|
|
1627
|
+
standalone: false
|
|
1173
1628
|
}]
|
|
1174
|
-
}], ctorParameters:
|
|
1629
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1175
1630
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
1631
|
+
z;
|
|
1632
|
+
el;
|
|
1176
1633
|
constructor(c, r, z) {
|
|
1177
1634
|
this.z = z;
|
|
1178
1635
|
c.detach();
|
|
1179
1636
|
this.el = r.nativeElement;
|
|
1180
1637
|
}
|
|
1181
|
-
static
|
|
1182
|
-
static
|
|
1638
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1639
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSidebarItemGroup, isStandalone: false, selector: "six-sidebar-item-group", inputs: { href: "href", icon: "icon", name: "name", open: "open", summaryIcon: "summaryIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1183
1640
|
};
|
|
1184
1641
|
SixSidebarItemGroup = __decorate([
|
|
1185
1642
|
ProxyCmp({
|
|
1186
1643
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1187
1644
|
})
|
|
1188
1645
|
], SixSidebarItemGroup);
|
|
1189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
|
|
1190
1647
|
type: Component,
|
|
1191
1648
|
args: [{
|
|
1192
1649
|
selector: 'six-sidebar-item-group',
|
|
@@ -1194,23 +1651,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1194
1651
|
template: '<ng-content></ng-content>',
|
|
1195
1652
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1196
1653
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1654
|
+
standalone: false
|
|
1197
1655
|
}]
|
|
1198
|
-
}], ctorParameters:
|
|
1656
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1199
1657
|
let SixSpinner = class SixSpinner {
|
|
1658
|
+
z;
|
|
1659
|
+
el;
|
|
1200
1660
|
constructor(c, r, z) {
|
|
1201
1661
|
this.z = z;
|
|
1202
1662
|
c.detach();
|
|
1203
1663
|
this.el = r.nativeElement;
|
|
1204
1664
|
}
|
|
1205
|
-
static
|
|
1206
|
-
static
|
|
1665
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1666
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSpinner, isStandalone: false, selector: "six-spinner", inputs: { logo: "logo", six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1207
1667
|
};
|
|
1208
1668
|
SixSpinner = __decorate([
|
|
1209
1669
|
ProxyCmp({
|
|
1210
1670
|
inputs: ['logo', 'six']
|
|
1211
1671
|
})
|
|
1212
1672
|
], SixSpinner);
|
|
1213
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSpinner, decorators: [{
|
|
1214
1674
|
type: Component,
|
|
1215
1675
|
args: [{
|
|
1216
1676
|
selector: 'six-spinner',
|
|
@@ -1218,23 +1678,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1218
1678
|
template: '<ng-content></ng-content>',
|
|
1219
1679
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1220
1680
|
inputs: ['logo', 'six'],
|
|
1681
|
+
standalone: false
|
|
1221
1682
|
}]
|
|
1222
|
-
}], ctorParameters:
|
|
1683
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1223
1684
|
let SixStageIndicator = class SixStageIndicator {
|
|
1685
|
+
z;
|
|
1686
|
+
el;
|
|
1224
1687
|
constructor(c, r, z) {
|
|
1225
1688
|
this.z = z;
|
|
1226
1689
|
c.detach();
|
|
1227
1690
|
this.el = r.nativeElement;
|
|
1228
1691
|
}
|
|
1229
|
-
static
|
|
1230
|
-
static
|
|
1692
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1693
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixStageIndicator, isStandalone: false, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1231
1694
|
};
|
|
1232
1695
|
SixStageIndicator = __decorate([
|
|
1233
1696
|
ProxyCmp({
|
|
1234
1697
|
inputs: ['stage']
|
|
1235
1698
|
})
|
|
1236
1699
|
], SixStageIndicator);
|
|
1237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixStageIndicator, decorators: [{
|
|
1238
1701
|
type: Component,
|
|
1239
1702
|
args: [{
|
|
1240
1703
|
selector: 'six-stage-indicator',
|
|
@@ -1242,17 +1705,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1242
1705
|
template: '<ng-content></ng-content>',
|
|
1243
1706
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1244
1707
|
inputs: ['stage'],
|
|
1708
|
+
standalone: false
|
|
1245
1709
|
}]
|
|
1246
|
-
}], ctorParameters:
|
|
1710
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1247
1711
|
let SixSwitch = class SixSwitch {
|
|
1712
|
+
z;
|
|
1713
|
+
el;
|
|
1714
|
+
sixSwitchBlur = new EventEmitter();
|
|
1715
|
+
sixSwitchChange = new EventEmitter();
|
|
1716
|
+
sixSwitchFocus = new EventEmitter();
|
|
1248
1717
|
constructor(c, r, z) {
|
|
1249
1718
|
this.z = z;
|
|
1250
1719
|
c.detach();
|
|
1251
1720
|
this.el = r.nativeElement;
|
|
1252
|
-
proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
|
|
1253
1721
|
}
|
|
1254
|
-
static
|
|
1255
|
-
static
|
|
1722
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1723
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixSwitchBlur: "sixSwitchBlur", sixSwitchChange: "sixSwitchChange", sixSwitchFocus: "sixSwitchFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1256
1724
|
};
|
|
1257
1725
|
SixSwitch = __decorate([
|
|
1258
1726
|
ProxyCmp({
|
|
@@ -1260,7 +1728,7 @@ SixSwitch = __decorate([
|
|
|
1260
1728
|
methods: ['setFocus', 'removeFocus']
|
|
1261
1729
|
})
|
|
1262
1730
|
], SixSwitch);
|
|
1263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSwitch, decorators: [{
|
|
1264
1732
|
type: Component,
|
|
1265
1733
|
args: [{
|
|
1266
1734
|
selector: 'six-switch',
|
|
@@ -1268,43 +1736,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1268
1736
|
template: '<ng-content></ng-content>',
|
|
1269
1737
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1270
1738
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1739
|
+
outputs: ['sixSwitchBlur:six-switch-blur', 'sixSwitchChange:six-switch-change', 'sixSwitchFocus:six-switch-focus'],
|
|
1740
|
+
standalone: false
|
|
1271
1741
|
}]
|
|
1272
|
-
}], ctorParameters:
|
|
1742
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSwitchBlur: [{
|
|
1743
|
+
type: Output
|
|
1744
|
+
}], sixSwitchChange: [{
|
|
1745
|
+
type: Output
|
|
1746
|
+
}], sixSwitchFocus: [{
|
|
1747
|
+
type: Output
|
|
1748
|
+
}] } });
|
|
1273
1749
|
let SixTab = class SixTab {
|
|
1750
|
+
z;
|
|
1751
|
+
el;
|
|
1752
|
+
sixTabClose = new EventEmitter();
|
|
1274
1753
|
constructor(c, r, z) {
|
|
1275
1754
|
this.z = z;
|
|
1276
1755
|
c.detach();
|
|
1277
1756
|
this.el = r.nativeElement;
|
|
1278
|
-
proxyOutputs(this, this.el, ['six-tab-close']);
|
|
1279
1757
|
}
|
|
1280
|
-
static
|
|
1281
|
-
static
|
|
1758
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1759
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTab, isStandalone: false, selector: "six-tab", inputs: { active: "active", closable: "closable", disabled: "disabled", hoverContent: "hoverContent", panel: "panel" }, outputs: { sixTabClose: "sixTabClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1282
1760
|
};
|
|
1283
1761
|
SixTab = __decorate([
|
|
1284
1762
|
ProxyCmp({
|
|
1285
|
-
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1763
|
+
inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
|
|
1286
1764
|
methods: ['setFocus', 'removeFocus']
|
|
1287
1765
|
})
|
|
1288
1766
|
], SixTab);
|
|
1289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTab, decorators: [{
|
|
1290
1768
|
type: Component,
|
|
1291
1769
|
args: [{
|
|
1292
1770
|
selector: 'six-tab',
|
|
1293
1771
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1294
1772
|
template: '<ng-content></ng-content>',
|
|
1295
1773
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1296
|
-
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1774
|
+
inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
|
|
1775
|
+
outputs: ['sixTabClose:six-tab-close'],
|
|
1776
|
+
standalone: false
|
|
1297
1777
|
}]
|
|
1298
|
-
}], ctorParameters:
|
|
1778
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTabClose: [{
|
|
1779
|
+
type: Output
|
|
1780
|
+
}] } });
|
|
1299
1781
|
let SixTabGroup = class SixTabGroup {
|
|
1782
|
+
z;
|
|
1783
|
+
el;
|
|
1784
|
+
sixTabShow = new EventEmitter();
|
|
1785
|
+
sixTabHide = new EventEmitter();
|
|
1300
1786
|
constructor(c, r, z) {
|
|
1301
1787
|
this.z = z;
|
|
1302
1788
|
c.detach();
|
|
1303
1789
|
this.el = r.nativeElement;
|
|
1304
|
-
proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
|
|
1305
1790
|
}
|
|
1306
|
-
static
|
|
1307
|
-
static
|
|
1791
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1792
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTabGroup, isStandalone: false, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, outputs: { sixTabShow: "sixTabShow", sixTabHide: "sixTabHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1308
1793
|
};
|
|
1309
1794
|
SixTabGroup = __decorate([
|
|
1310
1795
|
ProxyCmp({
|
|
@@ -1312,7 +1797,7 @@ SixTabGroup = __decorate([
|
|
|
1312
1797
|
methods: ['show']
|
|
1313
1798
|
})
|
|
1314
1799
|
], SixTabGroup);
|
|
1315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabGroup, decorators: [{
|
|
1316
1801
|
type: Component,
|
|
1317
1802
|
args: [{
|
|
1318
1803
|
selector: 'six-tab-group',
|
|
@@ -1320,23 +1805,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1320
1805
|
template: '<ng-content></ng-content>',
|
|
1321
1806
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1322
1807
|
inputs: ['noScrollControls', 'placement'],
|
|
1808
|
+
outputs: ['sixTabShow:six-tab-show', 'sixTabHide:six-tab-hide'],
|
|
1809
|
+
standalone: false
|
|
1323
1810
|
}]
|
|
1324
|
-
}], ctorParameters:
|
|
1811
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTabShow: [{
|
|
1812
|
+
type: Output
|
|
1813
|
+
}], sixTabHide: [{
|
|
1814
|
+
type: Output
|
|
1815
|
+
}] } });
|
|
1325
1816
|
let SixTabPanel = class SixTabPanel {
|
|
1817
|
+
z;
|
|
1818
|
+
el;
|
|
1326
1819
|
constructor(c, r, z) {
|
|
1327
1820
|
this.z = z;
|
|
1328
1821
|
c.detach();
|
|
1329
1822
|
this.el = r.nativeElement;
|
|
1330
1823
|
}
|
|
1331
|
-
static
|
|
1332
|
-
static
|
|
1824
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1825
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTabPanel, isStandalone: false, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1333
1826
|
};
|
|
1334
1827
|
SixTabPanel = __decorate([
|
|
1335
1828
|
ProxyCmp({
|
|
1336
1829
|
inputs: ['active', 'name']
|
|
1337
1830
|
})
|
|
1338
1831
|
], SixTabPanel);
|
|
1339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1832
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabPanel, decorators: [{
|
|
1340
1833
|
type: Component,
|
|
1341
1834
|
args: [{
|
|
1342
1835
|
selector: 'six-tab-panel',
|
|
@@ -1344,24 +1837,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1344
1837
|
template: '<ng-content></ng-content>',
|
|
1345
1838
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1346
1839
|
inputs: ['active', 'name'],
|
|
1840
|
+
standalone: false
|
|
1347
1841
|
}]
|
|
1348
|
-
}], ctorParameters:
|
|
1842
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1349
1843
|
let SixTag = class SixTag {
|
|
1844
|
+
z;
|
|
1845
|
+
el;
|
|
1846
|
+
sixTagClear = new EventEmitter();
|
|
1350
1847
|
constructor(c, r, z) {
|
|
1351
1848
|
this.z = z;
|
|
1352
1849
|
c.detach();
|
|
1353
1850
|
this.el = r.nativeElement;
|
|
1354
|
-
proxyOutputs(this, this.el, ['six-tag-clear']);
|
|
1355
1851
|
}
|
|
1356
|
-
static
|
|
1357
|
-
static
|
|
1852
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1853
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTag, isStandalone: false, selector: "six-tag", inputs: { clearable: "clearable", pill: "pill", size: "size", type: "type" }, outputs: { sixTagClear: "sixTagClear" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1358
1854
|
};
|
|
1359
1855
|
SixTag = __decorate([
|
|
1360
1856
|
ProxyCmp({
|
|
1361
1857
|
inputs: ['clearable', 'pill', 'size', 'type']
|
|
1362
1858
|
})
|
|
1363
1859
|
], SixTag);
|
|
1364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTag, decorators: [{
|
|
1365
1861
|
type: Component,
|
|
1366
1862
|
args: [{
|
|
1367
1863
|
selector: 'six-tag',
|
|
@@ -1369,17 +1865,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1369
1865
|
template: '<ng-content></ng-content>',
|
|
1370
1866
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1371
1867
|
inputs: ['clearable', 'pill', 'size', 'type'],
|
|
1868
|
+
outputs: ['sixTagClear:six-tag-clear'],
|
|
1869
|
+
standalone: false
|
|
1372
1870
|
}]
|
|
1373
|
-
}], ctorParameters:
|
|
1871
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTagClear: [{
|
|
1872
|
+
type: Output
|
|
1873
|
+
}] } });
|
|
1374
1874
|
let SixTextarea = class SixTextarea {
|
|
1875
|
+
z;
|
|
1876
|
+
el;
|
|
1877
|
+
sixTextareaChange = new EventEmitter();
|
|
1878
|
+
sixTextareaInput = new EventEmitter();
|
|
1879
|
+
sixTextareaFocus = new EventEmitter();
|
|
1880
|
+
sixTextareaBlur = new EventEmitter();
|
|
1375
1881
|
constructor(c, r, z) {
|
|
1376
1882
|
this.z = z;
|
|
1377
1883
|
c.detach();
|
|
1378
1884
|
this.el = r.nativeElement;
|
|
1379
|
-
proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
|
|
1380
1885
|
}
|
|
1381
|
-
static
|
|
1382
|
-
static
|
|
1886
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1887
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixTextareaChange: "sixTextareaChange", sixTextareaInput: "sixTextareaInput", sixTextareaFocus: "sixTextareaFocus", sixTextareaBlur: "sixTextareaBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1383
1888
|
};
|
|
1384
1889
|
SixTextarea = __decorate([
|
|
1385
1890
|
ProxyCmp({
|
|
@@ -1387,7 +1892,7 @@ SixTextarea = __decorate([
|
|
|
1387
1892
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
1388
1893
|
})
|
|
1389
1894
|
], SixTextarea);
|
|
1390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTextarea, decorators: [{
|
|
1391
1896
|
type: Component,
|
|
1392
1897
|
args: [{
|
|
1393
1898
|
selector: 'six-textarea',
|
|
@@ -1395,43 +1900,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1395
1900
|
template: '<ng-content></ng-content>',
|
|
1396
1901
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1397
1902
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1903
|
+
outputs: ['sixTextareaChange:six-textarea-change', 'sixTextareaInput:six-textarea-input', 'sixTextareaFocus:six-textarea-focus', 'sixTextareaBlur:six-textarea-blur'],
|
|
1904
|
+
standalone: false
|
|
1398
1905
|
}]
|
|
1399
|
-
}], ctorParameters:
|
|
1906
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTextareaChange: [{
|
|
1907
|
+
type: Output
|
|
1908
|
+
}], sixTextareaInput: [{
|
|
1909
|
+
type: Output
|
|
1910
|
+
}], sixTextareaFocus: [{
|
|
1911
|
+
type: Output
|
|
1912
|
+
}], sixTextareaBlur: [{
|
|
1913
|
+
type: Output
|
|
1914
|
+
}] } });
|
|
1400
1915
|
let SixTile = class SixTile {
|
|
1916
|
+
z;
|
|
1917
|
+
el;
|
|
1918
|
+
sixTileClosed = new EventEmitter();
|
|
1919
|
+
sixTileSelected = new EventEmitter();
|
|
1401
1920
|
constructor(c, r, z) {
|
|
1402
1921
|
this.z = z;
|
|
1403
1922
|
c.detach();
|
|
1404
1923
|
this.el = r.nativeElement;
|
|
1405
|
-
proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
|
|
1406
1924
|
}
|
|
1407
|
-
static
|
|
1408
|
-
static
|
|
1925
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1926
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTile, isStandalone: false, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", library: "library", size: "size" }, outputs: { sixTileClosed: "sixTileClosed", sixTileSelected: "sixTileSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1409
1927
|
};
|
|
1410
1928
|
SixTile = __decorate([
|
|
1411
1929
|
ProxyCmp({
|
|
1412
|
-
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1930
|
+
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'library', 'size'],
|
|
1413
1931
|
methods: ['hide', 'show']
|
|
1414
1932
|
})
|
|
1415
1933
|
], SixTile);
|
|
1416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1934
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTile, decorators: [{
|
|
1417
1935
|
type: Component,
|
|
1418
1936
|
args: [{
|
|
1419
1937
|
selector: 'six-tile',
|
|
1420
1938
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1421
1939
|
template: '<ng-content></ng-content>',
|
|
1422
1940
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1423
|
-
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1941
|
+
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'library', 'size'],
|
|
1942
|
+
outputs: ['sixTileClosed:six-tile-closed', 'sixTileSelected:six-tile-selected'],
|
|
1943
|
+
standalone: false
|
|
1424
1944
|
}]
|
|
1425
|
-
}], ctorParameters:
|
|
1945
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTileClosed: [{
|
|
1946
|
+
type: Output
|
|
1947
|
+
}], sixTileSelected: [{
|
|
1948
|
+
type: Output
|
|
1949
|
+
}] } });
|
|
1426
1950
|
let SixTimepicker = class SixTimepicker {
|
|
1951
|
+
z;
|
|
1952
|
+
el;
|
|
1953
|
+
sixTimepickerChange = new EventEmitter();
|
|
1954
|
+
sixTimepickerChangeDebounced = new EventEmitter();
|
|
1955
|
+
sixTimepickerClear = new EventEmitter();
|
|
1427
1956
|
constructor(c, r, z) {
|
|
1428
1957
|
this.z = z;
|
|
1429
1958
|
c.detach();
|
|
1430
1959
|
this.el = r.nativeElement;
|
|
1431
|
-
proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
|
|
1432
1960
|
}
|
|
1433
|
-
static
|
|
1434
|
-
static
|
|
1961
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1962
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", 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" }, outputs: { sixTimepickerChange: "sixTimepickerChange", sixTimepickerChangeDebounced: "sixTimepickerChangeDebounced", sixTimepickerClear: "sixTimepickerClear" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1435
1963
|
};
|
|
1436
1964
|
SixTimepicker = __decorate([
|
|
1437
1965
|
ProxyCmp({
|
|
@@ -1439,7 +1967,7 @@ SixTimepicker = __decorate([
|
|
|
1439
1967
|
methods: ['setFocus']
|
|
1440
1968
|
})
|
|
1441
1969
|
], SixTimepicker);
|
|
1442
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTimepicker, decorators: [{
|
|
1443
1971
|
type: Component,
|
|
1444
1972
|
args: [{
|
|
1445
1973
|
selector: 'six-timepicker',
|
|
@@ -1447,17 +1975,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1447
1975
|
template: '<ng-content></ng-content>',
|
|
1448
1976
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1449
1977
|
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1978
|
+
outputs: ['sixTimepickerChange:six-timepicker-change', 'sixTimepickerChangeDebounced:six-timepicker-change-debounced', 'sixTimepickerClear:six-timepicker-clear'],
|
|
1979
|
+
standalone: false
|
|
1450
1980
|
}]
|
|
1451
|
-
}], ctorParameters:
|
|
1981
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTimepickerChange: [{
|
|
1982
|
+
type: Output
|
|
1983
|
+
}], sixTimepickerChangeDebounced: [{
|
|
1984
|
+
type: Output
|
|
1985
|
+
}], sixTimepickerClear: [{
|
|
1986
|
+
type: Output
|
|
1987
|
+
}] } });
|
|
1452
1988
|
let SixTooltip = class SixTooltip {
|
|
1989
|
+
z;
|
|
1990
|
+
el;
|
|
1991
|
+
sixTooltipShow = new EventEmitter();
|
|
1992
|
+
sixTooltipAfterShow = new EventEmitter();
|
|
1993
|
+
sixTooltipHide = new EventEmitter();
|
|
1994
|
+
sixTooltipAfterHide = new EventEmitter();
|
|
1453
1995
|
constructor(c, r, z) {
|
|
1454
1996
|
this.z = z;
|
|
1455
1997
|
c.detach();
|
|
1456
1998
|
this.el = r.nativeElement;
|
|
1457
|
-
proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
|
|
1458
1999
|
}
|
|
1459
|
-
static
|
|
1460
|
-
static
|
|
2000
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2001
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTooltip, isStandalone: false, selector: "six-tooltip", inputs: { content: "content", disabled: "disabled", distance: "distance", open: "open", placement: "placement", skidding: "skidding", trigger: "trigger" }, outputs: { sixTooltipShow: "sixTooltipShow", sixTooltipAfterShow: "sixTooltipAfterShow", sixTooltipHide: "sixTooltipHide", sixTooltipAfterHide: "sixTooltipAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1461
2002
|
};
|
|
1462
2003
|
SixTooltip = __decorate([
|
|
1463
2004
|
ProxyCmp({
|
|
@@ -1465,7 +2006,7 @@ SixTooltip = __decorate([
|
|
|
1465
2006
|
methods: ['show', 'hide']
|
|
1466
2007
|
})
|
|
1467
2008
|
], SixTooltip);
|
|
1468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTooltip, decorators: [{
|
|
1469
2010
|
type: Component,
|
|
1470
2011
|
args: [{
|
|
1471
2012
|
selector: 'six-tooltip',
|
|
@@ -1473,13 +2014,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1473
2014
|
template: '<ng-content></ng-content>',
|
|
1474
2015
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1475
2016
|
inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
|
|
2017
|
+
outputs: ['sixTooltipShow:six-tooltip-show', 'sixTooltipAfterShow:six-tooltip-after-show', 'sixTooltipHide:six-tooltip-hide', 'sixTooltipAfterHide:six-tooltip-after-hide'],
|
|
2018
|
+
standalone: false
|
|
1476
2019
|
}]
|
|
1477
|
-
}], ctorParameters:
|
|
2020
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTooltipShow: [{
|
|
2021
|
+
type: Output
|
|
2022
|
+
}], sixTooltipAfterShow: [{
|
|
2023
|
+
type: Output
|
|
2024
|
+
}], sixTooltipHide: [{
|
|
2025
|
+
type: Output
|
|
2026
|
+
}], sixTooltipAfterHide: [{
|
|
2027
|
+
type: Output
|
|
2028
|
+
}] } });
|
|
1478
2029
|
|
|
1479
2030
|
const DIRECTIVES = [
|
|
1480
2031
|
SixAlert,
|
|
1481
2032
|
SixAvatar,
|
|
1482
2033
|
SixBadge,
|
|
2034
|
+
SixBreadcrumbs,
|
|
2035
|
+
SixBreadcrumbsItem,
|
|
1483
2036
|
SixButton,
|
|
1484
2037
|
SixCard,
|
|
1485
2038
|
SixCheckbox,
|
|
@@ -1512,11 +2065,13 @@ const DIRECTIVES = [
|
|
|
1512
2065
|
SixMenuDivider,
|
|
1513
2066
|
SixMenuItem,
|
|
1514
2067
|
SixMenuLabel,
|
|
2068
|
+
SixPaginator,
|
|
1515
2069
|
SixPicto,
|
|
1516
2070
|
SixProgressBar,
|
|
1517
2071
|
SixProgressRing,
|
|
1518
2072
|
SixRadio,
|
|
1519
2073
|
SixRange,
|
|
2074
|
+
SixRating,
|
|
1520
2075
|
SixRoot,
|
|
1521
2076
|
SixSearchField,
|
|
1522
2077
|
SixSelect,
|
|
@@ -1540,28 +2095,34 @@ class ValidationMessagesService {
|
|
|
1540
2095
|
getErrorMessage(language, error) {
|
|
1541
2096
|
return getErrorMessage(language, error);
|
|
1542
2097
|
}
|
|
1543
|
-
static
|
|
1544
|
-
static
|
|
2098
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2099
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' });
|
|
1545
2100
|
}
|
|
1546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1547
2102
|
type: Injectable,
|
|
1548
2103
|
args: [{ providedIn: 'root' }]
|
|
1549
2104
|
}] });
|
|
1550
2105
|
|
|
1551
2106
|
const DEFAULT_UI_LIBRARY_CONFIG = {
|
|
1552
2107
|
showAsteriskOnRequiredValidator: false,
|
|
2108
|
+
disableValidationService: false,
|
|
1553
2109
|
};
|
|
1554
2110
|
const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
|
|
1555
2111
|
|
|
1556
2112
|
class ValueAccessor {
|
|
2113
|
+
injector;
|
|
2114
|
+
el;
|
|
2115
|
+
statusChanges;
|
|
2116
|
+
ngControl;
|
|
2117
|
+
initialErrorText;
|
|
2118
|
+
validationMessagesService = inject(ValidationMessagesService);
|
|
2119
|
+
config = inject(UI_LIBRARY_CONFIG);
|
|
1557
2120
|
constructor(injector, el) {
|
|
1558
2121
|
this.injector = injector;
|
|
1559
2122
|
this.el = el;
|
|
1560
|
-
this.validationMessagesService = inject(ValidationMessagesService);
|
|
1561
|
-
this.config = inject(UI_LIBRARY_CONFIG);
|
|
1562
|
-
this.onChange = () => { };
|
|
1563
|
-
this.onTouched = () => { };
|
|
1564
2123
|
}
|
|
2124
|
+
onChange = () => { };
|
|
2125
|
+
onTouched = () => { };
|
|
1565
2126
|
registerOnChange(fn) {
|
|
1566
2127
|
this.onChange = fn;
|
|
1567
2128
|
}
|
|
@@ -1604,12 +2165,12 @@ class ValueAccessor {
|
|
|
1604
2165
|
const element = this.el.nativeElement;
|
|
1605
2166
|
const control = this.ngControl?.control;
|
|
1606
2167
|
const invalid = control.status === 'INVALID' && control.dirty && control.touched;
|
|
1607
|
-
let errorTexts;
|
|
1608
|
-
if (invalid) {
|
|
1609
|
-
errorTexts = this.initialErrorText || this.getErrorTexts(control);
|
|
1610
|
-
}
|
|
1611
2168
|
element.invalid = invalid;
|
|
1612
|
-
|
|
2169
|
+
// If the module is configured to do so, display error messages for invalid controls
|
|
2170
|
+
if (!this.config.disableValidationService) {
|
|
2171
|
+
const errorTexts = invalid ? this.initialErrorText || this.getErrorTexts(control) : undefined;
|
|
2172
|
+
element.errorText = errorTexts ?? '';
|
|
2173
|
+
}
|
|
1613
2174
|
// When the module is configured to do so, display an asterisk next to any form control that has a required validator
|
|
1614
2175
|
if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
|
|
1615
2176
|
element.required = true;
|
|
@@ -1672,12 +2233,12 @@ class ValueAccessor {
|
|
|
1672
2233
|
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1673
2234
|
});
|
|
1674
2235
|
}
|
|
1675
|
-
static
|
|
1676
|
-
static
|
|
2236
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2237
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ValueAccessor, isStandalone: true, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
|
|
1677
2238
|
}
|
|
1678
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1679
2240
|
type: Directive
|
|
1680
|
-
}], ctorParameters:
|
|
2241
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
1681
2242
|
type: HostListener,
|
|
1682
2243
|
args: ['blur', ['$event.target']]
|
|
1683
2244
|
}] } });
|
|
@@ -1696,18 +2257,20 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1696
2257
|
super(injector, el);
|
|
1697
2258
|
}
|
|
1698
2259
|
handleInputEvent(el) {
|
|
1699
|
-
|
|
2260
|
+
if (el) {
|
|
2261
|
+
this.handleValueChange(el, el.value);
|
|
2262
|
+
}
|
|
1700
2263
|
}
|
|
1701
|
-
static
|
|
1702
|
-
static
|
|
2264
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2265
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: TextValueAccessor, isStandalone: false, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1703
2266
|
{
|
|
1704
2267
|
provide: NG_VALUE_ACCESSOR,
|
|
1705
2268
|
useExisting: TextValueAccessor,
|
|
1706
2269
|
multi: true,
|
|
1707
2270
|
},
|
|
1708
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2271
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1709
2272
|
}
|
|
1710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1711
2274
|
type: Directive,
|
|
1712
2275
|
args: [{
|
|
1713
2276
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1718,8 +2281,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1718
2281
|
multi: true,
|
|
1719
2282
|
},
|
|
1720
2283
|
],
|
|
2284
|
+
standalone: false,
|
|
1721
2285
|
}]
|
|
1722
|
-
}], ctorParameters:
|
|
2286
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1723
2287
|
type: HostListener,
|
|
1724
2288
|
args: ['input', ['$event.target']]
|
|
1725
2289
|
}] } });
|
|
@@ -1729,23 +2293,25 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1729
2293
|
super(injector, el);
|
|
1730
2294
|
}
|
|
1731
2295
|
handleInputEvent(el) {
|
|
1732
|
-
|
|
2296
|
+
if (el) {
|
|
2297
|
+
this.handleValueChange(el, el.value);
|
|
2298
|
+
}
|
|
1733
2299
|
}
|
|
1734
2300
|
registerOnChange(fn) {
|
|
1735
2301
|
super.registerOnChange((value) => {
|
|
1736
2302
|
fn(value === '' ? null : parseFloat(value));
|
|
1737
2303
|
});
|
|
1738
2304
|
}
|
|
1739
|
-
static
|
|
1740
|
-
static
|
|
2305
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2306
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: NumericValueAccessor, isStandalone: false, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1741
2307
|
{
|
|
1742
2308
|
provide: NG_VALUE_ACCESSOR,
|
|
1743
2309
|
useExisting: NumericValueAccessor,
|
|
1744
2310
|
multi: true,
|
|
1745
2311
|
},
|
|
1746
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2312
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1747
2313
|
}
|
|
1748
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1749
2315
|
type: Directive,
|
|
1750
2316
|
args: [{
|
|
1751
2317
|
selector: 'six-input[type=number]',
|
|
@@ -1756,8 +2322,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1756
2322
|
multi: true,
|
|
1757
2323
|
},
|
|
1758
2324
|
],
|
|
2325
|
+
standalone: false,
|
|
1759
2326
|
}]
|
|
1760
|
-
}], ctorParameters:
|
|
2327
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1761
2328
|
type: HostListener,
|
|
1762
2329
|
args: ['input', ['$event.target']]
|
|
1763
2330
|
}] } });
|
|
@@ -1766,8 +2333,13 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1766
2333
|
constructor(injector, el) {
|
|
1767
2334
|
super(injector, el);
|
|
1768
2335
|
}
|
|
2336
|
+
value;
|
|
2337
|
+
formControlName;
|
|
2338
|
+
name;
|
|
1769
2339
|
handleChangeEvent(el) {
|
|
1770
|
-
|
|
2340
|
+
if (el) {
|
|
2341
|
+
this.handleValueChange(el, this.value);
|
|
2342
|
+
}
|
|
1771
2343
|
}
|
|
1772
2344
|
ngOnInit() {
|
|
1773
2345
|
this.checkName();
|
|
@@ -1788,16 +2360,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1788
2360
|
this.el.nativeElement.name = this.formControlName;
|
|
1789
2361
|
}
|
|
1790
2362
|
}
|
|
1791
|
-
static
|
|
1792
|
-
static
|
|
2363
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2364
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: RadioValueAccessor, isStandalone: false, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1793
2365
|
{
|
|
1794
2366
|
provide: NG_VALUE_ACCESSOR,
|
|
1795
2367
|
useExisting: RadioValueAccessor,
|
|
1796
2368
|
multi: true,
|
|
1797
2369
|
},
|
|
1798
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2370
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1799
2371
|
}
|
|
1800
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1801
2373
|
type: Directive,
|
|
1802
2374
|
args: [{
|
|
1803
2375
|
selector: 'six-radio',
|
|
@@ -1808,8 +2380,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1808
2380
|
multi: true,
|
|
1809
2381
|
},
|
|
1810
2382
|
],
|
|
2383
|
+
standalone: false,
|
|
1811
2384
|
}]
|
|
1812
|
-
}], ctorParameters:
|
|
2385
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
1813
2386
|
type: Input
|
|
1814
2387
|
}], formControlName: [{
|
|
1815
2388
|
type: Input
|
|
@@ -1825,18 +2398,20 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1825
2398
|
super(injector, el);
|
|
1826
2399
|
}
|
|
1827
2400
|
handleChangeEvent(el) {
|
|
1828
|
-
|
|
2401
|
+
if (el) {
|
|
2402
|
+
this.handleValueChange(el, el.value);
|
|
2403
|
+
}
|
|
1829
2404
|
}
|
|
1830
|
-
static
|
|
1831
|
-
static
|
|
2405
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DatepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2406
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: DatepickerValueAccessor, isStandalone: false, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1832
2407
|
{
|
|
1833
2408
|
provide: NG_VALUE_ACCESSOR,
|
|
1834
2409
|
useExisting: DatepickerValueAccessor,
|
|
1835
2410
|
multi: true,
|
|
1836
2411
|
},
|
|
1837
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2412
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1838
2413
|
}
|
|
1839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1840
2415
|
type: Directive,
|
|
1841
2416
|
args: [{
|
|
1842
2417
|
selector: 'six-datepicker',
|
|
@@ -1847,8 +2422,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1847
2422
|
multi: true,
|
|
1848
2423
|
},
|
|
1849
2424
|
],
|
|
2425
|
+
standalone: false,
|
|
1850
2426
|
}]
|
|
1851
|
-
}], ctorParameters:
|
|
2427
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
1852
2428
|
type: HostListener,
|
|
1853
2429
|
args: ['change', ['$event.target']]
|
|
1854
2430
|
}] } });
|
|
@@ -1873,6 +2449,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1873
2449
|
* an alternative is to use the SixFormUtilDirective.
|
|
1874
2450
|
*/
|
|
1875
2451
|
class SixFormDirective {
|
|
2452
|
+
elementRef;
|
|
2453
|
+
formGroupDirective;
|
|
2454
|
+
/**
|
|
2455
|
+
* Emits an event when the form is valid and the form submission has been triggered.
|
|
2456
|
+
*/
|
|
2457
|
+
sixSubmit = new EventEmitter();
|
|
1876
2458
|
onNgSubmit(event) {
|
|
1877
2459
|
if (this.formGroupDirective.invalid) {
|
|
1878
2460
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
@@ -1884,20 +2466,17 @@ class SixFormDirective {
|
|
|
1884
2466
|
constructor(elementRef, formGroupDirective) {
|
|
1885
2467
|
this.elementRef = elementRef;
|
|
1886
2468
|
this.formGroupDirective = formGroupDirective;
|
|
1887
|
-
/**
|
|
1888
|
-
* Emits an event when the form is valid and the form submission has been triggered.
|
|
1889
|
-
*/
|
|
1890
|
-
this.sixSubmit = new EventEmitter();
|
|
1891
2469
|
}
|
|
1892
|
-
static
|
|
1893
|
-
static
|
|
2470
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2471
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixFormDirective, isStandalone: false, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 });
|
|
1894
2472
|
}
|
|
1895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1896
2474
|
type: Directive,
|
|
1897
2475
|
args: [{
|
|
1898
2476
|
selector: 'form[sixForm]',
|
|
2477
|
+
standalone: false,
|
|
1899
2478
|
}]
|
|
1900
|
-
}], ctorParameters:
|
|
2479
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
|
|
1901
2480
|
type: Output
|
|
1902
2481
|
}], onNgSubmit: [{
|
|
1903
2482
|
type: HostListener,
|
|
@@ -1929,6 +2508,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1929
2508
|
* ```
|
|
1930
2509
|
*/
|
|
1931
2510
|
class SixFormUtilDirective {
|
|
2511
|
+
elementRef;
|
|
2512
|
+
formGroupDirective;
|
|
1932
2513
|
constructor(elementRef, formGroupDirective) {
|
|
1933
2514
|
this.elementRef = elementRef;
|
|
1934
2515
|
this.formGroupDirective = formGroupDirective;
|
|
@@ -1940,15 +2521,16 @@ class SixFormUtilDirective {
|
|
|
1940
2521
|
focusInvalidField() {
|
|
1941
2522
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1942
2523
|
}
|
|
1943
|
-
static
|
|
1944
|
-
static
|
|
2524
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormUtilDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2525
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 });
|
|
1945
2526
|
}
|
|
1946
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1947
2528
|
type: Directive,
|
|
1948
2529
|
args: [{
|
|
1949
2530
|
selector: '[sixFormUtil]',
|
|
2531
|
+
standalone: false,
|
|
1950
2532
|
}]
|
|
1951
|
-
}], ctorParameters:
|
|
2533
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
|
|
1952
2534
|
function focusInvalidField(formGroupDirective, formElement) {
|
|
1953
2535
|
formGroupDirective.form.markAllAsTouched();
|
|
1954
2536
|
markAllAsDirty([formGroupDirective.form]);
|
|
@@ -2034,147 +2616,157 @@ class SixUiLibraryValidators {
|
|
|
2034
2616
|
}
|
|
2035
2617
|
}
|
|
2036
2618
|
class MinDateValidator {
|
|
2619
|
+
min;
|
|
2037
2620
|
validate(control) {
|
|
2038
2621
|
if (this.min != null) {
|
|
2039
2622
|
return SixUiLibraryValidators.minDate(this.min)(control);
|
|
2040
2623
|
}
|
|
2041
2624
|
return null;
|
|
2042
2625
|
}
|
|
2043
|
-
static
|
|
2044
|
-
static
|
|
2626
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2627
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MinDateValidator, isStandalone: false, selector: "six-datepicker[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 });
|
|
2045
2628
|
}
|
|
2046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
2047
2630
|
type: Directive,
|
|
2048
2631
|
args: [{
|
|
2049
2632
|
selector: 'six-datepicker[min]',
|
|
2050
2633
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
2634
|
+
standalone: false,
|
|
2051
2635
|
}]
|
|
2052
2636
|
}], propDecorators: { min: [{
|
|
2053
2637
|
type: Input
|
|
2054
2638
|
}] } });
|
|
2055
2639
|
class MaxDateValidator {
|
|
2640
|
+
max;
|
|
2056
2641
|
validate(control) {
|
|
2057
2642
|
if (this.max != null) {
|
|
2058
2643
|
return SixUiLibraryValidators.maxDate(this.max)(control);
|
|
2059
2644
|
}
|
|
2060
2645
|
return null;
|
|
2061
2646
|
}
|
|
2062
|
-
static
|
|
2063
|
-
static
|
|
2647
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2648
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MaxDateValidator, isStandalone: false, selector: "six-datepicker[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 });
|
|
2064
2649
|
}
|
|
2065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
2066
2651
|
type: Directive,
|
|
2067
2652
|
args: [{
|
|
2068
2653
|
selector: 'six-datepicker[max]',
|
|
2069
2654
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
2655
|
+
standalone: false,
|
|
2070
2656
|
}]
|
|
2071
2657
|
}], propDecorators: { max: [{
|
|
2072
2658
|
type: Input
|
|
2073
2659
|
}] } });
|
|
2074
2660
|
class AllowedDatesValidator {
|
|
2075
|
-
|
|
2076
|
-
this.allowedDates = () => true;
|
|
2077
|
-
}
|
|
2661
|
+
allowedDates = () => true;
|
|
2078
2662
|
validate(control) {
|
|
2079
2663
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
2080
2664
|
}
|
|
2081
|
-
static
|
|
2082
|
-
static
|
|
2665
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2666
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: AllowedDatesValidator, isStandalone: false, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 });
|
|
2083
2667
|
}
|
|
2084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
2085
2669
|
type: Directive,
|
|
2086
2670
|
args: [{
|
|
2087
2671
|
selector: 'six-datepicker[allowedDates]',
|
|
2088
2672
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
|
|
2673
|
+
standalone: false,
|
|
2089
2674
|
}]
|
|
2090
2675
|
}], propDecorators: { allowedDates: [{
|
|
2091
2676
|
type: Input
|
|
2092
2677
|
}] } });
|
|
2093
2678
|
class MinDateValidatorIso {
|
|
2679
|
+
min;
|
|
2094
2680
|
validate(control) {
|
|
2095
2681
|
if (this.min != null) {
|
|
2096
2682
|
return SixUiLibraryValidators.minDateIso(this.min)(control);
|
|
2097
2683
|
}
|
|
2098
2684
|
return null;
|
|
2099
2685
|
}
|
|
2100
|
-
static
|
|
2101
|
-
static
|
|
2686
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2687
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MinDateValidatorIso, isStandalone: false, selector: "six-date[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }], ngImport: i0 });
|
|
2102
2688
|
}
|
|
2103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2104
2690
|
type: Directive,
|
|
2105
2691
|
args: [{
|
|
2106
2692
|
selector: 'six-date[min]',
|
|
2107
2693
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2694
|
+
standalone: false,
|
|
2108
2695
|
}]
|
|
2109
2696
|
}], propDecorators: { min: [{
|
|
2110
2697
|
type: Input
|
|
2111
2698
|
}] } });
|
|
2112
2699
|
class MaxDateValidatorIso {
|
|
2700
|
+
max;
|
|
2113
2701
|
validate(control) {
|
|
2114
2702
|
if (this.max != null) {
|
|
2115
2703
|
return SixUiLibraryValidators.maxDateIso(this.max)(control);
|
|
2116
2704
|
}
|
|
2117
2705
|
return null;
|
|
2118
2706
|
}
|
|
2119
|
-
static
|
|
2120
|
-
static
|
|
2707
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2708
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MaxDateValidatorIso, isStandalone: false, selector: "six-date[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }], ngImport: i0 });
|
|
2121
2709
|
}
|
|
2122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2123
2711
|
type: Directive,
|
|
2124
2712
|
args: [{
|
|
2125
2713
|
selector: 'six-date[max]',
|
|
2126
2714
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2715
|
+
standalone: false,
|
|
2127
2716
|
}]
|
|
2128
2717
|
}], propDecorators: { max: [{
|
|
2129
2718
|
type: Input
|
|
2130
2719
|
}] } });
|
|
2131
2720
|
class AllowedDatesValidatorIso {
|
|
2132
|
-
|
|
2133
|
-
this.allowedDates = () => true;
|
|
2134
|
-
}
|
|
2721
|
+
allowedDates = () => true;
|
|
2135
2722
|
validate(control) {
|
|
2136
2723
|
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2137
2724
|
}
|
|
2138
|
-
static
|
|
2139
|
-
static
|
|
2725
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2726
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: AllowedDatesValidatorIso, isStandalone: false, selector: "six-date[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }], ngImport: i0 });
|
|
2140
2727
|
}
|
|
2141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2142
2729
|
type: Directive,
|
|
2143
2730
|
args: [{
|
|
2144
2731
|
selector: 'six-date[allowedDates]',
|
|
2145
2732
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2733
|
+
standalone: false,
|
|
2146
2734
|
}]
|
|
2147
2735
|
}], propDecorators: { allowedDates: [{
|
|
2148
2736
|
type: Input
|
|
2149
2737
|
}] } });
|
|
2150
2738
|
class MinValidator {
|
|
2739
|
+
min;
|
|
2151
2740
|
validate(control) {
|
|
2152
2741
|
return Validators.min(toFloat(this.min))(control);
|
|
2153
2742
|
}
|
|
2154
|
-
static
|
|
2155
|
-
static
|
|
2743
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2744
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MinValidator, isStandalone: false, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 });
|
|
2156
2745
|
}
|
|
2157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinValidator, decorators: [{
|
|
2158
2747
|
type: Directive,
|
|
2159
2748
|
args: [{
|
|
2160
2749
|
selector: 'six-input[type=number][min]',
|
|
2161
2750
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
|
|
2751
|
+
standalone: false,
|
|
2162
2752
|
}]
|
|
2163
2753
|
}], propDecorators: { min: [{
|
|
2164
2754
|
type: Input
|
|
2165
2755
|
}] } });
|
|
2166
2756
|
class MaxValidator {
|
|
2757
|
+
max;
|
|
2167
2758
|
validate(control) {
|
|
2168
2759
|
return Validators.max(toFloat(this.max))(control);
|
|
2169
2760
|
}
|
|
2170
|
-
static
|
|
2171
|
-
static
|
|
2761
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2762
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MaxValidator, isStandalone: false, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 });
|
|
2172
2763
|
}
|
|
2173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxValidator, decorators: [{
|
|
2174
2765
|
type: Directive,
|
|
2175
2766
|
args: [{
|
|
2176
2767
|
selector: 'six-input[type=number][max]',
|
|
2177
2768
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
|
|
2769
|
+
standalone: false,
|
|
2178
2770
|
}]
|
|
2179
2771
|
}], propDecorators: { max: [{
|
|
2180
2772
|
type: Input
|
|
@@ -2188,18 +2780,20 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
2188
2780
|
super(injector, el);
|
|
2189
2781
|
}
|
|
2190
2782
|
handleChangeEvent(el) {
|
|
2191
|
-
|
|
2783
|
+
if (el) {
|
|
2784
|
+
this.handleValueChange(el, el.value);
|
|
2785
|
+
}
|
|
2192
2786
|
}
|
|
2193
|
-
static
|
|
2194
|
-
static
|
|
2787
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2788
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SelectValueAccessor, isStandalone: false, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2195
2789
|
{
|
|
2196
2790
|
provide: NG_VALUE_ACCESSOR,
|
|
2197
2791
|
useExisting: SelectValueAccessor,
|
|
2198
2792
|
multi: true,
|
|
2199
2793
|
},
|
|
2200
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2794
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2201
2795
|
}
|
|
2202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2203
2797
|
type: Directive,
|
|
2204
2798
|
args: [{
|
|
2205
2799
|
selector: 'six-select',
|
|
@@ -2210,8 +2804,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2210
2804
|
multi: true,
|
|
2211
2805
|
},
|
|
2212
2806
|
],
|
|
2807
|
+
standalone: false,
|
|
2213
2808
|
}]
|
|
2214
|
-
}], ctorParameters:
|
|
2809
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2215
2810
|
type: HostListener,
|
|
2216
2811
|
args: ['change', ['$event.target']]
|
|
2217
2812
|
}] } });
|
|
@@ -2221,25 +2816,27 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2221
2816
|
super(injector, el);
|
|
2222
2817
|
}
|
|
2223
2818
|
handleChangeEvent(el) {
|
|
2224
|
-
|
|
2819
|
+
if (el) {
|
|
2820
|
+
this.handleValueChange(el, el.checked);
|
|
2821
|
+
}
|
|
2225
2822
|
}
|
|
2226
2823
|
writeValue(value) {
|
|
2227
2824
|
this.el.nativeElement.checked = value === true;
|
|
2228
2825
|
this.updateValidation();
|
|
2229
2826
|
}
|
|
2230
|
-
static
|
|
2231
|
-
static
|
|
2827
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2828
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: CheckboxValueAccessor, isStandalone: false, selector: "six-checkbox:not([six-checkbox-group])", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2232
2829
|
{
|
|
2233
2830
|
provide: NG_VALUE_ACCESSOR,
|
|
2234
2831
|
useExisting: CheckboxValueAccessor,
|
|
2235
2832
|
multi: true,
|
|
2236
2833
|
},
|
|
2237
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2834
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2238
2835
|
}
|
|
2239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2240
2837
|
type: Directive,
|
|
2241
2838
|
args: [{
|
|
2242
|
-
selector: 'six-checkbox',
|
|
2839
|
+
selector: 'six-checkbox:not([six-checkbox-group])',
|
|
2243
2840
|
providers: [
|
|
2244
2841
|
{
|
|
2245
2842
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -2247,8 +2844,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2247
2844
|
multi: true,
|
|
2248
2845
|
},
|
|
2249
2846
|
],
|
|
2847
|
+
standalone: false,
|
|
2250
2848
|
}]
|
|
2251
|
-
}], ctorParameters:
|
|
2849
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2850
|
+
type: HostListener,
|
|
2851
|
+
args: ['change', ['$event.target']]
|
|
2852
|
+
}] } });
|
|
2853
|
+
|
|
2854
|
+
class SixCheckboxGroupDirective {
|
|
2855
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCheckboxGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2856
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixCheckboxGroupDirective, isStandalone: false, selector: "[six-checkbox-group]", ngImport: i0 });
|
|
2857
|
+
}
|
|
2858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCheckboxGroupDirective, decorators: [{
|
|
2859
|
+
type: Directive,
|
|
2860
|
+
args: [{
|
|
2861
|
+
selector: '[six-checkbox-group]',
|
|
2862
|
+
standalone: false,
|
|
2863
|
+
}]
|
|
2864
|
+
}] });
|
|
2865
|
+
// Accessor applies only when the SixCheckboxGroupDirective attribute is present
|
|
2866
|
+
class CheckboxMultiSelectValueAccessor extends ValueAccessor {
|
|
2867
|
+
value;
|
|
2868
|
+
constructor(injector, el) {
|
|
2869
|
+
super(injector, el);
|
|
2870
|
+
}
|
|
2871
|
+
onHostChange(el) {
|
|
2872
|
+
if (!el)
|
|
2873
|
+
return;
|
|
2874
|
+
const checkbox = el;
|
|
2875
|
+
const checked = checkbox.checked;
|
|
2876
|
+
const current = this.ngControl?.value;
|
|
2877
|
+
if (!current)
|
|
2878
|
+
return;
|
|
2879
|
+
const set = new Set(current);
|
|
2880
|
+
checked ? set.add(this.value) : set.delete(this.value);
|
|
2881
|
+
this.handleValueChange(el, Array.from(set));
|
|
2882
|
+
}
|
|
2883
|
+
writeValue(values) {
|
|
2884
|
+
const arr = Array.isArray(values) ? values : [];
|
|
2885
|
+
const checkbox = this.el.nativeElement;
|
|
2886
|
+
checkbox.checked = arr.includes(this.value);
|
|
2887
|
+
this.updateValidation();
|
|
2888
|
+
}
|
|
2889
|
+
setDisabledState(isDisabled) {
|
|
2890
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
2891
|
+
}
|
|
2892
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxMultiSelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2893
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: CheckboxMultiSelectValueAccessor, isStandalone: false, selector: "six-checkbox[six-checkbox-group]", inputs: { value: "value" }, host: { listeners: { "change": "onHostChange($event.target)" } }, providers: [
|
|
2894
|
+
{
|
|
2895
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2896
|
+
useExisting: CheckboxMultiSelectValueAccessor,
|
|
2897
|
+
multi: true,
|
|
2898
|
+
},
|
|
2899
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2900
|
+
}
|
|
2901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxMultiSelectValueAccessor, decorators: [{
|
|
2902
|
+
type: Directive,
|
|
2903
|
+
args: [{
|
|
2904
|
+
selector: 'six-checkbox[six-checkbox-group]',
|
|
2905
|
+
providers: [
|
|
2906
|
+
{
|
|
2907
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2908
|
+
useExisting: CheckboxMultiSelectValueAccessor,
|
|
2909
|
+
multi: true,
|
|
2910
|
+
},
|
|
2911
|
+
],
|
|
2912
|
+
standalone: false,
|
|
2913
|
+
}]
|
|
2914
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
2915
|
+
type: Input,
|
|
2916
|
+
args: [{ required: true }]
|
|
2917
|
+
}], onHostChange: [{
|
|
2252
2918
|
type: HostListener,
|
|
2253
2919
|
args: ['change', ['$event.target']]
|
|
2254
2920
|
}] } });
|
|
@@ -2258,23 +2924,25 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2258
2924
|
super(injector, el);
|
|
2259
2925
|
}
|
|
2260
2926
|
handleInputEvent(el) {
|
|
2261
|
-
|
|
2927
|
+
if (el) {
|
|
2928
|
+
this.handleValueChange(el, el.value);
|
|
2929
|
+
}
|
|
2262
2930
|
}
|
|
2263
2931
|
registerOnChange(fn) {
|
|
2264
2932
|
super.registerOnChange((value) => {
|
|
2265
2933
|
fn(value === '' ? null : parseFloat(value));
|
|
2266
2934
|
});
|
|
2267
2935
|
}
|
|
2268
|
-
static
|
|
2269
|
-
static
|
|
2936
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RangeValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2937
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: RangeValueAccessor, isStandalone: false, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
2270
2938
|
{
|
|
2271
2939
|
provide: NG_VALUE_ACCESSOR,
|
|
2272
2940
|
useExisting: RangeValueAccessor,
|
|
2273
2941
|
multi: true,
|
|
2274
2942
|
},
|
|
2275
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2943
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2276
2944
|
}
|
|
2277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2278
2946
|
type: Directive,
|
|
2279
2947
|
args: [{
|
|
2280
2948
|
selector: 'six-range',
|
|
@@ -2285,8 +2953,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2285
2953
|
multi: true,
|
|
2286
2954
|
},
|
|
2287
2955
|
],
|
|
2956
|
+
standalone: false,
|
|
2288
2957
|
}]
|
|
2289
|
-
}], ctorParameters:
|
|
2958
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2290
2959
|
type: HostListener,
|
|
2291
2960
|
args: ['input', ['$event.target']]
|
|
2292
2961
|
}] } });
|
|
@@ -2296,22 +2965,24 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2296
2965
|
super(injector, el);
|
|
2297
2966
|
}
|
|
2298
2967
|
handleChangeEvent(el) {
|
|
2299
|
-
|
|
2968
|
+
if (el) {
|
|
2969
|
+
this.handleValueChange(el, el.checked);
|
|
2970
|
+
}
|
|
2300
2971
|
}
|
|
2301
2972
|
writeValue(value) {
|
|
2302
2973
|
this.el.nativeElement.checked = value === true;
|
|
2303
2974
|
this.updateValidation();
|
|
2304
2975
|
}
|
|
2305
|
-
static
|
|
2306
|
-
static
|
|
2976
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2977
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SwitchValueAccessor, isStandalone: false, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2307
2978
|
{
|
|
2308
2979
|
provide: NG_VALUE_ACCESSOR,
|
|
2309
2980
|
useExisting: SwitchValueAccessor,
|
|
2310
2981
|
multi: true,
|
|
2311
2982
|
},
|
|
2312
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2983
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2313
2984
|
}
|
|
2314
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2315
2986
|
type: Directive,
|
|
2316
2987
|
args: [{
|
|
2317
2988
|
selector: 'six-switch',
|
|
@@ -2322,8 +2993,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2322
2993
|
multi: true,
|
|
2323
2994
|
},
|
|
2324
2995
|
],
|
|
2996
|
+
standalone: false,
|
|
2325
2997
|
}]
|
|
2326
|
-
}], ctorParameters:
|
|
2998
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2327
2999
|
type: HostListener,
|
|
2328
3000
|
args: ['change', ['$event.target']]
|
|
2329
3001
|
}] } });
|
|
@@ -2333,18 +3005,20 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2333
3005
|
super(injector, el);
|
|
2334
3006
|
}
|
|
2335
3007
|
handleChangeEvent(el) {
|
|
2336
|
-
|
|
3008
|
+
if (el) {
|
|
3009
|
+
this.handleValueChange(el, el.value);
|
|
3010
|
+
}
|
|
2337
3011
|
}
|
|
2338
|
-
static
|
|
2339
|
-
static
|
|
3012
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TimepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3013
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: TimepickerValueAccessor, isStandalone: false, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2340
3014
|
{
|
|
2341
3015
|
provide: NG_VALUE_ACCESSOR,
|
|
2342
3016
|
useExisting: TimepickerValueAccessor,
|
|
2343
3017
|
multi: true,
|
|
2344
3018
|
},
|
|
2345
|
-
], usesInheritance: true, ngImport: i0 });
|
|
3019
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2346
3020
|
}
|
|
2347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2348
3022
|
type: Directive,
|
|
2349
3023
|
args: [{
|
|
2350
3024
|
selector: 'six-timepicker',
|
|
@@ -2355,8 +3029,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2355
3029
|
multi: true,
|
|
2356
3030
|
},
|
|
2357
3031
|
],
|
|
3032
|
+
standalone: false,
|
|
2358
3033
|
}]
|
|
2359
|
-
}], ctorParameters:
|
|
3034
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2360
3035
|
type: HostListener,
|
|
2361
3036
|
args: ['change', ['$event.target']]
|
|
2362
3037
|
}] } });
|
|
@@ -2365,6 +3040,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2365
3040
|
* Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
|
|
2366
3041
|
*/
|
|
2367
3042
|
class SixRouterLinkDirective {
|
|
3043
|
+
locationStrategy;
|
|
3044
|
+
elementRef;
|
|
3045
|
+
router;
|
|
3046
|
+
renderer;
|
|
3047
|
+
routerLinkDirective;
|
|
2368
3048
|
constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
|
|
2369
3049
|
this.locationStrategy = locationStrategy;
|
|
2370
3050
|
this.elementRef = elementRef;
|
|
@@ -2376,6 +3056,11 @@ class SixRouterLinkDirective {
|
|
|
2376
3056
|
// Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
|
|
2377
3057
|
event.preventDefault();
|
|
2378
3058
|
}
|
|
3059
|
+
routerLink;
|
|
3060
|
+
queryParams;
|
|
3061
|
+
fragment;
|
|
3062
|
+
queryParamsHandling;
|
|
3063
|
+
relativeTo;
|
|
2379
3064
|
ngOnInit() {
|
|
2380
3065
|
this.updateTargetUrlAndHref();
|
|
2381
3066
|
}
|
|
@@ -2393,17 +3078,18 @@ class SixRouterLinkDirective {
|
|
|
2393
3078
|
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2394
3079
|
}
|
|
2395
3080
|
}
|
|
2396
|
-
static
|
|
2397
|
-
static
|
|
3081
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", 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 });
|
|
3082
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", 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 });
|
|
2398
3083
|
}
|
|
2399
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2400
3085
|
type: Directive,
|
|
2401
3086
|
args: [{
|
|
2402
3087
|
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
3088
|
+
standalone: false,
|
|
2403
3089
|
}]
|
|
2404
|
-
}], ctorParameters:
|
|
3090
|
+
}], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2405
3091
|
type: Optional
|
|
2406
|
-
}] }]
|
|
3092
|
+
}] }], propDecorators: { onClick: [{
|
|
2407
3093
|
type: HostListener,
|
|
2408
3094
|
args: ['click', ['$event']]
|
|
2409
3095
|
}], routerLink: [{
|
|
@@ -2437,13 +3123,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2437
3123
|
* ```
|
|
2438
3124
|
*/
|
|
2439
3125
|
class ActiveSidebarDirective {
|
|
2440
|
-
static
|
|
2441
|
-
static
|
|
3126
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3127
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 });
|
|
2442
3128
|
}
|
|
2443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
|
|
2444
3130
|
type: Directive,
|
|
2445
3131
|
args: [{
|
|
2446
3132
|
selector: 'six-sidebar[sixRouterLinkActive]',
|
|
3133
|
+
standalone: false,
|
|
2447
3134
|
}]
|
|
2448
3135
|
}] });
|
|
2449
3136
|
/**
|
|
@@ -2456,11 +3143,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2456
3143
|
* @optional ActiveSidebarDirective - If present, enables route-based selection
|
|
2457
3144
|
*/
|
|
2458
3145
|
class ActiveSidebarItemDirective {
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2463
|
-
}
|
|
3146
|
+
routerLinkActive = inject(RouterLinkActive);
|
|
3147
|
+
sidebarItem = inject(SixSidebarItem);
|
|
3148
|
+
activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2464
3149
|
get selected() {
|
|
2465
3150
|
if (this.activeSidebarDirective == null) {
|
|
2466
3151
|
return this.sidebarItem.selected;
|
|
@@ -2469,14 +3154,15 @@ class ActiveSidebarItemDirective {
|
|
|
2469
3154
|
return this.routerLinkActive.isActive;
|
|
2470
3155
|
}
|
|
2471
3156
|
}
|
|
2472
|
-
static
|
|
2473
|
-
static
|
|
3157
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3158
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ActiveSidebarItemDirective, isStandalone: false, selector: "six-sidebar-item", host: { properties: { "selected": "this.selected" } }, hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 });
|
|
2474
3159
|
}
|
|
2475
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
|
|
2476
3161
|
type: Directive,
|
|
2477
3162
|
args: [{
|
|
2478
3163
|
selector: 'six-sidebar-item',
|
|
2479
3164
|
hostDirectives: [RouterLinkActive],
|
|
3165
|
+
standalone: false,
|
|
2480
3166
|
}]
|
|
2481
3167
|
}], propDecorators: { selected: [{
|
|
2482
3168
|
type: HostBinding,
|
|
@@ -2492,11 +3178,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2492
3178
|
* @optional ActiveSidebarDirective - If present, enables route-based expansion
|
|
2493
3179
|
*/
|
|
2494
3180
|
class ActiveSidebarItemGroupDirective {
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
}
|
|
3181
|
+
routerLinkActive = inject(RouterLinkActive);
|
|
3182
|
+
sidebarItemGroup = inject(SixSidebarItemGroup);
|
|
3183
|
+
activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
3184
|
+
sidebarItems;
|
|
2500
3185
|
get open() {
|
|
2501
3186
|
if (this.activeSidebarDirective == null) {
|
|
2502
3187
|
return this.sidebarItemGroup.open;
|
|
@@ -2506,14 +3191,15 @@ class ActiveSidebarItemGroupDirective {
|
|
|
2506
3191
|
}
|
|
2507
3192
|
return this.routerLinkActive.isActive;
|
|
2508
3193
|
}
|
|
2509
|
-
static
|
|
2510
|
-
static
|
|
3194
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3195
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", 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 });
|
|
2511
3196
|
}
|
|
2512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
|
|
2513
3198
|
type: Directive,
|
|
2514
3199
|
args: [{
|
|
2515
3200
|
selector: 'six-sidebar-item-group',
|
|
2516
3201
|
hostDirectives: [RouterLinkActive],
|
|
3202
|
+
standalone: false,
|
|
2517
3203
|
}]
|
|
2518
3204
|
}], propDecorators: { sidebarItems: [{
|
|
2519
3205
|
type: ContentChildren,
|
|
@@ -2528,22 +3214,24 @@ class DateValueAccessor extends ValueAccessor {
|
|
|
2528
3214
|
super(injector, el);
|
|
2529
3215
|
}
|
|
2530
3216
|
handleInputEvent(el) {
|
|
2531
|
-
|
|
3217
|
+
if (el) {
|
|
3218
|
+
this.handleValueChange(el, el.value);
|
|
3219
|
+
}
|
|
2532
3220
|
}
|
|
2533
3221
|
writeValue(value) {
|
|
2534
3222
|
this.el.nativeElement.value = value == null ? '' : value;
|
|
2535
3223
|
this.updateValidation();
|
|
2536
3224
|
}
|
|
2537
|
-
static
|
|
2538
|
-
static
|
|
3225
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DateValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3226
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: DateValueAccessor, isStandalone: false, selector: "six-date", host: { listeners: { "change": "handleInputEvent($event.target)" } }, providers: [
|
|
2539
3227
|
{
|
|
2540
3228
|
provide: NG_VALUE_ACCESSOR,
|
|
2541
3229
|
useExisting: DateValueAccessor,
|
|
2542
3230
|
multi: true,
|
|
2543
3231
|
},
|
|
2544
|
-
], usesInheritance: true, ngImport: i0 });
|
|
3232
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2545
3233
|
}
|
|
2546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
2547
3235
|
type: Directive,
|
|
2548
3236
|
args: [{
|
|
2549
3237
|
selector: 'six-date',
|
|
@@ -2554,8 +3242,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2554
3242
|
multi: true,
|
|
2555
3243
|
},
|
|
2556
3244
|
],
|
|
3245
|
+
standalone: false,
|
|
2557
3246
|
}]
|
|
2558
|
-
}], ctorParameters:
|
|
3247
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2559
3248
|
type: HostListener,
|
|
2560
3249
|
args: ['change', ['$event.target']]
|
|
2561
3250
|
}] } });
|
|
@@ -2579,8 +3268,8 @@ class UiLibraryAngularModule {
|
|
|
2579
3268
|
],
|
|
2580
3269
|
};
|
|
2581
3270
|
}
|
|
2582
|
-
static
|
|
2583
|
-
static
|
|
3271
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3272
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.6", 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, SixPaginator, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2584
3273
|
// value accessors
|
|
2585
3274
|
TextValueAccessor,
|
|
2586
3275
|
NumericValueAccessor,
|
|
@@ -2590,6 +3279,8 @@ class UiLibraryAngularModule {
|
|
|
2590
3279
|
TimepickerValueAccessor,
|
|
2591
3280
|
SelectValueAccessor,
|
|
2592
3281
|
CheckboxValueAccessor,
|
|
3282
|
+
CheckboxMultiSelectValueAccessor,
|
|
3283
|
+
SixCheckboxGroupDirective,
|
|
2593
3284
|
SwitchValueAccessor,
|
|
2594
3285
|
RangeValueAccessor,
|
|
2595
3286
|
// validators
|
|
@@ -2609,7 +3300,7 @@ class UiLibraryAngularModule {
|
|
|
2609
3300
|
// sidebar helpers
|
|
2610
3301
|
ActiveSidebarItemDirective,
|
|
2611
3302
|
ActiveSidebarItemGroupDirective,
|
|
2612
|
-
ActiveSidebarDirective], exports: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
3303
|
+
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, SixPaginator, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2613
3304
|
// value accessors
|
|
2614
3305
|
TextValueAccessor,
|
|
2615
3306
|
NumericValueAccessor,
|
|
@@ -2619,6 +3310,8 @@ class UiLibraryAngularModule {
|
|
|
2619
3310
|
TimepickerValueAccessor,
|
|
2620
3311
|
SelectValueAccessor,
|
|
2621
3312
|
CheckboxValueAccessor,
|
|
3313
|
+
CheckboxMultiSelectValueAccessor,
|
|
3314
|
+
SixCheckboxGroupDirective,
|
|
2622
3315
|
SwitchValueAccessor,
|
|
2623
3316
|
RangeValueAccessor,
|
|
2624
3317
|
// validators
|
|
@@ -2638,10 +3331,10 @@ class UiLibraryAngularModule {
|
|
|
2638
3331
|
// sidebar helpers
|
|
2639
3332
|
ActiveSidebarItemDirective,
|
|
2640
3333
|
ActiveSidebarItemGroupDirective,
|
|
2641
|
-
ActiveSidebarDirective] });
|
|
2642
|
-
static
|
|
3334
|
+
ActiveSidebarDirective] });
|
|
3335
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule });
|
|
2643
3336
|
}
|
|
2644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2645
3338
|
type: NgModule,
|
|
2646
3339
|
args: [{
|
|
2647
3340
|
declarations: [
|
|
@@ -2656,6 +3349,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2656
3349
|
TimepickerValueAccessor,
|
|
2657
3350
|
SelectValueAccessor,
|
|
2658
3351
|
CheckboxValueAccessor,
|
|
3352
|
+
CheckboxMultiSelectValueAccessor,
|
|
3353
|
+
SixCheckboxGroupDirective,
|
|
2659
3354
|
SwitchValueAccessor,
|
|
2660
3355
|
RangeValueAccessor,
|
|
2661
3356
|
// validators
|
|
@@ -2690,6 +3385,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2690
3385
|
TimepickerValueAccessor,
|
|
2691
3386
|
SelectValueAccessor,
|
|
2692
3387
|
CheckboxValueAccessor,
|
|
3388
|
+
CheckboxMultiSelectValueAccessor,
|
|
3389
|
+
SixCheckboxGroupDirective,
|
|
2693
3390
|
SwitchValueAccessor,
|
|
2694
3391
|
RangeValueAccessor,
|
|
2695
3392
|
// validators
|
|
@@ -2715,19 +3412,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2715
3412
|
}] });
|
|
2716
3413
|
|
|
2717
3414
|
class AlertService {
|
|
2718
|
-
|
|
2719
|
-
this.ngZone = inject(NgZone);
|
|
2720
|
-
}
|
|
3415
|
+
ngZone = inject(NgZone);
|
|
2721
3416
|
/**
|
|
2722
3417
|
* Displays an alert as a toast notification.
|
|
2723
3418
|
*/
|
|
2724
3419
|
showAlert(message, alertType, duration, iconName) {
|
|
2725
3420
|
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2726
3421
|
}
|
|
2727
|
-
static
|
|
2728
|
-
static
|
|
3422
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3423
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AlertService, providedIn: 'root' });
|
|
2729
3424
|
}
|
|
2730
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AlertService, decorators: [{
|
|
2731
3426
|
type: Injectable,
|
|
2732
3427
|
args: [{ providedIn: 'root' }]
|
|
2733
3428
|
}] });
|
|
@@ -2740,5 +3435,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2740
3435
|
* Generated bundle index. Do not edit.
|
|
2741
3436
|
*/
|
|
2742
3437
|
|
|
2743
|
-
export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, 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 };
|
|
3438
|
+
export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxMultiSelectValueAccessor, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixBreadcrumbs, SixBreadcrumbsItem, SixButton, SixCard, SixCheckbox, SixCheckboxGroupDirective, 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, SixPaginator, 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 };
|
|
2744
3439
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|