@six-group/ui-library-angular 0.0.0-insider.f8b41df → 0.0.0-insider.fa2c15f
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/esm2022/lib/control-value-accessors/checkbox-value-accessor.mjs +41 -0
- package/esm2022/lib/control-value-accessors/datepicker-value-accessor.mjs +37 -0
- package/esm2022/lib/control-value-accessors/numeric-value-accessor.mjs +42 -0
- package/{esm2020 → esm2022}/lib/control-value-accessors/radio-value-accessor.mjs +10 -10
- package/{esm2020 → esm2022}/lib/control-value-accessors/range-value-accessor.mjs +10 -10
- package/esm2022/lib/control-value-accessors/select-value-accessor.mjs +37 -0
- package/esm2022/lib/control-value-accessors/switch-value-accessor.mjs +41 -0
- package/esm2022/lib/control-value-accessors/text-value-accessor.mjs +37 -0
- package/esm2022/lib/control-value-accessors/timepicker-value-accessor.mjs +37 -0
- package/esm2022/lib/control-value-accessors/value-accessor.mjs +138 -0
- package/{esm2020 → esm2022}/lib/form/six-form.directive.mjs +7 -7
- package/esm2022/lib/link/six-router-link.directive.mjs +56 -0
- package/esm2022/lib/services/alert.service.mjs +21 -0
- package/{esm2020 → esm2022}/lib/services/validation-messages.service.mjs +4 -4
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/components.mjs +1294 -0
- package/{esm2020 → esm2022}/lib/stencil-generated/index.mjs +2 -2
- package/esm2022/lib/ui-library-angular.module.mjs +135 -0
- package/esm2022/lib/validators/six-ui-library-validators.mjs +122 -0
- package/esm2022/public-api.mjs +28 -0
- package/{fesm2020 → fesm2022}/six-group-ui-library-angular.mjs +472 -388
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -0
- package/lib/control-value-accessors/radio-value-accessor.d.ts +1 -1
- package/lib/control-value-accessors/value-accessor.d.ts +1 -1
- package/lib/link/six-router-link.directive.d.ts +26 -0
- package/lib/services/alert.service.d.ts +11 -0
- package/lib/stencil-generated/components.d.ts +55 -60
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/ui-library-angular.module.d.ts +2 -1
- package/lib/validators/six-ui-library-validators.d.ts +7 -7
- package/package.json +12 -13
- package/public-api.d.ts +2 -0
- package/esm2020/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
- package/esm2020/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
- package/esm2020/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
- package/esm2020/lib/control-value-accessors/select-value-accessor.mjs +0 -37
- package/esm2020/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
- package/esm2020/lib/control-value-accessors/text-value-accessor.mjs +0 -37
- package/esm2020/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
- package/esm2020/lib/control-value-accessors/value-accessor.mjs +0 -143
- package/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +0 -51
- package/esm2020/lib/stencil-generated/components.mjs +0 -1349
- package/esm2020/lib/ui-library-angular.module.mjs +0 -127
- package/esm2020/lib/validators/six-ui-library-validators.mjs +0 -116
- package/esm2020/public-api.mjs +0 -25
- package/fesm2015/six-group-ui-library-angular.mjs +0 -2262
- package/fesm2015/six-group-ui-library-angular.mjs.map +0 -1
- package/fesm2020/six-group-ui-library-angular.mjs.map +0 -1
- /package/{esm2020 → esm2022}/six-group-ui-library-angular.mjs +0 -0
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, Injectable, inject, Directive, HostListener, Input, EventEmitter, Output, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Injectable, inject, Directive, HostListener, Input, EventEmitter, Output, Optional, APP_INITIALIZER, NgModule, NgZone } from '@angular/core';
|
|
3
3
|
import { __decorate } from 'tslib';
|
|
4
4
|
import { fromEvent } from 'rxjs';
|
|
5
5
|
import { defineCustomElements } from '@six-group/ui-library/loader';
|
|
6
6
|
import * as i1 from '@angular/forms';
|
|
7
7
|
import { NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS, Validators } from '@angular/forms';
|
|
8
|
-
import { getErrorMessage } from '@six-group/ui-library';
|
|
8
|
+
import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
|
|
9
|
+
import * as i1$1 from '@angular/common';
|
|
10
|
+
import * as i2 from '@angular/router';
|
|
9
11
|
|
|
10
12
|
/* eslint-disable */
|
|
11
13
|
/* tslint:disable */
|
|
@@ -19,6 +21,14 @@ const proxyInputs = (Cmp, inputs) => {
|
|
|
19
21
|
set(val) {
|
|
20
22
|
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
21
23
|
},
|
|
24
|
+
/**
|
|
25
|
+
* In the event that proxyInputs is called
|
|
26
|
+
* multiple times re-defining these inputs
|
|
27
|
+
* will cause an error to be thrown. As a result
|
|
28
|
+
* we set configurable: true to indicate these
|
|
29
|
+
* properties can be changed.
|
|
30
|
+
*/
|
|
31
|
+
configurable: true,
|
|
22
32
|
});
|
|
23
33
|
});
|
|
24
34
|
};
|
|
@@ -57,30 +67,6 @@ function ProxyCmp(opts) {
|
|
|
57
67
|
return decorator;
|
|
58
68
|
}
|
|
59
69
|
|
|
60
|
-
let SetAttributes = class SetAttributes {
|
|
61
|
-
constructor(c, r, z) {
|
|
62
|
-
this.z = z;
|
|
63
|
-
c.detach();
|
|
64
|
-
this.el = r.nativeElement;
|
|
65
|
-
}
|
|
66
|
-
};
|
|
67
|
-
SetAttributes.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SetAttributes, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
68
|
-
SetAttributes.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SetAttributes, selector: "set-attributes", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
69
|
-
SetAttributes = __decorate([
|
|
70
|
-
ProxyCmp({
|
|
71
|
-
inputs: ['value']
|
|
72
|
-
})
|
|
73
|
-
], SetAttributes);
|
|
74
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SetAttributes, decorators: [{
|
|
75
|
-
type: Component,
|
|
76
|
-
args: [{
|
|
77
|
-
selector: 'set-attributes',
|
|
78
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
79
|
-
template: '<ng-content></ng-content>',
|
|
80
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
81
|
-
inputs: ['value'],
|
|
82
|
-
}]
|
|
83
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
84
70
|
let SixAlert = class SixAlert {
|
|
85
71
|
constructor(c, r, z) {
|
|
86
72
|
this.z = z;
|
|
@@ -88,16 +74,16 @@ let SixAlert = class SixAlert {
|
|
|
88
74
|
this.el = r.nativeElement;
|
|
89
75
|
proxyOutputs(this, this.el, ['six-alert-show', 'six-alert-after-show', 'six-alert-hide', 'six-alert-after-hide']);
|
|
90
76
|
}
|
|
77
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
78
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixAlert, selector: "six-alert", inputs: { closable: "closable", duration: "duration", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
91
79
|
};
|
|
92
|
-
SixAlert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
93
|
-
SixAlert.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixAlert, selector: "six-alert", inputs: { closable: "closable", duration: "duration", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
94
80
|
SixAlert = __decorate([
|
|
95
81
|
ProxyCmp({
|
|
96
82
|
inputs: ['closable', 'duration', 'open', 'type'],
|
|
97
83
|
methods: ['show', 'hide', 'toast']
|
|
98
84
|
})
|
|
99
85
|
], SixAlert);
|
|
100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
86
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixAlert, decorators: [{
|
|
101
87
|
type: Component,
|
|
102
88
|
args: [{
|
|
103
89
|
selector: 'six-alert',
|
|
@@ -113,15 +99,15 @@ let SixAvatar = class SixAvatar {
|
|
|
113
99
|
c.detach();
|
|
114
100
|
this.el = r.nativeElement;
|
|
115
101
|
}
|
|
102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
103
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixAvatar, 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 }); }
|
|
116
104
|
};
|
|
117
|
-
SixAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
118
|
-
SixAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixAvatar, 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 });
|
|
119
105
|
SixAvatar = __decorate([
|
|
120
106
|
ProxyCmp({
|
|
121
107
|
inputs: ['alt', 'image', 'initials', 'shape']
|
|
122
108
|
})
|
|
123
109
|
], SixAvatar);
|
|
124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixAvatar, decorators: [{
|
|
125
111
|
type: Component,
|
|
126
112
|
args: [{
|
|
127
113
|
selector: 'six-avatar',
|
|
@@ -137,15 +123,15 @@ let SixBadge = class SixBadge {
|
|
|
137
123
|
c.detach();
|
|
138
124
|
this.el = r.nativeElement;
|
|
139
125
|
}
|
|
126
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
127
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixBadge, selector: "six-badge", inputs: { pill: "pill", pulse: "pulse", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
140
128
|
};
|
|
141
|
-
SixBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
142
|
-
SixBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixBadge, selector: "six-badge", inputs: { pill: "pill", pulse: "pulse", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
143
129
|
SixBadge = __decorate([
|
|
144
130
|
ProxyCmp({
|
|
145
131
|
inputs: ['pill', 'pulse', 'type']
|
|
146
132
|
})
|
|
147
133
|
], SixBadge);
|
|
148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixBadge, decorators: [{
|
|
149
135
|
type: Component,
|
|
150
136
|
args: [{
|
|
151
137
|
selector: 'six-badge',
|
|
@@ -162,16 +148,16 @@ let SixButton = class SixButton {
|
|
|
162
148
|
this.el = r.nativeElement;
|
|
163
149
|
proxyOutputs(this, this.el, ['six-button-blur', 'six-button-focus']);
|
|
164
150
|
}
|
|
151
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
152
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixButton, selector: "six-button", inputs: { caret: "caret", circle: "circle", disabled: "disabled", download: "download", href: "href", loading: "loading", name: "name", pill: "pill", reset: "reset", size: "size", submit: "submit", target: "target", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
165
153
|
};
|
|
166
|
-
SixButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
167
|
-
SixButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixButton, selector: "six-button", inputs: { caret: "caret", circle: "circle", disabled: "disabled", download: "download", href: "href", loading: "loading", name: "name", pill: "pill", reset: "reset", size: "size", submit: "submit", target: "target", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
168
154
|
SixButton = __decorate([
|
|
169
155
|
ProxyCmp({
|
|
170
156
|
inputs: ['caret', 'circle', 'disabled', 'download', 'href', 'loading', 'name', 'pill', 'reset', 'size', 'submit', 'target', 'type', 'value'],
|
|
171
157
|
methods: ['setFocus', 'removeFocus']
|
|
172
158
|
})
|
|
173
159
|
], SixButton);
|
|
174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixButton, decorators: [{
|
|
175
161
|
type: Component,
|
|
176
162
|
args: [{
|
|
177
163
|
selector: 'six-button',
|
|
@@ -187,13 +173,13 @@ let SixCard = class SixCard {
|
|
|
187
173
|
c.detach();
|
|
188
174
|
this.el = r.nativeElement;
|
|
189
175
|
}
|
|
176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
177
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixCard, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
190
178
|
};
|
|
191
|
-
SixCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
192
|
-
SixCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixCard, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
193
179
|
SixCard = __decorate([
|
|
194
180
|
ProxyCmp({})
|
|
195
181
|
], SixCard);
|
|
196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixCard, decorators: [{
|
|
197
183
|
type: Component,
|
|
198
184
|
args: [{
|
|
199
185
|
selector: 'six-card',
|
|
@@ -210,23 +196,23 @@ let SixCheckbox = class SixCheckbox {
|
|
|
210
196
|
this.el = r.nativeElement;
|
|
211
197
|
proxyOutputs(this, this.el, ['six-checkbox-blur', 'six-checkbox-change', 'six-checkbox-focus']);
|
|
212
198
|
}
|
|
199
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
200
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixCheckbox, selector: "six-checkbox", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", indeterminate: "indeterminate", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
213
201
|
};
|
|
214
|
-
SixCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
215
|
-
SixCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixCheckbox, selector: "six-checkbox", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", indeterminate: "indeterminate", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
216
202
|
SixCheckbox = __decorate([
|
|
217
203
|
ProxyCmp({
|
|
218
|
-
inputs: ['checked', 'disabled', 'errorText', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
204
|
+
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
219
205
|
methods: ['setFocus', 'removeFocus']
|
|
220
206
|
})
|
|
221
207
|
], SixCheckbox);
|
|
222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixCheckbox, decorators: [{
|
|
223
209
|
type: Component,
|
|
224
210
|
args: [{
|
|
225
211
|
selector: 'six-checkbox',
|
|
226
212
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
227
213
|
template: '<ng-content></ng-content>',
|
|
228
214
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
229
|
-
inputs: ['checked', 'disabled', 'errorText', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
215
|
+
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
230
216
|
}]
|
|
231
217
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
232
218
|
let SixDatepicker = class SixDatepicker {
|
|
@@ -236,23 +222,23 @@ let SixDatepicker = class SixDatepicker {
|
|
|
236
222
|
this.el = r.nativeElement;
|
|
237
223
|
proxyOutputs(this, this.el, ['six-datepicker-select', 'six-datepicker-clear', 'six-datepicker-blur']);
|
|
238
224
|
}
|
|
225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
226
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDatepicker, selector: "six-datepicker", inputs: { allowedDates: "allowedDates", clearable: "clearable", closeOnSelect: "closeOnSelect", containingElement: "containingElement", dateFormat: "dateFormat", debounce: "debounce", defaultDate: "defaultDate", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", invalid: "invalid", label: "label", locale: "locale", max: "max", min: "min", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
239
227
|
};
|
|
240
|
-
SixDatepicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
241
|
-
SixDatepicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixDatepicker, selector: "six-datepicker", inputs: { allowedDates: "allowedDates", clearable: "clearable", closeOnSelect: "closeOnSelect", containingElement: "containingElement", dateFormat: "dateFormat", debounce: "debounce", defaultDate: "defaultDate", disabled: "disabled", errorText: "errorText", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", invalid: "invalid", label: "label", locale: "locale", max: "max", min: "min", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
242
228
|
SixDatepicker = __decorate([
|
|
243
229
|
ProxyCmp({
|
|
244
|
-
inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorText', 'hoist', 'iconPosition', 'inline', 'invalid', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
|
|
230
|
+
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'],
|
|
245
231
|
methods: ['setFocus', 'select']
|
|
246
232
|
})
|
|
247
233
|
], SixDatepicker);
|
|
248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDatepicker, decorators: [{
|
|
249
235
|
type: Component,
|
|
250
236
|
args: [{
|
|
251
237
|
selector: 'six-datepicker',
|
|
252
238
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
253
239
|
template: '<ng-content></ng-content>',
|
|
254
240
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
255
|
-
inputs: ['allowedDates', 'clearable', 'closeOnSelect', 'containingElement', 'dateFormat', 'debounce', 'defaultDate', 'disabled', 'errorText', 'hoist', 'iconPosition', 'inline', 'invalid', 'label', 'locale', 'max', 'min', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'size', 'type', 'value'],
|
|
241
|
+
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'],
|
|
256
242
|
}]
|
|
257
243
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
258
244
|
let SixDetails = class SixDetails {
|
|
@@ -262,16 +248,16 @@ let SixDetails = class SixDetails {
|
|
|
262
248
|
this.el = r.nativeElement;
|
|
263
249
|
proxyOutputs(this, this.el, ['six-details-show', 'six-details-after-show', 'six-details-hide', 'six-details-after-hide']);
|
|
264
250
|
}
|
|
251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
252
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDetails, selector: "six-details", inputs: { disabled: "disabled", hasContent: "hasContent", inline: "inline", open: "open", selectableEmpty: "selectableEmpty", summary: "summary", summaryIcon: "summaryIcon", summaryIconSize: "summaryIconSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
265
253
|
};
|
|
266
|
-
SixDetails.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
267
|
-
SixDetails.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixDetails, selector: "six-details", inputs: { disabled: "disabled", hasContent: "hasContent", inline: "inline", open: "open", selectableEmpty: "selectableEmpty", summary: "summary", summaryIcon: "summaryIcon", summaryIconSize: "summaryIconSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
268
254
|
SixDetails = __decorate([
|
|
269
255
|
ProxyCmp({
|
|
270
256
|
inputs: ['disabled', 'hasContent', 'inline', 'open', 'selectableEmpty', 'summary', 'summaryIcon', 'summaryIconSize'],
|
|
271
257
|
methods: ['show', 'hide']
|
|
272
258
|
})
|
|
273
259
|
], SixDetails);
|
|
274
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDetails, decorators: [{
|
|
275
261
|
type: Component,
|
|
276
262
|
args: [{
|
|
277
263
|
selector: 'six-details',
|
|
@@ -288,16 +274,16 @@ let SixDialog = class SixDialog {
|
|
|
288
274
|
this.el = r.nativeElement;
|
|
289
275
|
proxyOutputs(this, this.el, ['six-dialog-show', 'six-dialog-after-show', 'six-dialog-hide', 'six-dialog-after-hide', 'six-dialog-initial-focus', 'six-dialog-overlay-dismiss']);
|
|
290
276
|
}
|
|
277
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
278
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDialog, selector: "six-dialog", inputs: { label: "label", noHeader: "noHeader", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
291
279
|
};
|
|
292
|
-
SixDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
293
|
-
SixDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixDialog, selector: "six-dialog", inputs: { label: "label", noHeader: "noHeader", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
294
280
|
SixDialog = __decorate([
|
|
295
281
|
ProxyCmp({
|
|
296
282
|
inputs: ['label', 'noHeader', 'open'],
|
|
297
283
|
methods: ['show', 'hide']
|
|
298
284
|
})
|
|
299
285
|
], SixDialog);
|
|
300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDialog, decorators: [{
|
|
301
287
|
type: Component,
|
|
302
288
|
args: [{
|
|
303
289
|
selector: 'six-dialog',
|
|
@@ -314,16 +300,16 @@ let SixDrawer = class SixDrawer {
|
|
|
314
300
|
this.el = r.nativeElement;
|
|
315
301
|
proxyOutputs(this, this.el, ['six-drawer-show', 'six-drawer-after-show', 'six-drawer-hide', 'six-drawer-after-hide', 'six-drawer-initial-focus', 'six-drawer-overlay-dismiss']);
|
|
316
302
|
}
|
|
303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
304
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDrawer, selector: "six-drawer", inputs: { contained: "contained", label: "label", noHeader: "noHeader", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
317
305
|
};
|
|
318
|
-
SixDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
319
|
-
SixDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixDrawer, selector: "six-drawer", inputs: { contained: "contained", label: "label", noHeader: "noHeader", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
320
306
|
SixDrawer = __decorate([
|
|
321
307
|
ProxyCmp({
|
|
322
308
|
inputs: ['contained', 'label', 'noHeader', 'open', 'placement'],
|
|
323
309
|
methods: ['show', 'hide']
|
|
324
310
|
})
|
|
325
311
|
], SixDrawer);
|
|
326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDrawer, decorators: [{
|
|
327
313
|
type: Component,
|
|
328
314
|
args: [{
|
|
329
315
|
selector: 'six-drawer',
|
|
@@ -340,23 +326,45 @@ let SixDropdown = class SixDropdown {
|
|
|
340
326
|
this.el = r.nativeElement;
|
|
341
327
|
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']);
|
|
342
328
|
}
|
|
329
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
330
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDropdown, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", matchTriggerWidth: "matchTriggerWidth", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
343
331
|
};
|
|
344
|
-
SixDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
345
|
-
SixDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixDropdown, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
346
332
|
SixDropdown = __decorate([
|
|
347
333
|
ProxyCmp({
|
|
348
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
334
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
349
335
|
methods: ['show', 'hide', 'reposition']
|
|
350
336
|
})
|
|
351
337
|
], SixDropdown);
|
|
352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDropdown, decorators: [{
|
|
353
339
|
type: Component,
|
|
354
340
|
args: [{
|
|
355
341
|
selector: 'six-dropdown',
|
|
356
342
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
357
343
|
template: '<ng-content></ng-content>',
|
|
358
344
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
359
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
345
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
346
|
+
}]
|
|
347
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
348
|
+
let SixError = class SixError {
|
|
349
|
+
constructor(c, r, z) {
|
|
350
|
+
this.z = z;
|
|
351
|
+
c.detach();
|
|
352
|
+
this.el = r.nativeElement;
|
|
353
|
+
}
|
|
354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
355
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixError, selector: "six-error", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
356
|
+
};
|
|
357
|
+
SixError = __decorate([
|
|
358
|
+
ProxyCmp({})
|
|
359
|
+
], SixError);
|
|
360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixError, decorators: [{
|
|
361
|
+
type: Component,
|
|
362
|
+
args: [{
|
|
363
|
+
selector: 'six-error',
|
|
364
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
365
|
+
template: '<ng-content></ng-content>',
|
|
366
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
367
|
+
inputs: [],
|
|
360
368
|
}]
|
|
361
369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
362
370
|
let SixErrorPage = class SixErrorPage {
|
|
@@ -365,15 +373,15 @@ let SixErrorPage = class SixErrorPage {
|
|
|
365
373
|
c.detach();
|
|
366
374
|
this.el = r.nativeElement;
|
|
367
375
|
}
|
|
376
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
377
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixErrorPage, 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 }); }
|
|
368
378
|
};
|
|
369
|
-
SixErrorPage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
370
|
-
SixErrorPage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixErrorPage, 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 });
|
|
371
379
|
SixErrorPage = __decorate([
|
|
372
380
|
ProxyCmp({
|
|
373
381
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
|
|
374
382
|
})
|
|
375
383
|
], SixErrorPage);
|
|
376
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
384
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixErrorPage, decorators: [{
|
|
377
385
|
type: Component,
|
|
378
386
|
args: [{
|
|
379
387
|
selector: 'six-error-page',
|
|
@@ -389,13 +397,13 @@ let SixFileList = class SixFileList {
|
|
|
389
397
|
c.detach();
|
|
390
398
|
this.el = r.nativeElement;
|
|
391
399
|
}
|
|
400
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
401
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixFileList, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
392
402
|
};
|
|
393
|
-
SixFileList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
394
|
-
SixFileList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFileList, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
395
403
|
SixFileList = __decorate([
|
|
396
404
|
ProxyCmp({})
|
|
397
405
|
], SixFileList);
|
|
398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileList, decorators: [{
|
|
399
407
|
type: Component,
|
|
400
408
|
args: [{
|
|
401
409
|
selector: 'six-file-list',
|
|
@@ -412,15 +420,15 @@ let SixFileListItem = class SixFileListItem {
|
|
|
412
420
|
this.el = r.nativeElement;
|
|
413
421
|
proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
|
|
414
422
|
}
|
|
423
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
424
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixFileListItem, selector: "six-file-list-item", inputs: { date: "date", identifier: "identifier", name: "name", nodelete: "nodelete", nodownload: "nodownload", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
415
425
|
};
|
|
416
|
-
SixFileListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
417
|
-
SixFileListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFileListItem, selector: "six-file-list-item", inputs: { date: "date", identifier: "identifier", name: "name", nodelete: "nodelete", nodownload: "nodownload", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
418
426
|
SixFileListItem = __decorate([
|
|
419
427
|
ProxyCmp({
|
|
420
428
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
|
|
421
429
|
})
|
|
422
430
|
], SixFileListItem);
|
|
423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileListItem, decorators: [{
|
|
424
432
|
type: Component,
|
|
425
433
|
args: [{
|
|
426
434
|
selector: 'six-file-list-item',
|
|
@@ -437,15 +445,15 @@ let SixFileUpload = class SixFileUpload {
|
|
|
437
445
|
this.el = r.nativeElement;
|
|
438
446
|
proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
|
|
439
447
|
}
|
|
448
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
449
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixFileUpload, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", label: "label", maxFileSize: "maxFileSize", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
440
450
|
};
|
|
441
|
-
SixFileUpload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
442
|
-
SixFileUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFileUpload, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", label: "label", maxFileSize: "maxFileSize", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
443
451
|
SixFileUpload = __decorate([
|
|
444
452
|
ProxyCmp({
|
|
445
453
|
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple']
|
|
446
454
|
})
|
|
447
455
|
], SixFileUpload);
|
|
448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileUpload, decorators: [{
|
|
449
457
|
type: Component,
|
|
450
458
|
args: [{
|
|
451
459
|
selector: 'six-file-upload',
|
|
@@ -461,13 +469,13 @@ let SixFooter = class SixFooter {
|
|
|
461
469
|
c.detach();
|
|
462
470
|
this.el = r.nativeElement;
|
|
463
471
|
}
|
|
472
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
473
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixFooter, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
464
474
|
};
|
|
465
|
-
SixFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
466
|
-
SixFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixFooter, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
467
475
|
SixFooter = __decorate([
|
|
468
476
|
ProxyCmp({})
|
|
469
477
|
], SixFooter);
|
|
470
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFooter, decorators: [{
|
|
471
479
|
type: Component,
|
|
472
480
|
args: [{
|
|
473
481
|
selector: 'six-footer',
|
|
@@ -483,15 +491,15 @@ let SixGroupLabel = class SixGroupLabel {
|
|
|
483
491
|
c.detach();
|
|
484
492
|
this.el = r.nativeElement;
|
|
485
493
|
}
|
|
494
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
495
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixGroupLabel, 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 }); }
|
|
486
496
|
};
|
|
487
|
-
SixGroupLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
488
|
-
SixGroupLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixGroupLabel, 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 });
|
|
489
497
|
SixGroupLabel = __decorate([
|
|
490
498
|
ProxyCmp({
|
|
491
499
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size']
|
|
492
500
|
})
|
|
493
501
|
], SixGroupLabel);
|
|
494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixGroupLabel, decorators: [{
|
|
495
503
|
type: Component,
|
|
496
504
|
args: [{
|
|
497
505
|
selector: 'six-group-label',
|
|
@@ -508,23 +516,23 @@ let SixHeader = class SixHeader {
|
|
|
508
516
|
this.el = r.nativeElement;
|
|
509
517
|
proxyOutputs(this, this.el, ['six-header-app-name-clicked', 'six-header-app-switcher-select', 'six-header-profile-select', 'six-header-hamburger-menu-clicked', 'six-header-logo-clicked', 'six-header-search-field-toggle']);
|
|
510
518
|
}
|
|
519
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
520
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeader, selector: "six-header", inputs: { clickableLogo: "clickableLogo", hideHamburgerMenu: "hideHamburgerMenu", openHamburgerMenu: "openHamburgerMenu", openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
511
521
|
};
|
|
512
|
-
SixHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
513
|
-
SixHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixHeader, selector: "six-header", inputs: { clickableLogo: "clickableLogo", openHamburgerMenu: "openHamburgerMenu", openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
514
522
|
SixHeader = __decorate([
|
|
515
523
|
ProxyCmp({
|
|
516
|
-
inputs: ['clickableLogo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
524
|
+
inputs: ['clickableLogo', 'hideHamburgerMenu', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
517
525
|
methods: ['setSearchOpenState', 'getIsSearchOpen']
|
|
518
526
|
})
|
|
519
527
|
], SixHeader);
|
|
520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, decorators: [{
|
|
521
529
|
type: Component,
|
|
522
530
|
args: [{
|
|
523
531
|
selector: 'six-header',
|
|
524
532
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
525
533
|
template: '<ng-content></ng-content>',
|
|
526
534
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
527
|
-
inputs: ['clickableLogo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
535
|
+
inputs: ['clickableLogo', 'hideHamburgerMenu', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
528
536
|
}]
|
|
529
537
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
530
538
|
let SixIcon = class SixIcon {
|
|
@@ -533,15 +541,15 @@ let SixIcon = class SixIcon {
|
|
|
533
541
|
c.detach();
|
|
534
542
|
this.el = r.nativeElement;
|
|
535
543
|
}
|
|
544
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
545
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixIcon, selector: "six-icon", inputs: { filled: "filled", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
536
546
|
};
|
|
537
|
-
SixIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
538
|
-
SixIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixIcon, selector: "six-icon", inputs: { filled: "filled", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
539
547
|
SixIcon = __decorate([
|
|
540
548
|
ProxyCmp({
|
|
541
549
|
inputs: ['filled', 'size']
|
|
542
550
|
})
|
|
543
551
|
], SixIcon);
|
|
544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
552
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIcon, decorators: [{
|
|
545
553
|
type: Component,
|
|
546
554
|
args: [{
|
|
547
555
|
selector: 'six-icon',
|
|
@@ -557,15 +565,15 @@ let SixIconButton = class SixIconButton {
|
|
|
557
565
|
c.detach();
|
|
558
566
|
this.el = r.nativeElement;
|
|
559
567
|
}
|
|
568
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
569
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixIconButton, selector: "six-icon-button", inputs: { disabled: "disabled", html: "html", label: "label", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
560
570
|
};
|
|
561
|
-
SixIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
562
|
-
SixIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixIconButton, selector: "six-icon-button", inputs: { disabled: "disabled", html: "html", label: "label", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
563
571
|
SixIconButton = __decorate([
|
|
564
572
|
ProxyCmp({
|
|
565
573
|
inputs: ['disabled', 'html', 'label', 'name', 'size']
|
|
566
574
|
})
|
|
567
575
|
], SixIconButton);
|
|
568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIconButton, decorators: [{
|
|
569
577
|
type: Component,
|
|
570
578
|
args: [{
|
|
571
579
|
selector: 'six-icon-button',
|
|
@@ -582,23 +590,23 @@ let SixInput = class SixInput {
|
|
|
582
590
|
this.el = r.nativeElement;
|
|
583
591
|
proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
|
|
584
592
|
}
|
|
593
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
594
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixInput, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", dropdownSearch: "dropdownSearch", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", line: "line", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", pill: "pill", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", spellcheck: "spellcheck", step: "step", togglePassword: "togglePassword", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
585
595
|
};
|
|
586
|
-
SixInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
587
|
-
SixInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixInput, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", errorText: "errorText", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", line: "line", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", pill: "pill", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", spellcheck: "spellcheck", step: "step", togglePassword: "togglePassword", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
588
596
|
SixInput = __decorate([
|
|
589
597
|
ProxyCmp({
|
|
590
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
598
|
+
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'],
|
|
591
599
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
592
600
|
})
|
|
593
601
|
], SixInput);
|
|
594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixInput, decorators: [{
|
|
595
603
|
type: Component,
|
|
596
604
|
args: [{
|
|
597
605
|
selector: 'six-input',
|
|
598
606
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
599
607
|
template: '<ng-content></ng-content>',
|
|
600
608
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
601
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
609
|
+
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'],
|
|
602
610
|
}]
|
|
603
611
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
604
612
|
let SixItemPicker = class SixItemPicker {
|
|
@@ -608,15 +616,15 @@ let SixItemPicker = class SixItemPicker {
|
|
|
608
616
|
this.el = r.nativeElement;
|
|
609
617
|
proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
|
|
610
618
|
}
|
|
619
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
620
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixItemPicker, selector: "six-item-picker", inputs: { debounce: "debounce", interval: "interval", items: "items", max: "max", min: "min", padded: "padded", paddingChar: "paddingChar", paddingDirection: "paddingDirection", paddingLength: "paddingLength", roundtrip: "roundtrip", step: "step", timeout: "timeout", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
611
621
|
};
|
|
612
|
-
SixItemPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
613
|
-
SixItemPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixItemPicker, selector: "six-item-picker", inputs: { debounce: "debounce", interval: "interval", items: "items", max: "max", min: "min", padded: "padded", paddingChar: "paddingChar", paddingDirection: "paddingDirection", paddingLength: "paddingLength", roundtrip: "roundtrip", step: "step", timeout: "timeout", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
614
622
|
SixItemPicker = __decorate([
|
|
615
623
|
ProxyCmp({
|
|
616
624
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
|
|
617
625
|
})
|
|
618
626
|
], SixItemPicker);
|
|
619
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixItemPicker, decorators: [{
|
|
620
628
|
type: Component,
|
|
621
629
|
args: [{
|
|
622
630
|
selector: 'six-item-picker',
|
|
@@ -633,15 +641,15 @@ let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
|
633
641
|
this.el = r.nativeElement;
|
|
634
642
|
proxyOutputs(this, this.el, ['six-language-switcher-change']);
|
|
635
643
|
}
|
|
644
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
645
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixLanguageSwitcher, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
636
646
|
};
|
|
637
|
-
SixLanguageSwitcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
638
|
-
SixLanguageSwitcher.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixLanguageSwitcher, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
639
647
|
SixLanguageSwitcher = __decorate([
|
|
640
648
|
ProxyCmp({
|
|
641
649
|
inputs: ['languages', 'selected']
|
|
642
650
|
})
|
|
643
651
|
], SixLanguageSwitcher);
|
|
644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
|
|
645
653
|
type: Component,
|
|
646
654
|
args: [{
|
|
647
655
|
selector: 'six-language-switcher',
|
|
@@ -657,15 +665,15 @@ let SixLayoutGrid = class SixLayoutGrid {
|
|
|
657
665
|
c.detach();
|
|
658
666
|
this.el = r.nativeElement;
|
|
659
667
|
}
|
|
668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
669
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixLayoutGrid, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
660
670
|
};
|
|
661
|
-
SixLayoutGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
662
|
-
SixLayoutGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixLayoutGrid, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
663
671
|
SixLayoutGrid = __decorate([
|
|
664
672
|
ProxyCmp({
|
|
665
673
|
inputs: ['columns']
|
|
666
674
|
})
|
|
667
675
|
], SixLayoutGrid);
|
|
668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
676
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLayoutGrid, decorators: [{
|
|
669
677
|
type: Component,
|
|
670
678
|
args: [{
|
|
671
679
|
selector: 'six-layout-grid',
|
|
@@ -681,15 +689,15 @@ let SixMainContainer = class SixMainContainer {
|
|
|
681
689
|
c.detach();
|
|
682
690
|
this.el = r.nativeElement;
|
|
683
691
|
}
|
|
692
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
693
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMainContainer, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
684
694
|
};
|
|
685
|
-
SixMainContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
686
|
-
SixMainContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMainContainer, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
687
695
|
SixMainContainer = __decorate([
|
|
688
696
|
ProxyCmp({
|
|
689
697
|
inputs: ['padded']
|
|
690
698
|
})
|
|
691
699
|
], SixMainContainer);
|
|
692
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMainContainer, decorators: [{
|
|
693
701
|
type: Component,
|
|
694
702
|
args: [{
|
|
695
703
|
selector: 'six-main-container',
|
|
@@ -706,23 +714,23 @@ let SixMenu = class SixMenu {
|
|
|
706
714
|
this.el = r.nativeElement;
|
|
707
715
|
proxyOutputs(this, this.el, ['six-menu-item-selected']);
|
|
708
716
|
}
|
|
717
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
718
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenu, selector: "six-menu", inputs: { disableKeyboardHandling: "disableKeyboardHandling", itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
709
719
|
};
|
|
710
|
-
SixMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
711
|
-
SixMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenu, selector: "six-menu", inputs: { itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
712
720
|
SixMenu = __decorate([
|
|
713
721
|
ProxyCmp({
|
|
714
|
-
inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
722
|
+
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
715
723
|
methods: ['typeToSelect']
|
|
716
724
|
})
|
|
717
725
|
], SixMenu);
|
|
718
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenu, decorators: [{
|
|
719
727
|
type: Component,
|
|
720
728
|
args: [{
|
|
721
729
|
selector: 'six-menu',
|
|
722
730
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
723
731
|
template: '<ng-content></ng-content>',
|
|
724
732
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
725
|
-
inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
733
|
+
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
726
734
|
}]
|
|
727
735
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
728
736
|
let SixMenuDivider = class SixMenuDivider {
|
|
@@ -731,13 +739,13 @@ let SixMenuDivider = class SixMenuDivider {
|
|
|
731
739
|
c.detach();
|
|
732
740
|
this.el = r.nativeElement;
|
|
733
741
|
}
|
|
742
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
743
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenuDivider, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
734
744
|
};
|
|
735
|
-
SixMenuDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
736
|
-
SixMenuDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenuDivider, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
737
745
|
SixMenuDivider = __decorate([
|
|
738
746
|
ProxyCmp({})
|
|
739
747
|
], SixMenuDivider);
|
|
740
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
748
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuDivider, decorators: [{
|
|
741
749
|
type: Component,
|
|
742
750
|
args: [{
|
|
743
751
|
selector: 'six-menu-divider',
|
|
@@ -753,23 +761,23 @@ let SixMenuItem = class SixMenuItem {
|
|
|
753
761
|
c.detach();
|
|
754
762
|
this.el = r.nativeElement;
|
|
755
763
|
}
|
|
764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
765
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenuItem, 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 }); }
|
|
756
766
|
};
|
|
757
|
-
SixMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
758
|
-
SixMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenuItem, selector: "six-menu-item", inputs: { checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
759
767
|
SixMenuItem = __decorate([
|
|
760
768
|
ProxyCmp({
|
|
761
|
-
inputs: ['checked', 'disabled', 'value'],
|
|
769
|
+
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
762
770
|
methods: ['setFocus', 'removeFocus', 'getTextLabel']
|
|
763
771
|
})
|
|
764
772
|
], SixMenuItem);
|
|
765
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuItem, decorators: [{
|
|
766
774
|
type: Component,
|
|
767
775
|
args: [{
|
|
768
776
|
selector: 'six-menu-item',
|
|
769
777
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
770
778
|
template: '<ng-content></ng-content>',
|
|
771
779
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
772
|
-
inputs: ['checked', 'disabled', 'value'],
|
|
780
|
+
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
773
781
|
}]
|
|
774
782
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
775
783
|
let SixMenuLabel = class SixMenuLabel {
|
|
@@ -778,13 +786,13 @@ let SixMenuLabel = class SixMenuLabel {
|
|
|
778
786
|
c.detach();
|
|
779
787
|
this.el = r.nativeElement;
|
|
780
788
|
}
|
|
789
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
790
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenuLabel, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
781
791
|
};
|
|
782
|
-
SixMenuLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
783
|
-
SixMenuLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixMenuLabel, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
784
792
|
SixMenuLabel = __decorate([
|
|
785
793
|
ProxyCmp({})
|
|
786
794
|
], SixMenuLabel);
|
|
787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuLabel, decorators: [{
|
|
788
796
|
type: Component,
|
|
789
797
|
args: [{
|
|
790
798
|
selector: 'six-menu-label',
|
|
@@ -800,15 +808,15 @@ let SixPicto = class SixPicto {
|
|
|
800
808
|
c.detach();
|
|
801
809
|
this.el = r.nativeElement;
|
|
802
810
|
}
|
|
811
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
812
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixPicto, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
803
813
|
};
|
|
804
|
-
SixPicto.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
805
|
-
SixPicto.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixPicto, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
806
814
|
SixPicto = __decorate([
|
|
807
815
|
ProxyCmp({
|
|
808
816
|
inputs: ['size']
|
|
809
817
|
})
|
|
810
818
|
], SixPicto);
|
|
811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixPicto, decorators: [{
|
|
812
820
|
type: Component,
|
|
813
821
|
args: [{
|
|
814
822
|
selector: 'six-picto',
|
|
@@ -824,15 +832,15 @@ let SixProgressBar = class SixProgressBar {
|
|
|
824
832
|
c.detach();
|
|
825
833
|
this.el = r.nativeElement;
|
|
826
834
|
}
|
|
835
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
836
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixProgressBar, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
827
837
|
};
|
|
828
|
-
SixProgressBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
829
|
-
SixProgressBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixProgressBar, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
830
838
|
SixProgressBar = __decorate([
|
|
831
839
|
ProxyCmp({
|
|
832
840
|
inputs: ['indeterminate', 'percentage']
|
|
833
841
|
})
|
|
834
842
|
], SixProgressBar);
|
|
835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
843
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixProgressBar, decorators: [{
|
|
836
844
|
type: Component,
|
|
837
845
|
args: [{
|
|
838
846
|
selector: 'six-progress-bar',
|
|
@@ -848,15 +856,15 @@ let SixProgressRing = class SixProgressRing {
|
|
|
848
856
|
c.detach();
|
|
849
857
|
this.el = r.nativeElement;
|
|
850
858
|
}
|
|
859
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
860
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixProgressRing, selector: "six-progress-ring", inputs: { percentage: "percentage", size: "size", strokeWidth: "strokeWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
851
861
|
};
|
|
852
|
-
SixProgressRing.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
853
|
-
SixProgressRing.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixProgressRing, selector: "six-progress-ring", inputs: { percentage: "percentage", size: "size", strokeWidth: "strokeWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
854
862
|
SixProgressRing = __decorate([
|
|
855
863
|
ProxyCmp({
|
|
856
864
|
inputs: ['percentage', 'size', 'strokeWidth']
|
|
857
865
|
})
|
|
858
866
|
], SixProgressRing);
|
|
859
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixProgressRing, decorators: [{
|
|
860
868
|
type: Component,
|
|
861
869
|
args: [{
|
|
862
870
|
selector: 'six-progress-ring',
|
|
@@ -873,16 +881,16 @@ let SixRadio = class SixRadio {
|
|
|
873
881
|
this.el = r.nativeElement;
|
|
874
882
|
proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
|
|
875
883
|
}
|
|
884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
885
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixRadio, selector: "six-radio", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
876
886
|
};
|
|
877
|
-
SixRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
878
|
-
SixRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixRadio, selector: "six-radio", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
879
887
|
SixRadio = __decorate([
|
|
880
888
|
ProxyCmp({
|
|
881
889
|
inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
|
|
882
890
|
methods: ['setFocus', 'removeFocus']
|
|
883
891
|
})
|
|
884
892
|
], SixRadio);
|
|
885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
893
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRadio, decorators: [{
|
|
886
894
|
type: Component,
|
|
887
895
|
args: [{
|
|
888
896
|
selector: 'six-radio',
|
|
@@ -899,23 +907,23 @@ let SixRange = class SixRange {
|
|
|
899
907
|
this.el = r.nativeElement;
|
|
900
908
|
proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
|
|
901
909
|
}
|
|
910
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
911
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixRange, selector: "six-range", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", min: "min", name: "name", required: "required", step: "step", tooltip: "tooltip", tooltipFormatter: "tooltipFormatter", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
902
912
|
};
|
|
903
|
-
SixRange.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
904
|
-
SixRange.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixRange, selector: "six-range", inputs: { disabled: "disabled", errorText: "errorText", helpText: "helpText", invalid: "invalid", label: "label", max: "max", min: "min", name: "name", required: "required", step: "step", tooltip: "tooltip", tooltipFormatter: "tooltipFormatter", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
905
913
|
SixRange = __decorate([
|
|
906
914
|
ProxyCmp({
|
|
907
|
-
inputs: ['disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
915
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
908
916
|
methods: ['setFocus', 'removeFocus']
|
|
909
917
|
})
|
|
910
918
|
], SixRange);
|
|
911
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRange, decorators: [{
|
|
912
920
|
type: Component,
|
|
913
921
|
args: [{
|
|
914
922
|
selector: 'six-range',
|
|
915
923
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
916
924
|
template: '<ng-content></ng-content>',
|
|
917
925
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
918
|
-
inputs: ['disabled', 'errorText', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
926
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
919
927
|
}]
|
|
920
928
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
921
929
|
let SixRoot = class SixRoot {
|
|
@@ -923,24 +931,23 @@ let SixRoot = class SixRoot {
|
|
|
923
931
|
this.z = z;
|
|
924
932
|
c.detach();
|
|
925
933
|
this.el = r.nativeElement;
|
|
926
|
-
proxyOutputs(this, this.el, ['six-root-collapsed']);
|
|
927
934
|
}
|
|
935
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
936
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixRoot, selector: "six-root", inputs: { padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
928
937
|
};
|
|
929
|
-
SixRoot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
930
|
-
SixRoot.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixRoot, selector: "six-root", inputs: { breakpoint: "breakpoint", padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
931
938
|
SixRoot = __decorate([
|
|
932
939
|
ProxyCmp({
|
|
933
|
-
inputs: ['
|
|
940
|
+
inputs: ['padded', 'stage', 'version']
|
|
934
941
|
})
|
|
935
942
|
], SixRoot);
|
|
936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRoot, decorators: [{
|
|
937
944
|
type: Component,
|
|
938
945
|
args: [{
|
|
939
946
|
selector: 'six-root',
|
|
940
947
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
941
948
|
template: '<ng-content></ng-content>',
|
|
942
949
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
943
|
-
inputs: ['
|
|
950
|
+
inputs: ['padded', 'stage', 'version'],
|
|
944
951
|
}]
|
|
945
952
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
946
953
|
let SixSearchField = class SixSearchField {
|
|
@@ -950,15 +957,15 @@ let SixSearchField = class SixSearchField {
|
|
|
950
957
|
this.el = r.nativeElement;
|
|
951
958
|
proxyOutputs(this, this.el, ['six-search-field-change']);
|
|
952
959
|
}
|
|
960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
961
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSearchField, selector: "six-search-field", inputs: { clearable: "clearable", debounce: "debounce", disabled: "disabled", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
953
962
|
};
|
|
954
|
-
SixSearchField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
955
|
-
SixSearchField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSearchField, selector: "six-search-field", inputs: { clearable: "clearable", debounce: "debounce", disabled: "disabled", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
956
963
|
SixSearchField = __decorate([
|
|
957
964
|
ProxyCmp({
|
|
958
965
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
|
|
959
966
|
})
|
|
960
967
|
], SixSearchField);
|
|
961
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSearchField, decorators: [{
|
|
962
969
|
type: Component,
|
|
963
970
|
args: [{
|
|
964
971
|
selector: 'six-search-field',
|
|
@@ -975,23 +982,23 @@ let SixSelect = class SixSelect {
|
|
|
975
982
|
this.el = r.nativeElement;
|
|
976
983
|
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
977
984
|
}
|
|
985
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
986
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSelect, 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", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", options: "options", pill: "pill", placeholder: "placeholder", required: "required", selectAllButton: "selectAllButton", selectAllText: "selectAllText", size: "size", value: "value", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
978
987
|
};
|
|
979
|
-
SixSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
980
|
-
SixSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSelect, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", options: "options", pill: "pill", placeholder: "placeholder", required: "required", size: "size", value: "value", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
981
988
|
SixSelect = __decorate([
|
|
982
989
|
ProxyCmp({
|
|
983
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'size', 'value', 'virtualScroll'],
|
|
990
|
+
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
|
|
984
991
|
methods: ['setFocus']
|
|
985
992
|
})
|
|
986
993
|
], SixSelect);
|
|
987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSelect, decorators: [{
|
|
988
995
|
type: Component,
|
|
989
996
|
args: [{
|
|
990
997
|
selector: 'six-select',
|
|
991
998
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
992
999
|
template: '<ng-content></ng-content>',
|
|
993
1000
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
994
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'size', 'value', 'virtualScroll'],
|
|
1001
|
+
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
|
|
995
1002
|
}]
|
|
996
1003
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
997
1004
|
let SixSidebar = class SixSidebar {
|
|
@@ -1001,16 +1008,16 @@ let SixSidebar = class SixSidebar {
|
|
|
1001
1008
|
this.el = r.nativeElement;
|
|
1002
1009
|
proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
|
|
1003
1010
|
}
|
|
1011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSidebar, selector: "six-sidebar", inputs: { open: "open", position: "position", toggled: "toggled", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1004
1013
|
};
|
|
1005
|
-
SixSidebar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1006
|
-
SixSidebar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSidebar, selector: "six-sidebar", inputs: { open: "open", position: "position", toggled: "toggled", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1007
1014
|
SixSidebar = __decorate([
|
|
1008
1015
|
ProxyCmp({
|
|
1009
1016
|
inputs: ['open', 'position', 'toggled', 'width'],
|
|
1010
1017
|
methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
|
|
1011
1018
|
})
|
|
1012
1019
|
], SixSidebar);
|
|
1013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebar, decorators: [{
|
|
1014
1021
|
type: Component,
|
|
1015
1022
|
args: [{
|
|
1016
1023
|
selector: 'six-sidebar',
|
|
@@ -1026,22 +1033,22 @@ let SixSidebarItem = class SixSidebarItem {
|
|
|
1026
1033
|
c.detach();
|
|
1027
1034
|
this.el = r.nativeElement;
|
|
1028
1035
|
}
|
|
1036
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1037
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSidebarItem, selector: "six-sidebar-item", inputs: { disabled: "disabled", href: "href", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1029
1038
|
};
|
|
1030
|
-
SixSidebarItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1031
|
-
SixSidebarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSidebarItem, selector: "six-sidebar-item", inputs: { disabled: "disabled", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1032
1039
|
SixSidebarItem = __decorate([
|
|
1033
1040
|
ProxyCmp({
|
|
1034
|
-
inputs: ['disabled', 'selected', 'value']
|
|
1041
|
+
inputs: ['disabled', 'href', 'selected', 'value']
|
|
1035
1042
|
})
|
|
1036
1043
|
], SixSidebarItem);
|
|
1037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
1038
1045
|
type: Component,
|
|
1039
1046
|
args: [{
|
|
1040
1047
|
selector: 'six-sidebar-item',
|
|
1041
1048
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1042
1049
|
template: '<ng-content></ng-content>',
|
|
1043
1050
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1044
|
-
inputs: ['disabled', 'selected', 'value'],
|
|
1051
|
+
inputs: ['disabled', 'href', 'selected', 'value'],
|
|
1045
1052
|
}]
|
|
1046
1053
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1047
1054
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
@@ -1050,22 +1057,22 @@ let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
|
1050
1057
|
c.detach();
|
|
1051
1058
|
this.el = r.nativeElement;
|
|
1052
1059
|
}
|
|
1060
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1061
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSidebarItemGroup, 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 }); }
|
|
1053
1062
|
};
|
|
1054
|
-
SixSidebarItemGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1055
|
-
SixSidebarItemGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSidebarItemGroup, selector: "six-sidebar-item-group", inputs: { icon: "icon", name: "name", open: "open", summaryIcon: "summaryIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1056
1063
|
SixSidebarItemGroup = __decorate([
|
|
1057
1064
|
ProxyCmp({
|
|
1058
|
-
inputs: ['icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1065
|
+
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1059
1066
|
})
|
|
1060
1067
|
], SixSidebarItemGroup);
|
|
1061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
|
|
1062
1069
|
type: Component,
|
|
1063
1070
|
args: [{
|
|
1064
1071
|
selector: 'six-sidebar-item-group',
|
|
1065
1072
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1066
1073
|
template: '<ng-content></ng-content>',
|
|
1067
1074
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1068
|
-
inputs: ['icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1075
|
+
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1069
1076
|
}]
|
|
1070
1077
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1071
1078
|
let SixSpinner = class SixSpinner {
|
|
@@ -1074,15 +1081,15 @@ let SixSpinner = class SixSpinner {
|
|
|
1074
1081
|
c.detach();
|
|
1075
1082
|
this.el = r.nativeElement;
|
|
1076
1083
|
}
|
|
1084
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1085
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSpinner, selector: "six-spinner", inputs: { six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1077
1086
|
};
|
|
1078
|
-
SixSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1079
|
-
SixSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSpinner, selector: "six-spinner", inputs: { six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1080
1087
|
SixSpinner = __decorate([
|
|
1081
1088
|
ProxyCmp({
|
|
1082
1089
|
inputs: ['six']
|
|
1083
1090
|
})
|
|
1084
1091
|
], SixSpinner);
|
|
1085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSpinner, decorators: [{
|
|
1086
1093
|
type: Component,
|
|
1087
1094
|
args: [{
|
|
1088
1095
|
selector: 'six-spinner',
|
|
@@ -1098,15 +1105,15 @@ let SixStageIndicator = class SixStageIndicator {
|
|
|
1098
1105
|
c.detach();
|
|
1099
1106
|
this.el = r.nativeElement;
|
|
1100
1107
|
}
|
|
1108
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1109
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixStageIndicator, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1101
1110
|
};
|
|
1102
|
-
SixStageIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1103
|
-
SixStageIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixStageIndicator, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1104
1111
|
SixStageIndicator = __decorate([
|
|
1105
1112
|
ProxyCmp({
|
|
1106
1113
|
inputs: ['stage']
|
|
1107
1114
|
})
|
|
1108
1115
|
], SixStageIndicator);
|
|
1109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixStageIndicator, decorators: [{
|
|
1110
1117
|
type: Component,
|
|
1111
1118
|
args: [{
|
|
1112
1119
|
selector: 'six-stage-indicator',
|
|
@@ -1123,23 +1130,23 @@ let SixSwitch = class SixSwitch {
|
|
|
1123
1130
|
this.el = r.nativeElement;
|
|
1124
1131
|
proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
|
|
1125
1132
|
}
|
|
1133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1134
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSwitch, selector: "six-switch", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1126
1135
|
};
|
|
1127
|
-
SixSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1128
|
-
SixSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixSwitch, selector: "six-switch", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1129
1136
|
SixSwitch = __decorate([
|
|
1130
1137
|
ProxyCmp({
|
|
1131
|
-
inputs: ['checked', 'disabled', 'errorText', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1138
|
+
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1132
1139
|
methods: ['setFocus', 'removeFocus']
|
|
1133
1140
|
})
|
|
1134
1141
|
], SixSwitch);
|
|
1135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSwitch, decorators: [{
|
|
1136
1143
|
type: Component,
|
|
1137
1144
|
args: [{
|
|
1138
1145
|
selector: 'six-switch',
|
|
1139
1146
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1140
1147
|
template: '<ng-content></ng-content>',
|
|
1141
1148
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1142
|
-
inputs: ['checked', 'disabled', 'errorText', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1149
|
+
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1143
1150
|
}]
|
|
1144
1151
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1145
1152
|
let SixTab = class SixTab {
|
|
@@ -1149,16 +1156,16 @@ let SixTab = class SixTab {
|
|
|
1149
1156
|
this.el = r.nativeElement;
|
|
1150
1157
|
proxyOutputs(this, this.el, ['six-tab-close']);
|
|
1151
1158
|
}
|
|
1159
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1160
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTab, selector: "six-tab", inputs: { active: "active", closable: "closable", disabled: "disabled", panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1152
1161
|
};
|
|
1153
|
-
SixTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1154
|
-
SixTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTab, selector: "six-tab", inputs: { active: "active", closable: "closable", disabled: "disabled", panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1155
1162
|
SixTab = __decorate([
|
|
1156
1163
|
ProxyCmp({
|
|
1157
1164
|
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1158
1165
|
methods: ['setFocus', 'removeFocus']
|
|
1159
1166
|
})
|
|
1160
1167
|
], SixTab);
|
|
1161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1168
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTab, decorators: [{
|
|
1162
1169
|
type: Component,
|
|
1163
1170
|
args: [{
|
|
1164
1171
|
selector: 'six-tab',
|
|
@@ -1175,16 +1182,16 @@ let SixTabGroup = class SixTabGroup {
|
|
|
1175
1182
|
this.el = r.nativeElement;
|
|
1176
1183
|
proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
|
|
1177
1184
|
}
|
|
1185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1186
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTabGroup, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1178
1187
|
};
|
|
1179
|
-
SixTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1180
|
-
SixTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTabGroup, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1181
1188
|
SixTabGroup = __decorate([
|
|
1182
1189
|
ProxyCmp({
|
|
1183
1190
|
inputs: ['noScrollControls', 'placement'],
|
|
1184
1191
|
methods: ['show']
|
|
1185
1192
|
})
|
|
1186
1193
|
], SixTabGroup);
|
|
1187
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTabGroup, decorators: [{
|
|
1188
1195
|
type: Component,
|
|
1189
1196
|
args: [{
|
|
1190
1197
|
selector: 'six-tab-group',
|
|
@@ -1200,15 +1207,15 @@ let SixTabPanel = class SixTabPanel {
|
|
|
1200
1207
|
c.detach();
|
|
1201
1208
|
this.el = r.nativeElement;
|
|
1202
1209
|
}
|
|
1210
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1211
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTabPanel, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1203
1212
|
};
|
|
1204
|
-
SixTabPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1205
|
-
SixTabPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTabPanel, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1206
1213
|
SixTabPanel = __decorate([
|
|
1207
1214
|
ProxyCmp({
|
|
1208
1215
|
inputs: ['active', 'name']
|
|
1209
1216
|
})
|
|
1210
1217
|
], SixTabPanel);
|
|
1211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTabPanel, decorators: [{
|
|
1212
1219
|
type: Component,
|
|
1213
1220
|
args: [{
|
|
1214
1221
|
selector: 'six-tab-panel',
|
|
@@ -1225,15 +1232,15 @@ let SixTag = class SixTag {
|
|
|
1225
1232
|
this.el = r.nativeElement;
|
|
1226
1233
|
proxyOutputs(this, this.el, ['six-tag-clear']);
|
|
1227
1234
|
}
|
|
1235
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1236
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTag, selector: "six-tag", inputs: { clearable: "clearable", pill: "pill", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1228
1237
|
};
|
|
1229
|
-
SixTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1230
|
-
SixTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTag, selector: "six-tag", inputs: { clearable: "clearable", pill: "pill", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1231
1238
|
SixTag = __decorate([
|
|
1232
1239
|
ProxyCmp({
|
|
1233
1240
|
inputs: ['clearable', 'pill', 'size', 'type']
|
|
1234
1241
|
})
|
|
1235
1242
|
], SixTag);
|
|
1236
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTag, decorators: [{
|
|
1237
1244
|
type: Component,
|
|
1238
1245
|
args: [{
|
|
1239
1246
|
selector: 'six-tag',
|
|
@@ -1250,23 +1257,23 @@ let SixTextarea = class SixTextarea {
|
|
|
1250
1257
|
this.el = r.nativeElement;
|
|
1251
1258
|
proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
|
|
1252
1259
|
}
|
|
1260
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1261
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTextarea, selector: "six-textarea", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", maxlength: "maxlength", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", size: "size", spellcheck: "spellcheck", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1253
1262
|
};
|
|
1254
|
-
SixTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1255
|
-
SixTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTextarea, selector: "six-textarea", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", disabled: "disabled", errorText: "errorText", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", maxlength: "maxlength", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", size: "size", spellcheck: "spellcheck", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1256
1263
|
SixTextarea = __decorate([
|
|
1257
1264
|
ProxyCmp({
|
|
1258
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1265
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1259
1266
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
1260
1267
|
})
|
|
1261
1268
|
], SixTextarea);
|
|
1262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTextarea, decorators: [{
|
|
1263
1270
|
type: Component,
|
|
1264
1271
|
args: [{
|
|
1265
1272
|
selector: 'six-textarea',
|
|
1266
1273
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1267
1274
|
template: '<ng-content></ng-content>',
|
|
1268
1275
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1269
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1276
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1270
1277
|
}]
|
|
1271
1278
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1272
1279
|
let SixTile = class SixTile {
|
|
@@ -1276,16 +1283,16 @@ let SixTile = class SixTile {
|
|
|
1276
1283
|
this.el = r.nativeElement;
|
|
1277
1284
|
proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
|
|
1278
1285
|
}
|
|
1286
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1287
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTile, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1279
1288
|
};
|
|
1280
|
-
SixTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1281
|
-
SixTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTile, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1282
1289
|
SixTile = __decorate([
|
|
1283
1290
|
ProxyCmp({
|
|
1284
1291
|
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1285
1292
|
methods: ['hide', 'show']
|
|
1286
1293
|
})
|
|
1287
1294
|
], SixTile);
|
|
1288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTile, decorators: [{
|
|
1289
1296
|
type: Component,
|
|
1290
1297
|
args: [{
|
|
1291
1298
|
selector: 'six-tile',
|
|
@@ -1302,23 +1309,23 @@ let SixTimepicker = class SixTimepicker {
|
|
|
1302
1309
|
this.el = r.nativeElement;
|
|
1303
1310
|
proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
|
|
1304
1311
|
}
|
|
1312
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1313
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTimepicker, selector: "six-timepicker", inputs: { clearable: "clearable", debounce: "debounce", defaultTime: "defaultTime", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", format: "format", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", interval: "interval", invalid: "invalid", label: "label", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", separator: "separator", size: "size", timeout: "timeout", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1305
1314
|
};
|
|
1306
|
-
SixTimepicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1307
|
-
SixTimepicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTimepicker, selector: "six-timepicker", inputs: { clearable: "clearable", debounce: "debounce", defaultTime: "defaultTime", disabled: "disabled", errorText: "errorText", format: "format", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", interval: "interval", invalid: "invalid", label: "label", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", separator: "separator", size: "size", timeout: "timeout", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1308
1315
|
SixTimepicker = __decorate([
|
|
1309
1316
|
ProxyCmp({
|
|
1310
|
-
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1317
|
+
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1311
1318
|
methods: ['setFocus']
|
|
1312
1319
|
})
|
|
1313
1320
|
], SixTimepicker);
|
|
1314
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTimepicker, decorators: [{
|
|
1315
1322
|
type: Component,
|
|
1316
1323
|
args: [{
|
|
1317
1324
|
selector: 'six-timepicker',
|
|
1318
1325
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1319
1326
|
template: '<ng-content></ng-content>',
|
|
1320
1327
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1321
|
-
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1328
|
+
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1322
1329
|
}]
|
|
1323
1330
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1324
1331
|
let SixTooltip = class SixTooltip {
|
|
@@ -1328,16 +1335,16 @@ let SixTooltip = class SixTooltip {
|
|
|
1328
1335
|
this.el = r.nativeElement;
|
|
1329
1336
|
proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
|
|
1330
1337
|
}
|
|
1338
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1339
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixTooltip, selector: "six-tooltip", inputs: { content: "content", disabled: "disabled", distance: "distance", open: "open", placement: "placement", skidding: "skidding", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1331
1340
|
};
|
|
1332
|
-
SixTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1333
|
-
SixTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixTooltip, selector: "six-tooltip", inputs: { content: "content", disabled: "disabled", distance: "distance", open: "open", placement: "placement", skidding: "skidding", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1334
1341
|
SixTooltip = __decorate([
|
|
1335
1342
|
ProxyCmp({
|
|
1336
1343
|
inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
|
|
1337
1344
|
methods: ['show', 'hide']
|
|
1338
1345
|
})
|
|
1339
1346
|
], SixTooltip);
|
|
1340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTooltip, decorators: [{
|
|
1341
1348
|
type: Component,
|
|
1342
1349
|
args: [{
|
|
1343
1350
|
selector: 'six-tooltip',
|
|
@@ -1349,7 +1356,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1349
1356
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1350
1357
|
|
|
1351
1358
|
const DIRECTIVES = [
|
|
1352
|
-
SetAttributes,
|
|
1353
1359
|
SixAlert,
|
|
1354
1360
|
SixAvatar,
|
|
1355
1361
|
SixBadge,
|
|
@@ -1361,6 +1367,7 @@ const DIRECTIVES = [
|
|
|
1361
1367
|
SixDialog,
|
|
1362
1368
|
SixDrawer,
|
|
1363
1369
|
SixDropdown,
|
|
1370
|
+
SixError,
|
|
1364
1371
|
SixErrorPage,
|
|
1365
1372
|
SixFileList,
|
|
1366
1373
|
SixFileListItem,
|
|
@@ -1407,10 +1414,10 @@ class ValidationMessagesService {
|
|
|
1407
1414
|
getErrorMessage(language, error) {
|
|
1408
1415
|
return getErrorMessage(language, error);
|
|
1409
1416
|
}
|
|
1417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1418
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' }); }
|
|
1410
1419
|
}
|
|
1411
|
-
|
|
1412
|
-
ValidationMessagesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' });
|
|
1413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1414
1421
|
type: Injectable,
|
|
1415
1422
|
args: [{ providedIn: 'root' }]
|
|
1416
1423
|
}] });
|
|
@@ -1464,13 +1471,13 @@ class ValueAccessor {
|
|
|
1464
1471
|
return;
|
|
1465
1472
|
const element = this.el.nativeElement;
|
|
1466
1473
|
const control = this.ngControl?.control;
|
|
1467
|
-
const invalid =
|
|
1468
|
-
let
|
|
1474
|
+
const invalid = control.status === 'INVALID' && control.dirty && control.touched;
|
|
1475
|
+
let errorTexts;
|
|
1469
1476
|
if (invalid) {
|
|
1470
|
-
|
|
1477
|
+
errorTexts = this.initialErrorText || this.getErrorTexts(control);
|
|
1471
1478
|
}
|
|
1472
1479
|
element.invalid = invalid;
|
|
1473
|
-
element.errorText =
|
|
1480
|
+
element.errorText = errorTexts ?? '';
|
|
1474
1481
|
});
|
|
1475
1482
|
}
|
|
1476
1483
|
setDisabledState(isDisabled) {
|
|
@@ -1514,36 +1521,30 @@ class ValueAccessor {
|
|
|
1514
1521
|
});
|
|
1515
1522
|
}
|
|
1516
1523
|
}
|
|
1517
|
-
|
|
1524
|
+
getErrorTexts(control) {
|
|
1518
1525
|
if (control.errors == null) {
|
|
1519
1526
|
console.warn('no errors for invalid control', control);
|
|
1520
|
-
return
|
|
1527
|
+
return [];
|
|
1521
1528
|
}
|
|
1522
|
-
const
|
|
1523
|
-
if (
|
|
1529
|
+
const errorList = Object.entries(control.errors);
|
|
1530
|
+
if (errorList.length <= 0) {
|
|
1524
1531
|
console.warn('no errors for invalid control', control);
|
|
1525
|
-
return
|
|
1532
|
+
return [];
|
|
1526
1533
|
}
|
|
1527
|
-
|
|
1528
|
-
|
|
1534
|
+
return errorList.map((error) => {
|
|
1535
|
+
const [key, value] = error;
|
|
1536
|
+
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1537
|
+
});
|
|
1529
1538
|
}
|
|
1539
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1540
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ValueAccessor, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 }); }
|
|
1530
1541
|
}
|
|
1531
|
-
|
|
1532
|
-
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: ValueAccessor, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
|
|
1533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1534
1543
|
type: Directive
|
|
1535
1544
|
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
1536
1545
|
type: HostListener,
|
|
1537
1546
|
args: ['blur', ['$event.target']]
|
|
1538
1547
|
}] } });
|
|
1539
|
-
function getLanguage() {
|
|
1540
|
-
const languages = ['de', 'fr', 'it', 'en'];
|
|
1541
|
-
const documentLang = document.documentElement.lang;
|
|
1542
|
-
if (languages.includes(documentLang)) {
|
|
1543
|
-
return documentLang;
|
|
1544
|
-
}
|
|
1545
|
-
return 'de';
|
|
1546
|
-
}
|
|
1547
1548
|
const nextTick = (h) => {
|
|
1548
1549
|
if (typeof __zone_symbol__requestAnimationFrame === 'function') {
|
|
1549
1550
|
return __zone_symbol__requestAnimationFrame(h);
|
|
@@ -1561,16 +1562,16 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1561
1562
|
handleInputEvent(el) {
|
|
1562
1563
|
this.handleValueChange(el, el.value);
|
|
1563
1564
|
}
|
|
1565
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1566
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TextValueAccessor, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1567
|
+
{
|
|
1568
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1569
|
+
useExisting: TextValueAccessor,
|
|
1570
|
+
multi: true,
|
|
1571
|
+
},
|
|
1572
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1564
1573
|
}
|
|
1565
|
-
|
|
1566
|
-
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: TextValueAccessor, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1567
|
-
{
|
|
1568
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1569
|
-
useExisting: TextValueAccessor,
|
|
1570
|
-
multi: true,
|
|
1571
|
-
},
|
|
1572
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1573
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1574
1575
|
type: Directive,
|
|
1575
1576
|
args: [{
|
|
1576
1577
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1599,16 +1600,16 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1599
1600
|
fn(value === '' ? null : parseFloat(value));
|
|
1600
1601
|
});
|
|
1601
1602
|
}
|
|
1603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1604
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NumericValueAccessor, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1605
|
+
{
|
|
1606
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1607
|
+
useExisting: NumericValueAccessor,
|
|
1608
|
+
multi: true,
|
|
1609
|
+
},
|
|
1610
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1602
1611
|
}
|
|
1603
|
-
|
|
1604
|
-
NumericValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: NumericValueAccessor, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1605
|
-
{
|
|
1606
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1607
|
-
useExisting: NumericValueAccessor,
|
|
1608
|
-
multi: true,
|
|
1609
|
-
},
|
|
1610
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1612
1613
|
type: Directive,
|
|
1613
1614
|
args: [{
|
|
1614
1615
|
selector: 'six-input[type=number]',
|
|
@@ -1651,16 +1652,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1651
1652
|
this.el.nativeElement.name = this.formControlName;
|
|
1652
1653
|
}
|
|
1653
1654
|
}
|
|
1655
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1656
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RadioValueAccessor, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1657
|
+
{
|
|
1658
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1659
|
+
useExisting: RadioValueAccessor,
|
|
1660
|
+
multi: true,
|
|
1661
|
+
},
|
|
1662
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1654
1663
|
}
|
|
1655
|
-
|
|
1656
|
-
RadioValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: RadioValueAccessor, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1657
|
-
{
|
|
1658
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1659
|
-
useExisting: RadioValueAccessor,
|
|
1660
|
-
multi: true,
|
|
1661
|
-
},
|
|
1662
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1664
1665
|
type: Directive,
|
|
1665
1666
|
args: [{
|
|
1666
1667
|
selector: 'six-radio',
|
|
@@ -1690,16 +1691,16 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1690
1691
|
handleChangeEvent(el) {
|
|
1691
1692
|
this.handleValueChange(el, el.value);
|
|
1692
1693
|
}
|
|
1694
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1695
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DatepickerValueAccessor, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1696
|
+
{
|
|
1697
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1698
|
+
useExisting: DatepickerValueAccessor,
|
|
1699
|
+
multi: true,
|
|
1700
|
+
},
|
|
1701
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1693
1702
|
}
|
|
1694
|
-
|
|
1695
|
-
DatepickerValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: DatepickerValueAccessor, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1696
|
-
{
|
|
1697
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1698
|
-
useExisting: DatepickerValueAccessor,
|
|
1699
|
-
multi: true,
|
|
1700
|
-
},
|
|
1701
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1703
1704
|
type: Directive,
|
|
1704
1705
|
args: [{
|
|
1705
1706
|
selector: 'six-datepicker',
|
|
@@ -1752,10 +1753,10 @@ class SixFormDirective {
|
|
|
1752
1753
|
*/
|
|
1753
1754
|
this.sixSubmit = new EventEmitter();
|
|
1754
1755
|
}
|
|
1756
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1757
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixFormDirective, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 }); }
|
|
1755
1758
|
}
|
|
1756
|
-
|
|
1757
|
-
SixFormDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SixFormDirective, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 });
|
|
1758
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1759
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1759
1760
|
type: Directive,
|
|
1760
1761
|
args: [{
|
|
1761
1762
|
selector: 'form[sixForm]',
|
|
@@ -1803,10 +1804,10 @@ class SixFormUtilDirective {
|
|
|
1803
1804
|
focusInvalidField() {
|
|
1804
1805
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1805
1806
|
}
|
|
1807
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormUtilDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1808
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixFormUtilDirective, selector: "[sixFormUtil]", ngImport: i0 }); }
|
|
1806
1809
|
}
|
|
1807
|
-
|
|
1808
|
-
SixFormUtilDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SixFormUtilDirective, selector: "[sixFormUtil]", ngImport: i0 });
|
|
1809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1810
1811
|
type: Directive,
|
|
1811
1812
|
args: [{
|
|
1812
1813
|
selector: '[sixFormUtil]',
|
|
@@ -1874,34 +1875,40 @@ class SixUiLibraryValidators {
|
|
|
1874
1875
|
}
|
|
1875
1876
|
class MinDateValidator {
|
|
1876
1877
|
validate(control) {
|
|
1877
|
-
|
|
1878
|
+
if (this.min != null) {
|
|
1879
|
+
return SixUiLibraryValidators.minDate(this.min)(control);
|
|
1880
|
+
}
|
|
1881
|
+
return null;
|
|
1878
1882
|
}
|
|
1883
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1884
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MinDateValidator, selector: "six-datepicker[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 }); }
|
|
1879
1885
|
}
|
|
1880
|
-
|
|
1881
|
-
MinDateValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: MinDateValidator, selector: "six-datepicker[min]", inputs: { mindate: "mindate" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 });
|
|
1882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1883
1887
|
type: Directive,
|
|
1884
1888
|
args: [{
|
|
1885
1889
|
selector: 'six-datepicker[min]',
|
|
1886
1890
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
1887
1891
|
}]
|
|
1888
|
-
}], propDecorators: {
|
|
1892
|
+
}], propDecorators: { min: [{
|
|
1889
1893
|
type: Input
|
|
1890
1894
|
}] } });
|
|
1891
1895
|
class MaxDateValidator {
|
|
1892
1896
|
validate(control) {
|
|
1893
|
-
|
|
1897
|
+
if (this.max != null) {
|
|
1898
|
+
return SixUiLibraryValidators.maxDate(this.max)(control);
|
|
1899
|
+
}
|
|
1900
|
+
return null;
|
|
1894
1901
|
}
|
|
1902
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1903
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MaxDateValidator, selector: "six-datepicker[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 }); }
|
|
1895
1904
|
}
|
|
1896
|
-
|
|
1897
|
-
MaxDateValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: MaxDateValidator, selector: "six-datepicker[max]", inputs: { maxdate: "maxdate" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 });
|
|
1898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
1905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
1899
1906
|
type: Directive,
|
|
1900
1907
|
args: [{
|
|
1901
1908
|
selector: 'six-datepicker[max]',
|
|
1902
1909
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
1903
1910
|
}]
|
|
1904
|
-
}], propDecorators: {
|
|
1911
|
+
}], propDecorators: { max: [{
|
|
1905
1912
|
type: Input
|
|
1906
1913
|
}] } });
|
|
1907
1914
|
class AllowedDatesValidator {
|
|
@@ -1911,10 +1918,10 @@ class AllowedDatesValidator {
|
|
|
1911
1918
|
validate(control) {
|
|
1912
1919
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
1913
1920
|
}
|
|
1921
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1922
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AllowedDatesValidator, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 }); }
|
|
1914
1923
|
}
|
|
1915
|
-
|
|
1916
|
-
AllowedDatesValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: AllowedDatesValidator, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 });
|
|
1917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
1924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
1918
1925
|
type: Directive,
|
|
1919
1926
|
args: [{
|
|
1920
1927
|
selector: 'six-datepicker[allowedDates]',
|
|
@@ -1927,10 +1934,10 @@ class MinValidator {
|
|
|
1927
1934
|
validate(control) {
|
|
1928
1935
|
return Validators.min(toFloat(this.min))(control);
|
|
1929
1936
|
}
|
|
1937
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1938
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MinValidator, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 }); }
|
|
1930
1939
|
}
|
|
1931
|
-
|
|
1932
|
-
MinValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: MinValidator, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 });
|
|
1933
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinValidator, decorators: [{
|
|
1940
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinValidator, decorators: [{
|
|
1934
1941
|
type: Directive,
|
|
1935
1942
|
args: [{
|
|
1936
1943
|
selector: 'six-input[type=number][min]',
|
|
@@ -1943,10 +1950,10 @@ class MaxValidator {
|
|
|
1943
1950
|
validate(control) {
|
|
1944
1951
|
return Validators.max(toFloat(this.max))(control);
|
|
1945
1952
|
}
|
|
1953
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1954
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MaxValidator, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 }); }
|
|
1946
1955
|
}
|
|
1947
|
-
|
|
1948
|
-
MaxValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: MaxValidator, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 });
|
|
1949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxValidator, decorators: [{
|
|
1956
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxValidator, decorators: [{
|
|
1950
1957
|
type: Directive,
|
|
1951
1958
|
args: [{
|
|
1952
1959
|
selector: 'six-input[type=number][max]',
|
|
@@ -1966,16 +1973,16 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
1966
1973
|
handleChangeEvent(el) {
|
|
1967
1974
|
this.handleValueChange(el, el.value);
|
|
1968
1975
|
}
|
|
1976
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1977
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SelectValueAccessor, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1978
|
+
{
|
|
1979
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1980
|
+
useExisting: SelectValueAccessor,
|
|
1981
|
+
multi: true,
|
|
1982
|
+
},
|
|
1983
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1969
1984
|
}
|
|
1970
|
-
|
|
1971
|
-
SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SelectValueAccessor, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1972
|
-
{
|
|
1973
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1974
|
-
useExisting: SelectValueAccessor,
|
|
1975
|
-
multi: true,
|
|
1976
|
-
},
|
|
1977
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1978
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
1985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
1979
1986
|
type: Directive,
|
|
1980
1987
|
args: [{
|
|
1981
1988
|
selector: 'six-select',
|
|
@@ -2003,16 +2010,16 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2003
2010
|
this.el.nativeElement.checked = value === true;
|
|
2004
2011
|
this.updateValidation();
|
|
2005
2012
|
}
|
|
2013
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckboxValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2014
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CheckboxValueAccessor, selector: "six-checkbox", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2015
|
+
{
|
|
2016
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2017
|
+
useExisting: CheckboxValueAccessor,
|
|
2018
|
+
multi: true,
|
|
2019
|
+
},
|
|
2020
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2006
2021
|
}
|
|
2007
|
-
|
|
2008
|
-
CheckboxValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: CheckboxValueAccessor, selector: "six-checkbox", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2009
|
-
{
|
|
2010
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2011
|
-
useExisting: CheckboxValueAccessor,
|
|
2012
|
-
multi: true,
|
|
2013
|
-
},
|
|
2014
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2015
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2016
2023
|
type: Directive,
|
|
2017
2024
|
args: [{
|
|
2018
2025
|
selector: 'six-checkbox',
|
|
@@ -2041,16 +2048,16 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2041
2048
|
fn(value === '' ? null : parseFloat(value));
|
|
2042
2049
|
});
|
|
2043
2050
|
}
|
|
2051
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RangeValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2052
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RangeValueAccessor, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
2053
|
+
{
|
|
2054
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2055
|
+
useExisting: RangeValueAccessor,
|
|
2056
|
+
multi: true,
|
|
2057
|
+
},
|
|
2058
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2044
2059
|
}
|
|
2045
|
-
|
|
2046
|
-
RangeValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: RangeValueAccessor, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
2047
|
-
{
|
|
2048
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2049
|
-
useExisting: RangeValueAccessor,
|
|
2050
|
-
multi: true,
|
|
2051
|
-
},
|
|
2052
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2054
2061
|
type: Directive,
|
|
2055
2062
|
args: [{
|
|
2056
2063
|
selector: 'six-range',
|
|
@@ -2078,16 +2085,16 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2078
2085
|
this.el.nativeElement.checked = value === true;
|
|
2079
2086
|
this.updateValidation();
|
|
2080
2087
|
}
|
|
2088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2089
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SwitchValueAccessor, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2090
|
+
{
|
|
2091
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2092
|
+
useExisting: SwitchValueAccessor,
|
|
2093
|
+
multi: true,
|
|
2094
|
+
},
|
|
2095
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2081
2096
|
}
|
|
2082
|
-
|
|
2083
|
-
SwitchValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SwitchValueAccessor, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2084
|
-
{
|
|
2085
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2086
|
-
useExisting: SwitchValueAccessor,
|
|
2087
|
-
multi: true,
|
|
2088
|
-
},
|
|
2089
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2091
2098
|
type: Directive,
|
|
2092
2099
|
args: [{
|
|
2093
2100
|
selector: 'six-switch',
|
|
@@ -2111,16 +2118,16 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2111
2118
|
handleChangeEvent(el) {
|
|
2112
2119
|
this.handleValueChange(el, el.value);
|
|
2113
2120
|
}
|
|
2121
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2122
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TimepickerValueAccessor, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2123
|
+
{
|
|
2124
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2125
|
+
useExisting: TimepickerValueAccessor,
|
|
2126
|
+
multi: true,
|
|
2127
|
+
},
|
|
2128
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2114
2129
|
}
|
|
2115
|
-
|
|
2116
|
-
TimepickerValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: TimepickerValueAccessor, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2117
|
-
{
|
|
2118
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2119
|
-
useExisting: TimepickerValueAccessor,
|
|
2120
|
-
multi: true,
|
|
2121
|
-
},
|
|
2122
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2124
2131
|
type: Directive,
|
|
2125
2132
|
args: [{
|
|
2126
2133
|
selector: 'six-timepicker',
|
|
@@ -2137,6 +2144,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2137
2144
|
args: ['change', ['$event.target']]
|
|
2138
2145
|
}] } });
|
|
2139
2146
|
|
|
2147
|
+
/**
|
|
2148
|
+
* Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
|
|
2149
|
+
*/
|
|
2150
|
+
class SixRouterLinkDirective {
|
|
2151
|
+
constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
|
|
2152
|
+
this.locationStrategy = locationStrategy;
|
|
2153
|
+
this.elementRef = elementRef;
|
|
2154
|
+
this.router = router;
|
|
2155
|
+
this.renderer = renderer;
|
|
2156
|
+
this.routerLinkDirective = routerLinkDirective;
|
|
2157
|
+
}
|
|
2158
|
+
onClick(event) {
|
|
2159
|
+
// Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
|
|
2160
|
+
event.preventDefault();
|
|
2161
|
+
}
|
|
2162
|
+
ngOnInit() {
|
|
2163
|
+
this.updateTargetUrlAndHref();
|
|
2164
|
+
}
|
|
2165
|
+
ngOnChanges() {
|
|
2166
|
+
this.updateTargetUrlAndHref();
|
|
2167
|
+
}
|
|
2168
|
+
updateTargetUrlAndHref() {
|
|
2169
|
+
if (this.routerLinkDirective?.urlTree) {
|
|
2170
|
+
const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
|
|
2171
|
+
this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", 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 }); }
|
|
2175
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixRouterLinkDirective, selector: "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
2176
|
+
}
|
|
2177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2178
|
+
type: Directive,
|
|
2179
|
+
args: [{
|
|
2180
|
+
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]',
|
|
2181
|
+
}]
|
|
2182
|
+
}], ctorParameters: function () { return [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2183
|
+
type: Optional
|
|
2184
|
+
}] }]; }, propDecorators: { onClick: [{
|
|
2185
|
+
type: HostListener,
|
|
2186
|
+
args: ['click', ['$event']]
|
|
2187
|
+
}], routerLink: [{
|
|
2188
|
+
type: Input
|
|
2189
|
+
}], queryParams: [{
|
|
2190
|
+
type: Input
|
|
2191
|
+
}], fragment: [{
|
|
2192
|
+
type: Input
|
|
2193
|
+
}], queryParamsHandling: [{
|
|
2194
|
+
type: Input
|
|
2195
|
+
}], relativeTo: [{
|
|
2196
|
+
type: Input
|
|
2197
|
+
}] } });
|
|
2198
|
+
|
|
2140
2199
|
class UiLibraryAngularModule {
|
|
2141
2200
|
static forRoot(customValidationMessagesService) {
|
|
2142
2201
|
return {
|
|
@@ -2144,57 +2203,60 @@ class UiLibraryAngularModule {
|
|
|
2144
2203
|
providers: [
|
|
2145
2204
|
{
|
|
2146
2205
|
provide: APP_INITIALIZER,
|
|
2147
|
-
useFactory: () =>
|
|
2148
|
-
|
|
2149
|
-
},
|
|
2206
|
+
useFactory: () => async () => defineCustomElements(),
|
|
2207
|
+
multi: true,
|
|
2150
2208
|
},
|
|
2151
2209
|
{ provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
|
|
2152
2210
|
],
|
|
2153
2211
|
};
|
|
2154
2212
|
}
|
|
2213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2214
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, declarations: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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,
|
|
2215
|
+
// value accessors
|
|
2216
|
+
TextValueAccessor,
|
|
2217
|
+
NumericValueAccessor,
|
|
2218
|
+
RadioValueAccessor,
|
|
2219
|
+
DatepickerValueAccessor,
|
|
2220
|
+
TimepickerValueAccessor,
|
|
2221
|
+
SelectValueAccessor,
|
|
2222
|
+
CheckboxValueAccessor,
|
|
2223
|
+
SwitchValueAccessor,
|
|
2224
|
+
RangeValueAccessor,
|
|
2225
|
+
// validators
|
|
2226
|
+
MinValidator,
|
|
2227
|
+
MaxValidator,
|
|
2228
|
+
MinDateValidator,
|
|
2229
|
+
MaxDateValidator,
|
|
2230
|
+
AllowedDatesValidator,
|
|
2231
|
+
// form helpers
|
|
2232
|
+
SixFormDirective,
|
|
2233
|
+
SixFormUtilDirective,
|
|
2234
|
+
// router link directive
|
|
2235
|
+
SixRouterLinkDirective], exports: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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,
|
|
2236
|
+
// value accessors
|
|
2237
|
+
TextValueAccessor,
|
|
2238
|
+
NumericValueAccessor,
|
|
2239
|
+
RadioValueAccessor,
|
|
2240
|
+
DatepickerValueAccessor,
|
|
2241
|
+
TimepickerValueAccessor,
|
|
2242
|
+
SelectValueAccessor,
|
|
2243
|
+
CheckboxValueAccessor,
|
|
2244
|
+
SwitchValueAccessor,
|
|
2245
|
+
RangeValueAccessor,
|
|
2246
|
+
// validators
|
|
2247
|
+
MinValidator,
|
|
2248
|
+
MaxValidator,
|
|
2249
|
+
MinDateValidator,
|
|
2250
|
+
MaxDateValidator,
|
|
2251
|
+
AllowedDatesValidator,
|
|
2252
|
+
// form helpers
|
|
2253
|
+
SixFormDirective,
|
|
2254
|
+
SixFormUtilDirective,
|
|
2255
|
+
// router link directive
|
|
2256
|
+
SixRouterLinkDirective] }); }
|
|
2257
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule }); }
|
|
2155
2258
|
}
|
|
2156
|
-
|
|
2157
|
-
UiLibraryAngularModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, declarations: [SetAttributes, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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,
|
|
2158
|
-
// value accessors
|
|
2159
|
-
TextValueAccessor,
|
|
2160
|
-
NumericValueAccessor,
|
|
2161
|
-
RadioValueAccessor,
|
|
2162
|
-
DatepickerValueAccessor,
|
|
2163
|
-
TimepickerValueAccessor,
|
|
2164
|
-
SelectValueAccessor,
|
|
2165
|
-
CheckboxValueAccessor,
|
|
2166
|
-
SwitchValueAccessor,
|
|
2167
|
-
RangeValueAccessor,
|
|
2168
|
-
// validators
|
|
2169
|
-
MinValidator,
|
|
2170
|
-
MaxValidator,
|
|
2171
|
-
MinDateValidator,
|
|
2172
|
-
MaxDateValidator,
|
|
2173
|
-
AllowedDatesValidator,
|
|
2174
|
-
// form helpers
|
|
2175
|
-
SixFormDirective,
|
|
2176
|
-
SixFormUtilDirective], exports: [SetAttributes, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, 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,
|
|
2177
|
-
// value accessors
|
|
2178
|
-
TextValueAccessor,
|
|
2179
|
-
NumericValueAccessor,
|
|
2180
|
-
RadioValueAccessor,
|
|
2181
|
-
DatepickerValueAccessor,
|
|
2182
|
-
TimepickerValueAccessor,
|
|
2183
|
-
SelectValueAccessor,
|
|
2184
|
-
CheckboxValueAccessor,
|
|
2185
|
-
SwitchValueAccessor,
|
|
2186
|
-
RangeValueAccessor,
|
|
2187
|
-
// validators
|
|
2188
|
-
MinValidator,
|
|
2189
|
-
MaxValidator,
|
|
2190
|
-
MinDateValidator,
|
|
2191
|
-
MaxDateValidator,
|
|
2192
|
-
AllowedDatesValidator,
|
|
2193
|
-
// form helpers
|
|
2194
|
-
SixFormDirective,
|
|
2195
|
-
SixFormUtilDirective] });
|
|
2196
|
-
UiLibraryAngularModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule });
|
|
2197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2198
2260
|
type: NgModule,
|
|
2199
2261
|
args: [{
|
|
2200
2262
|
declarations: [
|
|
@@ -2219,6 +2281,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2219
2281
|
// form helpers
|
|
2220
2282
|
SixFormDirective,
|
|
2221
2283
|
SixFormUtilDirective,
|
|
2284
|
+
// router link directive
|
|
2285
|
+
SixRouterLinkDirective,
|
|
2222
2286
|
],
|
|
2223
2287
|
imports: [],
|
|
2224
2288
|
exports: [
|
|
@@ -2243,10 +2307,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2243
2307
|
// form helpers
|
|
2244
2308
|
SixFormDirective,
|
|
2245
2309
|
SixFormUtilDirective,
|
|
2310
|
+
// router link directive
|
|
2311
|
+
SixRouterLinkDirective,
|
|
2246
2312
|
],
|
|
2247
2313
|
}]
|
|
2248
2314
|
}] });
|
|
2249
2315
|
|
|
2316
|
+
class AlertService {
|
|
2317
|
+
constructor() {
|
|
2318
|
+
this.ngZone = inject(NgZone);
|
|
2319
|
+
}
|
|
2320
|
+
/**
|
|
2321
|
+
* Displays an alert as a toast notification.
|
|
2322
|
+
*/
|
|
2323
|
+
showAlert(message, alertType, duration, iconName) {
|
|
2324
|
+
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2325
|
+
}
|
|
2326
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2327
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, providedIn: 'root' }); }
|
|
2328
|
+
}
|
|
2329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, decorators: [{
|
|
2330
|
+
type: Injectable,
|
|
2331
|
+
args: [{ providedIn: 'root' }]
|
|
2332
|
+
}] });
|
|
2333
|
+
|
|
2250
2334
|
/*
|
|
2251
2335
|
* Public API Surface of ui-library-angular
|
|
2252
2336
|
*/
|
|
@@ -2255,5 +2339,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2255
2339
|
* Generated bundle index. Do not edit.
|
|
2256
2340
|
*/
|
|
2257
2341
|
|
|
2258
|
-
export { AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor,
|
|
2342
|
+
export { AlertService, AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
|
|
2259
2343
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|