@six-group/ui-library-angular 0.0.0-insider.e5360cd → 0.0.0-insider.ec3ffc2
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 +61 -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 +1388 -0
- package/esm2022/lib/stencil-generated/index.mjs +60 -0
- 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 +536 -373
- 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/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 +88 -66
- 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 +10 -14
- 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 -145
- package/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +0 -51
- package/esm2020/lib/stencil-generated/components.mjs +0 -1372
- package/esm2020/lib/stencil-generated/index.mjs +0 -57
- package/esm2020/lib/ui-library-angular.module.mjs +0 -126
- 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 -2286
- 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,16 +196,16 @@ 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", 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 });
|
|
216
202
|
SixCheckbox = __decorate([
|
|
217
203
|
ProxyCmp({
|
|
218
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',
|
|
@@ -236,16 +222,16 @@ 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", 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 });
|
|
242
228
|
SixDatepicker = __decorate([
|
|
243
229
|
ProxyCmp({
|
|
244
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',
|
|
@@ -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,23 @@ 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'],
|
|
360
346
|
}]
|
|
361
347
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
362
348
|
let SixError = class SixError {
|
|
@@ -365,13 +351,13 @@ let SixError = class SixError {
|
|
|
365
351
|
c.detach();
|
|
366
352
|
this.el = r.nativeElement;
|
|
367
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 }); }
|
|
368
356
|
};
|
|
369
|
-
SixError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
370
|
-
SixError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SixError, selector: "six-error", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
371
357
|
SixError = __decorate([
|
|
372
358
|
ProxyCmp({})
|
|
373
359
|
], SixError);
|
|
374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixError, decorators: [{
|
|
375
361
|
type: Component,
|
|
376
362
|
args: [{
|
|
377
363
|
selector: 'six-error',
|
|
@@ -387,15 +373,15 @@ let SixErrorPage = class SixErrorPage {
|
|
|
387
373
|
c.detach();
|
|
388
374
|
this.el = r.nativeElement;
|
|
389
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 }); }
|
|
390
378
|
};
|
|
391
|
-
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 });
|
|
392
|
-
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 });
|
|
393
379
|
SixErrorPage = __decorate([
|
|
394
380
|
ProxyCmp({
|
|
395
381
|
inputs: ['customDescription', 'customIcon', 'customTitle', 'errorCode', 'language']
|
|
396
382
|
})
|
|
397
383
|
], SixErrorPage);
|
|
398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
384
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixErrorPage, decorators: [{
|
|
399
385
|
type: Component,
|
|
400
386
|
args: [{
|
|
401
387
|
selector: 'six-error-page',
|
|
@@ -411,13 +397,13 @@ let SixFileList = class SixFileList {
|
|
|
411
397
|
c.detach();
|
|
412
398
|
this.el = r.nativeElement;
|
|
413
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 }); }
|
|
414
402
|
};
|
|
415
|
-
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 });
|
|
416
|
-
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 });
|
|
417
403
|
SixFileList = __decorate([
|
|
418
404
|
ProxyCmp({})
|
|
419
405
|
], SixFileList);
|
|
420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileList, decorators: [{
|
|
421
407
|
type: Component,
|
|
422
408
|
args: [{
|
|
423
409
|
selector: 'six-file-list',
|
|
@@ -434,15 +420,15 @@ let SixFileListItem = class SixFileListItem {
|
|
|
434
420
|
this.el = r.nativeElement;
|
|
435
421
|
proxyOutputs(this, this.el, ['six-file-list-item-download', 'six-file-list-item-remove']);
|
|
436
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 }); }
|
|
437
425
|
};
|
|
438
|
-
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 });
|
|
439
|
-
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 });
|
|
440
426
|
SixFileListItem = __decorate([
|
|
441
427
|
ProxyCmp({
|
|
442
428
|
inputs: ['date', 'identifier', 'name', 'nodelete', 'nodownload', 'size']
|
|
443
429
|
})
|
|
444
430
|
], SixFileListItem);
|
|
445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileListItem, decorators: [{
|
|
446
432
|
type: Component,
|
|
447
433
|
args: [{
|
|
448
434
|
selector: 'six-file-list-item',
|
|
@@ -459,22 +445,22 @@ let SixFileUpload = class SixFileUpload {
|
|
|
459
445
|
this.el = r.nativeElement;
|
|
460
446
|
proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
|
|
461
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", errorText: "errorText", invalid: "invalid", label: "label", maxFileSize: "maxFileSize", multiple: "multiple", uploading: "uploading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
462
450
|
};
|
|
463
|
-
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 });
|
|
464
|
-
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 });
|
|
465
451
|
SixFileUpload = __decorate([
|
|
466
452
|
ProxyCmp({
|
|
467
|
-
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple']
|
|
453
|
+
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading']
|
|
468
454
|
})
|
|
469
455
|
], SixFileUpload);
|
|
470
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileUpload, decorators: [{
|
|
471
457
|
type: Component,
|
|
472
458
|
args: [{
|
|
473
459
|
selector: 'six-file-upload',
|
|
474
460
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
475
461
|
template: '<ng-content></ng-content>',
|
|
476
462
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
477
|
-
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple'],
|
|
463
|
+
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
|
|
478
464
|
}]
|
|
479
465
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
480
466
|
let SixFooter = class SixFooter {
|
|
@@ -483,13 +469,13 @@ let SixFooter = class SixFooter {
|
|
|
483
469
|
c.detach();
|
|
484
470
|
this.el = r.nativeElement;
|
|
485
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 }); }
|
|
486
474
|
};
|
|
487
|
-
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 });
|
|
488
|
-
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 });
|
|
489
475
|
SixFooter = __decorate([
|
|
490
476
|
ProxyCmp({})
|
|
491
477
|
], SixFooter);
|
|
492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFooter, decorators: [{
|
|
493
479
|
type: Component,
|
|
494
480
|
args: [{
|
|
495
481
|
selector: 'six-footer',
|
|
@@ -505,15 +491,15 @@ let SixGroupLabel = class SixGroupLabel {
|
|
|
505
491
|
c.detach();
|
|
506
492
|
this.el = r.nativeElement;
|
|
507
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 }); }
|
|
508
496
|
};
|
|
509
|
-
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 });
|
|
510
|
-
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 });
|
|
511
497
|
SixGroupLabel = __decorate([
|
|
512
498
|
ProxyCmp({
|
|
513
499
|
inputs: ['disabled', 'helpText', 'label', 'required', 'size']
|
|
514
500
|
})
|
|
515
501
|
], SixGroupLabel);
|
|
516
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixGroupLabel, decorators: [{
|
|
517
503
|
type: Component,
|
|
518
504
|
args: [{
|
|
519
505
|
selector: 'six-group-label',
|
|
@@ -530,23 +516,93 @@ let SixHeader = class SixHeader {
|
|
|
530
516
|
this.el = r.nativeElement;
|
|
531
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']);
|
|
532
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", custom: "custom", hideHamburgerMenu: "hideHamburgerMenu", logo: "logo", openHamburgerMenu: "openHamburgerMenu", openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
533
521
|
};
|
|
534
|
-
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 });
|
|
535
|
-
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 });
|
|
536
522
|
SixHeader = __decorate([
|
|
537
523
|
ProxyCmp({
|
|
538
|
-
inputs: ['clickableLogo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
524
|
+
inputs: ['clickableLogo', 'custom', 'hideHamburgerMenu', 'logo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
539
525
|
methods: ['setSearchOpenState', 'getIsSearchOpen']
|
|
540
526
|
})
|
|
541
527
|
], SixHeader);
|
|
542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, decorators: [{
|
|
543
529
|
type: Component,
|
|
544
530
|
args: [{
|
|
545
531
|
selector: 'six-header',
|
|
546
532
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
547
533
|
template: '<ng-content></ng-content>',
|
|
548
534
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
549
|
-
inputs: ['clickableLogo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
535
|
+
inputs: ['clickableLogo', 'custom', 'hideHamburgerMenu', 'logo', 'openHamburgerMenu', 'openSearch', 'shiftContent'],
|
|
536
|
+
}]
|
|
537
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
538
|
+
let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
539
|
+
constructor(c, r, z) {
|
|
540
|
+
this.z = z;
|
|
541
|
+
c.detach();
|
|
542
|
+
this.el = r.nativeElement;
|
|
543
|
+
}
|
|
544
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderDropdownItem, 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: SixHeaderDropdownItem, selector: "six-header-dropdown-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
546
|
+
};
|
|
547
|
+
SixHeaderDropdownItem = __decorate([
|
|
548
|
+
ProxyCmp({})
|
|
549
|
+
], SixHeaderDropdownItem);
|
|
550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
|
|
551
|
+
type: Component,
|
|
552
|
+
args: [{
|
|
553
|
+
selector: 'six-header-dropdown-item',
|
|
554
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
555
|
+
template: '<ng-content></ng-content>',
|
|
556
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
557
|
+
inputs: [],
|
|
558
|
+
}]
|
|
559
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
560
|
+
let SixHeaderItem = class SixHeaderItem {
|
|
561
|
+
constructor(c, r, z) {
|
|
562
|
+
this.z = z;
|
|
563
|
+
c.detach();
|
|
564
|
+
this.el = r.nativeElement;
|
|
565
|
+
}
|
|
566
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
567
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderItem, selector: "six-header-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
568
|
+
};
|
|
569
|
+
SixHeaderItem = __decorate([
|
|
570
|
+
ProxyCmp({
|
|
571
|
+
inputs: ['active']
|
|
572
|
+
})
|
|
573
|
+
], SixHeaderItem);
|
|
574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderItem, decorators: [{
|
|
575
|
+
type: Component,
|
|
576
|
+
args: [{
|
|
577
|
+
selector: 'six-header-item',
|
|
578
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
579
|
+
template: '<ng-content></ng-content>',
|
|
580
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
581
|
+
inputs: ['active'],
|
|
582
|
+
}]
|
|
583
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
584
|
+
let SixHeaderMenuButton = class SixHeaderMenuButton {
|
|
585
|
+
constructor(c, r, z) {
|
|
586
|
+
this.z = z;
|
|
587
|
+
c.detach();
|
|
588
|
+
this.el = r.nativeElement;
|
|
589
|
+
}
|
|
590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
591
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderMenuButton, selector: "six-header-menu-button", inputs: { icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
592
|
+
};
|
|
593
|
+
SixHeaderMenuButton = __decorate([
|
|
594
|
+
ProxyCmp({
|
|
595
|
+
inputs: ['icon']
|
|
596
|
+
})
|
|
597
|
+
], SixHeaderMenuButton);
|
|
598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
|
|
599
|
+
type: Component,
|
|
600
|
+
args: [{
|
|
601
|
+
selector: 'six-header-menu-button',
|
|
602
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
603
|
+
template: '<ng-content></ng-content>',
|
|
604
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
605
|
+
inputs: ['icon'],
|
|
550
606
|
}]
|
|
551
607
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
552
608
|
let SixIcon = class SixIcon {
|
|
@@ -555,15 +611,15 @@ let SixIcon = class SixIcon {
|
|
|
555
611
|
c.detach();
|
|
556
612
|
this.el = r.nativeElement;
|
|
557
613
|
}
|
|
614
|
+
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 }); }
|
|
615
|
+
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 }); }
|
|
558
616
|
};
|
|
559
|
-
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 });
|
|
560
|
-
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 });
|
|
561
617
|
SixIcon = __decorate([
|
|
562
618
|
ProxyCmp({
|
|
563
619
|
inputs: ['filled', 'size']
|
|
564
620
|
})
|
|
565
621
|
], SixIcon);
|
|
566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIcon, decorators: [{
|
|
567
623
|
type: Component,
|
|
568
624
|
args: [{
|
|
569
625
|
selector: 'six-icon',
|
|
@@ -579,22 +635,22 @@ let SixIconButton = class SixIconButton {
|
|
|
579
635
|
c.detach();
|
|
580
636
|
this.el = r.nativeElement;
|
|
581
637
|
}
|
|
638
|
+
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 }); }
|
|
639
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixIconButton, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
582
640
|
};
|
|
583
|
-
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 });
|
|
584
|
-
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 });
|
|
585
641
|
SixIconButton = __decorate([
|
|
586
642
|
ProxyCmp({
|
|
587
|
-
inputs: ['disabled', 'html', 'label', 'name', 'size']
|
|
643
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
|
|
588
644
|
})
|
|
589
645
|
], SixIconButton);
|
|
590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIconButton, decorators: [{
|
|
591
647
|
type: Component,
|
|
592
648
|
args: [{
|
|
593
649
|
selector: 'six-icon-button',
|
|
594
650
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
595
651
|
template: '<ng-content></ng-content>',
|
|
596
652
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
597
|
-
inputs: ['disabled', 'html', 'label', 'name', 'size'],
|
|
653
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
|
|
598
654
|
}]
|
|
599
655
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
600
656
|
let SixInput = class SixInput {
|
|
@@ -604,23 +660,23 @@ let SixInput = class SixInput {
|
|
|
604
660
|
this.el = r.nativeElement;
|
|
605
661
|
proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
|
|
606
662
|
}
|
|
663
|
+
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 }); }
|
|
664
|
+
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 }); }
|
|
607
665
|
};
|
|
608
|
-
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 });
|
|
609
|
-
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", 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 });
|
|
610
666
|
SixInput = __decorate([
|
|
611
667
|
ProxyCmp({
|
|
612
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
613
|
-
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
668
|
+
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'],
|
|
669
|
+
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'getSelectionRange', 'setRangeText']
|
|
614
670
|
})
|
|
615
671
|
], SixInput);
|
|
616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixInput, decorators: [{
|
|
617
673
|
type: Component,
|
|
618
674
|
args: [{
|
|
619
675
|
selector: 'six-input',
|
|
620
676
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
621
677
|
template: '<ng-content></ng-content>',
|
|
622
678
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
623
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
679
|
+
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'],
|
|
624
680
|
}]
|
|
625
681
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
626
682
|
let SixItemPicker = class SixItemPicker {
|
|
@@ -630,15 +686,15 @@ let SixItemPicker = class SixItemPicker {
|
|
|
630
686
|
this.el = r.nativeElement;
|
|
631
687
|
proxyOutputs(this, this.el, ['six-item-picker-change', 'six-item-picker-change-debounced']);
|
|
632
688
|
}
|
|
689
|
+
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 }); }
|
|
690
|
+
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 }); }
|
|
633
691
|
};
|
|
634
|
-
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 });
|
|
635
|
-
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 });
|
|
636
692
|
SixItemPicker = __decorate([
|
|
637
693
|
ProxyCmp({
|
|
638
694
|
inputs: ['debounce', 'interval', 'items', 'max', 'min', 'padded', 'paddingChar', 'paddingDirection', 'paddingLength', 'roundtrip', 'step', 'timeout', 'type', 'value']
|
|
639
695
|
})
|
|
640
696
|
], SixItemPicker);
|
|
641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixItemPicker, decorators: [{
|
|
642
698
|
type: Component,
|
|
643
699
|
args: [{
|
|
644
700
|
selector: 'six-item-picker',
|
|
@@ -655,15 +711,15 @@ let SixLanguageSwitcher = class SixLanguageSwitcher {
|
|
|
655
711
|
this.el = r.nativeElement;
|
|
656
712
|
proxyOutputs(this, this.el, ['six-language-switcher-change']);
|
|
657
713
|
}
|
|
714
|
+
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 }); }
|
|
715
|
+
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 }); }
|
|
658
716
|
};
|
|
659
|
-
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 });
|
|
660
|
-
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 });
|
|
661
717
|
SixLanguageSwitcher = __decorate([
|
|
662
718
|
ProxyCmp({
|
|
663
719
|
inputs: ['languages', 'selected']
|
|
664
720
|
})
|
|
665
721
|
], SixLanguageSwitcher);
|
|
666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLanguageSwitcher, decorators: [{
|
|
667
723
|
type: Component,
|
|
668
724
|
args: [{
|
|
669
725
|
selector: 'six-language-switcher',
|
|
@@ -679,15 +735,15 @@ let SixLayoutGrid = class SixLayoutGrid {
|
|
|
679
735
|
c.detach();
|
|
680
736
|
this.el = r.nativeElement;
|
|
681
737
|
}
|
|
738
|
+
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 }); }
|
|
739
|
+
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 }); }
|
|
682
740
|
};
|
|
683
|
-
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 });
|
|
684
|
-
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 });
|
|
685
741
|
SixLayoutGrid = __decorate([
|
|
686
742
|
ProxyCmp({
|
|
687
743
|
inputs: ['columns']
|
|
688
744
|
})
|
|
689
745
|
], SixLayoutGrid);
|
|
690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLayoutGrid, decorators: [{
|
|
691
747
|
type: Component,
|
|
692
748
|
args: [{
|
|
693
749
|
selector: 'six-layout-grid',
|
|
@@ -697,21 +753,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
697
753
|
inputs: ['columns'],
|
|
698
754
|
}]
|
|
699
755
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
756
|
+
let SixLogo = class SixLogo {
|
|
757
|
+
constructor(c, r, z) {
|
|
758
|
+
this.z = z;
|
|
759
|
+
c.detach();
|
|
760
|
+
this.el = r.nativeElement;
|
|
761
|
+
}
|
|
762
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
763
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixLogo, selector: "six-logo", inputs: { brand: "brand" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
764
|
+
};
|
|
765
|
+
SixLogo = __decorate([
|
|
766
|
+
ProxyCmp({
|
|
767
|
+
inputs: ['brand']
|
|
768
|
+
})
|
|
769
|
+
], SixLogo);
|
|
770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLogo, decorators: [{
|
|
771
|
+
type: Component,
|
|
772
|
+
args: [{
|
|
773
|
+
selector: 'six-logo',
|
|
774
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
775
|
+
template: '<ng-content></ng-content>',
|
|
776
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
777
|
+
inputs: ['brand'],
|
|
778
|
+
}]
|
|
779
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
700
780
|
let SixMainContainer = class SixMainContainer {
|
|
701
781
|
constructor(c, r, z) {
|
|
702
782
|
this.z = z;
|
|
703
783
|
c.detach();
|
|
704
784
|
this.el = r.nativeElement;
|
|
705
785
|
}
|
|
786
|
+
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 }); }
|
|
787
|
+
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 }); }
|
|
706
788
|
};
|
|
707
|
-
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 });
|
|
708
|
-
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 });
|
|
709
789
|
SixMainContainer = __decorate([
|
|
710
790
|
ProxyCmp({
|
|
711
791
|
inputs: ['padded']
|
|
712
792
|
})
|
|
713
793
|
], SixMainContainer);
|
|
714
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMainContainer, decorators: [{
|
|
715
795
|
type: Component,
|
|
716
796
|
args: [{
|
|
717
797
|
selector: 'six-main-container',
|
|
@@ -728,23 +808,23 @@ let SixMenu = class SixMenu {
|
|
|
728
808
|
this.el = r.nativeElement;
|
|
729
809
|
proxyOutputs(this, this.el, ['six-menu-item-selected']);
|
|
730
810
|
}
|
|
811
|
+
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 }); }
|
|
812
|
+
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 }); }
|
|
731
813
|
};
|
|
732
|
-
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 });
|
|
733
|
-
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 });
|
|
734
814
|
SixMenu = __decorate([
|
|
735
815
|
ProxyCmp({
|
|
736
|
-
inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
816
|
+
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
737
817
|
methods: ['typeToSelect']
|
|
738
818
|
})
|
|
739
819
|
], SixMenu);
|
|
740
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenu, decorators: [{
|
|
741
821
|
type: Component,
|
|
742
822
|
args: [{
|
|
743
823
|
selector: 'six-menu',
|
|
744
824
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
745
825
|
template: '<ng-content></ng-content>',
|
|
746
826
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
747
|
-
inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
827
|
+
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
748
828
|
}]
|
|
749
829
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
750
830
|
let SixMenuDivider = class SixMenuDivider {
|
|
@@ -753,13 +833,13 @@ let SixMenuDivider = class SixMenuDivider {
|
|
|
753
833
|
c.detach();
|
|
754
834
|
this.el = r.nativeElement;
|
|
755
835
|
}
|
|
836
|
+
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 }); }
|
|
837
|
+
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 }); }
|
|
756
838
|
};
|
|
757
|
-
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 });
|
|
758
|
-
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 });
|
|
759
839
|
SixMenuDivider = __decorate([
|
|
760
840
|
ProxyCmp({})
|
|
761
841
|
], SixMenuDivider);
|
|
762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuDivider, decorators: [{
|
|
763
843
|
type: Component,
|
|
764
844
|
args: [{
|
|
765
845
|
selector: 'six-menu-divider',
|
|
@@ -775,23 +855,23 @@ let SixMenuItem = class SixMenuItem {
|
|
|
775
855
|
c.detach();
|
|
776
856
|
this.el = r.nativeElement;
|
|
777
857
|
}
|
|
858
|
+
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 }); }
|
|
859
|
+
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 }); }
|
|
778
860
|
};
|
|
779
|
-
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 });
|
|
780
|
-
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 });
|
|
781
861
|
SixMenuItem = __decorate([
|
|
782
862
|
ProxyCmp({
|
|
783
|
-
inputs: ['checked', 'disabled', 'value'],
|
|
863
|
+
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
784
864
|
methods: ['setFocus', 'removeFocus', 'getTextLabel']
|
|
785
865
|
})
|
|
786
866
|
], SixMenuItem);
|
|
787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuItem, decorators: [{
|
|
788
868
|
type: Component,
|
|
789
869
|
args: [{
|
|
790
870
|
selector: 'six-menu-item',
|
|
791
871
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
792
872
|
template: '<ng-content></ng-content>',
|
|
793
873
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
794
|
-
inputs: ['checked', 'disabled', 'value'],
|
|
874
|
+
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
795
875
|
}]
|
|
796
876
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
797
877
|
let SixMenuLabel = class SixMenuLabel {
|
|
@@ -800,13 +880,13 @@ let SixMenuLabel = class SixMenuLabel {
|
|
|
800
880
|
c.detach();
|
|
801
881
|
this.el = r.nativeElement;
|
|
802
882
|
}
|
|
883
|
+
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 }); }
|
|
884
|
+
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 }); }
|
|
803
885
|
};
|
|
804
|
-
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 });
|
|
805
|
-
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 });
|
|
806
886
|
SixMenuLabel = __decorate([
|
|
807
887
|
ProxyCmp({})
|
|
808
888
|
], SixMenuLabel);
|
|
809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuLabel, decorators: [{
|
|
810
890
|
type: Component,
|
|
811
891
|
args: [{
|
|
812
892
|
selector: 'six-menu-label',
|
|
@@ -822,15 +902,15 @@ let SixPicto = class SixPicto {
|
|
|
822
902
|
c.detach();
|
|
823
903
|
this.el = r.nativeElement;
|
|
824
904
|
}
|
|
905
|
+
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 }); }
|
|
906
|
+
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 }); }
|
|
825
907
|
};
|
|
826
|
-
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 });
|
|
827
|
-
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 });
|
|
828
908
|
SixPicto = __decorate([
|
|
829
909
|
ProxyCmp({
|
|
830
910
|
inputs: ['size']
|
|
831
911
|
})
|
|
832
912
|
], SixPicto);
|
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixPicto, decorators: [{
|
|
834
914
|
type: Component,
|
|
835
915
|
args: [{
|
|
836
916
|
selector: 'six-picto',
|
|
@@ -846,15 +926,15 @@ let SixProgressBar = class SixProgressBar {
|
|
|
846
926
|
c.detach();
|
|
847
927
|
this.el = r.nativeElement;
|
|
848
928
|
}
|
|
929
|
+
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 }); }
|
|
930
|
+
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 }); }
|
|
849
931
|
};
|
|
850
|
-
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 });
|
|
851
|
-
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 });
|
|
852
932
|
SixProgressBar = __decorate([
|
|
853
933
|
ProxyCmp({
|
|
854
934
|
inputs: ['indeterminate', 'percentage']
|
|
855
935
|
})
|
|
856
936
|
], SixProgressBar);
|
|
857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixProgressBar, decorators: [{
|
|
858
938
|
type: Component,
|
|
859
939
|
args: [{
|
|
860
940
|
selector: 'six-progress-bar',
|
|
@@ -870,15 +950,15 @@ let SixProgressRing = class SixProgressRing {
|
|
|
870
950
|
c.detach();
|
|
871
951
|
this.el = r.nativeElement;
|
|
872
952
|
}
|
|
953
|
+
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 }); }
|
|
954
|
+
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 }); }
|
|
873
955
|
};
|
|
874
|
-
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 });
|
|
875
|
-
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 });
|
|
876
956
|
SixProgressRing = __decorate([
|
|
877
957
|
ProxyCmp({
|
|
878
958
|
inputs: ['percentage', 'size', 'strokeWidth']
|
|
879
959
|
})
|
|
880
960
|
], SixProgressRing);
|
|
881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixProgressRing, decorators: [{
|
|
882
962
|
type: Component,
|
|
883
963
|
args: [{
|
|
884
964
|
selector: 'six-progress-ring',
|
|
@@ -895,16 +975,16 @@ let SixRadio = class SixRadio {
|
|
|
895
975
|
this.el = r.nativeElement;
|
|
896
976
|
proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
|
|
897
977
|
}
|
|
978
|
+
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 }); }
|
|
979
|
+
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 }); }
|
|
898
980
|
};
|
|
899
|
-
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 });
|
|
900
|
-
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 });
|
|
901
981
|
SixRadio = __decorate([
|
|
902
982
|
ProxyCmp({
|
|
903
983
|
inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
|
|
904
984
|
methods: ['setFocus', 'removeFocus']
|
|
905
985
|
})
|
|
906
986
|
], SixRadio);
|
|
907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
987
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRadio, decorators: [{
|
|
908
988
|
type: Component,
|
|
909
989
|
args: [{
|
|
910
990
|
selector: 'six-radio',
|
|
@@ -921,16 +1001,16 @@ let SixRange = class SixRange {
|
|
|
921
1001
|
this.el = r.nativeElement;
|
|
922
1002
|
proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
|
|
923
1003
|
}
|
|
1004
|
+
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 }); }
|
|
1005
|
+
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 }); }
|
|
924
1006
|
};
|
|
925
|
-
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 });
|
|
926
|
-
SixRange.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
927
1007
|
SixRange = __decorate([
|
|
928
1008
|
ProxyCmp({
|
|
929
1009
|
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
930
1010
|
methods: ['setFocus', 'removeFocus']
|
|
931
1011
|
})
|
|
932
1012
|
], SixRange);
|
|
933
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRange, decorators: [{
|
|
934
1014
|
type: Component,
|
|
935
1015
|
args: [{
|
|
936
1016
|
selector: 'six-range',
|
|
@@ -945,24 +1025,23 @@ let SixRoot = class SixRoot {
|
|
|
945
1025
|
this.z = z;
|
|
946
1026
|
c.detach();
|
|
947
1027
|
this.el = r.nativeElement;
|
|
948
|
-
proxyOutputs(this, this.el, ['six-root-collapsed']);
|
|
949
1028
|
}
|
|
1029
|
+
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 }); }
|
|
1030
|
+
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 }); }
|
|
950
1031
|
};
|
|
951
|
-
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 });
|
|
952
|
-
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 });
|
|
953
1032
|
SixRoot = __decorate([
|
|
954
1033
|
ProxyCmp({
|
|
955
|
-
inputs: ['
|
|
1034
|
+
inputs: ['padded', 'stage', 'version']
|
|
956
1035
|
})
|
|
957
1036
|
], SixRoot);
|
|
958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRoot, decorators: [{
|
|
959
1038
|
type: Component,
|
|
960
1039
|
args: [{
|
|
961
1040
|
selector: 'six-root',
|
|
962
1041
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
963
1042
|
template: '<ng-content></ng-content>',
|
|
964
1043
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
965
|
-
inputs: ['
|
|
1044
|
+
inputs: ['padded', 'stage', 'version'],
|
|
966
1045
|
}]
|
|
967
1046
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
968
1047
|
let SixSearchField = class SixSearchField {
|
|
@@ -972,15 +1051,15 @@ let SixSearchField = class SixSearchField {
|
|
|
972
1051
|
this.el = r.nativeElement;
|
|
973
1052
|
proxyOutputs(this, this.el, ['six-search-field-change']);
|
|
974
1053
|
}
|
|
1054
|
+
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 }); }
|
|
1055
|
+
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 }); }
|
|
975
1056
|
};
|
|
976
|
-
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 });
|
|
977
|
-
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 });
|
|
978
1057
|
SixSearchField = __decorate([
|
|
979
1058
|
ProxyCmp({
|
|
980
1059
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
|
|
981
1060
|
})
|
|
982
1061
|
], SixSearchField);
|
|
983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSearchField, decorators: [{
|
|
984
1063
|
type: Component,
|
|
985
1064
|
args: [{
|
|
986
1065
|
selector: 'six-search-field',
|
|
@@ -997,23 +1076,23 @@ let SixSelect = class SixSelect {
|
|
|
997
1076
|
this.el = r.nativeElement;
|
|
998
1077
|
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
999
1078
|
}
|
|
1079
|
+
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 }); }
|
|
1080
|
+
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 }); }
|
|
1000
1081
|
};
|
|
1001
|
-
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 });
|
|
1002
|
-
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", 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", size: "size", value: "value", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1003
1082
|
SixSelect = __decorate([
|
|
1004
1083
|
ProxyCmp({
|
|
1005
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'size', 'value', 'virtualScroll'],
|
|
1084
|
+
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'],
|
|
1006
1085
|
methods: ['setFocus']
|
|
1007
1086
|
})
|
|
1008
1087
|
], SixSelect);
|
|
1009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSelect, decorators: [{
|
|
1010
1089
|
type: Component,
|
|
1011
1090
|
args: [{
|
|
1012
1091
|
selector: 'six-select',
|
|
1013
1092
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1014
1093
|
template: '<ng-content></ng-content>',
|
|
1015
1094
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1016
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'maxTagsVisible', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'size', 'value', 'virtualScroll'],
|
|
1095
|
+
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'],
|
|
1017
1096
|
}]
|
|
1018
1097
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1019
1098
|
let SixSidebar = class SixSidebar {
|
|
@@ -1023,16 +1102,16 @@ let SixSidebar = class SixSidebar {
|
|
|
1023
1102
|
this.el = r.nativeElement;
|
|
1024
1103
|
proxyOutputs(this, this.el, ['six-sidebar-show', 'six-sidebar-after-show', 'six-sidebar-hide', 'six-sidebar-after-hide', 'six-sidebar-initial-focus']);
|
|
1025
1104
|
}
|
|
1105
|
+
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 }); }
|
|
1106
|
+
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 }); }
|
|
1026
1107
|
};
|
|
1027
|
-
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 });
|
|
1028
|
-
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 });
|
|
1029
1108
|
SixSidebar = __decorate([
|
|
1030
1109
|
ProxyCmp({
|
|
1031
1110
|
inputs: ['open', 'position', 'toggled', 'width'],
|
|
1032
1111
|
methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
|
|
1033
1112
|
})
|
|
1034
1113
|
], SixSidebar);
|
|
1035
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebar, decorators: [{
|
|
1036
1115
|
type: Component,
|
|
1037
1116
|
args: [{
|
|
1038
1117
|
selector: 'six-sidebar',
|
|
@@ -1048,22 +1127,22 @@ let SixSidebarItem = class SixSidebarItem {
|
|
|
1048
1127
|
c.detach();
|
|
1049
1128
|
this.el = r.nativeElement;
|
|
1050
1129
|
}
|
|
1130
|
+
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 }); }
|
|
1131
|
+
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 }); }
|
|
1051
1132
|
};
|
|
1052
|
-
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 });
|
|
1053
|
-
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 });
|
|
1054
1133
|
SixSidebarItem = __decorate([
|
|
1055
1134
|
ProxyCmp({
|
|
1056
|
-
inputs: ['disabled', 'selected', 'value']
|
|
1135
|
+
inputs: ['disabled', 'href', 'selected', 'value']
|
|
1057
1136
|
})
|
|
1058
1137
|
], SixSidebarItem);
|
|
1059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
1060
1139
|
type: Component,
|
|
1061
1140
|
args: [{
|
|
1062
1141
|
selector: 'six-sidebar-item',
|
|
1063
1142
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1064
1143
|
template: '<ng-content></ng-content>',
|
|
1065
1144
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1066
|
-
inputs: ['disabled', 'selected', 'value'],
|
|
1145
|
+
inputs: ['disabled', 'href', 'selected', 'value'],
|
|
1067
1146
|
}]
|
|
1068
1147
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1069
1148
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
@@ -1072,22 +1151,22 @@ let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
|
1072
1151
|
c.detach();
|
|
1073
1152
|
this.el = r.nativeElement;
|
|
1074
1153
|
}
|
|
1154
|
+
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 }); }
|
|
1155
|
+
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 }); }
|
|
1075
1156
|
};
|
|
1076
|
-
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 });
|
|
1077
|
-
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 });
|
|
1078
1157
|
SixSidebarItemGroup = __decorate([
|
|
1079
1158
|
ProxyCmp({
|
|
1080
|
-
inputs: ['icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1159
|
+
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1081
1160
|
})
|
|
1082
1161
|
], SixSidebarItemGroup);
|
|
1083
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1162
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
|
|
1084
1163
|
type: Component,
|
|
1085
1164
|
args: [{
|
|
1086
1165
|
selector: 'six-sidebar-item-group',
|
|
1087
1166
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1088
1167
|
template: '<ng-content></ng-content>',
|
|
1089
1168
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1090
|
-
inputs: ['icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1169
|
+
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1091
1170
|
}]
|
|
1092
1171
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1093
1172
|
let SixSpinner = class SixSpinner {
|
|
@@ -1096,22 +1175,22 @@ let SixSpinner = class SixSpinner {
|
|
|
1096
1175
|
c.detach();
|
|
1097
1176
|
this.el = r.nativeElement;
|
|
1098
1177
|
}
|
|
1178
|
+
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 }); }
|
|
1179
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSpinner, selector: "six-spinner", inputs: { logo: "logo", six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1099
1180
|
};
|
|
1100
|
-
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 });
|
|
1101
|
-
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 });
|
|
1102
1181
|
SixSpinner = __decorate([
|
|
1103
1182
|
ProxyCmp({
|
|
1104
|
-
inputs: ['six']
|
|
1183
|
+
inputs: ['logo', 'six']
|
|
1105
1184
|
})
|
|
1106
1185
|
], SixSpinner);
|
|
1107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSpinner, decorators: [{
|
|
1108
1187
|
type: Component,
|
|
1109
1188
|
args: [{
|
|
1110
1189
|
selector: 'six-spinner',
|
|
1111
1190
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1112
1191
|
template: '<ng-content></ng-content>',
|
|
1113
1192
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1114
|
-
inputs: ['six'],
|
|
1193
|
+
inputs: ['logo', 'six'],
|
|
1115
1194
|
}]
|
|
1116
1195
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1117
1196
|
let SixStageIndicator = class SixStageIndicator {
|
|
@@ -1120,15 +1199,15 @@ let SixStageIndicator = class SixStageIndicator {
|
|
|
1120
1199
|
c.detach();
|
|
1121
1200
|
this.el = r.nativeElement;
|
|
1122
1201
|
}
|
|
1202
|
+
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 }); }
|
|
1203
|
+
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 }); }
|
|
1123
1204
|
};
|
|
1124
|
-
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 });
|
|
1125
|
-
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 });
|
|
1126
1205
|
SixStageIndicator = __decorate([
|
|
1127
1206
|
ProxyCmp({
|
|
1128
1207
|
inputs: ['stage']
|
|
1129
1208
|
})
|
|
1130
1209
|
], SixStageIndicator);
|
|
1131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixStageIndicator, decorators: [{
|
|
1132
1211
|
type: Component,
|
|
1133
1212
|
args: [{
|
|
1134
1213
|
selector: 'six-stage-indicator',
|
|
@@ -1145,16 +1224,16 @@ let SixSwitch = class SixSwitch {
|
|
|
1145
1224
|
this.el = r.nativeElement;
|
|
1146
1225
|
proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
|
|
1147
1226
|
}
|
|
1227
|
+
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 }); }
|
|
1228
|
+
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 }); }
|
|
1148
1229
|
};
|
|
1149
|
-
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 });
|
|
1150
|
-
SixSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
1151
1230
|
SixSwitch = __decorate([
|
|
1152
1231
|
ProxyCmp({
|
|
1153
1232
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1154
1233
|
methods: ['setFocus', 'removeFocus']
|
|
1155
1234
|
})
|
|
1156
1235
|
], SixSwitch);
|
|
1157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSwitch, decorators: [{
|
|
1158
1237
|
type: Component,
|
|
1159
1238
|
args: [{
|
|
1160
1239
|
selector: 'six-switch',
|
|
@@ -1171,16 +1250,16 @@ let SixTab = class SixTab {
|
|
|
1171
1250
|
this.el = r.nativeElement;
|
|
1172
1251
|
proxyOutputs(this, this.el, ['six-tab-close']);
|
|
1173
1252
|
}
|
|
1253
|
+
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 }); }
|
|
1254
|
+
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 }); }
|
|
1174
1255
|
};
|
|
1175
|
-
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 });
|
|
1176
|
-
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 });
|
|
1177
1256
|
SixTab = __decorate([
|
|
1178
1257
|
ProxyCmp({
|
|
1179
1258
|
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1180
1259
|
methods: ['setFocus', 'removeFocus']
|
|
1181
1260
|
})
|
|
1182
1261
|
], SixTab);
|
|
1183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTab, decorators: [{
|
|
1184
1263
|
type: Component,
|
|
1185
1264
|
args: [{
|
|
1186
1265
|
selector: 'six-tab',
|
|
@@ -1197,16 +1276,16 @@ let SixTabGroup = class SixTabGroup {
|
|
|
1197
1276
|
this.el = r.nativeElement;
|
|
1198
1277
|
proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
|
|
1199
1278
|
}
|
|
1279
|
+
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 }); }
|
|
1280
|
+
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 }); }
|
|
1200
1281
|
};
|
|
1201
|
-
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 });
|
|
1202
|
-
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 });
|
|
1203
1282
|
SixTabGroup = __decorate([
|
|
1204
1283
|
ProxyCmp({
|
|
1205
1284
|
inputs: ['noScrollControls', 'placement'],
|
|
1206
1285
|
methods: ['show']
|
|
1207
1286
|
})
|
|
1208
1287
|
], SixTabGroup);
|
|
1209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTabGroup, decorators: [{
|
|
1210
1289
|
type: Component,
|
|
1211
1290
|
args: [{
|
|
1212
1291
|
selector: 'six-tab-group',
|
|
@@ -1222,15 +1301,15 @@ let SixTabPanel = class SixTabPanel {
|
|
|
1222
1301
|
c.detach();
|
|
1223
1302
|
this.el = r.nativeElement;
|
|
1224
1303
|
}
|
|
1304
|
+
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 }); }
|
|
1305
|
+
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 }); }
|
|
1225
1306
|
};
|
|
1226
|
-
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 });
|
|
1227
|
-
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 });
|
|
1228
1307
|
SixTabPanel = __decorate([
|
|
1229
1308
|
ProxyCmp({
|
|
1230
1309
|
inputs: ['active', 'name']
|
|
1231
1310
|
})
|
|
1232
1311
|
], SixTabPanel);
|
|
1233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTabPanel, decorators: [{
|
|
1234
1313
|
type: Component,
|
|
1235
1314
|
args: [{
|
|
1236
1315
|
selector: 'six-tab-panel',
|
|
@@ -1247,15 +1326,15 @@ let SixTag = class SixTag {
|
|
|
1247
1326
|
this.el = r.nativeElement;
|
|
1248
1327
|
proxyOutputs(this, this.el, ['six-tag-clear']);
|
|
1249
1328
|
}
|
|
1329
|
+
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 }); }
|
|
1330
|
+
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 }); }
|
|
1250
1331
|
};
|
|
1251
|
-
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 });
|
|
1252
|
-
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 });
|
|
1253
1332
|
SixTag = __decorate([
|
|
1254
1333
|
ProxyCmp({
|
|
1255
1334
|
inputs: ['clearable', 'pill', 'size', 'type']
|
|
1256
1335
|
})
|
|
1257
1336
|
], SixTag);
|
|
1258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTag, decorators: [{
|
|
1259
1338
|
type: Component,
|
|
1260
1339
|
args: [{
|
|
1261
1340
|
selector: 'six-tag',
|
|
@@ -1272,16 +1351,16 @@ let SixTextarea = class SixTextarea {
|
|
|
1272
1351
|
this.el = r.nativeElement;
|
|
1273
1352
|
proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
|
|
1274
1353
|
}
|
|
1354
|
+
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 }); }
|
|
1355
|
+
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 }); }
|
|
1275
1356
|
};
|
|
1276
|
-
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 });
|
|
1277
|
-
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", 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 });
|
|
1278
1357
|
SixTextarea = __decorate([
|
|
1279
1358
|
ProxyCmp({
|
|
1280
1359
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1281
1360
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
1282
1361
|
})
|
|
1283
1362
|
], SixTextarea);
|
|
1284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTextarea, decorators: [{
|
|
1285
1364
|
type: Component,
|
|
1286
1365
|
args: [{
|
|
1287
1366
|
selector: 'six-textarea',
|
|
@@ -1298,16 +1377,16 @@ let SixTile = class SixTile {
|
|
|
1298
1377
|
this.el = r.nativeElement;
|
|
1299
1378
|
proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
|
|
1300
1379
|
}
|
|
1380
|
+
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 }); }
|
|
1381
|
+
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 }); }
|
|
1301
1382
|
};
|
|
1302
|
-
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 });
|
|
1303
|
-
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 });
|
|
1304
1383
|
SixTile = __decorate([
|
|
1305
1384
|
ProxyCmp({
|
|
1306
1385
|
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1307
1386
|
methods: ['hide', 'show']
|
|
1308
1387
|
})
|
|
1309
1388
|
], SixTile);
|
|
1310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTile, decorators: [{
|
|
1311
1390
|
type: Component,
|
|
1312
1391
|
args: [{
|
|
1313
1392
|
selector: 'six-tile',
|
|
@@ -1324,16 +1403,16 @@ let SixTimepicker = class SixTimepicker {
|
|
|
1324
1403
|
this.el = r.nativeElement;
|
|
1325
1404
|
proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
|
|
1326
1405
|
}
|
|
1406
|
+
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 }); }
|
|
1407
|
+
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 }); }
|
|
1327
1408
|
};
|
|
1328
|
-
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 });
|
|
1329
|
-
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", 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 });
|
|
1330
1409
|
SixTimepicker = __decorate([
|
|
1331
1410
|
ProxyCmp({
|
|
1332
1411
|
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1333
1412
|
methods: ['setFocus']
|
|
1334
1413
|
})
|
|
1335
1414
|
], SixTimepicker);
|
|
1336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTimepicker, decorators: [{
|
|
1337
1416
|
type: Component,
|
|
1338
1417
|
args: [{
|
|
1339
1418
|
selector: 'six-timepicker',
|
|
@@ -1350,16 +1429,16 @@ let SixTooltip = class SixTooltip {
|
|
|
1350
1429
|
this.el = r.nativeElement;
|
|
1351
1430
|
proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
|
|
1352
1431
|
}
|
|
1432
|
+
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 }); }
|
|
1433
|
+
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 }); }
|
|
1353
1434
|
};
|
|
1354
|
-
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 });
|
|
1355
|
-
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 });
|
|
1356
1435
|
SixTooltip = __decorate([
|
|
1357
1436
|
ProxyCmp({
|
|
1358
1437
|
inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
|
|
1359
1438
|
methods: ['show', 'hide']
|
|
1360
1439
|
})
|
|
1361
1440
|
], SixTooltip);
|
|
1362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixTooltip, decorators: [{
|
|
1363
1442
|
type: Component,
|
|
1364
1443
|
args: [{
|
|
1365
1444
|
selector: 'six-tooltip',
|
|
@@ -1371,7 +1450,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1371
1450
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1372
1451
|
|
|
1373
1452
|
const DIRECTIVES = [
|
|
1374
|
-
SetAttributes,
|
|
1375
1453
|
SixAlert,
|
|
1376
1454
|
SixAvatar,
|
|
1377
1455
|
SixBadge,
|
|
@@ -1391,12 +1469,16 @@ const DIRECTIVES = [
|
|
|
1391
1469
|
SixFooter,
|
|
1392
1470
|
SixGroupLabel,
|
|
1393
1471
|
SixHeader,
|
|
1472
|
+
SixHeaderDropdownItem,
|
|
1473
|
+
SixHeaderItem,
|
|
1474
|
+
SixHeaderMenuButton,
|
|
1394
1475
|
SixIcon,
|
|
1395
1476
|
SixIconButton,
|
|
1396
1477
|
SixInput,
|
|
1397
1478
|
SixItemPicker,
|
|
1398
1479
|
SixLanguageSwitcher,
|
|
1399
1480
|
SixLayoutGrid,
|
|
1481
|
+
SixLogo,
|
|
1400
1482
|
SixMainContainer,
|
|
1401
1483
|
SixMenu,
|
|
1402
1484
|
SixMenuDivider,
|
|
@@ -1430,10 +1512,10 @@ class ValidationMessagesService {
|
|
|
1430
1512
|
getErrorMessage(language, error) {
|
|
1431
1513
|
return getErrorMessage(language, error);
|
|
1432
1514
|
}
|
|
1515
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1516
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' }); }
|
|
1433
1517
|
}
|
|
1434
|
-
|
|
1435
|
-
ValidationMessagesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' });
|
|
1436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1437
1519
|
type: Injectable,
|
|
1438
1520
|
args: [{ providedIn: 'root' }]
|
|
1439
1521
|
}] });
|
|
@@ -1487,7 +1569,7 @@ class ValueAccessor {
|
|
|
1487
1569
|
return;
|
|
1488
1570
|
const element = this.el.nativeElement;
|
|
1489
1571
|
const control = this.ngControl?.control;
|
|
1490
|
-
const invalid =
|
|
1572
|
+
const invalid = control.status === 'INVALID' && control.dirty && control.touched;
|
|
1491
1573
|
let errorTexts;
|
|
1492
1574
|
if (invalid) {
|
|
1493
1575
|
errorTexts = this.initialErrorText || this.getErrorTexts(control);
|
|
@@ -1552,23 +1634,15 @@ class ValueAccessor {
|
|
|
1552
1634
|
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1553
1635
|
});
|
|
1554
1636
|
}
|
|
1637
|
+
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 }); }
|
|
1638
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ValueAccessor, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 }); }
|
|
1555
1639
|
}
|
|
1556
|
-
|
|
1557
|
-
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: ValueAccessor, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
|
|
1558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1559
1641
|
type: Directive
|
|
1560
1642
|
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
1561
1643
|
type: HostListener,
|
|
1562
1644
|
args: ['blur', ['$event.target']]
|
|
1563
1645
|
}] } });
|
|
1564
|
-
function getLanguage() {
|
|
1565
|
-
const languages = ['de', 'fr', 'it', 'en'];
|
|
1566
|
-
const documentLang = document.documentElement.lang;
|
|
1567
|
-
if (languages.includes(documentLang)) {
|
|
1568
|
-
return documentLang;
|
|
1569
|
-
}
|
|
1570
|
-
return 'de';
|
|
1571
|
-
}
|
|
1572
1646
|
const nextTick = (h) => {
|
|
1573
1647
|
if (typeof __zone_symbol__requestAnimationFrame === 'function') {
|
|
1574
1648
|
return __zone_symbol__requestAnimationFrame(h);
|
|
@@ -1586,16 +1660,16 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1586
1660
|
handleInputEvent(el) {
|
|
1587
1661
|
this.handleValueChange(el, el.value);
|
|
1588
1662
|
}
|
|
1663
|
+
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 }); }
|
|
1664
|
+
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: [
|
|
1665
|
+
{
|
|
1666
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1667
|
+
useExisting: TextValueAccessor,
|
|
1668
|
+
multi: true,
|
|
1669
|
+
},
|
|
1670
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1589
1671
|
}
|
|
1590
|
-
|
|
1591
|
-
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: [
|
|
1592
|
-
{
|
|
1593
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1594
|
-
useExisting: TextValueAccessor,
|
|
1595
|
-
multi: true,
|
|
1596
|
-
},
|
|
1597
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1599
1673
|
type: Directive,
|
|
1600
1674
|
args: [{
|
|
1601
1675
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1624,16 +1698,16 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1624
1698
|
fn(value === '' ? null : parseFloat(value));
|
|
1625
1699
|
});
|
|
1626
1700
|
}
|
|
1701
|
+
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 }); }
|
|
1702
|
+
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: [
|
|
1703
|
+
{
|
|
1704
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1705
|
+
useExisting: NumericValueAccessor,
|
|
1706
|
+
multi: true,
|
|
1707
|
+
},
|
|
1708
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1627
1709
|
}
|
|
1628
|
-
|
|
1629
|
-
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: [
|
|
1630
|
-
{
|
|
1631
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1632
|
-
useExisting: NumericValueAccessor,
|
|
1633
|
-
multi: true,
|
|
1634
|
-
},
|
|
1635
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1637
1711
|
type: Directive,
|
|
1638
1712
|
args: [{
|
|
1639
1713
|
selector: 'six-input[type=number]',
|
|
@@ -1676,16 +1750,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1676
1750
|
this.el.nativeElement.name = this.formControlName;
|
|
1677
1751
|
}
|
|
1678
1752
|
}
|
|
1753
|
+
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 }); }
|
|
1754
|
+
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: [
|
|
1755
|
+
{
|
|
1756
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1757
|
+
useExisting: RadioValueAccessor,
|
|
1758
|
+
multi: true,
|
|
1759
|
+
},
|
|
1760
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1679
1761
|
}
|
|
1680
|
-
|
|
1681
|
-
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: [
|
|
1682
|
-
{
|
|
1683
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1684
|
-
useExisting: RadioValueAccessor,
|
|
1685
|
-
multi: true,
|
|
1686
|
-
},
|
|
1687
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1689
1763
|
type: Directive,
|
|
1690
1764
|
args: [{
|
|
1691
1765
|
selector: 'six-radio',
|
|
@@ -1715,16 +1789,16 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1715
1789
|
handleChangeEvent(el) {
|
|
1716
1790
|
this.handleValueChange(el, el.value);
|
|
1717
1791
|
}
|
|
1792
|
+
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 }); }
|
|
1793
|
+
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: [
|
|
1794
|
+
{
|
|
1795
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1796
|
+
useExisting: DatepickerValueAccessor,
|
|
1797
|
+
multi: true,
|
|
1798
|
+
},
|
|
1799
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1718
1800
|
}
|
|
1719
|
-
|
|
1720
|
-
DatepickerValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: DatepickerValueAccessor, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1721
|
-
{
|
|
1722
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1723
|
-
useExisting: DatepickerValueAccessor,
|
|
1724
|
-
multi: true,
|
|
1725
|
-
},
|
|
1726
|
-
], usesInheritance: true, ngImport: i0 });
|
|
1727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1728
1802
|
type: Directive,
|
|
1729
1803
|
args: [{
|
|
1730
1804
|
selector: 'six-datepicker',
|
|
@@ -1777,10 +1851,10 @@ class SixFormDirective {
|
|
|
1777
1851
|
*/
|
|
1778
1852
|
this.sixSubmit = new EventEmitter();
|
|
1779
1853
|
}
|
|
1854
|
+
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 }); }
|
|
1855
|
+
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 }); }
|
|
1780
1856
|
}
|
|
1781
|
-
|
|
1782
|
-
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 });
|
|
1783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1784
1858
|
type: Directive,
|
|
1785
1859
|
args: [{
|
|
1786
1860
|
selector: 'form[sixForm]',
|
|
@@ -1828,10 +1902,10 @@ class SixFormUtilDirective {
|
|
|
1828
1902
|
focusInvalidField() {
|
|
1829
1903
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1830
1904
|
}
|
|
1905
|
+
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 }); }
|
|
1906
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixFormUtilDirective, selector: "[sixFormUtil]", ngImport: i0 }); }
|
|
1831
1907
|
}
|
|
1832
|
-
|
|
1833
|
-
SixFormUtilDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SixFormUtilDirective, selector: "[sixFormUtil]", ngImport: i0 });
|
|
1834
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1908
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1835
1909
|
type: Directive,
|
|
1836
1910
|
args: [{
|
|
1837
1911
|
selector: '[sixFormUtil]',
|
|
@@ -1899,34 +1973,40 @@ class SixUiLibraryValidators {
|
|
|
1899
1973
|
}
|
|
1900
1974
|
class MinDateValidator {
|
|
1901
1975
|
validate(control) {
|
|
1902
|
-
|
|
1976
|
+
if (this.min != null) {
|
|
1977
|
+
return SixUiLibraryValidators.minDate(this.min)(control);
|
|
1978
|
+
}
|
|
1979
|
+
return null;
|
|
1903
1980
|
}
|
|
1981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1982
|
+
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 }); }
|
|
1904
1983
|
}
|
|
1905
|
-
|
|
1906
|
-
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 });
|
|
1907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1908
1985
|
type: Directive,
|
|
1909
1986
|
args: [{
|
|
1910
1987
|
selector: 'six-datepicker[min]',
|
|
1911
1988
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
1912
1989
|
}]
|
|
1913
|
-
}], propDecorators: {
|
|
1990
|
+
}], propDecorators: { min: [{
|
|
1914
1991
|
type: Input
|
|
1915
1992
|
}] } });
|
|
1916
1993
|
class MaxDateValidator {
|
|
1917
1994
|
validate(control) {
|
|
1918
|
-
|
|
1995
|
+
if (this.max != null) {
|
|
1996
|
+
return SixUiLibraryValidators.maxDate(this.max)(control);
|
|
1997
|
+
}
|
|
1998
|
+
return null;
|
|
1919
1999
|
}
|
|
2000
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2001
|
+
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 }); }
|
|
1920
2002
|
}
|
|
1921
|
-
|
|
1922
|
-
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 });
|
|
1923
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
2003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
1924
2004
|
type: Directive,
|
|
1925
2005
|
args: [{
|
|
1926
2006
|
selector: 'six-datepicker[max]',
|
|
1927
2007
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
1928
2008
|
}]
|
|
1929
|
-
}], propDecorators: {
|
|
2009
|
+
}], propDecorators: { max: [{
|
|
1930
2010
|
type: Input
|
|
1931
2011
|
}] } });
|
|
1932
2012
|
class AllowedDatesValidator {
|
|
@@ -1936,10 +2016,10 @@ class AllowedDatesValidator {
|
|
|
1936
2016
|
validate(control) {
|
|
1937
2017
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
1938
2018
|
}
|
|
2019
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2020
|
+
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 }); }
|
|
1939
2021
|
}
|
|
1940
|
-
|
|
1941
|
-
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 });
|
|
1942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
2022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
1943
2023
|
type: Directive,
|
|
1944
2024
|
args: [{
|
|
1945
2025
|
selector: 'six-datepicker[allowedDates]',
|
|
@@ -1952,10 +2032,10 @@ class MinValidator {
|
|
|
1952
2032
|
validate(control) {
|
|
1953
2033
|
return Validators.min(toFloat(this.min))(control);
|
|
1954
2034
|
}
|
|
2035
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2036
|
+
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 }); }
|
|
1955
2037
|
}
|
|
1956
|
-
|
|
1957
|
-
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 });
|
|
1958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MinValidator, decorators: [{
|
|
2038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinValidator, decorators: [{
|
|
1959
2039
|
type: Directive,
|
|
1960
2040
|
args: [{
|
|
1961
2041
|
selector: 'six-input[type=number][min]',
|
|
@@ -1968,10 +2048,10 @@ class MaxValidator {
|
|
|
1968
2048
|
validate(control) {
|
|
1969
2049
|
return Validators.max(toFloat(this.max))(control);
|
|
1970
2050
|
}
|
|
2051
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2052
|
+
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 }); }
|
|
1971
2053
|
}
|
|
1972
|
-
|
|
1973
|
-
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 });
|
|
1974
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MaxValidator, decorators: [{
|
|
2054
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxValidator, decorators: [{
|
|
1975
2055
|
type: Directive,
|
|
1976
2056
|
args: [{
|
|
1977
2057
|
selector: 'six-input[type=number][max]',
|
|
@@ -1991,16 +2071,16 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
1991
2071
|
handleChangeEvent(el) {
|
|
1992
2072
|
this.handleValueChange(el, el.value);
|
|
1993
2073
|
}
|
|
2074
|
+
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 }); }
|
|
2075
|
+
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: [
|
|
2076
|
+
{
|
|
2077
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2078
|
+
useExisting: SelectValueAccessor,
|
|
2079
|
+
multi: true,
|
|
2080
|
+
},
|
|
2081
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1994
2082
|
}
|
|
1995
|
-
|
|
1996
|
-
SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SelectValueAccessor, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1997
|
-
{
|
|
1998
|
-
provide: NG_VALUE_ACCESSOR,
|
|
1999
|
-
useExisting: SelectValueAccessor,
|
|
2000
|
-
multi: true,
|
|
2001
|
-
},
|
|
2002
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2004
2084
|
type: Directive,
|
|
2005
2085
|
args: [{
|
|
2006
2086
|
selector: 'six-select',
|
|
@@ -2028,16 +2108,16 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2028
2108
|
this.el.nativeElement.checked = value === true;
|
|
2029
2109
|
this.updateValidation();
|
|
2030
2110
|
}
|
|
2111
|
+
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 }); }
|
|
2112
|
+
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: [
|
|
2113
|
+
{
|
|
2114
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2115
|
+
useExisting: CheckboxValueAccessor,
|
|
2116
|
+
multi: true,
|
|
2117
|
+
},
|
|
2118
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2031
2119
|
}
|
|
2032
|
-
|
|
2033
|
-
CheckboxValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: CheckboxValueAccessor, selector: "six-checkbox", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2034
|
-
{
|
|
2035
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2036
|
-
useExisting: CheckboxValueAccessor,
|
|
2037
|
-
multi: true,
|
|
2038
|
-
},
|
|
2039
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2041
2121
|
type: Directive,
|
|
2042
2122
|
args: [{
|
|
2043
2123
|
selector: 'six-checkbox',
|
|
@@ -2066,16 +2146,16 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2066
2146
|
fn(value === '' ? null : parseFloat(value));
|
|
2067
2147
|
});
|
|
2068
2148
|
}
|
|
2149
|
+
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 }); }
|
|
2150
|
+
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: [
|
|
2151
|
+
{
|
|
2152
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2153
|
+
useExisting: RangeValueAccessor,
|
|
2154
|
+
multi: true,
|
|
2155
|
+
},
|
|
2156
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2069
2157
|
}
|
|
2070
|
-
|
|
2071
|
-
RangeValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: RangeValueAccessor, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
2072
|
-
{
|
|
2073
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2074
|
-
useExisting: RangeValueAccessor,
|
|
2075
|
-
multi: true,
|
|
2076
|
-
},
|
|
2077
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2079
2159
|
type: Directive,
|
|
2080
2160
|
args: [{
|
|
2081
2161
|
selector: 'six-range',
|
|
@@ -2103,16 +2183,16 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2103
2183
|
this.el.nativeElement.checked = value === true;
|
|
2104
2184
|
this.updateValidation();
|
|
2105
2185
|
}
|
|
2186
|
+
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 }); }
|
|
2187
|
+
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: [
|
|
2188
|
+
{
|
|
2189
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2190
|
+
useExisting: SwitchValueAccessor,
|
|
2191
|
+
multi: true,
|
|
2192
|
+
},
|
|
2193
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2106
2194
|
}
|
|
2107
|
-
|
|
2108
|
-
SwitchValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: SwitchValueAccessor, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2109
|
-
{
|
|
2110
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2111
|
-
useExisting: SwitchValueAccessor,
|
|
2112
|
-
multi: true,
|
|
2113
|
-
},
|
|
2114
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2116
2196
|
type: Directive,
|
|
2117
2197
|
args: [{
|
|
2118
2198
|
selector: 'six-switch',
|
|
@@ -2136,16 +2216,16 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2136
2216
|
handleChangeEvent(el) {
|
|
2137
2217
|
this.handleValueChange(el, el.value);
|
|
2138
2218
|
}
|
|
2219
|
+
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 }); }
|
|
2220
|
+
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: [
|
|
2221
|
+
{
|
|
2222
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2223
|
+
useExisting: TimepickerValueAccessor,
|
|
2224
|
+
multi: true,
|
|
2225
|
+
},
|
|
2226
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2139
2227
|
}
|
|
2140
|
-
|
|
2141
|
-
TimepickerValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: TimepickerValueAccessor, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2142
|
-
{
|
|
2143
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2144
|
-
useExisting: TimepickerValueAccessor,
|
|
2145
|
-
multi: true,
|
|
2146
|
-
},
|
|
2147
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2149
2229
|
type: Directive,
|
|
2150
2230
|
args: [{
|
|
2151
2231
|
selector: 'six-timepicker',
|
|
@@ -2162,6 +2242,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2162
2242
|
args: ['change', ['$event.target']]
|
|
2163
2243
|
}] } });
|
|
2164
2244
|
|
|
2245
|
+
/**
|
|
2246
|
+
* Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
|
|
2247
|
+
*/
|
|
2248
|
+
class SixRouterLinkDirective {
|
|
2249
|
+
constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
|
|
2250
|
+
this.locationStrategy = locationStrategy;
|
|
2251
|
+
this.elementRef = elementRef;
|
|
2252
|
+
this.router = router;
|
|
2253
|
+
this.renderer = renderer;
|
|
2254
|
+
this.routerLinkDirective = routerLinkDirective;
|
|
2255
|
+
}
|
|
2256
|
+
onClick(event) {
|
|
2257
|
+
// Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
|
|
2258
|
+
event.preventDefault();
|
|
2259
|
+
}
|
|
2260
|
+
ngOnInit() {
|
|
2261
|
+
this.updateTargetUrlAndHref();
|
|
2262
|
+
}
|
|
2263
|
+
ngOnChanges() {
|
|
2264
|
+
this.updateTargetUrlAndHref();
|
|
2265
|
+
}
|
|
2266
|
+
updateTargetUrlAndHref() {
|
|
2267
|
+
if (this.routerLinkDirective?.urlTree) {
|
|
2268
|
+
const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
|
|
2269
|
+
this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
|
|
2270
|
+
// Remove the `tabindex` attribute to prevent redundant focus behavior.
|
|
2271
|
+
// Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
|
|
2272
|
+
// but custom components like `six-button` already handle focusability.
|
|
2273
|
+
// Keeping the tabindex would cause the element to receive focus twice.
|
|
2274
|
+
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2275
|
+
}
|
|
2276
|
+
}
|
|
2277
|
+
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 }); }
|
|
2278
|
+
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],six-icon-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
2279
|
+
}
|
|
2280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2281
|
+
type: Directive,
|
|
2282
|
+
args: [{
|
|
2283
|
+
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
2284
|
+
}]
|
|
2285
|
+
}], ctorParameters: function () { return [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2286
|
+
type: Optional
|
|
2287
|
+
}] }]; }, propDecorators: { onClick: [{
|
|
2288
|
+
type: HostListener,
|
|
2289
|
+
args: ['click', ['$event']]
|
|
2290
|
+
}], routerLink: [{
|
|
2291
|
+
type: Input
|
|
2292
|
+
}], queryParams: [{
|
|
2293
|
+
type: Input
|
|
2294
|
+
}], fragment: [{
|
|
2295
|
+
type: Input
|
|
2296
|
+
}], queryParamsHandling: [{
|
|
2297
|
+
type: Input
|
|
2298
|
+
}], relativeTo: [{
|
|
2299
|
+
type: Input
|
|
2300
|
+
}] } });
|
|
2301
|
+
|
|
2165
2302
|
class UiLibraryAngularModule {
|
|
2166
2303
|
static forRoot(customValidationMessagesService) {
|
|
2167
2304
|
return {
|
|
@@ -2176,49 +2313,53 @@ class UiLibraryAngularModule {
|
|
|
2176
2313
|
],
|
|
2177
2314
|
};
|
|
2178
2315
|
}
|
|
2316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2317
|
+
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, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2318
|
+
// value accessors
|
|
2319
|
+
TextValueAccessor,
|
|
2320
|
+
NumericValueAccessor,
|
|
2321
|
+
RadioValueAccessor,
|
|
2322
|
+
DatepickerValueAccessor,
|
|
2323
|
+
TimepickerValueAccessor,
|
|
2324
|
+
SelectValueAccessor,
|
|
2325
|
+
CheckboxValueAccessor,
|
|
2326
|
+
SwitchValueAccessor,
|
|
2327
|
+
RangeValueAccessor,
|
|
2328
|
+
// validators
|
|
2329
|
+
MinValidator,
|
|
2330
|
+
MaxValidator,
|
|
2331
|
+
MinDateValidator,
|
|
2332
|
+
MaxDateValidator,
|
|
2333
|
+
AllowedDatesValidator,
|
|
2334
|
+
// form helpers
|
|
2335
|
+
SixFormDirective,
|
|
2336
|
+
SixFormUtilDirective,
|
|
2337
|
+
// router link directive
|
|
2338
|
+
SixRouterLinkDirective], exports: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2339
|
+
// value accessors
|
|
2340
|
+
TextValueAccessor,
|
|
2341
|
+
NumericValueAccessor,
|
|
2342
|
+
RadioValueAccessor,
|
|
2343
|
+
DatepickerValueAccessor,
|
|
2344
|
+
TimepickerValueAccessor,
|
|
2345
|
+
SelectValueAccessor,
|
|
2346
|
+
CheckboxValueAccessor,
|
|
2347
|
+
SwitchValueAccessor,
|
|
2348
|
+
RangeValueAccessor,
|
|
2349
|
+
// validators
|
|
2350
|
+
MinValidator,
|
|
2351
|
+
MaxValidator,
|
|
2352
|
+
MinDateValidator,
|
|
2353
|
+
MaxDateValidator,
|
|
2354
|
+
AllowedDatesValidator,
|
|
2355
|
+
// form helpers
|
|
2356
|
+
SixFormDirective,
|
|
2357
|
+
SixFormUtilDirective,
|
|
2358
|
+
// router link directive
|
|
2359
|
+
SixRouterLinkDirective] }); }
|
|
2360
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule }); }
|
|
2179
2361
|
}
|
|
2180
|
-
|
|
2181
|
-
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, 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,
|
|
2182
|
-
// value accessors
|
|
2183
|
-
TextValueAccessor,
|
|
2184
|
-
NumericValueAccessor,
|
|
2185
|
-
RadioValueAccessor,
|
|
2186
|
-
DatepickerValueAccessor,
|
|
2187
|
-
TimepickerValueAccessor,
|
|
2188
|
-
SelectValueAccessor,
|
|
2189
|
-
CheckboxValueAccessor,
|
|
2190
|
-
SwitchValueAccessor,
|
|
2191
|
-
RangeValueAccessor,
|
|
2192
|
-
// validators
|
|
2193
|
-
MinValidator,
|
|
2194
|
-
MaxValidator,
|
|
2195
|
-
MinDateValidator,
|
|
2196
|
-
MaxDateValidator,
|
|
2197
|
-
AllowedDatesValidator,
|
|
2198
|
-
// form helpers
|
|
2199
|
-
SixFormDirective,
|
|
2200
|
-
SixFormUtilDirective], exports: [SetAttributes, 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,
|
|
2201
|
-
// value accessors
|
|
2202
|
-
TextValueAccessor,
|
|
2203
|
-
NumericValueAccessor,
|
|
2204
|
-
RadioValueAccessor,
|
|
2205
|
-
DatepickerValueAccessor,
|
|
2206
|
-
TimepickerValueAccessor,
|
|
2207
|
-
SelectValueAccessor,
|
|
2208
|
-
CheckboxValueAccessor,
|
|
2209
|
-
SwitchValueAccessor,
|
|
2210
|
-
RangeValueAccessor,
|
|
2211
|
-
// validators
|
|
2212
|
-
MinValidator,
|
|
2213
|
-
MaxValidator,
|
|
2214
|
-
MinDateValidator,
|
|
2215
|
-
MaxDateValidator,
|
|
2216
|
-
AllowedDatesValidator,
|
|
2217
|
-
// form helpers
|
|
2218
|
-
SixFormDirective,
|
|
2219
|
-
SixFormUtilDirective] });
|
|
2220
|
-
UiLibraryAngularModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule });
|
|
2221
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2222
2363
|
type: NgModule,
|
|
2223
2364
|
args: [{
|
|
2224
2365
|
declarations: [
|
|
@@ -2243,6 +2384,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2243
2384
|
// form helpers
|
|
2244
2385
|
SixFormDirective,
|
|
2245
2386
|
SixFormUtilDirective,
|
|
2387
|
+
// router link directive
|
|
2388
|
+
SixRouterLinkDirective,
|
|
2246
2389
|
],
|
|
2247
2390
|
imports: [],
|
|
2248
2391
|
exports: [
|
|
@@ -2267,10 +2410,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2267
2410
|
// form helpers
|
|
2268
2411
|
SixFormDirective,
|
|
2269
2412
|
SixFormUtilDirective,
|
|
2413
|
+
// router link directive
|
|
2414
|
+
SixRouterLinkDirective,
|
|
2270
2415
|
],
|
|
2271
2416
|
}]
|
|
2272
2417
|
}] });
|
|
2273
2418
|
|
|
2419
|
+
class AlertService {
|
|
2420
|
+
constructor() {
|
|
2421
|
+
this.ngZone = inject(NgZone);
|
|
2422
|
+
}
|
|
2423
|
+
/**
|
|
2424
|
+
* Displays an alert as a toast notification.
|
|
2425
|
+
*/
|
|
2426
|
+
showAlert(message, alertType, duration, iconName) {
|
|
2427
|
+
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2428
|
+
}
|
|
2429
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2430
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, providedIn: 'root' }); }
|
|
2431
|
+
}
|
|
2432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, decorators: [{
|
|
2433
|
+
type: Injectable,
|
|
2434
|
+
args: [{ providedIn: 'root' }]
|
|
2435
|
+
}] });
|
|
2436
|
+
|
|
2274
2437
|
/*
|
|
2275
2438
|
* Public API Surface of ui-library-angular
|
|
2276
2439
|
*/
|
|
@@ -2279,5 +2442,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2279
2442
|
* Generated bundle index. Do not edit.
|
|
2280
2443
|
*/
|
|
2281
2444
|
|
|
2282
|
-
export { AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor,
|
|
2445
|
+
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, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
|
|
2283
2446
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|