@six-group/ui-library-angular 0.0.0-insider.daba936 → 0.0.0-insider.db70896
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 +1480 -410
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/package.json +20 -12
- package/types/six-group-ui-library-angular.d.ts +1404 -0
- package/esm2022/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
- package/esm2022/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
- package/esm2022/lib/control-value-accessors/radio-value-accessor.mjs +0 -62
- package/esm2022/lib/control-value-accessors/range-value-accessor.mjs +0 -42
- package/esm2022/lib/control-value-accessors/select-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
- package/esm2022/lib/control-value-accessors/text-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
- package/esm2022/lib/control-value-accessors/value-accessor.mjs +0 -138
- package/esm2022/lib/form/six-form.directive.mjs +0 -134
- package/esm2022/lib/link/six-router-link.directive.mjs +0 -56
- package/esm2022/lib/services/alert.service.mjs +0 -21
- package/esm2022/lib/services/validation-messages.service.mjs +0 -15
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +0 -59
- package/esm2022/lib/stencil-generated/components.mjs +0 -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 -28
- 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/alert.service.d.ts +0 -11
- 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 -18
|
@@ -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
|
|
7
|
+
import { Validators, NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS } from '@angular/forms';
|
|
8
8
|
import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
|
|
9
9
|
import * as i1$1 from '@angular/common';
|
|
10
10
|
import * as i2 from '@angular/router';
|
|
11
|
+
import { RouterLinkActive } from '@angular/router';
|
|
11
12
|
|
|
12
13
|
/* eslint-disable */
|
|
13
14
|
/* tslint:disable */
|
|
@@ -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.2.6", ngImport: i0, type: SixAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
84
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixAlert, isStandalone: false, selector: "six-alert", inputs: { closable: "closable", duration: "duration", open: "open", type: "type" }, outputs: { sixAlertShow: "sixAlertShow", sixAlertAfterShow: "sixAlertAfterShow", sixAlertHide: "sixAlertHide", sixAlertAfterHide: "sixAlertAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixAvatar, isStandalone: false, selector: "six-avatar", inputs: { alt: "alt", image: "image", initials: "initials", shape: "shape" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
148
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixBadge, isStandalone: false, selector: "six-badge", inputs: { pill: "pill", pulse: "pulse", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
175
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixBreadcrumbs, isStandalone: false, selector: "six-breadcrumbs", inputs: { separatorIcon: "separatorIcon", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
176
|
+
};
|
|
177
|
+
SixBreadcrumbs = __decorate([
|
|
178
|
+
ProxyCmp({
|
|
179
|
+
inputs: ['separatorIcon', 'size']
|
|
180
|
+
})
|
|
181
|
+
], SixBreadcrumbs);
|
|
182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBreadcrumbs, decorators: [{
|
|
183
|
+
type: Component,
|
|
184
|
+
args: [{
|
|
185
|
+
selector: 'six-breadcrumbs',
|
|
186
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
187
|
+
template: '<ng-content></ng-content>',
|
|
188
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
189
|
+
inputs: ['separatorIcon', 'size'],
|
|
190
|
+
standalone: false
|
|
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.2.6", ngImport: i0, type: SixBreadcrumbsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
202
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixBreadcrumbsItem, isStandalone: false, selector: "six-breadcrumbs-item", inputs: { href: "href", readonly: "readonly", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
203
|
+
};
|
|
204
|
+
SixBreadcrumbsItem = __decorate([
|
|
205
|
+
ProxyCmp({
|
|
206
|
+
inputs: ['href', 'readonly', 'target']
|
|
207
|
+
})
|
|
208
|
+
], SixBreadcrumbsItem);
|
|
209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixBreadcrumbsItem, decorators: [{
|
|
210
|
+
type: Component,
|
|
211
|
+
args: [{
|
|
212
|
+
selector: 'six-breadcrumbs-item',
|
|
213
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
214
|
+
template: '<ng-content></ng-content>',
|
|
215
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
216
|
+
inputs: ['href', 'readonly', 'target'],
|
|
217
|
+
standalone: false
|
|
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.2.6", ngImport: i0, type: SixButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
231
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixButton, isStandalone: false, selector: "six-button", inputs: { caret: "caret", circle: "circle", disabled: "disabled", download: "download", href: "href", loading: "loading", name: "name", pill: "pill", reset: "reset", size: "size", submit: "submit", target: "target", type: "type", value: "value" }, outputs: { sixButtonBlur: "sixButtonBlur", sixButtonFocus: "sixButtonFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
264
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixCard, isStandalone: false, selector: "six-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
292
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixCheckbox, isStandalone: false, selector: "six-checkbox", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", indeterminate: "indeterminate", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, outputs: { sixCheckboxBlur: "sixCheckboxBlur", sixCheckboxChange: "sixCheckboxChange", sixCheckboxFocus: "sixCheckboxFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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
|
|
310
|
+
}]
|
|
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.2.6", ngImport: i0, type: SixDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
329
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDate, isStandalone: false, selector: "six-date", inputs: { allowedDates: "allowedDates", clearable: "clearable", dateFormat: "dateFormat", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", language: "language", max: "max", min: "min", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", value: "value" }, outputs: { sixChange: "sixChange", sixBlur: "sixBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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
|
|
240
347
|
}]
|
|
241
|
-
}], ctorParameters:
|
|
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.2.6", ngImport: i0, type: SixDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
365
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDatepicker, isStandalone: false, selector: "six-datepicker", inputs: { allowedDates: "allowedDates", clearable: "clearable", closeOnSelect: "closeOnSelect", containingElement: "containingElement", dateFormat: "dateFormat", debounce: "debounce", defaultDate: "defaultDate", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", invalid: "invalid", label: "label", locale: "locale", max: "max", min: "min", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", size: "size", type: "type", value: "value" }, outputs: { sixDatepickerSelect: "sixDatepickerSelect", sixDatepickerClear: "sixDatepickerClear", sixDatepickerBlur: "sixDatepickerBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
404
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDetails, isStandalone: false, selector: "six-details", inputs: { disabled: "disabled", hasContent: "hasContent", inline: "inline", open: "open", selectableEmpty: "selectableEmpty", summary: "summary", summaryIcon: "summaryIcon", summaryIconSize: "summaryIconSize" }, outputs: { sixDetailsShow: "sixDetailsShow", sixDetailsAfterShow: "sixDetailsAfterShow", sixDetailsHide: "sixDetailsHide", sixDetailsAfterHide: "sixDetailsAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
447
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDialog, isStandalone: false, selector: "six-dialog", inputs: { label: "label", noHeader: "noHeader", open: "open" }, outputs: { sixDialogShow: "sixDialogShow", sixDialogAfterShow: "sixDialogAfterShow", sixDialogHide: "sixDialogHide", sixDialogAfterHide: "sixDialogAfterHide", sixDialogInitialFocus: "sixDialogInitialFocus", sixDialogRequestClose: "sixDialogRequestClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
494
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDrawer, isStandalone: false, selector: "six-drawer", inputs: { contained: "contained", label: "label", noHeader: "noHeader", open: "open", placement: "placement" }, outputs: { sixDrawerShow: "sixDrawerShow", sixDrawerAfterShow: "sixDrawerAfterShow", sixDrawerHide: "sixDrawerHide", sixDrawerAfterHide: "sixDrawerAfterHide", sixDrawerInitialFocus: "sixDrawerInitialFocus", sixDrawerRequestClose: "sixDrawerRequestClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
542
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixDropdown, isStandalone: false, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", disableTypeToSelect: "disableTypeToSelect", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", matchTriggerWidth: "matchTriggerWidth", noScroll: "noScroll", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, outputs: { sixDropdownShow: "sixDropdownShow", sixDropdownAfterShow: "sixDropdownAfterShow", sixDropdownHide: "sixDropdownHide", sixDropdownAfterHide: "sixDropdownAfterHide", sixDropdownAutoFilterFired: "sixDropdownAutoFilterFired", sixAsyncFilterFired: "sixAsyncFilterFired", sixDropdownScroll: "sixDropdownScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
355
543
|
};
|
|
356
544
|
SixDropdown = __decorate([
|
|
357
545
|
ProxyCmp({
|
|
358
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', '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.2.6", 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', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
557
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'disableTypeToSelect', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'noScroll', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
558
|
+
outputs: ['sixDropdownShow:six-dropdown-show', 'sixDropdownAfterShow:six-dropdown-after-show', 'sixDropdownHide:six-dropdown-hide', 'sixDropdownAfterHide:six-dropdown-after-hide', 'sixDropdownAutoFilterFired:six-dropdown-auto-filter-fired', 'sixAsyncFilterFired:six-async-filter-fired', 'sixDropdownScroll:six-dropdown-scroll'],
|
|
559
|
+
standalone: false
|
|
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.2.6", ngImport: i0, type: SixError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
585
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixError, isStandalone: false, selector: "six-error", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixErrorPage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
610
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixErrorPage, isStandalone: false, selector: "six-error-page", inputs: { customDescription: "customDescription", customIcon: "customIcon", customTitle: "customTitle", errorCode: "errorCode", language: "language" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixFileList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
637
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFileList, isStandalone: false, selector: "six-file-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixFileListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
664
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFileListItem, isStandalone: false, selector: "six-file-list-item", inputs: { date: "date", identifier: "identifier", name: "name", nodelete: "nodelete", nodownload: "nodownload", size: "size" }, outputs: { sixFileListItemDownload: "sixFileListItemDownload", sixFileListItemRemove: "sixFileListItemRemove" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
698
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFileUpload, isStandalone: false, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", errorText: "errorText", invalid: "invalid", label: "label", maxFileSize: "maxFileSize", multiple: "multiple", uploading: "uploading" }, outputs: { sixFileUploadSuccess: "sixFileUploadSuccess", sixFileUploadFailure: "sixFileUploadFailure" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
730
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixFooter, isStandalone: false, selector: "six-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixGroupLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
755
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixGroupLabel, isStandalone: false, selector: "six-group-label", inputs: { disabled: "disabled", helpText: "helpText", label: "label", required: "required", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", ngImport: i0, type: SixGroupLabel, decorators: [{
|
|
527
763
|
type: Component,
|
|
528
764
|
args: [{
|
|
529
765
|
selector: 'six-group-label',
|
|
@@ -531,99 +767,194 @@ 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.2.6", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
782
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeader, isStandalone: false, selector: "six-header", inputs: { openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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
|
|
798
|
+
}]
|
|
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.2.6", ngImport: i0, type: SixHeaderDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
809
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeaderDropdownItem, isStandalone: false, selector: "six-header-dropdown-item", inputs: { filter: "filter", filterPlaceholder: "filterPlaceholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
810
|
+
};
|
|
811
|
+
SixHeaderDropdownItem = __decorate([
|
|
812
|
+
ProxyCmp({
|
|
813
|
+
inputs: ['filter', 'filterPlaceholder']
|
|
814
|
+
})
|
|
815
|
+
], SixHeaderDropdownItem);
|
|
816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", 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.2.6", ngImport: i0, type: SixHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
836
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeaderItem, isStandalone: false, selector: "six-header-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
837
|
+
};
|
|
838
|
+
SixHeaderItem = __decorate([
|
|
839
|
+
ProxyCmp({
|
|
840
|
+
inputs: ['active']
|
|
841
|
+
})
|
|
842
|
+
], SixHeaderItem);
|
|
843
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", 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
|
|
560
852
|
}]
|
|
561
|
-
}], ctorParameters:
|
|
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.2.6", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
863
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixHeaderMenuButton, isStandalone: false, selector: "six-header-menu-button", inputs: { caret: "caret", disabled: "disabled", loading: "loading", reset: "reset", submit: "submit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixIcon, isStandalone: false, selector: "six-icon", inputs: { filled: "filled", 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.2.6", 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.2.6", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
917
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixIconButton, isStandalone: false, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", library: "library", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
594
918
|
};
|
|
595
919
|
SixIconButton = __decorate([
|
|
596
920
|
ProxyCmp({
|
|
597
|
-
inputs: ['disabled', 'html', 'label', 'name', 'size']
|
|
921
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'library', '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.2.6", 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', 'library', '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.2.6", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
949
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixInput, isStandalone: false, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", dropdownSearch: "dropdownSearch", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", line: "line", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", pill: "pill", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", spellcheck: "spellcheck", step: "step", togglePassword: "togglePassword", type: "type", value: "value" }, outputs: { sixInputChange: "sixInputChange", sixInputClear: "sixInputClear", sixInputInput: "sixInputInput", sixInputFocus: "sixInputFocus", sixInputBlur: "sixInputBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
619
950
|
};
|
|
620
951
|
SixInput = __decorate([
|
|
621
952
|
ProxyCmp({
|
|
622
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'],
|
|
623
|
-
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
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.2.6", ngImport: i0, type: SixInput, decorators: [{
|
|
627
958
|
type: Component,
|
|
628
959
|
args: [{
|
|
629
960
|
selector: 'six-input',
|
|
@@ -631,24 +962,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
631
962
|
template: '<ng-content></ng-content>',
|
|
632
963
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
633
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.2.6", ngImport: i0, type: SixItemPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
990
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixItemPicker, isStandalone: false, selector: "six-item-picker", inputs: { debounce: "debounce", interval: "interval", items: "items", max: "max", min: "min", padded: "padded", paddingChar: "paddingChar", paddingDirection: "paddingDirection", paddingLength: "paddingLength", roundtrip: "roundtrip", step: "step", timeout: "timeout", type: "type", value: "value" }, outputs: { sixItemPickerChange: "sixItemPickerChange", sixItemPickerChangeDebounced: "sixItemPickerChangeDebounced" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixLanguageSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1023
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixLanguageSwitcher, isStandalone: false, selector: "six-language-switcher", inputs: { languages: "languages", selected: "selected" }, outputs: { sixLanguageSwitcherChange: "sixLanguageSwitcherChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1053
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixLayoutGrid, isStandalone: false, selector: "six-layout-grid", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", 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.2.6", ngImport: i0, type: SixLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1080
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixLogo, isStandalone: false, selector: "six-logo", inputs: { brand: "brand" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1081
|
+
};
|
|
1082
|
+
SixLogo = __decorate([
|
|
1083
|
+
ProxyCmp({
|
|
1084
|
+
inputs: ['brand']
|
|
1085
|
+
})
|
|
1086
|
+
], SixLogo);
|
|
1087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", 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.2.6", ngImport: i0, type: SixMainContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1107
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMainContainer, isStandalone: false, selector: "six-main-container", inputs: { padded: "padded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", ngImport: i0, type: SixMainContainer, decorators: [{
|
|
725
1115
|
type: Component,
|
|
726
1116
|
args: [{
|
|
727
1117
|
selector: 'six-main-container',
|
|
@@ -729,17 +1119,20 @@ 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.2.6", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1135
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenu, isStandalone: false, selector: "six-menu", inputs: { disableKeyboardHandling: "disableKeyboardHandling", itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, outputs: { sixMenuItemSelected: "sixMenuItemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
743
1136
|
};
|
|
744
1137
|
SixMenu = __decorate([
|
|
745
1138
|
ProxyCmp({
|
|
@@ -747,7 +1140,7 @@ SixMenu = __decorate([
|
|
|
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.2.6", ngImport: i0, type: SixMenu, decorators: [{
|
|
751
1144
|
type: Component,
|
|
752
1145
|
args: [{
|
|
753
1146
|
selector: 'six-menu',
|
|
@@ -755,21 +1148,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
755
1148
|
template: '<ng-content></ng-content>',
|
|
756
1149
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
757
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.2.6", ngImport: i0, type: SixMenuDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenuDivider, isStandalone: false, selector: "six-menu-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", ngImport: i0, type: SixMenuDivider, decorators: [{
|
|
773
1172
|
type: Component,
|
|
774
1173
|
args: [{
|
|
775
1174
|
selector: 'six-menu-divider',
|
|
@@ -777,16 +1176,19 @@ 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.2.6", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1191
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenuItem, isStandalone: false, selector: "six-menu-item", inputs: { checkType: "checkType", checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
790
1192
|
};
|
|
791
1193
|
SixMenuItem = __decorate([
|
|
792
1194
|
ProxyCmp({
|
|
@@ -794,7 +1196,7 @@ SixMenuItem = __decorate([
|
|
|
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.2.6", ngImport: i0, type: SixMenuItem, decorators: [{
|
|
798
1200
|
type: Component,
|
|
799
1201
|
args: [{
|
|
800
1202
|
selector: 'six-menu-item',
|
|
@@ -802,21 +1204,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
802
1204
|
template: '<ng-content></ng-content>',
|
|
803
1205
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
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.2.6", ngImport: i0, type: SixMenuLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1219
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixMenuLabel, isStandalone: false, selector: "six-menu-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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.2.6", ngImport: i0, type: SixMenuLabel, decorators: [{
|
|
820
1225
|
type: Component,
|
|
821
1226
|
args: [{
|
|
822
1227
|
selector: 'six-menu-label',
|
|
@@ -824,23 +1229,60 @@ 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
|
|
1233
|
+
}]
|
|
1234
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1235
|
+
let SixPaginator = class SixPaginator {
|
|
1236
|
+
z;
|
|
1237
|
+
el;
|
|
1238
|
+
sixPaginatorResultsPerPageChanged = new EventEmitter();
|
|
1239
|
+
sixPaginatorPageChanged = new EventEmitter();
|
|
1240
|
+
constructor(c, r, z) {
|
|
1241
|
+
this.z = z;
|
|
1242
|
+
c.detach();
|
|
1243
|
+
this.el = r.nativeElement;
|
|
1244
|
+
}
|
|
1245
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPaginator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1246
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixPaginator, isStandalone: false, selector: "six-paginator", inputs: { clamp: "clamp", currentPage: "currentPage", disabled: "disabled", length: "length", resultsPerPage: "resultsPerPage", resultsPerPageOptions: "resultsPerPageOptions", totalPages: "totalPages", totalResults: "totalResults" }, outputs: { sixPaginatorResultsPerPageChanged: "sixPaginatorResultsPerPageChanged", sixPaginatorPageChanged: "sixPaginatorPageChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1247
|
+
};
|
|
1248
|
+
SixPaginator = __decorate([
|
|
1249
|
+
ProxyCmp({
|
|
1250
|
+
inputs: ['clamp', 'currentPage', 'disabled', 'length', 'resultsPerPage', 'resultsPerPageOptions', 'totalPages', 'totalResults']
|
|
1251
|
+
})
|
|
1252
|
+
], SixPaginator);
|
|
1253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPaginator, decorators: [{
|
|
1254
|
+
type: Component,
|
|
1255
|
+
args: [{
|
|
1256
|
+
selector: 'six-paginator',
|
|
1257
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1258
|
+
template: '<ng-content></ng-content>',
|
|
1259
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1260
|
+
inputs: ['clamp', 'currentPage', 'disabled', 'length', 'resultsPerPage', 'resultsPerPageOptions', { name: 'totalPages', required: true }, { name: 'totalResults', required: true }],
|
|
1261
|
+
outputs: ['sixPaginatorResultsPerPageChanged:six-paginator-results-per-page-changed', 'sixPaginatorPageChanged:six-paginator-page-changed'],
|
|
1262
|
+
standalone: false
|
|
827
1263
|
}]
|
|
828
|
-
}], ctorParameters:
|
|
1264
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixPaginatorResultsPerPageChanged: [{
|
|
1265
|
+
type: Output
|
|
1266
|
+
}], sixPaginatorPageChanged: [{
|
|
1267
|
+
type: Output
|
|
1268
|
+
}] } });
|
|
829
1269
|
let SixPicto = class SixPicto {
|
|
1270
|
+
z;
|
|
1271
|
+
el;
|
|
830
1272
|
constructor(c, r, z) {
|
|
831
1273
|
this.z = z;
|
|
832
1274
|
c.detach();
|
|
833
1275
|
this.el = r.nativeElement;
|
|
834
1276
|
}
|
|
835
|
-
static
|
|
836
|
-
static
|
|
1277
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPicto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1278
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixPicto, isStandalone: false, selector: "six-picto", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
837
1279
|
};
|
|
838
1280
|
SixPicto = __decorate([
|
|
839
1281
|
ProxyCmp({
|
|
840
1282
|
inputs: ['size']
|
|
841
1283
|
})
|
|
842
1284
|
], SixPicto);
|
|
843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixPicto, decorators: [{
|
|
844
1286
|
type: Component,
|
|
845
1287
|
args: [{
|
|
846
1288
|
selector: 'six-picto',
|
|
@@ -848,23 +1290,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
848
1290
|
template: '<ng-content></ng-content>',
|
|
849
1291
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
850
1292
|
inputs: ['size'],
|
|
1293
|
+
standalone: false
|
|
851
1294
|
}]
|
|
852
|
-
}], ctorParameters:
|
|
1295
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
853
1296
|
let SixProgressBar = class SixProgressBar {
|
|
1297
|
+
z;
|
|
1298
|
+
el;
|
|
854
1299
|
constructor(c, r, z) {
|
|
855
1300
|
this.z = z;
|
|
856
1301
|
c.detach();
|
|
857
1302
|
this.el = r.nativeElement;
|
|
858
1303
|
}
|
|
859
|
-
static
|
|
860
|
-
static
|
|
1304
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1305
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixProgressBar, isStandalone: false, selector: "six-progress-bar", inputs: { indeterminate: "indeterminate", percentage: "percentage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
861
1306
|
};
|
|
862
1307
|
SixProgressBar = __decorate([
|
|
863
1308
|
ProxyCmp({
|
|
864
1309
|
inputs: ['indeterminate', 'percentage']
|
|
865
1310
|
})
|
|
866
1311
|
], SixProgressBar);
|
|
867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressBar, decorators: [{
|
|
868
1313
|
type: Component,
|
|
869
1314
|
args: [{
|
|
870
1315
|
selector: 'six-progress-bar',
|
|
@@ -872,23 +1317,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
872
1317
|
template: '<ng-content></ng-content>',
|
|
873
1318
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
874
1319
|
inputs: ['indeterminate', 'percentage'],
|
|
1320
|
+
standalone: false
|
|
875
1321
|
}]
|
|
876
|
-
}], ctorParameters:
|
|
1322
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
877
1323
|
let SixProgressRing = class SixProgressRing {
|
|
1324
|
+
z;
|
|
1325
|
+
el;
|
|
878
1326
|
constructor(c, r, z) {
|
|
879
1327
|
this.z = z;
|
|
880
1328
|
c.detach();
|
|
881
1329
|
this.el = r.nativeElement;
|
|
882
1330
|
}
|
|
883
|
-
static
|
|
884
|
-
static
|
|
1331
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressRing, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1332
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixProgressRing, isStandalone: false, selector: "six-progress-ring", inputs: { percentage: "percentage", size: "size", strokeWidth: "strokeWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
885
1333
|
};
|
|
886
1334
|
SixProgressRing = __decorate([
|
|
887
1335
|
ProxyCmp({
|
|
888
1336
|
inputs: ['percentage', 'size', 'strokeWidth']
|
|
889
1337
|
})
|
|
890
1338
|
], SixProgressRing);
|
|
891
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1339
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixProgressRing, decorators: [{
|
|
892
1340
|
type: Component,
|
|
893
1341
|
args: [{
|
|
894
1342
|
selector: 'six-progress-ring',
|
|
@@ -896,17 +1344,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
896
1344
|
template: '<ng-content></ng-content>',
|
|
897
1345
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
898
1346
|
inputs: ['percentage', 'size', 'strokeWidth'],
|
|
1347
|
+
standalone: false
|
|
899
1348
|
}]
|
|
900
|
-
}], ctorParameters:
|
|
1349
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
901
1350
|
let SixRadio = class SixRadio {
|
|
1351
|
+
z;
|
|
1352
|
+
el;
|
|
1353
|
+
sixRadioBlur = new EventEmitter();
|
|
1354
|
+
sixRadioChange = new EventEmitter();
|
|
1355
|
+
sixRadioFocus = new EventEmitter();
|
|
902
1356
|
constructor(c, r, z) {
|
|
903
1357
|
this.z = z;
|
|
904
1358
|
c.detach();
|
|
905
1359
|
this.el = r.nativeElement;
|
|
906
|
-
proxyOutputs(this, this.el, ['six-radio-blur', 'six-radio-change', 'six-radio-focus']);
|
|
907
1360
|
}
|
|
908
|
-
static
|
|
909
|
-
static
|
|
1361
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1362
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixRadio, isStandalone: false, selector: "six-radio", inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, outputs: { sixRadioBlur: "sixRadioBlur", sixRadioChange: "sixRadioChange", sixRadioFocus: "sixRadioFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
910
1363
|
};
|
|
911
1364
|
SixRadio = __decorate([
|
|
912
1365
|
ProxyCmp({
|
|
@@ -914,7 +1367,7 @@ SixRadio = __decorate([
|
|
|
914
1367
|
methods: ['setFocus', 'removeFocus']
|
|
915
1368
|
})
|
|
916
1369
|
], SixRadio);
|
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRadio, decorators: [{
|
|
918
1371
|
type: Component,
|
|
919
1372
|
args: [{
|
|
920
1373
|
selector: 'six-radio',
|
|
@@ -922,17 +1375,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
922
1375
|
template: '<ng-content></ng-content>',
|
|
923
1376
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
924
1377
|
inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
|
|
1378
|
+
outputs: ['sixRadioBlur:six-radio-blur', 'sixRadioChange:six-radio-change', 'sixRadioFocus:six-radio-focus'],
|
|
1379
|
+
standalone: false
|
|
925
1380
|
}]
|
|
926
|
-
}], ctorParameters:
|
|
1381
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRadioBlur: [{
|
|
1382
|
+
type: Output
|
|
1383
|
+
}], sixRadioChange: [{
|
|
1384
|
+
type: Output
|
|
1385
|
+
}], sixRadioFocus: [{
|
|
1386
|
+
type: Output
|
|
1387
|
+
}] } });
|
|
927
1388
|
let SixRange = class SixRange {
|
|
1389
|
+
z;
|
|
1390
|
+
el;
|
|
1391
|
+
sixRangeChange = new EventEmitter();
|
|
1392
|
+
sixRangeBlur = new EventEmitter();
|
|
1393
|
+
sixRangeFocus = new EventEmitter();
|
|
928
1394
|
constructor(c, r, z) {
|
|
929
1395
|
this.z = z;
|
|
930
1396
|
c.detach();
|
|
931
1397
|
this.el = r.nativeElement;
|
|
932
|
-
proxyOutputs(this, this.el, ['six-range-change', 'six-range-blur', 'six-range-focus']);
|
|
933
1398
|
}
|
|
934
|
-
static
|
|
935
|
-
static
|
|
1399
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1400
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixRange, isStandalone: false, selector: "six-range", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", min: "min", name: "name", required: "required", step: "step", tooltip: "tooltip", tooltipFormatter: "tooltipFormatter", value: "value" }, outputs: { sixRangeChange: "sixRangeChange", sixRangeBlur: "sixRangeBlur", sixRangeFocus: "sixRangeFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
936
1401
|
};
|
|
937
1402
|
SixRange = __decorate([
|
|
938
1403
|
ProxyCmp({
|
|
@@ -940,7 +1405,7 @@ SixRange = __decorate([
|
|
|
940
1405
|
methods: ['setFocus', 'removeFocus']
|
|
941
1406
|
})
|
|
942
1407
|
], SixRange);
|
|
943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRange, decorators: [{
|
|
944
1409
|
type: Component,
|
|
945
1410
|
args: [{
|
|
946
1411
|
selector: 'six-range',
|
|
@@ -948,49 +1413,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
948
1413
|
template: '<ng-content></ng-content>',
|
|
949
1414
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
950
1415
|
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'min', 'name', 'required', 'step', 'tooltip', 'tooltipFormatter', 'value'],
|
|
1416
|
+
outputs: ['sixRangeChange:six-range-change', 'sixRangeBlur:six-range-blur', 'sixRangeFocus:six-range-focus'],
|
|
1417
|
+
standalone: false
|
|
1418
|
+
}]
|
|
1419
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRangeChange: [{
|
|
1420
|
+
type: Output
|
|
1421
|
+
}], sixRangeBlur: [{
|
|
1422
|
+
type: Output
|
|
1423
|
+
}], sixRangeFocus: [{
|
|
1424
|
+
type: Output
|
|
1425
|
+
}] } });
|
|
1426
|
+
let SixRating = class SixRating {
|
|
1427
|
+
z;
|
|
1428
|
+
el;
|
|
1429
|
+
sixRatingBlur = new EventEmitter();
|
|
1430
|
+
sixRatingChange = new EventEmitter();
|
|
1431
|
+
sixRatingFocus = new EventEmitter();
|
|
1432
|
+
constructor(c, r, z) {
|
|
1433
|
+
this.z = z;
|
|
1434
|
+
c.detach();
|
|
1435
|
+
this.el = r.nativeElement;
|
|
1436
|
+
}
|
|
1437
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1438
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixRating, isStandalone: false, selector: "six-rating", inputs: { disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", invalid: "invalid", label: "label", max: "max", name: "name", readonly: "readonly", required: "required", size: "size", value: "value" }, outputs: { sixRatingBlur: "sixRatingBlur", sixRatingChange: "sixRatingChange", sixRatingFocus: "sixRatingFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1439
|
+
};
|
|
1440
|
+
SixRating = __decorate([
|
|
1441
|
+
ProxyCmp({
|
|
1442
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value']
|
|
1443
|
+
})
|
|
1444
|
+
], SixRating);
|
|
1445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRating, decorators: [{
|
|
1446
|
+
type: Component,
|
|
1447
|
+
args: [{
|
|
1448
|
+
selector: 'six-rating',
|
|
1449
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1450
|
+
template: '<ng-content></ng-content>',
|
|
1451
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1452
|
+
inputs: ['disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'max', 'name', 'readonly', 'required', 'size', 'value'],
|
|
1453
|
+
outputs: ['sixRatingBlur:six-rating-blur', 'sixRatingChange:six-rating-change', 'sixRatingFocus:six-rating-focus'],
|
|
1454
|
+
standalone: false
|
|
951
1455
|
}]
|
|
952
|
-
}], ctorParameters:
|
|
1456
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixRatingBlur: [{
|
|
1457
|
+
type: Output
|
|
1458
|
+
}], sixRatingChange: [{
|
|
1459
|
+
type: Output
|
|
1460
|
+
}], sixRatingFocus: [{
|
|
1461
|
+
type: Output
|
|
1462
|
+
}] } });
|
|
953
1463
|
let SixRoot = class SixRoot {
|
|
1464
|
+
z;
|
|
1465
|
+
el;
|
|
954
1466
|
constructor(c, r, z) {
|
|
955
1467
|
this.z = z;
|
|
956
1468
|
c.detach();
|
|
957
1469
|
this.el = r.nativeElement;
|
|
958
|
-
proxyOutputs(this, this.el, ['six-root-collapsed']);
|
|
959
1470
|
}
|
|
960
|
-
static
|
|
961
|
-
static
|
|
1471
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1472
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixRoot, isStandalone: false, selector: "six-root", inputs: { padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
962
1473
|
};
|
|
963
1474
|
SixRoot = __decorate([
|
|
964
1475
|
ProxyCmp({
|
|
965
|
-
inputs: ['
|
|
1476
|
+
inputs: ['padded', 'stage', 'version']
|
|
966
1477
|
})
|
|
967
1478
|
], SixRoot);
|
|
968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRoot, decorators: [{
|
|
969
1480
|
type: Component,
|
|
970
1481
|
args: [{
|
|
971
1482
|
selector: 'six-root',
|
|
972
1483
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
973
1484
|
template: '<ng-content></ng-content>',
|
|
974
1485
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
975
|
-
inputs: ['
|
|
1486
|
+
inputs: ['padded', 'stage', 'version'],
|
|
1487
|
+
standalone: false
|
|
976
1488
|
}]
|
|
977
|
-
}], ctorParameters:
|
|
1489
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
978
1490
|
let SixSearchField = class SixSearchField {
|
|
1491
|
+
z;
|
|
1492
|
+
el;
|
|
1493
|
+
sixSearchFieldChange = new EventEmitter();
|
|
979
1494
|
constructor(c, r, z) {
|
|
980
1495
|
this.z = z;
|
|
981
1496
|
c.detach();
|
|
982
1497
|
this.el = r.nativeElement;
|
|
983
|
-
proxyOutputs(this, this.el, ['six-search-field-change']);
|
|
984
1498
|
}
|
|
985
|
-
static
|
|
986
|
-
static
|
|
1499
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1500
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSearchField, isStandalone: false, selector: "six-search-field", inputs: { clearable: "clearable", debounce: "debounce", disabled: "disabled", placeholder: "placeholder", value: "value" }, outputs: { sixSearchFieldChange: "sixSearchFieldChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
987
1501
|
};
|
|
988
1502
|
SixSearchField = __decorate([
|
|
989
1503
|
ProxyCmp({
|
|
990
1504
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value']
|
|
991
1505
|
})
|
|
992
1506
|
], SixSearchField);
|
|
993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSearchField, decorators: [{
|
|
994
1508
|
type: Component,
|
|
995
1509
|
args: [{
|
|
996
1510
|
selector: 'six-search-field',
|
|
@@ -998,43 +1512,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
998
1512
|
template: '<ng-content></ng-content>',
|
|
999
1513
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1000
1514
|
inputs: ['clearable', 'debounce', 'disabled', 'placeholder', 'value'],
|
|
1515
|
+
outputs: ['sixSearchFieldChange:six-search-field-change'],
|
|
1516
|
+
standalone: false
|
|
1001
1517
|
}]
|
|
1002
|
-
}], ctorParameters:
|
|
1518
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSearchFieldChange: [{
|
|
1519
|
+
type: Output
|
|
1520
|
+
}] } });
|
|
1003
1521
|
let SixSelect = class SixSelect {
|
|
1522
|
+
z;
|
|
1523
|
+
el;
|
|
1524
|
+
sixSelectChange = new EventEmitter();
|
|
1525
|
+
sixSelectFocus = new EventEmitter();
|
|
1526
|
+
sixSelectBlur = new EventEmitter();
|
|
1004
1527
|
constructor(c, r, z) {
|
|
1005
1528
|
this.z = z;
|
|
1006
1529
|
c.detach();
|
|
1007
1530
|
this.el = r.nativeElement;
|
|
1008
|
-
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
1009
1531
|
}
|
|
1010
|
-
static
|
|
1011
|
-
static
|
|
1532
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1533
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSelect, isStandalone: false, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line", multiple: "multiple", name: "name", options: "options", pill: "pill", placeholder: "placeholder", required: "required", selectAllButton: "selectAllButton", selectAllText: "selectAllText", size: "size", value: "value", virtualScroll: "virtualScroll" }, outputs: { sixSelectChange: "sixSelectChange", sixSelectFocus: "sixSelectFocus", sixSelectBlur: "sixSelectBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1012
1534
|
};
|
|
1013
1535
|
SixSelect = __decorate([
|
|
1014
1536
|
ProxyCmp({
|
|
1015
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1537
|
+
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
1538
|
methods: ['setFocus']
|
|
1017
1539
|
})
|
|
1018
1540
|
], SixSelect);
|
|
1019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSelect, decorators: [{
|
|
1020
1542
|
type: Component,
|
|
1021
1543
|
args: [{
|
|
1022
1544
|
selector: 'six-select',
|
|
1023
1545
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1024
1546
|
template: '<ng-content></ng-content>',
|
|
1025
1547
|
// 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', '
|
|
1548
|
+
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
|
|
1549
|
+
outputs: ['sixSelectChange:six-select-change', 'sixSelectFocus:six-select-focus', 'sixSelectBlur:six-select-blur'],
|
|
1550
|
+
standalone: false
|
|
1027
1551
|
}]
|
|
1028
|
-
}], ctorParameters:
|
|
1552
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSelectChange: [{
|
|
1553
|
+
type: Output
|
|
1554
|
+
}], sixSelectFocus: [{
|
|
1555
|
+
type: Output
|
|
1556
|
+
}], sixSelectBlur: [{
|
|
1557
|
+
type: Output
|
|
1558
|
+
}] } });
|
|
1029
1559
|
let SixSidebar = class SixSidebar {
|
|
1560
|
+
z;
|
|
1561
|
+
el;
|
|
1562
|
+
sixSidebarShow = new EventEmitter();
|
|
1563
|
+
sixSidebarAfterShow = new EventEmitter();
|
|
1564
|
+
sixSidebarHide = new EventEmitter();
|
|
1565
|
+
sixSidebarAfterHide = new EventEmitter();
|
|
1566
|
+
sixSidebarInitialFocus = new EventEmitter();
|
|
1030
1567
|
constructor(c, r, z) {
|
|
1031
1568
|
this.z = z;
|
|
1032
1569
|
c.detach();
|
|
1033
1570
|
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
1571
|
}
|
|
1036
|
-
static
|
|
1037
|
-
static
|
|
1572
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1573
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSidebar, isStandalone: false, selector: "six-sidebar", inputs: { open: "open", position: "position", toggled: "toggled", width: "width" }, outputs: { sixSidebarShow: "sixSidebarShow", sixSidebarAfterShow: "sixSidebarAfterShow", sixSidebarHide: "sixSidebarHide", sixSidebarAfterHide: "sixSidebarAfterHide", sixSidebarInitialFocus: "sixSidebarInitialFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1038
1574
|
};
|
|
1039
1575
|
SixSidebar = __decorate([
|
|
1040
1576
|
ProxyCmp({
|
|
@@ -1042,7 +1578,7 @@ SixSidebar = __decorate([
|
|
|
1042
1578
|
methods: ['toggle', 'show', 'hide', 'selectItemByIndex', 'selectItemByName']
|
|
1043
1579
|
})
|
|
1044
1580
|
], SixSidebar);
|
|
1045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebar, decorators: [{
|
|
1046
1582
|
type: Component,
|
|
1047
1583
|
args: [{
|
|
1048
1584
|
selector: 'six-sidebar',
|
|
@@ -1050,47 +1586,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1050
1586
|
template: '<ng-content></ng-content>',
|
|
1051
1587
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1052
1588
|
inputs: ['open', 'position', 'toggled', 'width'],
|
|
1589
|
+
outputs: ['sixSidebarShow:six-sidebar-show', 'sixSidebarAfterShow:six-sidebar-after-show', 'sixSidebarHide:six-sidebar-hide', 'sixSidebarAfterHide:six-sidebar-after-hide', 'sixSidebarInitialFocus:six-sidebar-initial-focus'],
|
|
1590
|
+
standalone: false
|
|
1053
1591
|
}]
|
|
1054
|
-
}], ctorParameters:
|
|
1592
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSidebarShow: [{
|
|
1593
|
+
type: Output
|
|
1594
|
+
}], sixSidebarAfterShow: [{
|
|
1595
|
+
type: Output
|
|
1596
|
+
}], sixSidebarHide: [{
|
|
1597
|
+
type: Output
|
|
1598
|
+
}], sixSidebarAfterHide: [{
|
|
1599
|
+
type: Output
|
|
1600
|
+
}], sixSidebarInitialFocus: [{
|
|
1601
|
+
type: Output
|
|
1602
|
+
}] } });
|
|
1055
1603
|
let SixSidebarItem = class SixSidebarItem {
|
|
1604
|
+
z;
|
|
1605
|
+
el;
|
|
1056
1606
|
constructor(c, r, z) {
|
|
1057
1607
|
this.z = z;
|
|
1058
1608
|
c.detach();
|
|
1059
1609
|
this.el = r.nativeElement;
|
|
1060
1610
|
}
|
|
1061
|
-
static
|
|
1062
|
-
static
|
|
1611
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1612
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSidebarItem, isStandalone: false, selector: "six-sidebar-item", inputs: { disabled: "disabled", href: "href", icon: "icon", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1063
1613
|
};
|
|
1064
1614
|
SixSidebarItem = __decorate([
|
|
1065
1615
|
ProxyCmp({
|
|
1066
|
-
inputs: ['disabled', 'href', 'selected', 'value']
|
|
1616
|
+
inputs: ['disabled', 'href', 'icon', 'selected', 'value']
|
|
1067
1617
|
})
|
|
1068
1618
|
], SixSidebarItem);
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
1070
1620
|
type: Component,
|
|
1071
1621
|
args: [{
|
|
1072
1622
|
selector: 'six-sidebar-item',
|
|
1073
1623
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1074
1624
|
template: '<ng-content></ng-content>',
|
|
1075
1625
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1076
|
-
inputs: ['disabled', 'href', 'selected', 'value'],
|
|
1626
|
+
inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
|
|
1627
|
+
standalone: false
|
|
1077
1628
|
}]
|
|
1078
|
-
}], ctorParameters:
|
|
1629
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1079
1630
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
1631
|
+
z;
|
|
1632
|
+
el;
|
|
1080
1633
|
constructor(c, r, z) {
|
|
1081
1634
|
this.z = z;
|
|
1082
1635
|
c.detach();
|
|
1083
1636
|
this.el = r.nativeElement;
|
|
1084
1637
|
}
|
|
1085
|
-
static
|
|
1086
|
-
static
|
|
1638
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1639
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSidebarItemGroup, isStandalone: false, selector: "six-sidebar-item-group", inputs: { href: "href", icon: "icon", name: "name", open: "open", summaryIcon: "summaryIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1087
1640
|
};
|
|
1088
1641
|
SixSidebarItemGroup = __decorate([
|
|
1089
1642
|
ProxyCmp({
|
|
1090
1643
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value']
|
|
1091
1644
|
})
|
|
1092
1645
|
], SixSidebarItemGroup);
|
|
1093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSidebarItemGroup, decorators: [{
|
|
1094
1647
|
type: Component,
|
|
1095
1648
|
args: [{
|
|
1096
1649
|
selector: 'six-sidebar-item-group',
|
|
@@ -1098,47 +1651,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1098
1651
|
template: '<ng-content></ng-content>',
|
|
1099
1652
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1100
1653
|
inputs: ['href', 'icon', 'name', 'open', 'summaryIcon', 'value'],
|
|
1654
|
+
standalone: false
|
|
1101
1655
|
}]
|
|
1102
|
-
}], ctorParameters:
|
|
1656
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1103
1657
|
let SixSpinner = class SixSpinner {
|
|
1658
|
+
z;
|
|
1659
|
+
el;
|
|
1104
1660
|
constructor(c, r, z) {
|
|
1105
1661
|
this.z = z;
|
|
1106
1662
|
c.detach();
|
|
1107
1663
|
this.el = r.nativeElement;
|
|
1108
1664
|
}
|
|
1109
|
-
static
|
|
1110
|
-
static
|
|
1665
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1666
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSpinner, isStandalone: false, selector: "six-spinner", inputs: { logo: "logo", six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1111
1667
|
};
|
|
1112
1668
|
SixSpinner = __decorate([
|
|
1113
1669
|
ProxyCmp({
|
|
1114
|
-
inputs: ['six']
|
|
1670
|
+
inputs: ['logo', 'six']
|
|
1115
1671
|
})
|
|
1116
1672
|
], SixSpinner);
|
|
1117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSpinner, decorators: [{
|
|
1118
1674
|
type: Component,
|
|
1119
1675
|
args: [{
|
|
1120
1676
|
selector: 'six-spinner',
|
|
1121
1677
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1122
1678
|
template: '<ng-content></ng-content>',
|
|
1123
1679
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1124
|
-
inputs: ['six'],
|
|
1680
|
+
inputs: ['logo', 'six'],
|
|
1681
|
+
standalone: false
|
|
1125
1682
|
}]
|
|
1126
|
-
}], ctorParameters:
|
|
1683
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1127
1684
|
let SixStageIndicator = class SixStageIndicator {
|
|
1685
|
+
z;
|
|
1686
|
+
el;
|
|
1128
1687
|
constructor(c, r, z) {
|
|
1129
1688
|
this.z = z;
|
|
1130
1689
|
c.detach();
|
|
1131
1690
|
this.el = r.nativeElement;
|
|
1132
1691
|
}
|
|
1133
|
-
static
|
|
1134
|
-
static
|
|
1692
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixStageIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1693
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixStageIndicator, isStandalone: false, selector: "six-stage-indicator", inputs: { stage: "stage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1135
1694
|
};
|
|
1136
1695
|
SixStageIndicator = __decorate([
|
|
1137
1696
|
ProxyCmp({
|
|
1138
1697
|
inputs: ['stage']
|
|
1139
1698
|
})
|
|
1140
1699
|
], SixStageIndicator);
|
|
1141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixStageIndicator, decorators: [{
|
|
1142
1701
|
type: Component,
|
|
1143
1702
|
args: [{
|
|
1144
1703
|
selector: 'six-stage-indicator',
|
|
@@ -1146,17 +1705,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1146
1705
|
template: '<ng-content></ng-content>',
|
|
1147
1706
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1148
1707
|
inputs: ['stage'],
|
|
1708
|
+
standalone: false
|
|
1149
1709
|
}]
|
|
1150
|
-
}], ctorParameters:
|
|
1710
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1151
1711
|
let SixSwitch = class SixSwitch {
|
|
1712
|
+
z;
|
|
1713
|
+
el;
|
|
1714
|
+
sixSwitchBlur = new EventEmitter();
|
|
1715
|
+
sixSwitchChange = new EventEmitter();
|
|
1716
|
+
sixSwitchFocus = new EventEmitter();
|
|
1152
1717
|
constructor(c, r, z) {
|
|
1153
1718
|
this.z = z;
|
|
1154
1719
|
c.detach();
|
|
1155
1720
|
this.el = r.nativeElement;
|
|
1156
|
-
proxyOutputs(this, this.el, ['six-switch-blur', 'six-switch-change', 'six-switch-focus']);
|
|
1157
1721
|
}
|
|
1158
|
-
static
|
|
1159
|
-
static
|
|
1722
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1723
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixSwitch, isStandalone: false, selector: "six-switch", inputs: { checked: "checked", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", invalid: "invalid", label: "label", name: "name", required: "required", value: "value" }, outputs: { sixSwitchBlur: "sixSwitchBlur", sixSwitchChange: "sixSwitchChange", sixSwitchFocus: "sixSwitchFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1160
1724
|
};
|
|
1161
1725
|
SixSwitch = __decorate([
|
|
1162
1726
|
ProxyCmp({
|
|
@@ -1164,7 +1728,7 @@ SixSwitch = __decorate([
|
|
|
1164
1728
|
methods: ['setFocus', 'removeFocus']
|
|
1165
1729
|
})
|
|
1166
1730
|
], SixSwitch);
|
|
1167
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixSwitch, decorators: [{
|
|
1168
1732
|
type: Component,
|
|
1169
1733
|
args: [{
|
|
1170
1734
|
selector: 'six-switch',
|
|
@@ -1172,43 +1736,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1172
1736
|
template: '<ng-content></ng-content>',
|
|
1173
1737
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1174
1738
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'invalid', 'label', 'name', 'required', 'value'],
|
|
1739
|
+
outputs: ['sixSwitchBlur:six-switch-blur', 'sixSwitchChange:six-switch-change', 'sixSwitchFocus:six-switch-focus'],
|
|
1740
|
+
standalone: false
|
|
1175
1741
|
}]
|
|
1176
|
-
}], ctorParameters:
|
|
1742
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixSwitchBlur: [{
|
|
1743
|
+
type: Output
|
|
1744
|
+
}], sixSwitchChange: [{
|
|
1745
|
+
type: Output
|
|
1746
|
+
}], sixSwitchFocus: [{
|
|
1747
|
+
type: Output
|
|
1748
|
+
}] } });
|
|
1177
1749
|
let SixTab = class SixTab {
|
|
1750
|
+
z;
|
|
1751
|
+
el;
|
|
1752
|
+
sixTabClose = new EventEmitter();
|
|
1178
1753
|
constructor(c, r, z) {
|
|
1179
1754
|
this.z = z;
|
|
1180
1755
|
c.detach();
|
|
1181
1756
|
this.el = r.nativeElement;
|
|
1182
|
-
proxyOutputs(this, this.el, ['six-tab-close']);
|
|
1183
1757
|
}
|
|
1184
|
-
static
|
|
1185
|
-
static
|
|
1758
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1759
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTab, isStandalone: false, selector: "six-tab", inputs: { active: "active", closable: "closable", disabled: "disabled", hoverContent: "hoverContent", panel: "panel" }, outputs: { sixTabClose: "sixTabClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1186
1760
|
};
|
|
1187
1761
|
SixTab = __decorate([
|
|
1188
1762
|
ProxyCmp({
|
|
1189
|
-
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1763
|
+
inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
|
|
1190
1764
|
methods: ['setFocus', 'removeFocus']
|
|
1191
1765
|
})
|
|
1192
1766
|
], SixTab);
|
|
1193
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTab, decorators: [{
|
|
1194
1768
|
type: Component,
|
|
1195
1769
|
args: [{
|
|
1196
1770
|
selector: 'six-tab',
|
|
1197
1771
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1198
1772
|
template: '<ng-content></ng-content>',
|
|
1199
1773
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1200
|
-
inputs: ['active', 'closable', 'disabled', 'panel'],
|
|
1774
|
+
inputs: ['active', 'closable', 'disabled', 'hoverContent', 'panel'],
|
|
1775
|
+
outputs: ['sixTabClose:six-tab-close'],
|
|
1776
|
+
standalone: false
|
|
1201
1777
|
}]
|
|
1202
|
-
}], ctorParameters:
|
|
1778
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTabClose: [{
|
|
1779
|
+
type: Output
|
|
1780
|
+
}] } });
|
|
1203
1781
|
let SixTabGroup = class SixTabGroup {
|
|
1782
|
+
z;
|
|
1783
|
+
el;
|
|
1784
|
+
sixTabShow = new EventEmitter();
|
|
1785
|
+
sixTabHide = new EventEmitter();
|
|
1204
1786
|
constructor(c, r, z) {
|
|
1205
1787
|
this.z = z;
|
|
1206
1788
|
c.detach();
|
|
1207
1789
|
this.el = r.nativeElement;
|
|
1208
|
-
proxyOutputs(this, this.el, ['six-tab-show', 'six-tab-hide']);
|
|
1209
1790
|
}
|
|
1210
|
-
static
|
|
1211
|
-
static
|
|
1791
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1792
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTabGroup, isStandalone: false, selector: "six-tab-group", inputs: { noScrollControls: "noScrollControls", placement: "placement" }, outputs: { sixTabShow: "sixTabShow", sixTabHide: "sixTabHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1212
1793
|
};
|
|
1213
1794
|
SixTabGroup = __decorate([
|
|
1214
1795
|
ProxyCmp({
|
|
@@ -1216,7 +1797,7 @@ SixTabGroup = __decorate([
|
|
|
1216
1797
|
methods: ['show']
|
|
1217
1798
|
})
|
|
1218
1799
|
], SixTabGroup);
|
|
1219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabGroup, decorators: [{
|
|
1220
1801
|
type: Component,
|
|
1221
1802
|
args: [{
|
|
1222
1803
|
selector: 'six-tab-group',
|
|
@@ -1224,23 +1805,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1224
1805
|
template: '<ng-content></ng-content>',
|
|
1225
1806
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1226
1807
|
inputs: ['noScrollControls', 'placement'],
|
|
1808
|
+
outputs: ['sixTabShow:six-tab-show', 'sixTabHide:six-tab-hide'],
|
|
1809
|
+
standalone: false
|
|
1227
1810
|
}]
|
|
1228
|
-
}], ctorParameters:
|
|
1811
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTabShow: [{
|
|
1812
|
+
type: Output
|
|
1813
|
+
}], sixTabHide: [{
|
|
1814
|
+
type: Output
|
|
1815
|
+
}] } });
|
|
1229
1816
|
let SixTabPanel = class SixTabPanel {
|
|
1817
|
+
z;
|
|
1818
|
+
el;
|
|
1230
1819
|
constructor(c, r, z) {
|
|
1231
1820
|
this.z = z;
|
|
1232
1821
|
c.detach();
|
|
1233
1822
|
this.el = r.nativeElement;
|
|
1234
1823
|
}
|
|
1235
|
-
static
|
|
1236
|
-
static
|
|
1824
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1825
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTabPanel, isStandalone: false, selector: "six-tab-panel", inputs: { active: "active", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1237
1826
|
};
|
|
1238
1827
|
SixTabPanel = __decorate([
|
|
1239
1828
|
ProxyCmp({
|
|
1240
1829
|
inputs: ['active', 'name']
|
|
1241
1830
|
})
|
|
1242
1831
|
], SixTabPanel);
|
|
1243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1832
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTabPanel, decorators: [{
|
|
1244
1833
|
type: Component,
|
|
1245
1834
|
args: [{
|
|
1246
1835
|
selector: 'six-tab-panel',
|
|
@@ -1248,24 +1837,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1248
1837
|
template: '<ng-content></ng-content>',
|
|
1249
1838
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1250
1839
|
inputs: ['active', 'name'],
|
|
1840
|
+
standalone: false
|
|
1251
1841
|
}]
|
|
1252
|
-
}], ctorParameters:
|
|
1842
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1253
1843
|
let SixTag = class SixTag {
|
|
1844
|
+
z;
|
|
1845
|
+
el;
|
|
1846
|
+
sixTagClear = new EventEmitter();
|
|
1254
1847
|
constructor(c, r, z) {
|
|
1255
1848
|
this.z = z;
|
|
1256
1849
|
c.detach();
|
|
1257
1850
|
this.el = r.nativeElement;
|
|
1258
|
-
proxyOutputs(this, this.el, ['six-tag-clear']);
|
|
1259
1851
|
}
|
|
1260
|
-
static
|
|
1261
|
-
static
|
|
1852
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1853
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTag, isStandalone: false, selector: "six-tag", inputs: { clearable: "clearable", pill: "pill", size: "size", type: "type" }, outputs: { sixTagClear: "sixTagClear" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1262
1854
|
};
|
|
1263
1855
|
SixTag = __decorate([
|
|
1264
1856
|
ProxyCmp({
|
|
1265
1857
|
inputs: ['clearable', 'pill', 'size', 'type']
|
|
1266
1858
|
})
|
|
1267
1859
|
], SixTag);
|
|
1268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTag, decorators: [{
|
|
1269
1861
|
type: Component,
|
|
1270
1862
|
args: [{
|
|
1271
1863
|
selector: 'six-tag',
|
|
@@ -1273,17 +1865,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1273
1865
|
template: '<ng-content></ng-content>',
|
|
1274
1866
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1275
1867
|
inputs: ['clearable', 'pill', 'size', 'type'],
|
|
1868
|
+
outputs: ['sixTagClear:six-tag-clear'],
|
|
1869
|
+
standalone: false
|
|
1276
1870
|
}]
|
|
1277
|
-
}], ctorParameters:
|
|
1871
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTagClear: [{
|
|
1872
|
+
type: Output
|
|
1873
|
+
}] } });
|
|
1278
1874
|
let SixTextarea = class SixTextarea {
|
|
1875
|
+
z;
|
|
1876
|
+
el;
|
|
1877
|
+
sixTextareaChange = new EventEmitter();
|
|
1878
|
+
sixTextareaInput = new EventEmitter();
|
|
1879
|
+
sixTextareaFocus = new EventEmitter();
|
|
1880
|
+
sixTextareaBlur = new EventEmitter();
|
|
1279
1881
|
constructor(c, r, z) {
|
|
1280
1882
|
this.z = z;
|
|
1281
1883
|
c.detach();
|
|
1282
1884
|
this.el = r.nativeElement;
|
|
1283
|
-
proxyOutputs(this, this.el, ['six-textarea-change', 'six-textarea-input', 'six-textarea-focus', 'six-textarea-blur']);
|
|
1284
1885
|
}
|
|
1285
|
-
static
|
|
1286
|
-
static
|
|
1886
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1887
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTextarea, isStandalone: false, selector: "six-textarea", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", maxlength: "maxlength", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", size: "size", spellcheck: "spellcheck", value: "value" }, outputs: { sixTextareaChange: "sixTextareaChange", sixTextareaInput: "sixTextareaInput", sixTextareaFocus: "sixTextareaFocus", sixTextareaBlur: "sixTextareaBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1287
1888
|
};
|
|
1288
1889
|
SixTextarea = __decorate([
|
|
1289
1890
|
ProxyCmp({
|
|
@@ -1291,7 +1892,7 @@ SixTextarea = __decorate([
|
|
|
1291
1892
|
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
1292
1893
|
})
|
|
1293
1894
|
], SixTextarea);
|
|
1294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTextarea, decorators: [{
|
|
1295
1896
|
type: Component,
|
|
1296
1897
|
args: [{
|
|
1297
1898
|
selector: 'six-textarea',
|
|
@@ -1299,43 +1900,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1299
1900
|
template: '<ng-content></ng-content>',
|
|
1300
1901
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1301
1902
|
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'maxlength', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'spellcheck', 'value'],
|
|
1903
|
+
outputs: ['sixTextareaChange:six-textarea-change', 'sixTextareaInput:six-textarea-input', 'sixTextareaFocus:six-textarea-focus', 'sixTextareaBlur:six-textarea-blur'],
|
|
1904
|
+
standalone: false
|
|
1302
1905
|
}]
|
|
1303
|
-
}], ctorParameters:
|
|
1906
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTextareaChange: [{
|
|
1907
|
+
type: Output
|
|
1908
|
+
}], sixTextareaInput: [{
|
|
1909
|
+
type: Output
|
|
1910
|
+
}], sixTextareaFocus: [{
|
|
1911
|
+
type: Output
|
|
1912
|
+
}], sixTextareaBlur: [{
|
|
1913
|
+
type: Output
|
|
1914
|
+
}] } });
|
|
1304
1915
|
let SixTile = class SixTile {
|
|
1916
|
+
z;
|
|
1917
|
+
el;
|
|
1918
|
+
sixTileClosed = new EventEmitter();
|
|
1919
|
+
sixTileSelected = new EventEmitter();
|
|
1305
1920
|
constructor(c, r, z) {
|
|
1306
1921
|
this.z = z;
|
|
1307
1922
|
c.detach();
|
|
1308
1923
|
this.el = r.nativeElement;
|
|
1309
|
-
proxyOutputs(this, this.el, ['six-tile-closed', 'six-tile-selected']);
|
|
1310
1924
|
}
|
|
1311
|
-
static
|
|
1312
|
-
static
|
|
1925
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1926
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTile, isStandalone: false, selector: "six-tile", inputs: { closeable: "closeable", disableTooltip: "disableTooltip", disabled: "disabled", elevated: "elevated", iconName: "iconName", label: "label", library: "library", size: "size" }, outputs: { sixTileClosed: "sixTileClosed", sixTileSelected: "sixTileSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1313
1927
|
};
|
|
1314
1928
|
SixTile = __decorate([
|
|
1315
1929
|
ProxyCmp({
|
|
1316
|
-
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1930
|
+
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'library', 'size'],
|
|
1317
1931
|
methods: ['hide', 'show']
|
|
1318
1932
|
})
|
|
1319
1933
|
], SixTile);
|
|
1320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1934
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTile, decorators: [{
|
|
1321
1935
|
type: Component,
|
|
1322
1936
|
args: [{
|
|
1323
1937
|
selector: 'six-tile',
|
|
1324
1938
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1325
1939
|
template: '<ng-content></ng-content>',
|
|
1326
1940
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1327
|
-
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'size'],
|
|
1941
|
+
inputs: ['closeable', 'disableTooltip', 'disabled', 'elevated', 'iconName', 'label', 'library', 'size'],
|
|
1942
|
+
outputs: ['sixTileClosed:six-tile-closed', 'sixTileSelected:six-tile-selected'],
|
|
1943
|
+
standalone: false
|
|
1328
1944
|
}]
|
|
1329
|
-
}], ctorParameters:
|
|
1945
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTileClosed: [{
|
|
1946
|
+
type: Output
|
|
1947
|
+
}], sixTileSelected: [{
|
|
1948
|
+
type: Output
|
|
1949
|
+
}] } });
|
|
1330
1950
|
let SixTimepicker = class SixTimepicker {
|
|
1951
|
+
z;
|
|
1952
|
+
el;
|
|
1953
|
+
sixTimepickerChange = new EventEmitter();
|
|
1954
|
+
sixTimepickerChangeDebounced = new EventEmitter();
|
|
1955
|
+
sixTimepickerClear = new EventEmitter();
|
|
1331
1956
|
constructor(c, r, z) {
|
|
1332
1957
|
this.z = z;
|
|
1333
1958
|
c.detach();
|
|
1334
1959
|
this.el = r.nativeElement;
|
|
1335
|
-
proxyOutputs(this, this.el, ['six-timepicker-change', 'six-timepicker-change-debounced', 'six-timepicker-clear']);
|
|
1336
1960
|
}
|
|
1337
|
-
static
|
|
1338
|
-
static
|
|
1961
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1962
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTimepicker, isStandalone: false, selector: "six-timepicker", inputs: { clearable: "clearable", debounce: "debounce", defaultTime: "defaultTime", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", format: "format", hoist: "hoist", iconPosition: "iconPosition", inline: "inline", interval: "interval", invalid: "invalid", label: "label", name: "name", open: "open", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", separator: "separator", size: "size", timeout: "timeout", value: "value" }, outputs: { sixTimepickerChange: "sixTimepickerChange", sixTimepickerChangeDebounced: "sixTimepickerChangeDebounced", sixTimepickerClear: "sixTimepickerClear" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1339
1963
|
};
|
|
1340
1964
|
SixTimepicker = __decorate([
|
|
1341
1965
|
ProxyCmp({
|
|
@@ -1343,7 +1967,7 @@ SixTimepicker = __decorate([
|
|
|
1343
1967
|
methods: ['setFocus']
|
|
1344
1968
|
})
|
|
1345
1969
|
], SixTimepicker);
|
|
1346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTimepicker, decorators: [{
|
|
1347
1971
|
type: Component,
|
|
1348
1972
|
args: [{
|
|
1349
1973
|
selector: 'six-timepicker',
|
|
@@ -1351,17 +1975,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1351
1975
|
template: '<ng-content></ng-content>',
|
|
1352
1976
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1353
1977
|
inputs: ['clearable', 'debounce', 'defaultTime', 'disabled', 'errorText', 'errorTextCount', 'format', 'hoist', 'iconPosition', 'inline', 'interval', 'invalid', 'label', 'name', 'open', 'placeholder', 'placement', 'readonly', 'required', 'separator', 'size', 'timeout', 'value'],
|
|
1978
|
+
outputs: ['sixTimepickerChange:six-timepicker-change', 'sixTimepickerChangeDebounced:six-timepicker-change-debounced', 'sixTimepickerClear:six-timepicker-clear'],
|
|
1979
|
+
standalone: false
|
|
1354
1980
|
}]
|
|
1355
|
-
}], ctorParameters:
|
|
1981
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTimepickerChange: [{
|
|
1982
|
+
type: Output
|
|
1983
|
+
}], sixTimepickerChangeDebounced: [{
|
|
1984
|
+
type: Output
|
|
1985
|
+
}], sixTimepickerClear: [{
|
|
1986
|
+
type: Output
|
|
1987
|
+
}] } });
|
|
1356
1988
|
let SixTooltip = class SixTooltip {
|
|
1989
|
+
z;
|
|
1990
|
+
el;
|
|
1991
|
+
sixTooltipShow = new EventEmitter();
|
|
1992
|
+
sixTooltipAfterShow = new EventEmitter();
|
|
1993
|
+
sixTooltipHide = new EventEmitter();
|
|
1994
|
+
sixTooltipAfterHide = new EventEmitter();
|
|
1357
1995
|
constructor(c, r, z) {
|
|
1358
1996
|
this.z = z;
|
|
1359
1997
|
c.detach();
|
|
1360
1998
|
this.el = r.nativeElement;
|
|
1361
|
-
proxyOutputs(this, this.el, ['six-tooltip-show', 'six-tooltip-after-show', 'six-tooltip-hide', 'six-tooltip-after-hide']);
|
|
1362
1999
|
}
|
|
1363
|
-
static
|
|
1364
|
-
static
|
|
2000
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2001
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: SixTooltip, isStandalone: false, selector: "six-tooltip", inputs: { content: "content", disabled: "disabled", distance: "distance", open: "open", placement: "placement", skidding: "skidding", trigger: "trigger" }, outputs: { sixTooltipShow: "sixTooltipShow", sixTooltipAfterShow: "sixTooltipAfterShow", sixTooltipHide: "sixTooltipHide", sixTooltipAfterHide: "sixTooltipAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1365
2002
|
};
|
|
1366
2003
|
SixTooltip = __decorate([
|
|
1367
2004
|
ProxyCmp({
|
|
@@ -1369,7 +2006,7 @@ SixTooltip = __decorate([
|
|
|
1369
2006
|
methods: ['show', 'hide']
|
|
1370
2007
|
})
|
|
1371
2008
|
], SixTooltip);
|
|
1372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixTooltip, decorators: [{
|
|
1373
2010
|
type: Component,
|
|
1374
2011
|
args: [{
|
|
1375
2012
|
selector: 'six-tooltip',
|
|
@@ -1377,17 +2014,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1377
2014
|
template: '<ng-content></ng-content>',
|
|
1378
2015
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1379
2016
|
inputs: ['content', 'disabled', 'distance', 'open', 'placement', 'skidding', 'trigger'],
|
|
2017
|
+
outputs: ['sixTooltipShow:six-tooltip-show', 'sixTooltipAfterShow:six-tooltip-after-show', 'sixTooltipHide:six-tooltip-hide', 'sixTooltipAfterHide:six-tooltip-after-hide'],
|
|
2018
|
+
standalone: false
|
|
1380
2019
|
}]
|
|
1381
|
-
}], ctorParameters:
|
|
2020
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sixTooltipShow: [{
|
|
2021
|
+
type: Output
|
|
2022
|
+
}], sixTooltipAfterShow: [{
|
|
2023
|
+
type: Output
|
|
2024
|
+
}], sixTooltipHide: [{
|
|
2025
|
+
type: Output
|
|
2026
|
+
}], sixTooltipAfterHide: [{
|
|
2027
|
+
type: Output
|
|
2028
|
+
}] } });
|
|
1382
2029
|
|
|
1383
2030
|
const DIRECTIVES = [
|
|
1384
|
-
SetAttributes,
|
|
1385
2031
|
SixAlert,
|
|
1386
2032
|
SixAvatar,
|
|
1387
2033
|
SixBadge,
|
|
2034
|
+
SixBreadcrumbs,
|
|
2035
|
+
SixBreadcrumbsItem,
|
|
1388
2036
|
SixButton,
|
|
1389
2037
|
SixCard,
|
|
1390
2038
|
SixCheckbox,
|
|
2039
|
+
SixDate,
|
|
1391
2040
|
SixDatepicker,
|
|
1392
2041
|
SixDetails,
|
|
1393
2042
|
SixDialog,
|
|
@@ -1401,22 +2050,28 @@ const DIRECTIVES = [
|
|
|
1401
2050
|
SixFooter,
|
|
1402
2051
|
SixGroupLabel,
|
|
1403
2052
|
SixHeader,
|
|
2053
|
+
SixHeaderDropdownItem,
|
|
2054
|
+
SixHeaderItem,
|
|
2055
|
+
SixHeaderMenuButton,
|
|
1404
2056
|
SixIcon,
|
|
1405
2057
|
SixIconButton,
|
|
1406
2058
|
SixInput,
|
|
1407
2059
|
SixItemPicker,
|
|
1408
2060
|
SixLanguageSwitcher,
|
|
1409
2061
|
SixLayoutGrid,
|
|
2062
|
+
SixLogo,
|
|
1410
2063
|
SixMainContainer,
|
|
1411
2064
|
SixMenu,
|
|
1412
2065
|
SixMenuDivider,
|
|
1413
2066
|
SixMenuItem,
|
|
1414
2067
|
SixMenuLabel,
|
|
2068
|
+
SixPaginator,
|
|
1415
2069
|
SixPicto,
|
|
1416
2070
|
SixProgressBar,
|
|
1417
2071
|
SixProgressRing,
|
|
1418
2072
|
SixRadio,
|
|
1419
2073
|
SixRange,
|
|
2074
|
+
SixRating,
|
|
1420
2075
|
SixRoot,
|
|
1421
2076
|
SixSearchField,
|
|
1422
2077
|
SixSelect,
|
|
@@ -1440,22 +2095,34 @@ class ValidationMessagesService {
|
|
|
1440
2095
|
getErrorMessage(language, error) {
|
|
1441
2096
|
return getErrorMessage(language, error);
|
|
1442
2097
|
}
|
|
1443
|
-
static
|
|
1444
|
-
static
|
|
2098
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValidationMessagesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2099
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValidationMessagesService, providedIn: 'root' });
|
|
1445
2100
|
}
|
|
1446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValidationMessagesService, decorators: [{
|
|
1447
2102
|
type: Injectable,
|
|
1448
2103
|
args: [{ providedIn: 'root' }]
|
|
1449
2104
|
}] });
|
|
1450
2105
|
|
|
2106
|
+
const DEFAULT_UI_LIBRARY_CONFIG = {
|
|
2107
|
+
showAsteriskOnRequiredValidator: false,
|
|
2108
|
+
disableValidationService: false,
|
|
2109
|
+
};
|
|
2110
|
+
const UI_LIBRARY_CONFIG = new InjectionToken('UiLibraryConfig');
|
|
2111
|
+
|
|
1451
2112
|
class ValueAccessor {
|
|
2113
|
+
injector;
|
|
2114
|
+
el;
|
|
2115
|
+
statusChanges;
|
|
2116
|
+
ngControl;
|
|
2117
|
+
initialErrorText;
|
|
2118
|
+
validationMessagesService = inject(ValidationMessagesService);
|
|
2119
|
+
config = inject(UI_LIBRARY_CONFIG);
|
|
1452
2120
|
constructor(injector, el) {
|
|
1453
2121
|
this.injector = injector;
|
|
1454
2122
|
this.el = el;
|
|
1455
|
-
this.validationMessagesService = inject(ValidationMessagesService);
|
|
1456
|
-
this.onChange = () => { };
|
|
1457
|
-
this.onTouched = () => { };
|
|
1458
2123
|
}
|
|
2124
|
+
onChange = () => { };
|
|
2125
|
+
onTouched = () => { };
|
|
1459
2126
|
registerOnChange(fn) {
|
|
1460
2127
|
this.onChange = fn;
|
|
1461
2128
|
}
|
|
@@ -1497,13 +2164,17 @@ class ValueAccessor {
|
|
|
1497
2164
|
return;
|
|
1498
2165
|
const element = this.el.nativeElement;
|
|
1499
2166
|
const control = this.ngControl?.control;
|
|
1500
|
-
const invalid =
|
|
1501
|
-
let errorTexts;
|
|
1502
|
-
if (invalid) {
|
|
1503
|
-
errorTexts = this.initialErrorText || this.getErrorTexts(control);
|
|
1504
|
-
}
|
|
2167
|
+
const invalid = control.status === 'INVALID' && control.dirty && control.touched;
|
|
1505
2168
|
element.invalid = invalid;
|
|
1506
|
-
|
|
2169
|
+
// If the module is configured to do so, display error messages for invalid controls
|
|
2170
|
+
if (!this.config.disableValidationService) {
|
|
2171
|
+
const errorTexts = invalid ? this.initialErrorText || this.getErrorTexts(control) : undefined;
|
|
2172
|
+
element.errorText = errorTexts ?? '';
|
|
2173
|
+
}
|
|
2174
|
+
// When the module is configured to do so, display an asterisk next to any form control that has a required validator
|
|
2175
|
+
if (this.config.showAsteriskOnRequiredValidator && this.ngControl.control.hasValidator(Validators.required)) {
|
|
2176
|
+
element.required = true;
|
|
2177
|
+
}
|
|
1507
2178
|
});
|
|
1508
2179
|
}
|
|
1509
2180
|
setDisabledState(isDisabled) {
|
|
@@ -1562,12 +2233,12 @@ class ValueAccessor {
|
|
|
1562
2233
|
return (this.validationMessagesService.getErrorMessage(getLanguage(), { key: key, ...value }) ?? key);
|
|
1563
2234
|
});
|
|
1564
2235
|
}
|
|
1565
|
-
static
|
|
1566
|
-
static
|
|
2236
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2237
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ValueAccessor, isStandalone: true, host: { listeners: { "blur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
|
|
1567
2238
|
}
|
|
1568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1569
2240
|
type: Directive
|
|
1570
|
-
}], ctorParameters:
|
|
2241
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
1571
2242
|
type: HostListener,
|
|
1572
2243
|
args: ['blur', ['$event.target']]
|
|
1573
2244
|
}] } });
|
|
@@ -1586,18 +2257,20 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
1586
2257
|
super(injector, el);
|
|
1587
2258
|
}
|
|
1588
2259
|
handleInputEvent(el) {
|
|
1589
|
-
|
|
2260
|
+
if (el) {
|
|
2261
|
+
this.handleValueChange(el, el.value);
|
|
2262
|
+
}
|
|
1590
2263
|
}
|
|
1591
|
-
static
|
|
1592
|
-
static
|
|
2264
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2265
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: TextValueAccessor, isStandalone: false, selector: "six-input:not([type=number]),six-textarea", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1593
2266
|
{
|
|
1594
2267
|
provide: NG_VALUE_ACCESSOR,
|
|
1595
2268
|
useExisting: TextValueAccessor,
|
|
1596
2269
|
multi: true,
|
|
1597
2270
|
},
|
|
1598
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2271
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1599
2272
|
}
|
|
1600
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
1601
2274
|
type: Directive,
|
|
1602
2275
|
args: [{
|
|
1603
2276
|
selector: 'six-input:not([type=number]),six-textarea',
|
|
@@ -1608,8 +2281,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1608
2281
|
multi: true,
|
|
1609
2282
|
},
|
|
1610
2283
|
],
|
|
2284
|
+
standalone: false,
|
|
1611
2285
|
}]
|
|
1612
|
-
}], ctorParameters:
|
|
2286
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1613
2287
|
type: HostListener,
|
|
1614
2288
|
args: ['input', ['$event.target']]
|
|
1615
2289
|
}] } });
|
|
@@ -1619,23 +2293,25 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
1619
2293
|
super(injector, el);
|
|
1620
2294
|
}
|
|
1621
2295
|
handleInputEvent(el) {
|
|
1622
|
-
|
|
2296
|
+
if (el) {
|
|
2297
|
+
this.handleValueChange(el, el.value);
|
|
2298
|
+
}
|
|
1623
2299
|
}
|
|
1624
2300
|
registerOnChange(fn) {
|
|
1625
2301
|
super.registerOnChange((value) => {
|
|
1626
2302
|
fn(value === '' ? null : parseFloat(value));
|
|
1627
2303
|
});
|
|
1628
2304
|
}
|
|
1629
|
-
static
|
|
1630
|
-
static
|
|
2305
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2306
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: NumericValueAccessor, isStandalone: false, selector: "six-input[type=number]", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
1631
2307
|
{
|
|
1632
2308
|
provide: NG_VALUE_ACCESSOR,
|
|
1633
2309
|
useExisting: NumericValueAccessor,
|
|
1634
2310
|
multi: true,
|
|
1635
2311
|
},
|
|
1636
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2312
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1637
2313
|
}
|
|
1638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
1639
2315
|
type: Directive,
|
|
1640
2316
|
args: [{
|
|
1641
2317
|
selector: 'six-input[type=number]',
|
|
@@ -1646,8 +2322,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1646
2322
|
multi: true,
|
|
1647
2323
|
},
|
|
1648
2324
|
],
|
|
2325
|
+
standalone: false,
|
|
1649
2326
|
}]
|
|
1650
|
-
}], ctorParameters:
|
|
2327
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
1651
2328
|
type: HostListener,
|
|
1652
2329
|
args: ['input', ['$event.target']]
|
|
1653
2330
|
}] } });
|
|
@@ -1656,8 +2333,13 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1656
2333
|
constructor(injector, el) {
|
|
1657
2334
|
super(injector, el);
|
|
1658
2335
|
}
|
|
2336
|
+
value;
|
|
2337
|
+
formControlName;
|
|
2338
|
+
name;
|
|
1659
2339
|
handleChangeEvent(el) {
|
|
1660
|
-
|
|
2340
|
+
if (el) {
|
|
2341
|
+
this.handleValueChange(el, this.value);
|
|
2342
|
+
}
|
|
1661
2343
|
}
|
|
1662
2344
|
ngOnInit() {
|
|
1663
2345
|
this.checkName();
|
|
@@ -1678,16 +2360,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
1678
2360
|
this.el.nativeElement.name = this.formControlName;
|
|
1679
2361
|
}
|
|
1680
2362
|
}
|
|
1681
|
-
static
|
|
1682
|
-
static
|
|
2363
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2364
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: RadioValueAccessor, isStandalone: false, selector: "six-radio", inputs: { value: "value", formControlName: "formControlName", name: "name" }, host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1683
2365
|
{
|
|
1684
2366
|
provide: NG_VALUE_ACCESSOR,
|
|
1685
2367
|
useExisting: RadioValueAccessor,
|
|
1686
2368
|
multi: true,
|
|
1687
2369
|
},
|
|
1688
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2370
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1689
2371
|
}
|
|
1690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
1691
2373
|
type: Directive,
|
|
1692
2374
|
args: [{
|
|
1693
2375
|
selector: 'six-radio',
|
|
@@ -1698,8 +2380,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1698
2380
|
multi: true,
|
|
1699
2381
|
},
|
|
1700
2382
|
],
|
|
2383
|
+
standalone: false,
|
|
1701
2384
|
}]
|
|
1702
|
-
}], ctorParameters:
|
|
2385
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
1703
2386
|
type: Input
|
|
1704
2387
|
}], formControlName: [{
|
|
1705
2388
|
type: Input
|
|
@@ -1715,18 +2398,20 @@ class DatepickerValueAccessor extends ValueAccessor {
|
|
|
1715
2398
|
super(injector, el);
|
|
1716
2399
|
}
|
|
1717
2400
|
handleChangeEvent(el) {
|
|
1718
|
-
|
|
2401
|
+
if (el) {
|
|
2402
|
+
this.handleValueChange(el, el.value);
|
|
2403
|
+
}
|
|
1719
2404
|
}
|
|
1720
|
-
static
|
|
1721
|
-
static
|
|
2405
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DatepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2406
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: DatepickerValueAccessor, isStandalone: false, selector: "six-datepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
1722
2407
|
{
|
|
1723
2408
|
provide: NG_VALUE_ACCESSOR,
|
|
1724
2409
|
useExisting: DatepickerValueAccessor,
|
|
1725
2410
|
multi: true,
|
|
1726
2411
|
},
|
|
1727
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2412
|
+
], usesInheritance: true, ngImport: i0 });
|
|
1728
2413
|
}
|
|
1729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DatepickerValueAccessor, decorators: [{
|
|
1730
2415
|
type: Directive,
|
|
1731
2416
|
args: [{
|
|
1732
2417
|
selector: 'six-datepicker',
|
|
@@ -1737,8 +2422,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1737
2422
|
multi: true,
|
|
1738
2423
|
},
|
|
1739
2424
|
],
|
|
2425
|
+
standalone: false,
|
|
1740
2426
|
}]
|
|
1741
|
-
}], ctorParameters:
|
|
2427
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
1742
2428
|
type: HostListener,
|
|
1743
2429
|
args: ['change', ['$event.target']]
|
|
1744
2430
|
}] } });
|
|
@@ -1763,6 +2449,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1763
2449
|
* an alternative is to use the SixFormUtilDirective.
|
|
1764
2450
|
*/
|
|
1765
2451
|
class SixFormDirective {
|
|
2452
|
+
elementRef;
|
|
2453
|
+
formGroupDirective;
|
|
2454
|
+
/**
|
|
2455
|
+
* Emits an event when the form is valid and the form submission has been triggered.
|
|
2456
|
+
*/
|
|
2457
|
+
sixSubmit = new EventEmitter();
|
|
1766
2458
|
onNgSubmit(event) {
|
|
1767
2459
|
if (this.formGroupDirective.invalid) {
|
|
1768
2460
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
@@ -1774,20 +2466,17 @@ class SixFormDirective {
|
|
|
1774
2466
|
constructor(elementRef, formGroupDirective) {
|
|
1775
2467
|
this.elementRef = elementRef;
|
|
1776
2468
|
this.formGroupDirective = formGroupDirective;
|
|
1777
|
-
/**
|
|
1778
|
-
* Emits an event when the form is valid and the form submission has been triggered.
|
|
1779
|
-
*/
|
|
1780
|
-
this.sixSubmit = new EventEmitter();
|
|
1781
2469
|
}
|
|
1782
|
-
static
|
|
1783
|
-
static
|
|
2470
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2471
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixFormDirective, isStandalone: false, selector: "form[sixForm]", outputs: { sixSubmit: "sixSubmit" }, host: { listeners: { "ngSubmit": "onNgSubmit($event)" } }, ngImport: i0 });
|
|
1784
2472
|
}
|
|
1785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormDirective, decorators: [{
|
|
1786
2474
|
type: Directive,
|
|
1787
2475
|
args: [{
|
|
1788
2476
|
selector: 'form[sixForm]',
|
|
2477
|
+
standalone: false,
|
|
1789
2478
|
}]
|
|
1790
|
-
}], ctorParameters:
|
|
2479
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }], propDecorators: { sixSubmit: [{
|
|
1791
2480
|
type: Output
|
|
1792
2481
|
}], onNgSubmit: [{
|
|
1793
2482
|
type: HostListener,
|
|
@@ -1819,6 +2508,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1819
2508
|
* ```
|
|
1820
2509
|
*/
|
|
1821
2510
|
class SixFormUtilDirective {
|
|
2511
|
+
elementRef;
|
|
2512
|
+
formGroupDirective;
|
|
1822
2513
|
constructor(elementRef, formGroupDirective) {
|
|
1823
2514
|
this.elementRef = elementRef;
|
|
1824
2515
|
this.formGroupDirective = formGroupDirective;
|
|
@@ -1830,15 +2521,16 @@ class SixFormUtilDirective {
|
|
|
1830
2521
|
focusInvalidField() {
|
|
1831
2522
|
focusInvalidField(this.formGroupDirective, this.elementRef);
|
|
1832
2523
|
}
|
|
1833
|
-
static
|
|
1834
|
-
static
|
|
2524
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormUtilDirective, deps: [{ token: i0.ElementRef }, { token: i1.FormGroupDirective }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2525
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixFormUtilDirective, isStandalone: false, selector: "[sixFormUtil]", ngImport: i0 });
|
|
1835
2526
|
}
|
|
1836
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixFormUtilDirective, decorators: [{
|
|
1837
2528
|
type: Directive,
|
|
1838
2529
|
args: [{
|
|
1839
2530
|
selector: '[sixFormUtil]',
|
|
2531
|
+
standalone: false,
|
|
1840
2532
|
}]
|
|
1841
|
-
}], ctorParameters:
|
|
2533
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FormGroupDirective }] });
|
|
1842
2534
|
function focusInvalidField(formGroupDirective, formElement) {
|
|
1843
2535
|
formGroupDirective.form.markAllAsTouched();
|
|
1844
2536
|
markAllAsDirty([formGroupDirective.form]);
|
|
@@ -1898,92 +2590,183 @@ class SixUiLibraryValidators {
|
|
|
1898
2590
|
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
1899
2591
|
};
|
|
1900
2592
|
}
|
|
2593
|
+
static minDateIso(mindate) {
|
|
2594
|
+
return (control) => {
|
|
2595
|
+
if (control.value == null || control.value === '')
|
|
2596
|
+
return null;
|
|
2597
|
+
const actualDate = control.value;
|
|
2598
|
+
return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
|
|
2599
|
+
};
|
|
2600
|
+
}
|
|
2601
|
+
static maxDateIso(maxdate) {
|
|
2602
|
+
return (control) => {
|
|
2603
|
+
if (control.value == null || control.value === '')
|
|
2604
|
+
return null;
|
|
2605
|
+
const actualDate = control.value;
|
|
2606
|
+
return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
|
|
2607
|
+
};
|
|
2608
|
+
}
|
|
2609
|
+
static allowedDatesIso(allowedDates = () => true) {
|
|
2610
|
+
return (control) => {
|
|
2611
|
+
if (control.value == null || control.value === '')
|
|
2612
|
+
return null;
|
|
2613
|
+
const allowed = allowedDates(control.value);
|
|
2614
|
+
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
2615
|
+
};
|
|
2616
|
+
}
|
|
1901
2617
|
}
|
|
1902
2618
|
class MinDateValidator {
|
|
2619
|
+
min;
|
|
1903
2620
|
validate(control) {
|
|
1904
2621
|
if (this.min != null) {
|
|
1905
2622
|
return SixUiLibraryValidators.minDate(this.min)(control);
|
|
1906
2623
|
}
|
|
1907
2624
|
return null;
|
|
1908
2625
|
}
|
|
1909
|
-
static
|
|
1910
|
-
static
|
|
2626
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2627
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MinDateValidator, isStandalone: false, selector: "six-datepicker[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }], ngImport: i0 });
|
|
1911
2628
|
}
|
|
1912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidator, decorators: [{
|
|
1913
2630
|
type: Directive,
|
|
1914
2631
|
args: [{
|
|
1915
2632
|
selector: 'six-datepicker[min]',
|
|
1916
2633
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidator, multi: true }],
|
|
2634
|
+
standalone: false,
|
|
1917
2635
|
}]
|
|
1918
2636
|
}], propDecorators: { min: [{
|
|
1919
2637
|
type: Input
|
|
1920
2638
|
}] } });
|
|
1921
2639
|
class MaxDateValidator {
|
|
2640
|
+
max;
|
|
1922
2641
|
validate(control) {
|
|
1923
2642
|
if (this.max != null) {
|
|
1924
2643
|
return SixUiLibraryValidators.maxDate(this.max)(control);
|
|
1925
2644
|
}
|
|
1926
2645
|
return null;
|
|
1927
2646
|
}
|
|
1928
|
-
static
|
|
1929
|
-
static
|
|
2647
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2648
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MaxDateValidator, isStandalone: false, selector: "six-datepicker[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }], ngImport: i0 });
|
|
1930
2649
|
}
|
|
1931
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidator, decorators: [{
|
|
1932
2651
|
type: Directive,
|
|
1933
2652
|
args: [{
|
|
1934
2653
|
selector: 'six-datepicker[max]',
|
|
1935
2654
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidator, multi: true }],
|
|
2655
|
+
standalone: false,
|
|
1936
2656
|
}]
|
|
1937
2657
|
}], propDecorators: { max: [{
|
|
1938
2658
|
type: Input
|
|
1939
2659
|
}] } });
|
|
1940
2660
|
class AllowedDatesValidator {
|
|
1941
|
-
|
|
1942
|
-
this.allowedDates = () => true;
|
|
1943
|
-
}
|
|
2661
|
+
allowedDates = () => true;
|
|
1944
2662
|
validate(control) {
|
|
1945
2663
|
return SixUiLibraryValidators.allowedDates(this.allowedDates)(control);
|
|
1946
2664
|
}
|
|
1947
|
-
static
|
|
1948
|
-
static
|
|
2665
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2666
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: AllowedDatesValidator, isStandalone: false, selector: "six-datepicker[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }], ngImport: i0 });
|
|
1949
2667
|
}
|
|
1950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidator, decorators: [{
|
|
1951
2669
|
type: Directive,
|
|
1952
2670
|
args: [{
|
|
1953
2671
|
selector: 'six-datepicker[allowedDates]',
|
|
1954
2672
|
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidator, multi: true }],
|
|
2673
|
+
standalone: false,
|
|
2674
|
+
}]
|
|
2675
|
+
}], propDecorators: { allowedDates: [{
|
|
2676
|
+
type: Input
|
|
2677
|
+
}] } });
|
|
2678
|
+
class MinDateValidatorIso {
|
|
2679
|
+
min;
|
|
2680
|
+
validate(control) {
|
|
2681
|
+
if (this.min != null) {
|
|
2682
|
+
return SixUiLibraryValidators.minDateIso(this.min)(control);
|
|
2683
|
+
}
|
|
2684
|
+
return null;
|
|
2685
|
+
}
|
|
2686
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2687
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MinDateValidatorIso, isStandalone: false, selector: "six-date[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }], ngImport: i0 });
|
|
2688
|
+
}
|
|
2689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2690
|
+
type: Directive,
|
|
2691
|
+
args: [{
|
|
2692
|
+
selector: 'six-date[min]',
|
|
2693
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2694
|
+
standalone: false,
|
|
2695
|
+
}]
|
|
2696
|
+
}], propDecorators: { min: [{
|
|
2697
|
+
type: Input
|
|
2698
|
+
}] } });
|
|
2699
|
+
class MaxDateValidatorIso {
|
|
2700
|
+
max;
|
|
2701
|
+
validate(control) {
|
|
2702
|
+
if (this.max != null) {
|
|
2703
|
+
return SixUiLibraryValidators.maxDateIso(this.max)(control);
|
|
2704
|
+
}
|
|
2705
|
+
return null;
|
|
2706
|
+
}
|
|
2707
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2708
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MaxDateValidatorIso, isStandalone: false, selector: "six-date[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }], ngImport: i0 });
|
|
2709
|
+
}
|
|
2710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2711
|
+
type: Directive,
|
|
2712
|
+
args: [{
|
|
2713
|
+
selector: 'six-date[max]',
|
|
2714
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2715
|
+
standalone: false,
|
|
2716
|
+
}]
|
|
2717
|
+
}], propDecorators: { max: [{
|
|
2718
|
+
type: Input
|
|
2719
|
+
}] } });
|
|
2720
|
+
class AllowedDatesValidatorIso {
|
|
2721
|
+
allowedDates = () => true;
|
|
2722
|
+
validate(control) {
|
|
2723
|
+
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2724
|
+
}
|
|
2725
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2726
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: AllowedDatesValidatorIso, isStandalone: false, selector: "six-date[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }], ngImport: i0 });
|
|
2727
|
+
}
|
|
2728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2729
|
+
type: Directive,
|
|
2730
|
+
args: [{
|
|
2731
|
+
selector: 'six-date[allowedDates]',
|
|
2732
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2733
|
+
standalone: false,
|
|
1955
2734
|
}]
|
|
1956
2735
|
}], propDecorators: { allowedDates: [{
|
|
1957
2736
|
type: Input
|
|
1958
2737
|
}] } });
|
|
1959
2738
|
class MinValidator {
|
|
2739
|
+
min;
|
|
1960
2740
|
validate(control) {
|
|
1961
2741
|
return Validators.min(toFloat(this.min))(control);
|
|
1962
2742
|
}
|
|
1963
|
-
static
|
|
1964
|
-
static
|
|
2743
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2744
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MinValidator, isStandalone: false, selector: "six-input[type=number][min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }], ngImport: i0 });
|
|
1965
2745
|
}
|
|
1966
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MinValidator, decorators: [{
|
|
1967
2747
|
type: Directive,
|
|
1968
2748
|
args: [{
|
|
1969
2749
|
selector: 'six-input[type=number][min]',
|
|
1970
2750
|
providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }],
|
|
2751
|
+
standalone: false,
|
|
1971
2752
|
}]
|
|
1972
2753
|
}], propDecorators: { min: [{
|
|
1973
2754
|
type: Input
|
|
1974
2755
|
}] } });
|
|
1975
2756
|
class MaxValidator {
|
|
2757
|
+
max;
|
|
1976
2758
|
validate(control) {
|
|
1977
2759
|
return Validators.max(toFloat(this.max))(control);
|
|
1978
2760
|
}
|
|
1979
|
-
static
|
|
1980
|
-
static
|
|
2761
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxValidator, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2762
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: MaxValidator, isStandalone: false, selector: "six-input[type=number][max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }], ngImport: i0 });
|
|
1981
2763
|
}
|
|
1982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: MaxValidator, decorators: [{
|
|
1983
2765
|
type: Directive,
|
|
1984
2766
|
args: [{
|
|
1985
2767
|
selector: 'six-input[type=number][max]',
|
|
1986
2768
|
providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }],
|
|
2769
|
+
standalone: false,
|
|
1987
2770
|
}]
|
|
1988
2771
|
}], propDecorators: { max: [{
|
|
1989
2772
|
type: Input
|
|
@@ -1997,18 +2780,20 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
1997
2780
|
super(injector, el);
|
|
1998
2781
|
}
|
|
1999
2782
|
handleChangeEvent(el) {
|
|
2000
|
-
|
|
2783
|
+
if (el) {
|
|
2784
|
+
this.handleValueChange(el, el.value);
|
|
2785
|
+
}
|
|
2001
2786
|
}
|
|
2002
|
-
static
|
|
2003
|
-
static
|
|
2787
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2788
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SelectValueAccessor, isStandalone: false, selector: "six-select", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2004
2789
|
{
|
|
2005
2790
|
provide: NG_VALUE_ACCESSOR,
|
|
2006
2791
|
useExisting: SelectValueAccessor,
|
|
2007
2792
|
multi: true,
|
|
2008
2793
|
},
|
|
2009
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2794
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2010
2795
|
}
|
|
2011
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2012
2797
|
type: Directive,
|
|
2013
2798
|
args: [{
|
|
2014
2799
|
selector: 'six-select',
|
|
@@ -2019,8 +2804,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2019
2804
|
multi: true,
|
|
2020
2805
|
},
|
|
2021
2806
|
],
|
|
2807
|
+
standalone: false,
|
|
2022
2808
|
}]
|
|
2023
|
-
}], ctorParameters:
|
|
2809
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2024
2810
|
type: HostListener,
|
|
2025
2811
|
args: ['change', ['$event.target']]
|
|
2026
2812
|
}] } });
|
|
@@ -2030,25 +2816,27 @@ class CheckboxValueAccessor extends ValueAccessor {
|
|
|
2030
2816
|
super(injector, el);
|
|
2031
2817
|
}
|
|
2032
2818
|
handleChangeEvent(el) {
|
|
2033
|
-
|
|
2819
|
+
if (el) {
|
|
2820
|
+
this.handleValueChange(el, el.checked);
|
|
2821
|
+
}
|
|
2034
2822
|
}
|
|
2035
2823
|
writeValue(value) {
|
|
2036
2824
|
this.el.nativeElement.checked = value === true;
|
|
2037
2825
|
this.updateValidation();
|
|
2038
2826
|
}
|
|
2039
|
-
static
|
|
2040
|
-
static
|
|
2827
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2828
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: CheckboxValueAccessor, isStandalone: false, selector: "six-checkbox:not([six-checkbox-group])", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2041
2829
|
{
|
|
2042
2830
|
provide: NG_VALUE_ACCESSOR,
|
|
2043
2831
|
useExisting: CheckboxValueAccessor,
|
|
2044
2832
|
multi: true,
|
|
2045
2833
|
},
|
|
2046
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2834
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2047
2835
|
}
|
|
2048
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxValueAccessor, decorators: [{
|
|
2049
2837
|
type: Directive,
|
|
2050
2838
|
args: [{
|
|
2051
|
-
selector: 'six-checkbox',
|
|
2839
|
+
selector: 'six-checkbox:not([six-checkbox-group])',
|
|
2052
2840
|
providers: [
|
|
2053
2841
|
{
|
|
2054
2842
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -2056,8 +2844,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2056
2844
|
multi: true,
|
|
2057
2845
|
},
|
|
2058
2846
|
],
|
|
2847
|
+
standalone: false,
|
|
2848
|
+
}]
|
|
2849
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2850
|
+
type: HostListener,
|
|
2851
|
+
args: ['change', ['$event.target']]
|
|
2852
|
+
}] } });
|
|
2853
|
+
|
|
2854
|
+
class SixCheckboxGroupDirective {
|
|
2855
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCheckboxGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2856
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixCheckboxGroupDirective, isStandalone: false, selector: "[six-checkbox-group]", ngImport: i0 });
|
|
2857
|
+
}
|
|
2858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixCheckboxGroupDirective, decorators: [{
|
|
2859
|
+
type: Directive,
|
|
2860
|
+
args: [{
|
|
2861
|
+
selector: '[six-checkbox-group]',
|
|
2862
|
+
standalone: false,
|
|
2863
|
+
}]
|
|
2864
|
+
}] });
|
|
2865
|
+
// Accessor applies only when the SixCheckboxGroupDirective attribute is present
|
|
2866
|
+
class CheckboxMultiSelectValueAccessor extends ValueAccessor {
|
|
2867
|
+
value;
|
|
2868
|
+
constructor(injector, el) {
|
|
2869
|
+
super(injector, el);
|
|
2870
|
+
}
|
|
2871
|
+
onHostChange(el) {
|
|
2872
|
+
if (!el)
|
|
2873
|
+
return;
|
|
2874
|
+
const checkbox = el;
|
|
2875
|
+
const checked = checkbox.checked;
|
|
2876
|
+
const current = this.ngControl?.value;
|
|
2877
|
+
if (!current)
|
|
2878
|
+
return;
|
|
2879
|
+
const set = new Set(current);
|
|
2880
|
+
checked ? set.add(this.value) : set.delete(this.value);
|
|
2881
|
+
this.handleValueChange(el, Array.from(set));
|
|
2882
|
+
}
|
|
2883
|
+
writeValue(values) {
|
|
2884
|
+
const arr = Array.isArray(values) ? values : [];
|
|
2885
|
+
const checkbox = this.el.nativeElement;
|
|
2886
|
+
checkbox.checked = arr.includes(this.value);
|
|
2887
|
+
this.updateValidation();
|
|
2888
|
+
}
|
|
2889
|
+
setDisabledState(isDisabled) {
|
|
2890
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
2891
|
+
}
|
|
2892
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxMultiSelectValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2893
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: CheckboxMultiSelectValueAccessor, isStandalone: false, selector: "six-checkbox[six-checkbox-group]", inputs: { value: "value" }, host: { listeners: { "change": "onHostChange($event.target)" } }, providers: [
|
|
2894
|
+
{
|
|
2895
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2896
|
+
useExisting: CheckboxMultiSelectValueAccessor,
|
|
2897
|
+
multi: true,
|
|
2898
|
+
},
|
|
2899
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2900
|
+
}
|
|
2901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckboxMultiSelectValueAccessor, decorators: [{
|
|
2902
|
+
type: Directive,
|
|
2903
|
+
args: [{
|
|
2904
|
+
selector: 'six-checkbox[six-checkbox-group]',
|
|
2905
|
+
providers: [
|
|
2906
|
+
{
|
|
2907
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2908
|
+
useExisting: CheckboxMultiSelectValueAccessor,
|
|
2909
|
+
multi: true,
|
|
2910
|
+
},
|
|
2911
|
+
],
|
|
2912
|
+
standalone: false,
|
|
2059
2913
|
}]
|
|
2060
|
-
}], ctorParameters:
|
|
2914
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { value: [{
|
|
2915
|
+
type: Input,
|
|
2916
|
+
args: [{ required: true }]
|
|
2917
|
+
}], onHostChange: [{
|
|
2061
2918
|
type: HostListener,
|
|
2062
2919
|
args: ['change', ['$event.target']]
|
|
2063
2920
|
}] } });
|
|
@@ -2067,23 +2924,25 @@ class RangeValueAccessor extends ValueAccessor {
|
|
|
2067
2924
|
super(injector, el);
|
|
2068
2925
|
}
|
|
2069
2926
|
handleInputEvent(el) {
|
|
2070
|
-
|
|
2927
|
+
if (el) {
|
|
2928
|
+
this.handleValueChange(el, el.value);
|
|
2929
|
+
}
|
|
2071
2930
|
}
|
|
2072
2931
|
registerOnChange(fn) {
|
|
2073
2932
|
super.registerOnChange((value) => {
|
|
2074
2933
|
fn(value === '' ? null : parseFloat(value));
|
|
2075
2934
|
});
|
|
2076
2935
|
}
|
|
2077
|
-
static
|
|
2078
|
-
static
|
|
2936
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RangeValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2937
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: RangeValueAccessor, isStandalone: false, selector: "six-range", host: { listeners: { "input": "handleInputEvent($event.target)" } }, providers: [
|
|
2079
2938
|
{
|
|
2080
2939
|
provide: NG_VALUE_ACCESSOR,
|
|
2081
2940
|
useExisting: RangeValueAccessor,
|
|
2082
2941
|
multi: true,
|
|
2083
2942
|
},
|
|
2084
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2943
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2085
2944
|
}
|
|
2086
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
2087
2946
|
type: Directive,
|
|
2088
2947
|
args: [{
|
|
2089
2948
|
selector: 'six-range',
|
|
@@ -2094,8 +2953,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2094
2953
|
multi: true,
|
|
2095
2954
|
},
|
|
2096
2955
|
],
|
|
2956
|
+
standalone: false,
|
|
2097
2957
|
}]
|
|
2098
|
-
}], ctorParameters:
|
|
2958
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
2099
2959
|
type: HostListener,
|
|
2100
2960
|
args: ['input', ['$event.target']]
|
|
2101
2961
|
}] } });
|
|
@@ -2105,22 +2965,24 @@ class SwitchValueAccessor extends ValueAccessor {
|
|
|
2105
2965
|
super(injector, el);
|
|
2106
2966
|
}
|
|
2107
2967
|
handleChangeEvent(el) {
|
|
2108
|
-
|
|
2968
|
+
if (el) {
|
|
2969
|
+
this.handleValueChange(el, el.checked);
|
|
2970
|
+
}
|
|
2109
2971
|
}
|
|
2110
2972
|
writeValue(value) {
|
|
2111
2973
|
this.el.nativeElement.checked = value === true;
|
|
2112
2974
|
this.updateValidation();
|
|
2113
2975
|
}
|
|
2114
|
-
static
|
|
2115
|
-
static
|
|
2976
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2977
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SwitchValueAccessor, isStandalone: false, selector: "six-switch", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2116
2978
|
{
|
|
2117
2979
|
provide: NG_VALUE_ACCESSOR,
|
|
2118
2980
|
useExisting: SwitchValueAccessor,
|
|
2119
2981
|
multi: true,
|
|
2120
2982
|
},
|
|
2121
|
-
], usesInheritance: true, ngImport: i0 });
|
|
2983
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2122
2984
|
}
|
|
2123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2124
2986
|
type: Directive,
|
|
2125
2987
|
args: [{
|
|
2126
2988
|
selector: 'six-switch',
|
|
@@ -2131,8 +2993,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2131
2993
|
multi: true,
|
|
2132
2994
|
},
|
|
2133
2995
|
],
|
|
2996
|
+
standalone: false,
|
|
2134
2997
|
}]
|
|
2135
|
-
}], ctorParameters:
|
|
2998
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2136
2999
|
type: HostListener,
|
|
2137
3000
|
args: ['change', ['$event.target']]
|
|
2138
3001
|
}] } });
|
|
@@ -2142,18 +3005,20 @@ class TimepickerValueAccessor extends ValueAccessor {
|
|
|
2142
3005
|
super(injector, el);
|
|
2143
3006
|
}
|
|
2144
3007
|
handleChangeEvent(el) {
|
|
2145
|
-
|
|
3008
|
+
if (el) {
|
|
3009
|
+
this.handleValueChange(el, el.value);
|
|
3010
|
+
}
|
|
2146
3011
|
}
|
|
2147
|
-
static
|
|
2148
|
-
static
|
|
3012
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TimepickerValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3013
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: TimepickerValueAccessor, isStandalone: false, selector: "six-timepicker", host: { listeners: { "change": "handleChangeEvent($event.target)" } }, providers: [
|
|
2149
3014
|
{
|
|
2150
3015
|
provide: NG_VALUE_ACCESSOR,
|
|
2151
3016
|
useExisting: TimepickerValueAccessor,
|
|
2152
3017
|
multi: true,
|
|
2153
3018
|
},
|
|
2154
|
-
], usesInheritance: true, ngImport: i0 });
|
|
3019
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2155
3020
|
}
|
|
2156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: TimepickerValueAccessor, decorators: [{
|
|
2157
3022
|
type: Directive,
|
|
2158
3023
|
args: [{
|
|
2159
3024
|
selector: 'six-timepicker',
|
|
@@ -2164,8 +3029,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2164
3029
|
multi: true,
|
|
2165
3030
|
},
|
|
2166
3031
|
],
|
|
3032
|
+
standalone: false,
|
|
2167
3033
|
}]
|
|
2168
|
-
}], ctorParameters:
|
|
3034
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleChangeEvent: [{
|
|
2169
3035
|
type: HostListener,
|
|
2170
3036
|
args: ['change', ['$event.target']]
|
|
2171
3037
|
}] } });
|
|
@@ -2174,6 +3040,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2174
3040
|
* Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
|
|
2175
3041
|
*/
|
|
2176
3042
|
class SixRouterLinkDirective {
|
|
3043
|
+
locationStrategy;
|
|
3044
|
+
elementRef;
|
|
3045
|
+
router;
|
|
3046
|
+
renderer;
|
|
3047
|
+
routerLinkDirective;
|
|
2177
3048
|
constructor(locationStrategy, elementRef, router, renderer, routerLinkDirective) {
|
|
2178
3049
|
this.locationStrategy = locationStrategy;
|
|
2179
3050
|
this.elementRef = elementRef;
|
|
@@ -2185,6 +3056,11 @@ class SixRouterLinkDirective {
|
|
|
2185
3056
|
// Prevents the browser from performing a page reload when pressing a SIX-component with routerLink.
|
|
2186
3057
|
event.preventDefault();
|
|
2187
3058
|
}
|
|
3059
|
+
routerLink;
|
|
3060
|
+
queryParams;
|
|
3061
|
+
fragment;
|
|
3062
|
+
queryParamsHandling;
|
|
3063
|
+
relativeTo;
|
|
2188
3064
|
ngOnInit() {
|
|
2189
3065
|
this.updateTargetUrlAndHref();
|
|
2190
3066
|
}
|
|
@@ -2195,19 +3071,25 @@ class SixRouterLinkDirective {
|
|
|
2195
3071
|
if (this.routerLinkDirective?.urlTree) {
|
|
2196
3072
|
const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
|
|
2197
3073
|
this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
|
|
3074
|
+
// Remove the `tabindex` attribute to prevent redundant focus behavior.
|
|
3075
|
+
// Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
|
|
3076
|
+
// but custom components like `six-button` already handle focusability.
|
|
3077
|
+
// Keeping the tabindex would cause the element to receive focus twice.
|
|
3078
|
+
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2198
3079
|
}
|
|
2199
3080
|
}
|
|
2200
|
-
static
|
|
2201
|
-
static
|
|
3081
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRouterLinkDirective, deps: [{ token: i1$1.LocationStrategy }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.Renderer2 }, { token: i2.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3082
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: SixRouterLinkDirective, isStandalone: false, selector: "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 });
|
|
2202
3083
|
}
|
|
2203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2204
3085
|
type: Directive,
|
|
2205
3086
|
args: [{
|
|
2206
|
-
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]',
|
|
3087
|
+
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
3088
|
+
standalone: false,
|
|
2207
3089
|
}]
|
|
2208
|
-
}], ctorParameters:
|
|
3090
|
+
}], ctorParameters: () => [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2209
3091
|
type: Optional
|
|
2210
|
-
}] }]
|
|
3092
|
+
}] }], propDecorators: { onClick: [{
|
|
2211
3093
|
type: HostListener,
|
|
2212
3094
|
args: ['click', ['$event']]
|
|
2213
3095
|
}], routerLink: [{
|
|
@@ -2222,8 +3104,157 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2222
3104
|
type: Input
|
|
2223
3105
|
}] } });
|
|
2224
3106
|
|
|
3107
|
+
/**
|
|
3108
|
+
* Enables Angular router integration for the six-sidebar component.
|
|
3109
|
+
*
|
|
3110
|
+
* When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
|
|
3111
|
+
* it activates automatic route-based selection for sidebar items and groups.
|
|
3112
|
+
*
|
|
3113
|
+
* @recommended Add this directive to enable automatic route-based navigation in sidebars.
|
|
3114
|
+
*
|
|
3115
|
+
* @example
|
|
3116
|
+
* ```html
|
|
3117
|
+
* <six-sidebar sixRouterLinkActive>
|
|
3118
|
+
* <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
|
|
3119
|
+
* <six-sidebar-item-group>
|
|
3120
|
+
* <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
|
|
3121
|
+
* </six-sidebar-item-group>
|
|
3122
|
+
* </six-sidebar>
|
|
3123
|
+
* ```
|
|
3124
|
+
*/
|
|
3125
|
+
class ActiveSidebarDirective {
|
|
3126
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3127
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ActiveSidebarDirective, isStandalone: false, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 });
|
|
3128
|
+
}
|
|
3129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
|
|
3130
|
+
type: Directive,
|
|
3131
|
+
args: [{
|
|
3132
|
+
selector: 'six-sidebar[sixRouterLinkActive]',
|
|
3133
|
+
standalone: false,
|
|
3134
|
+
}]
|
|
3135
|
+
}] });
|
|
3136
|
+
/**
|
|
3137
|
+
* Enhances six-sidebar-item with Angular router integration.
|
|
3138
|
+
*
|
|
3139
|
+
* This directive automatically manages the 'selected' state of sidebar items based on the current route.
|
|
3140
|
+
* When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
|
|
3141
|
+
*
|
|
3142
|
+
* @requires RouterLinkActive
|
|
3143
|
+
* @optional ActiveSidebarDirective - If present, enables route-based selection
|
|
3144
|
+
*/
|
|
3145
|
+
class ActiveSidebarItemDirective {
|
|
3146
|
+
routerLinkActive = inject(RouterLinkActive);
|
|
3147
|
+
sidebarItem = inject(SixSidebarItem);
|
|
3148
|
+
activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
3149
|
+
get selected() {
|
|
3150
|
+
if (this.activeSidebarDirective == null) {
|
|
3151
|
+
return this.sidebarItem.selected;
|
|
3152
|
+
}
|
|
3153
|
+
else {
|
|
3154
|
+
return this.routerLinkActive.isActive;
|
|
3155
|
+
}
|
|
3156
|
+
}
|
|
3157
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3158
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ActiveSidebarItemDirective, isStandalone: false, selector: "six-sidebar-item", host: { properties: { "selected": "this.selected" } }, hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 });
|
|
3159
|
+
}
|
|
3160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
|
|
3161
|
+
type: Directive,
|
|
3162
|
+
args: [{
|
|
3163
|
+
selector: 'six-sidebar-item',
|
|
3164
|
+
hostDirectives: [RouterLinkActive],
|
|
3165
|
+
standalone: false,
|
|
3166
|
+
}]
|
|
3167
|
+
}], propDecorators: { selected: [{
|
|
3168
|
+
type: HostBinding,
|
|
3169
|
+
args: ['selected']
|
|
3170
|
+
}] } });
|
|
3171
|
+
/**
|
|
3172
|
+
* Enhances six-sidebar-item-group with Angular router integration.
|
|
3173
|
+
*
|
|
3174
|
+
* This directive automatically manages the 'open' state of sidebar groups based on the active route.
|
|
3175
|
+
* When a child route is active, the group automatically expands to show the active item.
|
|
3176
|
+
*
|
|
3177
|
+
* @requires RouterLinkActive
|
|
3178
|
+
* @optional ActiveSidebarDirective - If present, enables route-based expansion
|
|
3179
|
+
*/
|
|
3180
|
+
class ActiveSidebarItemGroupDirective {
|
|
3181
|
+
routerLinkActive = inject(RouterLinkActive);
|
|
3182
|
+
sidebarItemGroup = inject(SixSidebarItemGroup);
|
|
3183
|
+
activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
3184
|
+
sidebarItems;
|
|
3185
|
+
get open() {
|
|
3186
|
+
if (this.activeSidebarDirective == null) {
|
|
3187
|
+
return this.sidebarItemGroup.open;
|
|
3188
|
+
}
|
|
3189
|
+
if (this.sidebarItems?.length > 0) {
|
|
3190
|
+
return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
|
|
3191
|
+
}
|
|
3192
|
+
return this.routerLinkActive.isActive;
|
|
3193
|
+
}
|
|
3194
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3195
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ActiveSidebarItemGroupDirective, isStandalone: false, selector: "six-sidebar-item-group", host: { properties: { "open": "this.open" } }, queries: [{ propertyName: "sidebarItems", predicate: SixSidebarItem }], hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 });
|
|
3196
|
+
}
|
|
3197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
|
|
3198
|
+
type: Directive,
|
|
3199
|
+
args: [{
|
|
3200
|
+
selector: 'six-sidebar-item-group',
|
|
3201
|
+
hostDirectives: [RouterLinkActive],
|
|
3202
|
+
standalone: false,
|
|
3203
|
+
}]
|
|
3204
|
+
}], propDecorators: { sidebarItems: [{
|
|
3205
|
+
type: ContentChildren,
|
|
3206
|
+
args: [SixSidebarItem]
|
|
3207
|
+
}], open: [{
|
|
3208
|
+
type: HostBinding,
|
|
3209
|
+
args: ['open']
|
|
3210
|
+
}] } });
|
|
3211
|
+
|
|
3212
|
+
class DateValueAccessor extends ValueAccessor {
|
|
3213
|
+
constructor(injector, el) {
|
|
3214
|
+
super(injector, el);
|
|
3215
|
+
}
|
|
3216
|
+
handleInputEvent(el) {
|
|
3217
|
+
if (el) {
|
|
3218
|
+
this.handleValueChange(el, el.value);
|
|
3219
|
+
}
|
|
3220
|
+
}
|
|
3221
|
+
writeValue(value) {
|
|
3222
|
+
this.el.nativeElement.value = value == null ? '' : value;
|
|
3223
|
+
this.updateValidation();
|
|
3224
|
+
}
|
|
3225
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DateValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3226
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: DateValueAccessor, isStandalone: false, selector: "six-date", host: { listeners: { "change": "handleInputEvent($event.target)" } }, providers: [
|
|
3227
|
+
{
|
|
3228
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3229
|
+
useExisting: DateValueAccessor,
|
|
3230
|
+
multi: true,
|
|
3231
|
+
},
|
|
3232
|
+
], usesInheritance: true, ngImport: i0 });
|
|
3233
|
+
}
|
|
3234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
3235
|
+
type: Directive,
|
|
3236
|
+
args: [{
|
|
3237
|
+
selector: 'six-date',
|
|
3238
|
+
providers: [
|
|
3239
|
+
{
|
|
3240
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3241
|
+
useExisting: DateValueAccessor,
|
|
3242
|
+
multi: true,
|
|
3243
|
+
},
|
|
3244
|
+
],
|
|
3245
|
+
standalone: false,
|
|
3246
|
+
}]
|
|
3247
|
+
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
3248
|
+
type: HostListener,
|
|
3249
|
+
args: ['change', ['$event.target']]
|
|
3250
|
+
}] } });
|
|
3251
|
+
|
|
2225
3252
|
class UiLibraryAngularModule {
|
|
2226
|
-
static forRoot(customValidationMessagesService) {
|
|
3253
|
+
static forRoot(customValidationMessagesService, config) {
|
|
3254
|
+
const mergedConfig = {
|
|
3255
|
+
...DEFAULT_UI_LIBRARY_CONFIG,
|
|
3256
|
+
...config,
|
|
3257
|
+
};
|
|
2227
3258
|
return {
|
|
2228
3259
|
ngModule: UiLibraryAngularModule,
|
|
2229
3260
|
providers: [
|
|
@@ -2233,19 +3264,23 @@ class UiLibraryAngularModule {
|
|
|
2233
3264
|
multi: true,
|
|
2234
3265
|
},
|
|
2235
3266
|
{ provide: ValidationMessagesService, useClass: customValidationMessagesService ?? ValidationMessagesService },
|
|
3267
|
+
{ provide: UI_LIBRARY_CONFIG, useValue: mergedConfig },
|
|
2236
3268
|
],
|
|
2237
3269
|
};
|
|
2238
3270
|
}
|
|
2239
|
-
static
|
|
2240
|
-
static
|
|
3271
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3272
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule, declarations: [SixAlert, SixAvatar, SixBadge, SixBreadcrumbs, SixBreadcrumbsItem, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPaginator, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2241
3273
|
// value accessors
|
|
2242
3274
|
TextValueAccessor,
|
|
2243
3275
|
NumericValueAccessor,
|
|
2244
3276
|
RadioValueAccessor,
|
|
2245
3277
|
DatepickerValueAccessor,
|
|
3278
|
+
DateValueAccessor,
|
|
2246
3279
|
TimepickerValueAccessor,
|
|
2247
3280
|
SelectValueAccessor,
|
|
2248
3281
|
CheckboxValueAccessor,
|
|
3282
|
+
CheckboxMultiSelectValueAccessor,
|
|
3283
|
+
SixCheckboxGroupDirective,
|
|
2249
3284
|
SwitchValueAccessor,
|
|
2250
3285
|
RangeValueAccessor,
|
|
2251
3286
|
// validators
|
|
@@ -2254,19 +3289,29 @@ class UiLibraryAngularModule {
|
|
|
2254
3289
|
MinDateValidator,
|
|
2255
3290
|
MaxDateValidator,
|
|
2256
3291
|
AllowedDatesValidator,
|
|
3292
|
+
MinDateValidatorIso,
|
|
3293
|
+
MaxDateValidatorIso,
|
|
3294
|
+
AllowedDatesValidatorIso,
|
|
2257
3295
|
// form helpers
|
|
2258
3296
|
SixFormDirective,
|
|
2259
3297
|
SixFormUtilDirective,
|
|
2260
3298
|
// router link directive
|
|
2261
|
-
SixRouterLinkDirective
|
|
3299
|
+
SixRouterLinkDirective,
|
|
3300
|
+
// sidebar helpers
|
|
3301
|
+
ActiveSidebarItemDirective,
|
|
3302
|
+
ActiveSidebarItemGroupDirective,
|
|
3303
|
+
ActiveSidebarDirective], exports: [SixAlert, SixAvatar, SixBadge, SixBreadcrumbs, SixBreadcrumbsItem, SixButton, SixCard, SixCheckbox, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPaginator, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2262
3304
|
// value accessors
|
|
2263
3305
|
TextValueAccessor,
|
|
2264
3306
|
NumericValueAccessor,
|
|
2265
3307
|
RadioValueAccessor,
|
|
2266
3308
|
DatepickerValueAccessor,
|
|
3309
|
+
DateValueAccessor,
|
|
2267
3310
|
TimepickerValueAccessor,
|
|
2268
3311
|
SelectValueAccessor,
|
|
2269
3312
|
CheckboxValueAccessor,
|
|
3313
|
+
CheckboxMultiSelectValueAccessor,
|
|
3314
|
+
SixCheckboxGroupDirective,
|
|
2270
3315
|
SwitchValueAccessor,
|
|
2271
3316
|
RangeValueAccessor,
|
|
2272
3317
|
// validators
|
|
@@ -2275,14 +3320,21 @@ class UiLibraryAngularModule {
|
|
|
2275
3320
|
MinDateValidator,
|
|
2276
3321
|
MaxDateValidator,
|
|
2277
3322
|
AllowedDatesValidator,
|
|
3323
|
+
MinDateValidatorIso,
|
|
3324
|
+
MaxDateValidatorIso,
|
|
3325
|
+
AllowedDatesValidatorIso,
|
|
2278
3326
|
// form helpers
|
|
2279
3327
|
SixFormDirective,
|
|
2280
3328
|
SixFormUtilDirective,
|
|
2281
3329
|
// router link directive
|
|
2282
|
-
SixRouterLinkDirective
|
|
2283
|
-
|
|
3330
|
+
SixRouterLinkDirective,
|
|
3331
|
+
// sidebar helpers
|
|
3332
|
+
ActiveSidebarItemDirective,
|
|
3333
|
+
ActiveSidebarItemGroupDirective,
|
|
3334
|
+
ActiveSidebarDirective] });
|
|
3335
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule });
|
|
2284
3336
|
}
|
|
2285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
2286
3338
|
type: NgModule,
|
|
2287
3339
|
args: [{
|
|
2288
3340
|
declarations: [
|
|
@@ -2293,9 +3345,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2293
3345
|
NumericValueAccessor,
|
|
2294
3346
|
RadioValueAccessor,
|
|
2295
3347
|
DatepickerValueAccessor,
|
|
3348
|
+
DateValueAccessor,
|
|
2296
3349
|
TimepickerValueAccessor,
|
|
2297
3350
|
SelectValueAccessor,
|
|
2298
3351
|
CheckboxValueAccessor,
|
|
3352
|
+
CheckboxMultiSelectValueAccessor,
|
|
3353
|
+
SixCheckboxGroupDirective,
|
|
2299
3354
|
SwitchValueAccessor,
|
|
2300
3355
|
RangeValueAccessor,
|
|
2301
3356
|
// validators
|
|
@@ -2304,11 +3359,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2304
3359
|
MinDateValidator,
|
|
2305
3360
|
MaxDateValidator,
|
|
2306
3361
|
AllowedDatesValidator,
|
|
3362
|
+
MinDateValidatorIso,
|
|
3363
|
+
MaxDateValidatorIso,
|
|
3364
|
+
AllowedDatesValidatorIso,
|
|
2307
3365
|
// form helpers
|
|
2308
3366
|
SixFormDirective,
|
|
2309
3367
|
SixFormUtilDirective,
|
|
2310
3368
|
// router link directive
|
|
2311
3369
|
SixRouterLinkDirective,
|
|
3370
|
+
// sidebar helpers
|
|
3371
|
+
ActiveSidebarItemDirective,
|
|
3372
|
+
ActiveSidebarItemGroupDirective,
|
|
3373
|
+
ActiveSidebarDirective,
|
|
2312
3374
|
],
|
|
2313
3375
|
imports: [],
|
|
2314
3376
|
exports: [
|
|
@@ -2319,9 +3381,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2319
3381
|
NumericValueAccessor,
|
|
2320
3382
|
RadioValueAccessor,
|
|
2321
3383
|
DatepickerValueAccessor,
|
|
3384
|
+
DateValueAccessor,
|
|
2322
3385
|
TimepickerValueAccessor,
|
|
2323
3386
|
SelectValueAccessor,
|
|
2324
3387
|
CheckboxValueAccessor,
|
|
3388
|
+
CheckboxMultiSelectValueAccessor,
|
|
3389
|
+
SixCheckboxGroupDirective,
|
|
2325
3390
|
SwitchValueAccessor,
|
|
2326
3391
|
RangeValueAccessor,
|
|
2327
3392
|
// validators
|
|
@@ -2330,29 +3395,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2330
3395
|
MinDateValidator,
|
|
2331
3396
|
MaxDateValidator,
|
|
2332
3397
|
AllowedDatesValidator,
|
|
3398
|
+
MinDateValidatorIso,
|
|
3399
|
+
MaxDateValidatorIso,
|
|
3400
|
+
AllowedDatesValidatorIso,
|
|
2333
3401
|
// form helpers
|
|
2334
3402
|
SixFormDirective,
|
|
2335
3403
|
SixFormUtilDirective,
|
|
2336
3404
|
// router link directive
|
|
2337
3405
|
SixRouterLinkDirective,
|
|
3406
|
+
// sidebar helpers
|
|
3407
|
+
ActiveSidebarItemDirective,
|
|
3408
|
+
ActiveSidebarItemGroupDirective,
|
|
3409
|
+
ActiveSidebarDirective,
|
|
2338
3410
|
],
|
|
2339
3411
|
}]
|
|
2340
3412
|
}] });
|
|
2341
3413
|
|
|
2342
3414
|
class AlertService {
|
|
2343
|
-
|
|
2344
|
-
this.ngZone = inject(NgZone);
|
|
2345
|
-
}
|
|
3415
|
+
ngZone = inject(NgZone);
|
|
2346
3416
|
/**
|
|
2347
3417
|
* Displays an alert as a toast notification.
|
|
2348
3418
|
*/
|
|
2349
3419
|
showAlert(message, alertType, duration, iconName) {
|
|
2350
3420
|
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2351
3421
|
}
|
|
2352
|
-
static
|
|
2353
|
-
static
|
|
3422
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3423
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AlertService, providedIn: 'root' });
|
|
2354
3424
|
}
|
|
2355
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AlertService, decorators: [{
|
|
2356
3426
|
type: Injectable,
|
|
2357
3427
|
args: [{ providedIn: 'root' }]
|
|
2358
3428
|
}] });
|
|
@@ -2365,5 +3435,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2365
3435
|
* Generated bundle index. Do not edit.
|
|
2366
3436
|
*/
|
|
2367
3437
|
|
|
2368
|
-
export { AlertService, AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor,
|
|
3438
|
+
export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxMultiSelectValueAccessor, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixBreadcrumbs, SixBreadcrumbsItem, SixButton, SixCard, SixCheckbox, SixCheckboxGroupDirective, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPaginator, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
|
|
2369
3439
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|