@six-group/ui-library-angular 0.0.0-insider.b42b8b1 → 0.0.0-insider.b5de8a2

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