@globalart/platform-ui 0.1.3 → 0.1.4
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/fesm2022/globalart-platform-ui.mjs +10 -1
- package/fesm2022/globalart-platform-ui.mjs.map +1 -1
- package/lib/select/ui-select.component.d.ts +2 -1
- package/lib/select/ui-select.component.d.ts.map +1 -1
- package/lib/shell/ui-nav.model.d.ts +1 -0
- package/lib/shell/ui-nav.model.d.ts.map +1 -1
- package/lib/shell/ui-sidebar-nav.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -4608,6 +4608,7 @@ class UiSelectComponent {
|
|
|
4608
4608
|
disabled = false;
|
|
4609
4609
|
invalid = false;
|
|
4610
4610
|
ariaLabel = '';
|
|
4611
|
+
appendTo = '';
|
|
4611
4612
|
value = null;
|
|
4612
4613
|
valueChange = new EventEmitter();
|
|
4613
4614
|
optionSlot;
|
|
@@ -4696,7 +4697,7 @@ class UiSelectComponent {
|
|
|
4696
4697
|
this.cdr.detectChanges();
|
|
4697
4698
|
}
|
|
4698
4699
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.8", ngImport: i0, type: UiSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4699
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.8", type: UiSelectComponent, isStandalone: true, selector: "ui-select", inputs: { items: "items", bindLabel: "bindLabel", bindValue: "bindValue", placeholder: "placeholder", searchable: "searchable", clearable: "clearable", multiple: "multiple", loading: "loading", disabled: "disabled", invalid: "invalid", ariaLabel: ["aria-label", "ariaLabel"], value: "value" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class": "\"block \" + stateClass", "attr.aria-invalid": "invalid ? \"true\" : null" } }, providers: [
|
|
4700
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.8", type: UiSelectComponent, isStandalone: true, selector: "ui-select", inputs: { items: "items", bindLabel: "bindLabel", bindValue: "bindValue", placeholder: "placeholder", searchable: "searchable", clearable: "clearable", multiple: "multiple", loading: "loading", disabled: "disabled", invalid: "invalid", ariaLabel: ["aria-label", "ariaLabel"], appendTo: "appendTo", value: "value" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class": "\"block \" + stateClass", "attr.aria-invalid": "invalid ? \"true\" : null" } }, providers: [
|
|
4700
4701
|
{
|
|
4701
4702
|
provide: NG_VALUE_ACCESSOR,
|
|
4702
4703
|
useExisting: forwardRef(() => UiSelectComponent),
|
|
@@ -4713,6 +4714,7 @@ class UiSelectComponent {
|
|
|
4713
4714
|
[multiple]="multiple"
|
|
4714
4715
|
[loading]="loading"
|
|
4715
4716
|
[ariaLabel]="ariaLabel || undefined"
|
|
4717
|
+
[appendTo]="appendTo || null"
|
|
4716
4718
|
[ngModel]="value"
|
|
4717
4719
|
[ngModelOptions]="modelOptions"
|
|
4718
4720
|
[disabled]="disabled"
|
|
@@ -4795,6 +4797,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.8", ngImpor
|
|
|
4795
4797
|
[multiple]="multiple"
|
|
4796
4798
|
[loading]="loading"
|
|
4797
4799
|
[ariaLabel]="ariaLabel || undefined"
|
|
4800
|
+
[appendTo]="appendTo || null"
|
|
4798
4801
|
[ngModel]="value"
|
|
4799
4802
|
[ngModelOptions]="modelOptions"
|
|
4800
4803
|
[disabled]="disabled"
|
|
@@ -4864,6 +4867,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.8", ngImpor
|
|
|
4864
4867
|
}], ariaLabel: [{
|
|
4865
4868
|
type: Input,
|
|
4866
4869
|
args: ['aria-label']
|
|
4870
|
+
}], appendTo: [{
|
|
4871
|
+
type: Input
|
|
4867
4872
|
}], value: [{
|
|
4868
4873
|
type: Input
|
|
4869
4874
|
}], valueChange: [{
|
|
@@ -4931,6 +4936,7 @@ class UiSidebarNavComponent {
|
|
|
4931
4936
|
*ngIf="item.route && !item.children?.length"
|
|
4932
4937
|
[routerLink]="item.route"
|
|
4933
4938
|
routerLinkActive
|
|
4939
|
+
[routerLinkActiveOptions]="{ exact: !!item.exact }"
|
|
4934
4940
|
#rla="routerLinkActive"
|
|
4935
4941
|
[class]="rla.isActive ? linkClass + ' ' + activeClass : linkClass"
|
|
4936
4942
|
[title]="collapsed ? item.label : ''">
|
|
@@ -4982,6 +4988,7 @@ class UiSidebarNavComponent {
|
|
|
4982
4988
|
*ngFor="let child of item.children"
|
|
4983
4989
|
[routerLink]="child.route"
|
|
4984
4990
|
routerLinkActive
|
|
4991
|
+
[routerLinkActiveOptions]="{ exact: !!child.exact }"
|
|
4985
4992
|
#crla="routerLinkActive"
|
|
4986
4993
|
[class]="
|
|
4987
4994
|
crla.isActive
|
|
@@ -5039,6 +5046,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.8", ngImpor
|
|
|
5039
5046
|
*ngIf="item.route && !item.children?.length"
|
|
5040
5047
|
[routerLink]="item.route"
|
|
5041
5048
|
routerLinkActive
|
|
5049
|
+
[routerLinkActiveOptions]="{ exact: !!item.exact }"
|
|
5042
5050
|
#rla="routerLinkActive"
|
|
5043
5051
|
[class]="rla.isActive ? linkClass + ' ' + activeClass : linkClass"
|
|
5044
5052
|
[title]="collapsed ? item.label : ''">
|
|
@@ -5090,6 +5098,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.8", ngImpor
|
|
|
5090
5098
|
*ngFor="let child of item.children"
|
|
5091
5099
|
[routerLink]="child.route"
|
|
5092
5100
|
routerLinkActive
|
|
5101
|
+
[routerLinkActiveOptions]="{ exact: !!child.exact }"
|
|
5093
5102
|
#crla="routerLinkActive"
|
|
5094
5103
|
[class]="
|
|
5095
5104
|
crla.isActive
|