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