@six-group/ui-library-angular 0.0.0-insider.b13c699 → 0.0.0-insider.b2db78f
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/sidebar/active-sidebar.directive.mjs +110 -0
- package/esm2022/lib/stencil-generated/components.mjs +45 -19
- package/esm2022/lib/stencil-generated/index.mjs +2 -1
- package/esm2022/lib/ui-library-angular.module.mjs +39 -5
- package/esm2022/lib/validators/six-ui-library-validators.mjs +82 -1
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/six-group-ui-library-angular.mjs +306 -23
- 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/sidebar/active-sidebar.directive.d.ts +59 -0
- package/lib/stencil-generated/components.d.ts +24 -33
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/ui-library-angular.module.d.ts +11 -9
- package/lib/validators/six-ui-library-validators.d.ts +27 -0
- package/package.json +4 -1
- package/public-api.d.ts +2 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, Injectable, inject, Directive, HostListener, Input, EventEmitter, Output, Optional, APP_INITIALIZER, NgModule, NgZone } from '@angular/core';
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Injectable, inject, Directive, HostListener, Input, EventEmitter, Output, 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';
|
|
@@ -8,6 +8,7 @@ import { NgControl, NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray, NG_VAL
|
|
|
8
8
|
import { getErrorMessage, getLanguage, showAlert } from '@six-group/ui-library';
|
|
9
9
|
import * as i1$1 from '@angular/common';
|
|
10
10
|
import * as i2 from '@angular/router';
|
|
11
|
+
import { RouterLinkActive } from '@angular/router';
|
|
11
12
|
|
|
12
13
|
/* eslint-disable */
|
|
13
14
|
/* tslint:disable */
|
|
@@ -215,6 +216,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
215
216
|
inputs: ['checked', 'disabled', 'errorText', 'errorTextCount', 'indeterminate', 'invalid', 'label', 'name', 'required', 'value'],
|
|
216
217
|
}]
|
|
217
218
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
219
|
+
let SixDate = class SixDate {
|
|
220
|
+
constructor(c, r, z) {
|
|
221
|
+
this.z = z;
|
|
222
|
+
c.detach();
|
|
223
|
+
this.el = r.nativeElement;
|
|
224
|
+
proxyOutputs(this, this.el, ['six-change', 'six-blur']);
|
|
225
|
+
}
|
|
226
|
+
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 }); }
|
|
227
|
+
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 }); }
|
|
228
|
+
};
|
|
229
|
+
SixDate = __decorate([
|
|
230
|
+
ProxyCmp({
|
|
231
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'debounce', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
232
|
+
methods: ['setFocus']
|
|
233
|
+
})
|
|
234
|
+
], SixDate);
|
|
235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDate, decorators: [{
|
|
236
|
+
type: Component,
|
|
237
|
+
args: [{
|
|
238
|
+
selector: 'six-date',
|
|
239
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
240
|
+
template: '<ng-content></ng-content>',
|
|
241
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
242
|
+
inputs: ['allowedDates', 'clearable', 'dateFormat', 'debounce', 'disabled', 'errorText', 'errorTextCount', 'helpText', 'invalid', 'label', 'language', 'max', 'min', 'name', 'placeholder', 'readonly', 'required', 'size', 'value'],
|
|
243
|
+
}]
|
|
244
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
218
245
|
let SixDatepicker = class SixDatepicker {
|
|
219
246
|
constructor(c, r, z) {
|
|
220
247
|
this.z = z;
|
|
@@ -332,7 +359,7 @@ let SixDropdown = class SixDropdown {
|
|
|
332
359
|
SixDropdown = __decorate([
|
|
333
360
|
ProxyCmp({
|
|
334
361
|
inputs: ['asyncFilter', 'autofocusFilter', 'closeOnSelect', 'containingElement', 'disableHideOnEnterAndSpace', 'distance', 'filter', 'filterDebounce', 'filterPlaceholder', 'hoist', 'matchTriggerWidth', 'open', 'options', 'placement', 'skidding', 'virtualScroll'],
|
|
335
|
-
methods: ['show', 'hide'
|
|
362
|
+
methods: ['show', 'hide']
|
|
336
363
|
})
|
|
337
364
|
], SixDropdown);
|
|
338
365
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixDropdown, decorators: [{
|
|
@@ -514,15 +541,13 @@ let SixHeader = class SixHeader {
|
|
|
514
541
|
this.z = z;
|
|
515
542
|
c.detach();
|
|
516
543
|
this.el = r.nativeElement;
|
|
517
|
-
proxyOutputs(this, this.el, ['six-header-app-name-clicked', 'six-header-app-switcher-select', 'six-header-profile-select', 'six-header-hamburger-menu-clicked', 'six-header-logo-clicked', 'six-header-search-field-toggle']);
|
|
518
544
|
}
|
|
519
545
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
520
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeader, selector: "six-header", inputs: {
|
|
546
|
+
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 }); }
|
|
521
547
|
};
|
|
522
548
|
SixHeader = __decorate([
|
|
523
549
|
ProxyCmp({
|
|
524
|
-
inputs: ['
|
|
525
|
-
methods: ['setSearchOpenState', 'getIsSearchOpen']
|
|
550
|
+
inputs: ['openSearch', 'shiftContent']
|
|
526
551
|
})
|
|
527
552
|
], SixHeader);
|
|
528
553
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeader, decorators: [{
|
|
@@ -532,7 +557,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
532
557
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
533
558
|
template: '<ng-content></ng-content>',
|
|
534
559
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
|
-
inputs: ['
|
|
560
|
+
inputs: ['openSearch', 'shiftContent'],
|
|
536
561
|
}]
|
|
537
562
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
538
563
|
let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
@@ -542,10 +567,12 @@ let SixHeaderDropdownItem = class SixHeaderDropdownItem {
|
|
|
542
567
|
this.el = r.nativeElement;
|
|
543
568
|
}
|
|
544
569
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
545
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderDropdownItem, selector: "six-header-dropdown-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
570
|
+
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 }); }
|
|
546
571
|
};
|
|
547
572
|
SixHeaderDropdownItem = __decorate([
|
|
548
|
-
ProxyCmp({
|
|
573
|
+
ProxyCmp({
|
|
574
|
+
inputs: ['filter', 'filterPlaceholder']
|
|
575
|
+
})
|
|
549
576
|
], SixHeaderDropdownItem);
|
|
550
577
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderDropdownItem, decorators: [{
|
|
551
578
|
type: Component,
|
|
@@ -554,7 +581,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
554
581
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
555
582
|
template: '<ng-content></ng-content>',
|
|
556
583
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
557
|
-
inputs: [],
|
|
584
|
+
inputs: ['filter', 'filterPlaceholder'],
|
|
558
585
|
}]
|
|
559
586
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
560
587
|
let SixHeaderItem = class SixHeaderItem {
|
|
@@ -588,11 +615,11 @@ let SixHeaderMenuButton = class SixHeaderMenuButton {
|
|
|
588
615
|
this.el = r.nativeElement;
|
|
589
616
|
}
|
|
590
617
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
591
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixHeaderMenuButton, selector: "six-header-menu-button", inputs: {
|
|
618
|
+
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 }); }
|
|
592
619
|
};
|
|
593
620
|
SixHeaderMenuButton = __decorate([
|
|
594
621
|
ProxyCmp({
|
|
595
|
-
inputs: ['
|
|
622
|
+
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit']
|
|
596
623
|
})
|
|
597
624
|
], SixHeaderMenuButton);
|
|
598
625
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixHeaderMenuButton, decorators: [{
|
|
@@ -602,7 +629,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
602
629
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
603
630
|
template: '<ng-content></ng-content>',
|
|
604
631
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
605
|
-
inputs: ['
|
|
632
|
+
inputs: ['caret', 'disabled', 'loading', 'reset', 'submit'],
|
|
606
633
|
}]
|
|
607
634
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
608
635
|
let SixIcon = class SixIcon {
|
|
@@ -1077,11 +1104,11 @@ let SixSelect = class SixSelect {
|
|
|
1077
1104
|
proxyOutputs(this, this.el, ['six-select-change', 'six-select-focus', 'six-select-blur']);
|
|
1078
1105
|
}
|
|
1079
1106
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1080
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSelect, selector: "six-select", inputs: { asyncFilter: "asyncFilter", autocomplete: "autocomplete", clearable: "clearable", disabled: "disabled", errorText: "errorText", errorTextCount: "errorTextCount", filter: "filter", filterDebounce: "filterDebounce", filterPlaceholder: "filterPlaceholder", helpText: "helpText", hoist: "hoist", inputDebounce: "inputDebounce", invalid: "invalid", label: "label", line: "line",
|
|
1107
|
+
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 }); }
|
|
1081
1108
|
};
|
|
1082
1109
|
SixSelect = __decorate([
|
|
1083
1110
|
ProxyCmp({
|
|
1084
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1111
|
+
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'],
|
|
1085
1112
|
methods: ['setFocus']
|
|
1086
1113
|
})
|
|
1087
1114
|
], SixSelect);
|
|
@@ -1092,7 +1119,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1092
1119
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1093
1120
|
template: '<ng-content></ng-content>',
|
|
1094
1121
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1095
|
-
inputs: ['asyncFilter', 'autocomplete', 'clearable', 'disabled', 'errorText', 'errorTextCount', 'filter', 'filterDebounce', 'filterPlaceholder', 'helpText', 'hoist', 'inputDebounce', 'invalid', 'label', 'line', '
|
|
1122
|
+
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'],
|
|
1096
1123
|
}]
|
|
1097
1124
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1098
1125
|
let SixSidebar = class SixSidebar {
|
|
@@ -1128,11 +1155,11 @@ let SixSidebarItem = class SixSidebarItem {
|
|
|
1128
1155
|
this.el = r.nativeElement;
|
|
1129
1156
|
}
|
|
1130
1157
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1131
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSidebarItem, selector: "six-sidebar-item", inputs: { disabled: "disabled", href: "href", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1158
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SixSidebarItem, 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 }); }
|
|
1132
1159
|
};
|
|
1133
1160
|
SixSidebarItem = __decorate([
|
|
1134
1161
|
ProxyCmp({
|
|
1135
|
-
inputs: ['disabled', 'href', 'selected', 'value']
|
|
1162
|
+
inputs: ['disabled', 'href', 'icon', 'selected', 'value']
|
|
1136
1163
|
})
|
|
1137
1164
|
], SixSidebarItem);
|
|
1138
1165
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SixSidebarItem, decorators: [{
|
|
@@ -1142,7 +1169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1142
1169
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1143
1170
|
template: '<ng-content></ng-content>',
|
|
1144
1171
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1145
|
-
inputs: ['disabled', 'href', 'selected', 'value'],
|
|
1172
|
+
inputs: ['disabled', 'href', 'icon', 'selected', 'value'],
|
|
1146
1173
|
}]
|
|
1147
1174
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1148
1175
|
let SixSidebarItemGroup = class SixSidebarItemGroup {
|
|
@@ -1456,6 +1483,7 @@ const DIRECTIVES = [
|
|
|
1456
1483
|
SixButton,
|
|
1457
1484
|
SixCard,
|
|
1458
1485
|
SixCheckbox,
|
|
1486
|
+
SixDate,
|
|
1459
1487
|
SixDatepicker,
|
|
1460
1488
|
SixDetails,
|
|
1461
1489
|
SixDialog,
|
|
@@ -1970,6 +1998,30 @@ class SixUiLibraryValidators {
|
|
|
1970
1998
|
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
1971
1999
|
};
|
|
1972
2000
|
}
|
|
2001
|
+
static minDateIso(mindate) {
|
|
2002
|
+
return (control) => {
|
|
2003
|
+
if (control.value == null || control.value === '')
|
|
2004
|
+
return null;
|
|
2005
|
+
const actualDate = control.value;
|
|
2006
|
+
return actualDate >= mindate ? null : { mindate: { mindate, actual: actualDate } };
|
|
2007
|
+
};
|
|
2008
|
+
}
|
|
2009
|
+
static maxDateIso(maxdate) {
|
|
2010
|
+
return (control) => {
|
|
2011
|
+
if (control.value == null || control.value === '')
|
|
2012
|
+
return null;
|
|
2013
|
+
const actualDate = control.value;
|
|
2014
|
+
return actualDate <= maxdate ? null : { maxdate: { maxdate, actual: actualDate } };
|
|
2015
|
+
};
|
|
2016
|
+
}
|
|
2017
|
+
static allowedDatesIso(allowedDates = () => true) {
|
|
2018
|
+
return (control) => {
|
|
2019
|
+
if (control.value == null || control.value === '')
|
|
2020
|
+
return null;
|
|
2021
|
+
const allowed = allowedDates(control.value);
|
|
2022
|
+
return allowed ? null : { invaliddate: { actual: control.value } };
|
|
2023
|
+
};
|
|
2024
|
+
}
|
|
1973
2025
|
}
|
|
1974
2026
|
class MinDateValidator {
|
|
1975
2027
|
validate(control) {
|
|
@@ -2028,6 +2080,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2028
2080
|
}], propDecorators: { allowedDates: [{
|
|
2029
2081
|
type: Input
|
|
2030
2082
|
}] } });
|
|
2083
|
+
class MinDateValidatorIso {
|
|
2084
|
+
validate(control) {
|
|
2085
|
+
if (this.min != null) {
|
|
2086
|
+
return SixUiLibraryValidators.minDateIso(this.min)(control);
|
|
2087
|
+
}
|
|
2088
|
+
return null;
|
|
2089
|
+
}
|
|
2090
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2091
|
+
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 }); }
|
|
2092
|
+
}
|
|
2093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinDateValidatorIso, decorators: [{
|
|
2094
|
+
type: Directive,
|
|
2095
|
+
args: [{
|
|
2096
|
+
selector: 'six-date[min]',
|
|
2097
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MinDateValidatorIso, multi: true }],
|
|
2098
|
+
}]
|
|
2099
|
+
}], propDecorators: { min: [{
|
|
2100
|
+
type: Input
|
|
2101
|
+
}] } });
|
|
2102
|
+
class MaxDateValidatorIso {
|
|
2103
|
+
validate(control) {
|
|
2104
|
+
if (this.max != null) {
|
|
2105
|
+
return SixUiLibraryValidators.maxDateIso(this.max)(control);
|
|
2106
|
+
}
|
|
2107
|
+
return null;
|
|
2108
|
+
}
|
|
2109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2110
|
+
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 }); }
|
|
2111
|
+
}
|
|
2112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MaxDateValidatorIso, decorators: [{
|
|
2113
|
+
type: Directive,
|
|
2114
|
+
args: [{
|
|
2115
|
+
selector: 'six-date[max]',
|
|
2116
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: MaxDateValidatorIso, multi: true }],
|
|
2117
|
+
}]
|
|
2118
|
+
}], propDecorators: { max: [{
|
|
2119
|
+
type: Input
|
|
2120
|
+
}] } });
|
|
2121
|
+
class AllowedDatesValidatorIso {
|
|
2122
|
+
constructor() {
|
|
2123
|
+
this.allowedDates = () => true;
|
|
2124
|
+
}
|
|
2125
|
+
validate(control) {
|
|
2126
|
+
return SixUiLibraryValidators.allowedDatesIso(this.allowedDates)(control);
|
|
2127
|
+
}
|
|
2128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidatorIso, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2129
|
+
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 }); }
|
|
2130
|
+
}
|
|
2131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllowedDatesValidatorIso, decorators: [{
|
|
2132
|
+
type: Directive,
|
|
2133
|
+
args: [{
|
|
2134
|
+
selector: 'six-date[allowedDates]',
|
|
2135
|
+
providers: [{ provide: NG_VALIDATORS, useExisting: AllowedDatesValidatorIso, multi: true }],
|
|
2136
|
+
}]
|
|
2137
|
+
}], propDecorators: { allowedDates: [{
|
|
2138
|
+
type: Input
|
|
2139
|
+
}] } });
|
|
2031
2140
|
class MinValidator {
|
|
2032
2141
|
validate(control) {
|
|
2033
2142
|
return Validators.min(toFloat(this.min))(control);
|
|
@@ -2299,6 +2408,148 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2299
2408
|
type: Input
|
|
2300
2409
|
}] } });
|
|
2301
2410
|
|
|
2411
|
+
/**
|
|
2412
|
+
* Enables Angular router integration for the six-sidebar component.
|
|
2413
|
+
*
|
|
2414
|
+
* When this directive is added to a six-sidebar component using the 'sixRouterLinkActive' attribute,
|
|
2415
|
+
* it activates automatic route-based selection for sidebar items and groups.
|
|
2416
|
+
*
|
|
2417
|
+
* @recommended Add this directive to enable automatic route-based navigation in sidebars.
|
|
2418
|
+
*
|
|
2419
|
+
* @example
|
|
2420
|
+
* ```html
|
|
2421
|
+
* <six-sidebar sixRouterLinkActive>
|
|
2422
|
+
* <six-sidebar-item routerLink="/home">Home</six-sidebar-item>
|
|
2423
|
+
* <six-sidebar-item-group>
|
|
2424
|
+
* <six-sidebar-item routerLink="/settings/profile">Profile</six-sidebar-item>
|
|
2425
|
+
* </six-sidebar-item-group>
|
|
2426
|
+
* </six-sidebar>
|
|
2427
|
+
* ```
|
|
2428
|
+
*/
|
|
2429
|
+
class ActiveSidebarDirective {
|
|
2430
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2431
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ActiveSidebarDirective, selector: "six-sidebar[sixRouterLinkActive]", ngImport: i0 }); }
|
|
2432
|
+
}
|
|
2433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarDirective, decorators: [{
|
|
2434
|
+
type: Directive,
|
|
2435
|
+
args: [{
|
|
2436
|
+
selector: 'six-sidebar[sixRouterLinkActive]',
|
|
2437
|
+
}]
|
|
2438
|
+
}] });
|
|
2439
|
+
/**
|
|
2440
|
+
* Enhances six-sidebar-item with Angular router integration.
|
|
2441
|
+
*
|
|
2442
|
+
* This directive automatically manages the 'selected' state of sidebar items based on the current route.
|
|
2443
|
+
* When used with ActiveSidebarDirective, it switches from manual selection to route-based selection.
|
|
2444
|
+
*
|
|
2445
|
+
* @requires RouterLinkActive
|
|
2446
|
+
* @optional ActiveSidebarDirective - If present, enables route-based selection
|
|
2447
|
+
*/
|
|
2448
|
+
class ActiveSidebarItemDirective {
|
|
2449
|
+
constructor() {
|
|
2450
|
+
this.routerLinkActive = inject(RouterLinkActive);
|
|
2451
|
+
this.sidebarItem = inject(SixSidebarItem);
|
|
2452
|
+
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2453
|
+
}
|
|
2454
|
+
get selected() {
|
|
2455
|
+
if (this.activeSidebarDirective == null) {
|
|
2456
|
+
return this.sidebarItem.selected;
|
|
2457
|
+
}
|
|
2458
|
+
else {
|
|
2459
|
+
return this.routerLinkActive.isActive;
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2463
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ActiveSidebarItemDirective, selector: "six-sidebar-item", host: { properties: { "selected": "this.selected" } }, hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 }); }
|
|
2464
|
+
}
|
|
2465
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemDirective, decorators: [{
|
|
2466
|
+
type: Directive,
|
|
2467
|
+
args: [{
|
|
2468
|
+
selector: 'six-sidebar-item',
|
|
2469
|
+
hostDirectives: [RouterLinkActive],
|
|
2470
|
+
}]
|
|
2471
|
+
}], propDecorators: { selected: [{
|
|
2472
|
+
type: HostBinding,
|
|
2473
|
+
args: ['selected']
|
|
2474
|
+
}] } });
|
|
2475
|
+
/**
|
|
2476
|
+
* Enhances six-sidebar-item-group with Angular router integration.
|
|
2477
|
+
*
|
|
2478
|
+
* This directive automatically manages the 'open' state of sidebar groups based on the active route.
|
|
2479
|
+
* When a child route is active, the group automatically expands to show the active item.
|
|
2480
|
+
*
|
|
2481
|
+
* @requires RouterLinkActive
|
|
2482
|
+
* @optional ActiveSidebarDirective - If present, enables route-based expansion
|
|
2483
|
+
*/
|
|
2484
|
+
class ActiveSidebarItemGroupDirective {
|
|
2485
|
+
constructor() {
|
|
2486
|
+
this.routerLinkActive = inject(RouterLinkActive);
|
|
2487
|
+
this.sidebarItemGroup = inject(SixSidebarItemGroup);
|
|
2488
|
+
this.activeSidebarDirective = inject(ActiveSidebarDirective, { optional: true });
|
|
2489
|
+
}
|
|
2490
|
+
get open() {
|
|
2491
|
+
if (this.activeSidebarDirective == null) {
|
|
2492
|
+
return this.sidebarItemGroup.open;
|
|
2493
|
+
}
|
|
2494
|
+
if (this.sidebarItems?.length > 0) {
|
|
2495
|
+
return this.routerLinkActive.isActive ? true : this.sidebarItemGroup.open;
|
|
2496
|
+
}
|
|
2497
|
+
return this.routerLinkActive.isActive;
|
|
2498
|
+
}
|
|
2499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2500
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ActiveSidebarItemGroupDirective, selector: "six-sidebar-item-group", host: { properties: { "open": "this.open" } }, queries: [{ propertyName: "sidebarItems", predicate: SixSidebarItem }], hostDirectives: [{ directive: i2.RouterLinkActive }], ngImport: i0 }); }
|
|
2501
|
+
}
|
|
2502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActiveSidebarItemGroupDirective, decorators: [{
|
|
2503
|
+
type: Directive,
|
|
2504
|
+
args: [{
|
|
2505
|
+
selector: 'six-sidebar-item-group',
|
|
2506
|
+
hostDirectives: [RouterLinkActive],
|
|
2507
|
+
}]
|
|
2508
|
+
}], propDecorators: { sidebarItems: [{
|
|
2509
|
+
type: ContentChildren,
|
|
2510
|
+
args: [SixSidebarItem]
|
|
2511
|
+
}], open: [{
|
|
2512
|
+
type: HostBinding,
|
|
2513
|
+
args: ['open']
|
|
2514
|
+
}] } });
|
|
2515
|
+
|
|
2516
|
+
class DateValueAccessor extends ValueAccessor {
|
|
2517
|
+
constructor(injector, el) {
|
|
2518
|
+
super(injector, el);
|
|
2519
|
+
}
|
|
2520
|
+
handleInputEvent(el) {
|
|
2521
|
+
this.handleValueChange(el, el.value);
|
|
2522
|
+
}
|
|
2523
|
+
writeValue(value) {
|
|
2524
|
+
this.el.nativeElement.value = value == null ? '' : value;
|
|
2525
|
+
this.updateValidation();
|
|
2526
|
+
}
|
|
2527
|
+
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 }); }
|
|
2528
|
+
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: [
|
|
2529
|
+
{
|
|
2530
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2531
|
+
useExisting: DateValueAccessor,
|
|
2532
|
+
multi: true,
|
|
2533
|
+
},
|
|
2534
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2535
|
+
}
|
|
2536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateValueAccessor, decorators: [{
|
|
2537
|
+
type: Directive,
|
|
2538
|
+
args: [{
|
|
2539
|
+
selector: 'six-date',
|
|
2540
|
+
providers: [
|
|
2541
|
+
{
|
|
2542
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2543
|
+
useExisting: DateValueAccessor,
|
|
2544
|
+
multi: true,
|
|
2545
|
+
},
|
|
2546
|
+
],
|
|
2547
|
+
}]
|
|
2548
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
2549
|
+
type: HostListener,
|
|
2550
|
+
args: ['change', ['$event.target']]
|
|
2551
|
+
}] } });
|
|
2552
|
+
|
|
2302
2553
|
class UiLibraryAngularModule {
|
|
2303
2554
|
static forRoot(customValidationMessagesService) {
|
|
2304
2555
|
return {
|
|
@@ -2314,12 +2565,13 @@ class UiLibraryAngularModule {
|
|
|
2314
2565
|
};
|
|
2315
2566
|
}
|
|
2316
2567
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2317
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, declarations: [SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip,
|
|
2568
|
+
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,
|
|
2318
2569
|
// value accessors
|
|
2319
2570
|
TextValueAccessor,
|
|
2320
2571
|
NumericValueAccessor,
|
|
2321
2572
|
RadioValueAccessor,
|
|
2322
2573
|
DatepickerValueAccessor,
|
|
2574
|
+
DateValueAccessor,
|
|
2323
2575
|
TimepickerValueAccessor,
|
|
2324
2576
|
SelectValueAccessor,
|
|
2325
2577
|
CheckboxValueAccessor,
|
|
@@ -2331,16 +2583,24 @@ class UiLibraryAngularModule {
|
|
|
2331
2583
|
MinDateValidator,
|
|
2332
2584
|
MaxDateValidator,
|
|
2333
2585
|
AllowedDatesValidator,
|
|
2586
|
+
MinDateValidatorIso,
|
|
2587
|
+
MaxDateValidatorIso,
|
|
2588
|
+
AllowedDatesValidatorIso,
|
|
2334
2589
|
// form helpers
|
|
2335
2590
|
SixFormDirective,
|
|
2336
2591
|
SixFormUtilDirective,
|
|
2337
2592
|
// router link directive
|
|
2338
|
-
SixRouterLinkDirective
|
|
2593
|
+
SixRouterLinkDirective,
|
|
2594
|
+
// sidebar helpers
|
|
2595
|
+
ActiveSidebarItemDirective,
|
|
2596
|
+
ActiveSidebarItemGroupDirective,
|
|
2597
|
+
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,
|
|
2339
2598
|
// value accessors
|
|
2340
2599
|
TextValueAccessor,
|
|
2341
2600
|
NumericValueAccessor,
|
|
2342
2601
|
RadioValueAccessor,
|
|
2343
2602
|
DatepickerValueAccessor,
|
|
2603
|
+
DateValueAccessor,
|
|
2344
2604
|
TimepickerValueAccessor,
|
|
2345
2605
|
SelectValueAccessor,
|
|
2346
2606
|
CheckboxValueAccessor,
|
|
@@ -2352,11 +2612,18 @@ class UiLibraryAngularModule {
|
|
|
2352
2612
|
MinDateValidator,
|
|
2353
2613
|
MaxDateValidator,
|
|
2354
2614
|
AllowedDatesValidator,
|
|
2615
|
+
MinDateValidatorIso,
|
|
2616
|
+
MaxDateValidatorIso,
|
|
2617
|
+
AllowedDatesValidatorIso,
|
|
2355
2618
|
// form helpers
|
|
2356
2619
|
SixFormDirective,
|
|
2357
2620
|
SixFormUtilDirective,
|
|
2358
2621
|
// router link directive
|
|
2359
|
-
SixRouterLinkDirective
|
|
2622
|
+
SixRouterLinkDirective,
|
|
2623
|
+
// sidebar helpers
|
|
2624
|
+
ActiveSidebarItemDirective,
|
|
2625
|
+
ActiveSidebarItemGroupDirective,
|
|
2626
|
+
ActiveSidebarDirective] }); }
|
|
2360
2627
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule }); }
|
|
2361
2628
|
}
|
|
2362
2629
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiLibraryAngularModule, decorators: [{
|
|
@@ -2370,6 +2637,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2370
2637
|
NumericValueAccessor,
|
|
2371
2638
|
RadioValueAccessor,
|
|
2372
2639
|
DatepickerValueAccessor,
|
|
2640
|
+
DateValueAccessor,
|
|
2373
2641
|
TimepickerValueAccessor,
|
|
2374
2642
|
SelectValueAccessor,
|
|
2375
2643
|
CheckboxValueAccessor,
|
|
@@ -2381,11 +2649,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2381
2649
|
MinDateValidator,
|
|
2382
2650
|
MaxDateValidator,
|
|
2383
2651
|
AllowedDatesValidator,
|
|
2652
|
+
MinDateValidatorIso,
|
|
2653
|
+
MaxDateValidatorIso,
|
|
2654
|
+
AllowedDatesValidatorIso,
|
|
2384
2655
|
// form helpers
|
|
2385
2656
|
SixFormDirective,
|
|
2386
2657
|
SixFormUtilDirective,
|
|
2387
2658
|
// router link directive
|
|
2388
2659
|
SixRouterLinkDirective,
|
|
2660
|
+
// sidebar helpers
|
|
2661
|
+
ActiveSidebarItemDirective,
|
|
2662
|
+
ActiveSidebarItemGroupDirective,
|
|
2663
|
+
ActiveSidebarDirective,
|
|
2389
2664
|
],
|
|
2390
2665
|
imports: [],
|
|
2391
2666
|
exports: [
|
|
@@ -2396,6 +2671,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2396
2671
|
NumericValueAccessor,
|
|
2397
2672
|
RadioValueAccessor,
|
|
2398
2673
|
DatepickerValueAccessor,
|
|
2674
|
+
DateValueAccessor,
|
|
2399
2675
|
TimepickerValueAccessor,
|
|
2400
2676
|
SelectValueAccessor,
|
|
2401
2677
|
CheckboxValueAccessor,
|
|
@@ -2407,11 +2683,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2407
2683
|
MinDateValidator,
|
|
2408
2684
|
MaxDateValidator,
|
|
2409
2685
|
AllowedDatesValidator,
|
|
2686
|
+
MinDateValidatorIso,
|
|
2687
|
+
MaxDateValidatorIso,
|
|
2688
|
+
AllowedDatesValidatorIso,
|
|
2410
2689
|
// form helpers
|
|
2411
2690
|
SixFormDirective,
|
|
2412
2691
|
SixFormUtilDirective,
|
|
2413
2692
|
// router link directive
|
|
2414
2693
|
SixRouterLinkDirective,
|
|
2694
|
+
// sidebar helpers
|
|
2695
|
+
ActiveSidebarItemDirective,
|
|
2696
|
+
ActiveSidebarItemGroupDirective,
|
|
2697
|
+
ActiveSidebarDirective,
|
|
2415
2698
|
],
|
|
2416
2699
|
}]
|
|
2417
2700
|
}] });
|
|
@@ -2442,5 +2725,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2442
2725
|
* Generated bundle index. Do not edit.
|
|
2443
2726
|
*/
|
|
2444
2727
|
|
|
2445
|
-
export { AlertService, AllowedDatesValidator, CheckboxValueAccessor, DIRECTIVES, DatepickerValueAccessor, MaxDateValidator, MaxValidator, MinDateValidator, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixButton, SixCard, SixCheckbox, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
|
|
2728
|
+
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 };
|
|
2446
2729
|
//# sourceMappingURL=six-group-ui-library-angular.mjs.map
|