@six-group/ui-library-angular 0.0.0-insider.756155a → 0.0.0-insider.77a508a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/control-value-accessors/date-value-accessor.mjs +41 -0
- package/esm2022/lib/control-value-accessors/value-accessor.mjs +3 -10
- package/esm2022/lib/link/six-router-link.directive.mjs +8 -3
- package/esm2022/lib/services/alert.service.mjs +21 -0
- package/esm2022/lib/stencil-generated/components.mjs +155 -60
- package/esm2022/lib/stencil-generated/index.mjs +6 -2
- package/esm2022/lib/ui-library-angular.module.mjs +21 -4
- package/esm2022/lib/validators/six-ui-library-validators.mjs +82 -1
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/six-group-ui-library-angular.mjs +324 -75
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/lib/control-value-accessors/date-value-accessor.d.ts +10 -0
- package/lib/link/six-router-link.directive.d.ts +1 -1
- package/lib/services/alert.service.d.ts +11 -0
- package/lib/stencil-generated/components.d.ts +64 -52
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/ui-library-angular.module.d.ts +10 -9
- package/lib/validators/six-ui-library-validators.d.ts +28 -0
- package/package.json +5 -2
- package/public-api.d.ts +2 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, Injectable, inject, Directive, HostListener, Input, EventEmitter, Output, Optional, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Injectable, inject, Directive, HostListener, Input, EventEmitter, Output, Optional, APP_INITIALIZER, NgModule, NgZone } from '@angular/core';
|
|
3
3
|
import { __decorate } from 'tslib';
|
|
4
4
|
import { fromEvent } from 'rxjs';
|
|
5
5
|
import { defineCustomElements } from '@six-group/ui-library/loader';
|
|
6
6
|
import * as i1 from '@angular/forms';
|
|
7
7
|
import { NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VALIDATORS, Validators } from '@angular/forms';
|
|
8
|
-
import { getErrorMessage,
|
|
8
|
+
import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
|
|
9
9
|
import * as i1$1 from '@angular/common';
|
|
10
10
|
import * as i2 from '@angular/router';
|
|
11
11
|
|
|
@@ -67,30 +67,6 @@ function ProxyCmp(opts) {
|
|
|
67
67
|
return decorator;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
let SetAttributes = class SetAttributes {
|
|
71
|
-
constructor(c, r, z) {
|
|
72
|
-
this.z = z;
|
|
73
|
-
c.detach();
|
|
74
|
-
this.el = r.nativeElement;
|
|
75
|
-
}
|
|
76
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetAttributes, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
77
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SetAttributes, selector: "set-attributes", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
78
|
-
};
|
|
79
|
-
SetAttributes = __decorate([
|
|
80
|
-
ProxyCmp({
|
|
81
|
-
inputs: ['value']
|
|
82
|
-
})
|
|
83
|
-
], SetAttributes);
|
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetAttributes, decorators: [{
|
|
85
|
-
type: Component,
|
|
86
|
-
args: [{
|
|
87
|
-
selector: 'set-attributes',
|
|
88
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
89
|
-
template: '<ng-content></ng-content>',
|
|
90
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
91
|
-
inputs: ['value'],
|
|
92
|
-
}]
|
|
93
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
94
70
|
let SixAlert = class SixAlert {
|
|
95
71
|
constructor(c, r, z) {
|
|
96
72
|
this.z = z;
|
|
@@ -239,6 +215,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
239
215
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
240
216
|
}]
|
|
241
217
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
218
|
+
let SixDate = class SixDate {
|
|
219
|
+
constructor(c, r, z) {
|
|
220
|
+
this.z = z;
|
|
221
|
+
c.detach();
|
|
222
|
+
this.el = r.nativeElement;
|
|
223
|
+
proxyOutputs(this, this.el, ['sixChange', 'sixBlur']);
|
|
224
|
+
}
|
|
225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
226
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDate, selector: "six-date", inputs: { allowedDates: "allowedDates", clearable: "clearable", dateFormat: "dateFormat", debounce: "debounce", 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 }); }
|
|
227
|
+
};
|
|
228
|
+
SixDate = __decorate([
|
|
229
|
+
ProxyCmp({
|
|
230
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'debounce', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
231
|
+
methods: ['setFocus']
|
|
232
|
+
})
|
|
233
|
+
], SixDate);
|
|
234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDate, decorators: [{
|
|
235
|
+
type: Component,
|
|
236
|
+
args: [{
|
|
237
|
+
selector: 'six-date',
|
|
238
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
239
|
+
template: '<ng-content></ng-content>',
|
|
240
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
241
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'debounce', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
242
|
+
}]
|
|
243
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
242
244
|
let SixDatepicker = class SixDatepicker {
|
|
243
245
|
constructor(c, r, z) {
|
|
244
246
|
this.z = z;
|
|
@@ -351,12 +353,12 @@ let SixDropdown = class SixDropdown {
|
|
|
351
353
|
proxyOutputs(this, this.el, ['six-dropdown-show', 'six-dropdown-after-show', 'six-dropdown-hide', 'six-dropdown-after-hide', 'six-dropdown-auto-filter-fired', 'six-async-filter-fired', 'six-dropdown-scroll']);
|
|
352
354
|
}
|
|
353
355
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
354
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDropdown, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
356
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixDropdown, selector: "six-dropdown", inputs: { asyncFilter: "asyncFilter", autofocusFilter: "autofocusFilter", closeOnSelect: "closeOnSelect", containingElement: "containingElement", disableHideOnEnterAndSpace: "disableHideOnEnterAndSpace", distance: "distance", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", hoist: "hoist", matchTriggerWidth: "matchTriggerWidth", open: "open", options: "options", placement: "placement", skidding: "skidding", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
355
357
|
};
|
|
356
358
|
SixDropdown = __decorate([
|
|
357
359
|
ProxyCmp({
|
|
358
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
359
|
-
methods: ['show', 'hide'
|
|
360
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
361
|
+
methods: ['show', 'hide']
|
|
360
362
|
})
|
|
361
363
|
], SixDropdown);
|
|
362
364
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDropdown, decorators: [{
|
|
@@ -366,7 +368,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
366
368
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
367
369
|
template: '<ng-content></ng-content>',
|
|
368
370
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
369
|
-
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
371
|
+
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
370
372
|
}]
|
|
371
373
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
372
374
|
let SixError = class SixError {
|
|
@@ -470,11 +472,11 @@ let SixFileUpload = class SixFileUpload {
|
|
|
470
472
|
proxyOutputs(this, this.el, ['six-file-upload-success', 'six-file-upload-failure']);
|
|
471
473
|
}
|
|
472
474
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
473
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixFileUpload, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", label: "label", maxFileSize: "maxFileSize", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
475
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixFileUpload, selector: "six-file-upload", inputs: { accept: "accept", compact: "compact", disabled: "disabled", errorText: "errorText", invalid: "invalid", label: "label", maxFileSize: "maxFileSize", multiple: "multiple", uploading: "uploading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
474
476
|
};
|
|
475
477
|
SixFileUpload = __decorate([
|
|
476
478
|
ProxyCmp({
|
|
477
|
-
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple']
|
|
479
|
+
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading']
|
|
478
480
|
})
|
|
479
481
|
], SixFileUpload);
|
|
480
482
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixFileUpload, decorators: [{
|
|
@@ -484,7 +486,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
484
486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
485
487
|
template: '<ng-content></ng-content>',
|
|
486
488
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
487
|
-
inputs: ['accept', 'compact', 'disabled', 'label', 'maxFileSize', 'multiple'],
|
|
489
|
+
inputs: ['accept', 'compact', 'disabled', 'errorText', 'invalid', 'label', 'maxFileSize', 'multiple', 'uploading'],
|
|
488
490
|
}]
|
|
489
491
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
490
492
|
let SixFooter = class SixFooter {
|
|
@@ -538,15 +540,13 @@ let SixHeader = class SixHeader {
|
|
|
538
540
|
this.z = z;
|
|
539
541
|
c.detach();
|
|
540
542
|
this.el = r.nativeElement;
|
|
541
|
-
proxyOutputs(this, this.el, ['six-header-app-name-clicked', 'six-header-app-switcher-select', 'six-header-profile-select', 'six-header-hamburger-menu-clicked', 'six-header-logo-clicked', 'six-header-search-field-toggle']);
|
|
542
543
|
}
|
|
543
544
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
544
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeader, selector: "six-header", inputs: {
|
|
545
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeader, selector: "six-header", inputs: { openSearch: "openSearch", shiftContent: "shiftContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
545
546
|
};
|
|
546
547
|
SixHeader = __decorate([
|
|
547
548
|
ProxyCmp({
|
|
548
|
-
inputs: ['
|
|
549
|
-
methods: ['setSearchOpenState', 'getIsSearchOpen']
|
|
549
|
+
inputs: ['openSearch', 'shiftContent']
|
|
550
550
|
})
|
|
551
551
|
], SixHeader);
|
|
552
552
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, decorators: [{
|
|
@@ -556,7 +556,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
556
556
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
557
557
|
template: '<ng-content></ng-content>',
|
|
558
558
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
559
|
-
inputs: ['
|
|
559
|
+
inputs: ['openSearch', 'shiftContent'],
|
|
560
|
+
}]
|
|
561
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
562
|
+
let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
563
|
+
constructor(c, r, z) {
|
|
564
|
+
this.z = z;
|
|
565
|
+
c.detach();
|
|
566
|
+
this.el = r.nativeElement;
|
|
567
|
+
}
|
|
568
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
569
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderDropdownItem, selector: "six-header-dropdown-item", inputs: { filter: "filter", filterPlaceholder: "filterPlaceholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
570
|
+
};
|
|
571
|
+
SixHeaderDropdownItem = __decorate([
|
|
572
|
+
ProxyCmp({
|
|
573
|
+
inputs: ['filter', 'filterPlaceholder']
|
|
574
|
+
})
|
|
575
|
+
], SixHeaderDropdownItem);
|
|
576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
|
|
577
|
+
type: Component,
|
|
578
|
+
args: [{
|
|
579
|
+
selector: 'six-header-dropdown-item',
|
|
580
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
581
|
+
template: '<ng-content></ng-content>',
|
|
582
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
583
|
+
inputs: ['filter', 'filterPlaceholder'],
|
|
584
|
+
}]
|
|
585
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
586
|
+
let SixHeaderItem = class SixHeaderItem {
|
|
587
|
+
constructor(c, r, z) {
|
|
588
|
+
this.z = z;
|
|
589
|
+
c.detach();
|
|
590
|
+
this.el = r.nativeElement;
|
|
591
|
+
}
|
|
592
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
593
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderItem, selector: "six-header-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
594
|
+
};
|
|
595
|
+
SixHeaderItem = __decorate([
|
|
596
|
+
ProxyCmp({
|
|
597
|
+
inputs: ['active']
|
|
598
|
+
})
|
|
599
|
+
], SixHeaderItem);
|
|
600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderItem, decorators: [{
|
|
601
|
+
type: Component,
|
|
602
|
+
args: [{
|
|
603
|
+
selector: 'six-header-item',
|
|
604
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
605
|
+
template: '<ng-content></ng-content>',
|
|
606
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
607
|
+
inputs: ['active'],
|
|
608
|
+
}]
|
|
609
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
610
|
+
let SixHeaderMenuButton = class SixHeaderMenuButton {
|
|
611
|
+
constructor(c, r, z) {
|
|
612
|
+
this.z = z;
|
|
613
|
+
c.detach();
|
|
614
|
+
this.el = r.nativeElement;
|
|
615
|
+
}
|
|
616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
617
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderMenuButton, 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 }); }
|
|
618
|
+
};
|
|
619
|
+
SixHeaderMenuButton = __decorate([
|
|
620
|
+
ProxyCmp({
|
|
621
|
+
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit']
|
|
622
|
+
})
|
|
623
|
+
], SixHeaderMenuButton);
|
|
624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
|
|
625
|
+
type: Component,
|
|
626
|
+
args: [{
|
|
627
|
+
selector: 'six-header-menu-button',
|
|
628
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
629
|
+
template: '<ng-content></ng-content>',
|
|
630
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
631
|
+
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
|
|
560
632
|
}]
|
|
561
633
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
562
634
|
let SixIcon = class SixIcon {
|
|
@@ -590,11 +662,11 @@ let SixIconButton = class SixIconButton {
|
|
|
590
662
|
this.el = r.nativeElement;
|
|
591
663
|
}
|
|
592
664
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
593
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixIconButton, selector: "six-icon-button", inputs: { disabled: "disabled", html: "html", label: "label", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
665
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixIconButton, selector: "six-icon-button", inputs: { disabled: "disabled", download: "download", href: "href", html: "html", label: "label", name: "name", size: "size", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
594
666
|
};
|
|
595
667
|
SixIconButton = __decorate([
|
|
596
668
|
ProxyCmp({
|
|
597
|
-
inputs: ['disabled', 'html', 'label', 'name', 'size']
|
|
669
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target']
|
|
598
670
|
})
|
|
599
671
|
], SixIconButton);
|
|
600
672
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixIconButton, decorators: [{
|
|
@@ -604,7 +676,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
604
676
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
605
677
|
template: '<ng-content></ng-content>',
|
|
606
678
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
607
|
-
inputs: ['disabled', 'html', 'label', 'name', 'size'],
|
|
679
|
+
inputs: ['disabled', 'download', 'href', 'html', 'label', 'name', 'size', 'target'],
|
|
608
680
|
}]
|
|
609
681
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
610
682
|
let SixInput = class SixInput {
|
|
@@ -615,12 +687,12 @@ let SixInput = class SixInput {
|
|
|
615
687
|
proxyOutputs(this, this.el, ['six-input-change', 'six-input-clear', 'six-input-input', 'six-input-focus', 'six-input-blur']);
|
|
616
688
|
}
|
|
617
689
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
618
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixInput, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", 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 }); }
|
|
690
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixInput, selector: "six-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearable: "clearable", disabled: "disabled", dropdownSearch: "dropdownSearch", errorText: "errorText", errorTextCount: "errorTextCount", helpText: "helpText", inputmode: "inputmode", invalid: "invalid", label: "label", line: "line", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", pill: "pill", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", spellcheck: "spellcheck", step: "step", togglePassword: "togglePassword", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
619
691
|
};
|
|
620
692
|
SixInput = __decorate([
|
|
621
693
|
ProxyCmp({
|
|
622
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
623
|
-
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'setRangeText']
|
|
694
|
+
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'],
|
|
695
|
+
methods: ['setFocus', 'removeFocus', 'select', 'setSelectionRange', 'getSelectionRange', 'setRangeText']
|
|
624
696
|
})
|
|
625
697
|
], SixInput);
|
|
626
698
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixInput, decorators: [{
|
|
@@ -630,7 +702,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
630
702
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
631
703
|
template: '<ng-content></ng-content>',
|
|
632
704
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
633
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'inputmode', 'invalid', 'label', 'line', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'pill', 'placeholder', 'readonly', 'required', 'size', 'spellcheck', 'step', 'togglePassword', 'type', 'value'],
|
|
705
|
+
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'],
|
|
634
706
|
}]
|
|
635
707
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
636
708
|
let SixItemPicker = class SixItemPicker {
|
|
@@ -707,6 +779,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
707
779
|
inputs: ['columns'],
|
|
708
780
|
}]
|
|
709
781
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
782
|
+
let SixLogo = class SixLogo {
|
|
783
|
+
constructor(c, r, z) {
|
|
784
|
+
this.z = z;
|
|
785
|
+
c.detach();
|
|
786
|
+
this.el = r.nativeElement;
|
|
787
|
+
}
|
|
788
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
789
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixLogo, selector: "six-logo", inputs: { brand: "brand" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
790
|
+
};
|
|
791
|
+
SixLogo = __decorate([
|
|
792
|
+
ProxyCmp({
|
|
793
|
+
inputs: ['brand']
|
|
794
|
+
})
|
|
795
|
+
], SixLogo);
|
|
796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixLogo, decorators: [{
|
|
797
|
+
type: Component,
|
|
798
|
+
args: [{
|
|
799
|
+
selector: 'six-logo',
|
|
800
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
801
|
+
template: '<ng-content></ng-content>',
|
|
802
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
803
|
+
inputs: ['brand'],
|
|
804
|
+
}]
|
|
805
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
710
806
|
let SixMainContainer = class SixMainContainer {
|
|
711
807
|
constructor(c, r, z) {
|
|
712
808
|
this.z = z;
|
|
@@ -739,11 +835,11 @@ let SixMenu = class SixMenu {
|
|
|
739
835
|
proxyOutputs(this, this.el, ['six-menu-item-selected']);
|
|
740
836
|
}
|
|
741
837
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
742
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenu, selector: "six-menu", inputs: { itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
838
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenu, selector: "six-menu", inputs: { disableKeyboardHandling: "disableKeyboardHandling", itemSize: "itemSize", items: "items", itemsShown: "itemsShown", removeBoxShadow: "removeBoxShadow", scrollingDebounce: "scrollingDebounce", virtualScroll: "virtualScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
743
839
|
};
|
|
744
840
|
SixMenu = __decorate([
|
|
745
841
|
ProxyCmp({
|
|
746
|
-
inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
842
|
+
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
747
843
|
methods: ['typeToSelect']
|
|
748
844
|
})
|
|
749
845
|
], SixMenu);
|
|
@@ -754,7 +850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
754
850
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
755
851
|
template: '<ng-content></ng-content>',
|
|
756
852
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
757
|
-
inputs: ['itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
853
|
+
inputs: ['disableKeyboardHandling', 'itemSize', 'items', 'itemsShown', 'removeBoxShadow', 'scrollingDebounce', 'virtualScroll'],
|
|
758
854
|
}]
|
|
759
855
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
760
856
|
let SixMenuDivider = class SixMenuDivider {
|
|
@@ -786,11 +882,11 @@ let SixMenuItem = class SixMenuItem {
|
|
|
786
882
|
this.el = r.nativeElement;
|
|
787
883
|
}
|
|
788
884
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
789
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenuItem, selector: "six-menu-item", inputs: { checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
885
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixMenuItem, selector: "six-menu-item", inputs: { checkType: "checkType", checked: "checked", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
790
886
|
};
|
|
791
887
|
SixMenuItem = __decorate([
|
|
792
888
|
ProxyCmp({
|
|
793
|
-
inputs: ['checked', 'disabled', 'value'],
|
|
889
|
+
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
794
890
|
methods: ['setFocus', 'removeFocus', 'getTextLabel']
|
|
795
891
|
})
|
|
796
892
|
], SixMenuItem);
|
|
@@ -801,7 +897,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
801
897
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
802
898
|
template: '<ng-content></ng-content>',
|
|
803
899
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
|
-
inputs: ['checked', 'disabled', 'value'],
|
|
900
|
+
inputs: ['checkType', 'checked', 'disabled', 'value'],
|
|
805
901
|
}]
|
|
806
902
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
807
903
|
let SixMenuLabel = class SixMenuLabel {
|
|
@@ -955,14 +1051,13 @@ let SixRoot = class SixRoot {
|
|
|
955
1051
|
this.z = z;
|
|
956
1052
|
c.detach();
|
|
957
1053
|
this.el = r.nativeElement;
|
|
958
|
-
proxyOutputs(this, this.el, ['six-root-collapsed']);
|
|
959
1054
|
}
|
|
960
1055
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
961
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixRoot, selector: "six-root", inputs: {
|
|
1056
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixRoot, selector: "six-root", inputs: { padded: "padded", stage: "stage", version: "version" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
962
1057
|
};
|
|
963
1058
|
SixRoot = __decorate([
|
|
964
1059
|
ProxyCmp({
|
|
965
|
-
inputs: ['
|
|
1060
|
+
inputs: ['padded', 'stage', 'version']
|
|
966
1061
|
})
|
|
967
1062
|
], SixRoot);
|
|
968
1063
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRoot, decorators: [{
|
|
@@ -972,7 +1067,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
972
1067
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
973
1068
|
template: '<ng-content></ng-content>',
|
|
974
1069
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
975
|
-
inputs: ['
|
|
1070
|
+
inputs: ['padded', 'stage', 'version'],
|
|
976
1071
|
}]
|
|
977
1072
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
978
1073
|
let SixSearchField = class SixSearchField {
|
|
@@ -1008,11 +1103,11 @@ let SixSelect = class SixSelect {
|
|
|
1008
1103
|
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
1009
1104
|
}
|
|
1010
1105
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1011
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSelect, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line",
|
|
1106
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSelect, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line", 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 }); }
|
|
1012
1107
|
};
|
|
1013
1108
|
SixSelect = __decorate([
|
|
1014
1109
|
ProxyCmp({
|
|
1015
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1110
|
+
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', 'multiple', 'name', 'options', 'pill', 'placeholder', 'required', 'selectAllButton', 'selectAllText', 'size', 'value', 'virtualScroll'],
|
|
1016
1111
|
methods: ['setFocus']
|
|
1017
1112
|
})
|
|
1018
1113
|
], SixSelect);
|
|
@@ -1023,7 +1118,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1023
1118
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1024
1119
|
template: '<ng-content></ng-content>',
|
|
1025
1120
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1026
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1121
|
+
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'],
|
|
1027
1122
|
}]
|
|
1028
1123
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1029
1124
|
let SixSidebar = class SixSidebar {
|
|
@@ -1107,11 +1202,11 @@ let SixSpinner = class SixSpinner {
|
|
|
1107
1202
|
this.el = r.nativeElement;
|
|
1108
1203
|
}
|
|
1109
1204
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1110
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSpinner, selector: "six-spinner", inputs: { six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1205
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSpinner, selector: "six-spinner", inputs: { logo: "logo", six: "six" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1111
1206
|
};
|
|
1112
1207
|
SixSpinner = __decorate([
|
|
1113
1208
|
ProxyCmp({
|
|
1114
|
-
inputs: ['six']
|
|
1209
|
+
inputs: ['logo', 'six']
|
|
1115
1210
|
})
|
|
1116
1211
|
], SixSpinner);
|
|
1117
1212
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSpinner, decorators: [{
|
|
@@ -1121,7 +1216,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1121
1216
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1122
1217
|
template: '<ng-content></ng-content>',
|
|
1123
1218
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1124
|
-
inputs: ['six'],
|
|
1219
|
+
inputs: ['logo', 'six'],
|
|
1125
1220
|
}]
|
|
1126
1221
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1127
1222
|
let SixStageIndicator = class SixStageIndicator {
|
|
@@ -1381,13 +1476,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1381
1476
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1382
1477
|
|
|
1383
1478
|
const DIRECTIVES = [
|
|
1384
|
-
SetAttributes,
|
|
1385
1479
|
SixAlert,
|
|
1386
1480
|
SixAvatar,
|
|
1387
1481
|
SixBadge,
|
|
1388
1482
|
SixButton,
|
|
1389
1483
|
SixCard,
|
|
1390
1484
|
SixCheckbox,
|
|
1485
|
+
SixDate,
|
|
1391
1486
|
SixDatepicker,
|
|
1392
1487
|
SixDetails,
|
|
1393
1488
|
SixDialog,
|
|
@@ -1401,12 +1496,16 @@ const DIRECTIVES = [
|
|
|
1401
1496
|
SixFooter,
|
|
1402
1497
|
SixGroupLabel,
|
|
1403
1498
|
SixHeader,
|
|
1499
|
+
SixHeaderDropdownItem,
|
|
1500
|
+
SixHeaderItem,
|
|
1501
|
+
SixHeaderMenuButton,
|
|
1404
1502
|
SixIcon,
|
|
1405
1503
|
SixIconButton,
|
|
1406
1504
|
SixInput,
|
|
1407
1505
|
SixItemPicker,
|
|
1408
1506
|
SixLanguageSwitcher,
|
|
1409
1507
|
SixLayoutGrid,
|
|
1508
|
+
SixLogo,
|
|
1410
1509
|
SixMainContainer,
|
|
1411
1510
|
SixMenu,
|
|
1412
1511
|
SixMenuDivider,
|
|
@@ -1497,7 +1596,7 @@ class ValueAccessor {
|
|
|
1497
1596
|
return;
|
|
1498
1597
|
const element = this.el.nativeElement;
|
|
1499
1598
|
const control = this.ngControl?.control;
|
|
1500
|
-
const invalid =
|
|
1599
|
+
const invalid = control.status === 'INVALID' && control.dirty && control.touched;
|
|
1501
1600
|
let errorTexts;
|
|
1502
1601
|
if (invalid) {
|
|
1503
1602
|
errorTexts = this.initialErrorText || this.getErrorTexts(control);
|
|
@@ -1571,13 +1670,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1571
1670
|
type: HostListener,
|
|
1572
1671
|
args: ['blur', ['$event.target']]
|
|
1573
1672
|
}] } });
|
|
1574
|
-
function getLanguage() {
|
|
1575
|
-
const documentLang = document.documentElement.lang;
|
|
1576
|
-
if (languages.includes(documentLang)) {
|
|
1577
|
-
return documentLang;
|
|
1578
|
-
}
|
|
1579
|
-
return 'de';
|
|
1580
|
-
}
|
|
1581
1673
|
const nextTick = (h) => {
|
|
1582
1674
|
if (typeof __zone_symbol__requestAnimationFrame === 'function') {
|
|
1583
1675
|
return __zone_symbol__requestAnimationFrame(h);
|
|
@@ -1905,6 +1997,30 @@ class SixUiLibraryValidators {
|
|
|
1905
1997
|
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
1906
1998
|
};
|
|
1907
1999
|
}
|
|
2000
|
+
static minDateIso(mindate) {
|
|
2001
|
+
return (control) => {
|
|
2002
|
+
if (control.value == null || control.value === '')
|
|
2003
|
+
return null;
|
|
2004
|
+
const actualDate = control.value;
|
|
2005
|
+
return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
|
|
2006
|
+
};
|
|
2007
|
+
}
|
|
2008
|
+
static maxDateIso(maxdate) {
|
|
2009
|
+
return (control) => {
|
|
2010
|
+
if (control.value == null || control.value === '')
|
|
2011
|
+
return null;
|
|
2012
|
+
const actualDate = control.value;
|
|
2013
|
+
return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
|
|
2014
|
+
};
|
|
2015
|
+
}
|
|
2016
|
+
static allowedDatesIso(allowedDates = () => true) {
|
|
2017
|
+
return (control) => {
|
|
2018
|
+
if (control.value == null || control.value === '')
|
|
2019
|
+
return null;
|
|
2020
|
+
const allowed = allowedDates(control.value);
|
|
2021
|
+
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
2022
|
+
};
|
|
2023
|
+
}
|
|
1908
2024
|
}
|
|
1909
2025
|
class MinDateValidator {
|
|
1910
2026
|
validate(control) {
|
|
@@ -1963,6 +2079,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1963
2079
|
}], propDecorators: { allowedDates: [{
|
|
1964
2080
|
type: Input
|
|
1965
2081
|
}] } });
|
|
2082
|
+
class MinDateValidatorIso {
|
|
2083
|
+
validate(control) {
|
|
2084
|
+
if (this.min != null) {
|
|
2085
|
+
return SixUiLibraryValidators.minDateIso(this.min)(control);
|
|
2086
|
+
}
|
|
2087
|
+
return null;
|
|
2088
|
+
}
|
|
2089
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2090
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MinDateValidatorIso, selector: "six-date[min]", inputs: { min: "min" }, providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }], ngImport: i0 }); }
|
|
2091
|
+
}
|
|
2092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2093
|
+
type: Directive,
|
|
2094
|
+
args: [{
|
|
2095
|
+
selector: 'six-date[min]',
|
|
2096
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2097
|
+
}]
|
|
2098
|
+
}], propDecorators: { min: [{
|
|
2099
|
+
type: Input
|
|
2100
|
+
}] } });
|
|
2101
|
+
class MaxDateValidatorIso {
|
|
2102
|
+
validate(control) {
|
|
2103
|
+
if (this.max != null) {
|
|
2104
|
+
return SixUiLibraryValidators.maxDateIso(this.max)(control);
|
|
2105
|
+
}
|
|
2106
|
+
return null;
|
|
2107
|
+
}
|
|
2108
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2109
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MaxDateValidatorIso, selector: "six-date[max]", inputs: { max: "max" }, providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }], ngImport: i0 }); }
|
|
2110
|
+
}
|
|
2111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2112
|
+
type: Directive,
|
|
2113
|
+
args: [{
|
|
2114
|
+
selector: 'six-date[max]',
|
|
2115
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2116
|
+
}]
|
|
2117
|
+
}], propDecorators: { max: [{
|
|
2118
|
+
type: Input
|
|
2119
|
+
}] } });
|
|
2120
|
+
class AllowedDatesValidatorIso {
|
|
2121
|
+
constructor() {
|
|
2122
|
+
this.allowedDates = () => true;
|
|
2123
|
+
}
|
|
2124
|
+
validate(control) {
|
|
2125
|
+
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2126
|
+
}
|
|
2127
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2128
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AllowedDatesValidatorIso, selector: "six-date[allowedDates]", inputs: { allowedDates: "allowedDates" }, providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }], ngImport: i0 }); }
|
|
2129
|
+
}
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2131
|
+
type: Directive,
|
|
2132
|
+
args: [{
|
|
2133
|
+
selector: 'six-date[allowedDates]',
|
|
2134
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2135
|
+
}]
|
|
2136
|
+
}], propDecorators: { allowedDates: [{
|
|
2137
|
+
type: Input
|
|
2138
|
+
}] } });
|
|
1966
2139
|
class MinValidator {
|
|
1967
2140
|
validate(control) {
|
|
1968
2141
|
return Validators.min(toFloat(this.min))(control);
|
|
@@ -2202,15 +2375,20 @@ class SixRouterLinkDirective {
|
|
|
2202
2375
|
if (this.routerLinkDirective?.urlTree) {
|
|
2203
2376
|
const url = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLinkDirective.urlTree));
|
|
2204
2377
|
this.renderer.setAttribute(this.elementRef.nativeElement, 'href', url);
|
|
2378
|
+
// Remove the `tabindex` attribute to prevent redundant focus behavior.
|
|
2379
|
+
// Angular's RouterLink adds `tabindex="0"` to non-focusable elements (e.g., `<div>`),
|
|
2380
|
+
// but custom components like `six-button` already handle focusability.
|
|
2381
|
+
// Keeping the tabindex would cause the element to receive focus twice.
|
|
2382
|
+
this.renderer.removeAttribute(this.elementRef.nativeElement, 'tabindex');
|
|
2205
2383
|
}
|
|
2206
2384
|
}
|
|
2207
2385
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRouterLinkDirective, deps: [{ token: i1$1.LocationStrategy }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.Renderer2 }, { token: i2.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2208
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixRouterLinkDirective, selector: "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
2386
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SixRouterLinkDirective, selector: "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]", inputs: { routerLink: "routerLink", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", relativeTo: "relativeTo" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
2209
2387
|
}
|
|
2210
2388
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixRouterLinkDirective, decorators: [{
|
|
2211
2389
|
type: Directive,
|
|
2212
2390
|
args: [{
|
|
2213
|
-
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]',
|
|
2391
|
+
selector: 'six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]',
|
|
2214
2392
|
}]
|
|
2215
2393
|
}], ctorParameters: function () { return [{ type: i1$1.LocationStrategy }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.Renderer2 }, { type: i2.RouterLink, decorators: [{
|
|
2216
2394
|
type: Optional
|
|
@@ -2229,6 +2407,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2229
2407
|
type: Input
|
|
2230
2408
|
}] } });
|
|
2231
2409
|
|
|
2410
|
+
class DateValueAccessor extends ValueAccessor {
|
|
2411
|
+
constructor(injector, el) {
|
|
2412
|
+
super(injector, el);
|
|
2413
|
+
}
|
|
2414
|
+
handleInputEvent(el) {
|
|
2415
|
+
this.handleValueChange(el, el.value);
|
|
2416
|
+
}
|
|
2417
|
+
writeValue(value) {
|
|
2418
|
+
this.el.nativeElement.value = value == null ? '' : value;
|
|
2419
|
+
this.updateValidation();
|
|
2420
|
+
}
|
|
2421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2422
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DateValueAccessor, selector: "six-date", host: { listeners: { "change": "handleInputEvent($event.target)" } }, providers: [
|
|
2423
|
+
{
|
|
2424
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2425
|
+
useExisting: DateValueAccessor,
|
|
2426
|
+
multi: true,
|
|
2427
|
+
},
|
|
2428
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2429
|
+
}
|
|
2430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
2431
|
+
type: Directive,
|
|
2432
|
+
args: [{
|
|
2433
|
+
selector: 'six-date',
|
|
2434
|
+
providers: [
|
|
2435
|
+
{
|
|
2436
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2437
|
+
useExisting: DateValueAccessor,
|
|
2438
|
+
multi: true,
|
|
2439
|
+
},
|
|
2440
|
+
],
|
|
2441
|
+
}]
|
|
2442
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
2443
|
+
type: HostListener,
|
|
2444
|
+
args: ['change', ['$event.target']]
|
|
2445
|
+
}] } });
|
|
2446
|
+
|
|
2232
2447
|
class UiLibraryAngularModule {
|
|
2233
2448
|
static forRoot(customValidationMessagesService) {
|
|
2234
2449
|
return {
|
|
@@ -2244,12 +2459,13 @@ class UiLibraryAngularModule {
|
|
|
2244
2459
|
};
|
|
2245
2460
|
}
|
|
2246
2461
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2247
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, declarations: [
|
|
2462
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", 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,
|
|
2248
2463
|
// value accessors
|
|
2249
2464
|
TextValueAccessor,
|
|
2250
2465
|
NumericValueAccessor,
|
|
2251
2466
|
RadioValueAccessor,
|
|
2252
2467
|
DatepickerValueAccessor,
|
|
2468
|
+
DateValueAccessor,
|
|
2253
2469
|
TimepickerValueAccessor,
|
|
2254
2470
|
SelectValueAccessor,
|
|
2255
2471
|
CheckboxValueAccessor,
|
|
@@ -2261,16 +2477,20 @@ class UiLibraryAngularModule {
|
|
|
2261
2477
|
MinDateValidator,
|
|
2262
2478
|
MaxDateValidator,
|
|
2263
2479
|
AllowedDatesValidator,
|
|
2480
|
+
MinDateValidatorIso,
|
|
2481
|
+
MaxDateValidatorIso,
|
|
2482
|
+
AllowedDatesValidatorIso,
|
|
2264
2483
|
// form helpers
|
|
2265
2484
|
SixFormDirective,
|
|
2266
2485
|
SixFormUtilDirective,
|
|
2267
2486
|
// router link directive
|
|
2268
|
-
SixRouterLinkDirective], exports: [
|
|
2487
|
+
SixRouterLinkDirective], 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,
|
|
2269
2488
|
// value accessors
|
|
2270
2489
|
TextValueAccessor,
|
|
2271
2490
|
NumericValueAccessor,
|
|
2272
2491
|
RadioValueAccessor,
|
|
2273
2492
|
DatepickerValueAccessor,
|
|
2493
|
+
DateValueAccessor,
|
|
2274
2494
|
TimepickerValueAccessor,
|
|
2275
2495
|
SelectValueAccessor,
|
|
2276
2496
|
CheckboxValueAccessor,
|
|
@@ -2282,6 +2502,9 @@ class UiLibraryAngularModule {
|
|
|
2282
2502
|
MinDateValidator,
|
|
2283
2503
|
MaxDateValidator,
|
|
2284
2504
|
AllowedDatesValidator,
|
|
2505
|
+
MinDateValidatorIso,
|
|
2506
|
+
MaxDateValidatorIso,
|
|
2507
|
+
AllowedDatesValidatorIso,
|
|
2285
2508
|
// form helpers
|
|
2286
2509
|
SixFormDirective,
|
|
2287
2510
|
SixFormUtilDirective,
|
|
@@ -2300,6 +2523,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2300
2523
|
NumericValueAccessor,
|
|
2301
2524
|
RadioValueAccessor,
|
|
2302
2525
|
DatepickerValueAccessor,
|
|
2526
|
+
DateValueAccessor,
|
|
2303
2527
|
TimepickerValueAccessor,
|
|
2304
2528
|
SelectValueAccessor,
|
|
2305
2529
|
CheckboxValueAccessor,
|
|
@@ -2311,6 +2535,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2311
2535
|
MinDateValidator,
|
|
2312
2536
|
MaxDateValidator,
|
|
2313
2537
|
AllowedDatesValidator,
|
|
2538
|
+
MinDateValidatorIso,
|
|
2539
|
+
MaxDateValidatorIso,
|
|
2540
|
+
AllowedDatesValidatorIso,
|
|
2314
2541
|
// form helpers
|
|
2315
2542
|
SixFormDirective,
|
|
2316
2543
|
SixFormUtilDirective,
|
|
@@ -2326,6 +2553,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2326
2553
|
NumericValueAccessor,
|
|
2327
2554
|
RadioValueAccessor,
|
|
2328
2555
|
DatepickerValueAccessor,
|
|
2556
|
+
DateValueAccessor,
|
|
2329
2557
|
TimepickerValueAccessor,
|
|
2330
2558
|
SelectValueAccessor,
|
|
2331
2559
|
CheckboxValueAccessor,
|
|
@@ -2337,6 +2565,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2337
2565
|
MinDateValidator,
|
|
2338
2566
|
MaxDateValidator,
|
|
2339
2567
|
AllowedDatesValidator,
|
|
2568
|
+
MinDateValidatorIso,
|
|
2569
|
+
MaxDateValidatorIso,
|
|
2570
|
+
AllowedDatesValidatorIso,
|
|
2340
2571
|
// form helpers
|
|
2341
2572
|
SixFormDirective,
|
|
2342
2573
|
SixFormUtilDirective,
|
|
@@ -2346,6 +2577,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2346
2577
|
}]
|
|
2347
2578
|
}] });
|
|
2348
2579
|
|
|
2580
|
+
class AlertService {
|
|
2581
|
+
constructor() {
|
|
2582
|
+
this.ngZone = inject(NgZone);
|
|
2583
|
+
}
|
|
2584
|
+
/**
|
|
2585
|
+
* Displays an alert as a toast notification.
|
|
2586
|
+
*/
|
|
2587
|
+
showAlert(message, alertType, duration, iconName) {
|
|
2588
|
+
this.ngZone.runOutsideAngular(() => showAlert(message, alertType, duration, iconName));
|
|
2589
|
+
}
|
|
2590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2591
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, providedIn: 'root' }); }
|
|
2592
|
+
}
|
|
2593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertService, decorators: [{
|
|
2594
|
+
type: Injectable,
|
|
2595
|
+
args: [{ providedIn: 'root' }]
|
|
2596
|
+
}] });
|
|
2597
|
+
|
|
2349
2598
|
/*
|
|
2350
2599
|
* Public API Surface of ui-library-angular
|
|
2351
2600
|
*/
|
|
@@ -2354,5 +2603,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2354
2603
|
* Generated bundle index. Do not edit.
|
|
2355
2604
|
*/
|
|
2356
2605
|
|
|
2357
|
-
export { AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor,
|
|
2606
|
+
export { 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 };
|
|
2358
2607
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|