@alauda-fe/common 1.3.1 → 1.4.1
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/api/auth-api.service.d.ts +14 -0
- package/api/platform-ui.service.d.ts +1 -0
- package/api/public-api.d.ts +1 -0
- package/array-form-table/form/component.d.ts +6 -2
- package/assets/icons/icon-refresh-drag.svg +1 -0
- package/authorization/interceptor.service.d.ts +2 -1
- package/authorization/public-api.d.ts +1 -0
- package/authorization/session-manage.service.d.ts +2 -4
- package/authorization/state.service.d.ts +19 -18
- package/authorization/storage-token.d.ts +4 -10
- package/core/constants/patterns.d.ts +4 -0
- package/core/directives/feature-gate.directive.d.ts +2 -1
- package/core/module.d.ts +21 -21
- package/core/pipes/minimum-format.pipe.d.ts +1 -1
- package/core/pipes/time.pipe.d.ts +1 -1
- package/core/services/context.service.d.ts +3 -4
- package/core/services/feature-gate.service.d.ts +1 -0
- package/core/services/workspace-helper.service.d.ts +3 -1
- package/core/types/commons.d.ts +2 -0
- package/core/types/k8s/crd.d.ts +64 -0
- package/core/types/resource-definitions.d.ts +3 -3
- package/core/utils/cache-store.d.ts +15 -13
- package/core/utils/common.d.ts +1 -2
- package/core/utils/public-api.d.ts +1 -0
- package/core/utils/router.d.ts +3 -0
- package/editable/editable.component.d.ts +23 -0
- package/editable/editable.directive.d.ts +9 -0
- package/editable/editable.type.d.ts +5 -0
- package/editable/public-api.d.ts +2 -0
- package/effect-directive/event.directive.d.ts +36 -0
- package/esm2022/api/auth-api.service.mjs +34 -0
- package/esm2022/api/platform-ui.service.mjs +2 -1
- package/esm2022/api/public-api.mjs +2 -1
- package/esm2022/array-form-table/form/component.mjs +30 -15
- package/esm2022/authorization/guard.service.mjs +2 -2
- package/esm2022/authorization/interceptor.service.mjs +31 -24
- package/esm2022/authorization/public-api.mjs +2 -1
- package/esm2022/authorization/session-manage.service.mjs +11 -24
- package/esm2022/authorization/state.service.mjs +94 -100
- package/esm2022/authorization/storage-token.mjs +12 -88
- package/esm2022/core/constants/patterns.mjs +6 -4
- package/esm2022/core/directives/feature-gate.directive.mjs +7 -4
- package/esm2022/core/guards/feature.guard.mjs +3 -2
- package/esm2022/core/module.mjs +7 -12
- package/esm2022/core/pipes/minimum-format.pipe.mjs +4 -3
- package/esm2022/core/pipes/time.pipe.mjs +3 -3
- package/esm2022/core/services/context.service.mjs +9 -12
- package/esm2022/core/services/feature-gate.service.mjs +4 -3
- package/esm2022/core/services/workspace-helper.service.mjs +7 -1
- package/esm2022/core/types/commons.mjs +1 -1
- package/esm2022/core/types/k8s/crd.mjs +8 -1
- package/esm2022/core/types/resource-definitions.mjs +2 -2
- package/esm2022/core/utils/cache-store.mjs +51 -29
- package/esm2022/core/utils/common.mjs +8 -10
- package/esm2022/core/utils/public-api.mjs +2 -1
- package/esm2022/core/utils/router.mjs +20 -0
- package/esm2022/editable/editable.component.mjs +136 -0
- package/esm2022/editable/editable.directive.mjs +25 -0
- package/esm2022/editable/editable.type.mjs +6 -0
- package/esm2022/editable/public-api.mjs +3 -0
- package/esm2022/effect-directive/event.directive.mjs +79 -4
- package/esm2022/exec/terminal/component.mjs +12 -19
- package/esm2022/k8s-resource-list/footer/component.mjs +63 -25
- package/esm2022/k8s-resource-list/k8s-resource-list.module.mjs +18 -6
- package/esm2022/k8s-resource-list/utils.mjs +7 -3
- package/esm2022/multi-search/multi-search-tags/component.mjs +2 -2
- package/esm2022/multi-search/types.mjs +1 -1
- package/esm2022/page-scaffold/navigation/breadcrumb/breadcrumb.component.mjs +55 -53
- package/esm2022/page-scaffold/navigation/navconfig-loader/navconfig-loader.service.mjs +4 -4
- package/esm2022/page-scaffold/page-header/account-menu/component/component.mjs +3 -8
- package/esm2022/page-scaffold/page-header/common-layout/product-select/component.mjs +6 -10
- package/esm2022/pie-derivative-chart/pie-derivative-chart.module.mjs +6 -6
- package/esm2022/pie-derivative-chart/radial-bar/radial-bar-chart.component.mjs +51 -40
- package/esm2022/pie-derivative-chart/units.mjs +14 -0
- package/esm2022/pod-status/component.mjs +34 -55
- package/esm2022/public-api.mjs +2 -1
- package/esm2022/searchable-selector/component.mjs +2 -2
- package/esm2022/table/component.mjs +47 -30
- package/esm2022/table/module.mjs +1 -1
- package/esm2022/view-chart/view-chart.component.mjs +5 -8
- package/esm2022/widget/public-api.mjs +2 -1
- package/esm2022/widget/resource-label/component.mjs +131 -0
- package/esm2022/widget/zero-state/zero-state.component.mjs +36 -21
- package/exec/terminal/component.d.ts +1 -3
- package/k8s-resource-list/footer/component.d.ts +8 -1
- package/k8s-resource-list/k8s-resource-list.module.d.ts +1 -1
- package/multi-search/types.d.ts +1 -0
- package/package.json +1 -1
- package/page-scaffold/page-header/common-layout/product-select/component.d.ts +1 -3
- package/pie-derivative-chart/radial-bar/radial-bar-chart.component.d.ts +4 -0
- package/pie-derivative-chart/units.d.ts +2 -0
- package/pod-status/component.d.ts +1 -3
- package/public-api.d.ts +1 -0
- package/styles/global.scss +1 -0
- package/styles/tailwind-preset.scss +1 -1
- package/table/component.d.ts +4 -3
- package/widget/public-api.d.ts +1 -0
- package/widget/resource-label/component.d.ts +25 -0
- package/widget/zero-state/zero-state.component.d.ts +4 -1
|
@@ -8,42 +8,32 @@ import { PodStatusColorMapper, PodStatusIconMapper } from './typings';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@alauda/ui";
|
|
10
10
|
const _c0 = () => ({ "margin-right": 0 });
|
|
11
|
-
const _c1 = a0 => ({
|
|
12
|
-
const _c2 = a0 => ({
|
|
13
|
-
|
|
14
|
-
function PodStatusComponent_ng_container_0_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
15
|
-
i0.ɵɵelementStart(0, "div", 12);
|
|
16
|
-
i0.ɵɵtext(1);
|
|
17
|
-
i0.ɵɵelementEnd();
|
|
18
|
-
} if (rf & 2) {
|
|
19
|
-
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
20
|
-
i0.ɵɵadvance();
|
|
21
|
-
i0.ɵɵtextInterpolate1(" ", ctx_r0.pod == null ? null : ctx_r0.pod.status == null ? null : ctx_r0.pod.status.phase, " - ");
|
|
22
|
-
} }
|
|
23
|
-
function PodStatusComponent_ng_container_0_ng_template_10_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
const _c1 = a0 => ({ $implicit: a0 });
|
|
12
|
+
const _c2 = a0 => ({ messages: a0 });
|
|
13
|
+
function PodStatusComponent_ng_container_0_ng_template_8_Template(rf, ctx) { if (rf & 1) {
|
|
24
14
|
i0.ɵɵtext(0);
|
|
25
15
|
} if (rf & 2) {
|
|
26
|
-
const
|
|
27
|
-
i0.ɵɵtextInterpolate2(" (",
|
|
16
|
+
const data_r1 = ctx.$implicit;
|
|
17
|
+
i0.ɵɵtextInterpolate2(" (", data_r1.ready, "/", data_r1.all, ") ");
|
|
28
18
|
} }
|
|
29
|
-
function
|
|
30
|
-
i0.ɵɵelement(0, "aui-icon",
|
|
19
|
+
function PodStatusComponent_ng_container_0_ng_container_10_aui_icon_1_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
i0.ɵɵelement(0, "aui-icon", 11);
|
|
31
21
|
} if (rf & 2) {
|
|
32
|
-
const
|
|
22
|
+
const messages_r2 = i0.ɵɵnextContext().ngIf;
|
|
33
23
|
i0.ɵɵnextContext(2);
|
|
34
|
-
const
|
|
35
|
-
const
|
|
36
|
-
i0.ɵɵproperty("auiTooltip",
|
|
24
|
+
const podMessages_r3 = i0.ɵɵreference(5);
|
|
25
|
+
const onlyOnePodMessage_r4 = i0.ɵɵreference(7);
|
|
26
|
+
i0.ɵɵproperty("auiTooltip", messages_r2.length === 1 ? onlyOnePodMessage_r4 : podMessages_r3)("auiTooltipContext", i0.ɵɵpureFunction1(2, _c2, messages_r2));
|
|
37
27
|
} }
|
|
38
|
-
function
|
|
28
|
+
function PodStatusComponent_ng_container_0_ng_container_10_Template(rf, ctx) { if (rf & 1) {
|
|
39
29
|
i0.ɵɵelementContainerStart(0);
|
|
40
|
-
i0.ɵɵtemplate(1,
|
|
30
|
+
i0.ɵɵtemplate(1, PodStatusComponent_ng_container_0_ng_container_10_aui_icon_1_Template, 1, 4, "aui-icon", 10);
|
|
41
31
|
i0.ɵɵelementContainerEnd();
|
|
42
32
|
} if (rf & 2) {
|
|
43
|
-
const
|
|
44
|
-
const
|
|
33
|
+
const messages_r2 = ctx.ngIf;
|
|
34
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
45
35
|
i0.ɵɵadvance();
|
|
46
|
-
i0.ɵɵproperty("ngIf", (
|
|
36
|
+
i0.ɵɵproperty("ngIf", (messages_r2 == null ? null : messages_r2.length) && !ctx_r4.disableMessageOverview);
|
|
47
37
|
} }
|
|
48
38
|
function PodStatusComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
49
39
|
i0.ɵɵelementContainerStart(0);
|
|
@@ -51,31 +41,25 @@ function PodStatusComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
51
41
|
i0.ɵɵelement(2, "acl-status-icon", 6);
|
|
52
42
|
i0.ɵɵpipe(3, "pure");
|
|
53
43
|
i0.ɵɵelementStart(4, "div", 7);
|
|
54
|
-
i0.ɵɵ
|
|
55
|
-
i0.ɵɵ
|
|
56
|
-
i0.ɵɵ
|
|
57
|
-
i0.ɵɵ
|
|
58
|
-
i0.ɵɵpipe(
|
|
59
|
-
i0.ɵɵ
|
|
60
|
-
i0.ɵɵpipe(13, "pure");
|
|
61
|
-
i0.ɵɵelementEnd()()();
|
|
44
|
+
i0.ɵɵtext(5);
|
|
45
|
+
i0.ɵɵelementContainer(6, 8);
|
|
46
|
+
i0.ɵɵpipe(7, "pure");
|
|
47
|
+
i0.ɵɵtemplate(8, PodStatusComponent_ng_container_0_ng_template_8_Template, 1, 2, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor)(10, PodStatusComponent_ng_container_0_ng_container_10_Template, 2, 1, "ng-container", 9);
|
|
48
|
+
i0.ɵɵpipe(11, "pure");
|
|
49
|
+
i0.ɵɵelementEnd()();
|
|
62
50
|
i0.ɵɵelementContainerEnd();
|
|
63
51
|
} if (rf & 2) {
|
|
64
52
|
const status_r6 = ctx.ngIf;
|
|
65
|
-
const readyContainerTmpl_r7 = i0.ɵɵreference(
|
|
66
|
-
const
|
|
67
|
-
i0.ɵɵadvance(2);
|
|
68
|
-
i0.ɵɵproperty("status", i0.ɵɵpipeBind2(3, 11, status_r6, ctx_r0.getPodAggregatedStatus))("colorMapper", ctx_r0.PodStatusColorMapper)("iconMapper", ctx_r0.PodStatusIconMapper)("withText", false)("ngStyle", i0.ɵɵpureFunction0(20, _c0));
|
|
69
|
-
i0.ɵɵadvance(2);
|
|
70
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(21, _c1, ctx_r0.showNativeStatusWrap));
|
|
71
|
-
i0.ɵɵadvance();
|
|
72
|
-
i0.ɵɵproperty("ngIf", ctx_r0.showNativeStatus && (ctx_r0.pod == null ? null : ctx_r0.pod.status == null ? null : ctx_r0.pod.status.phase) !== status_r6);
|
|
53
|
+
const readyContainerTmpl_r7 = i0.ɵɵreference(9);
|
|
54
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
73
55
|
i0.ɵɵadvance(2);
|
|
56
|
+
i0.ɵɵproperty("status", i0.ɵɵpipeBind2(3, 9, status_r6, ctx_r4.getPodAggregatedStatus))("colorMapper", ctx_r4.PodStatusColorMapper)("iconMapper", ctx_r4.PodStatusIconMapper)("withText", false)("ngStyle", i0.ɵɵpureFunction0(18, _c0));
|
|
57
|
+
i0.ɵɵadvance(3);
|
|
74
58
|
i0.ɵɵtextInterpolate1(" ", status_r6, " ");
|
|
75
59
|
i0.ɵɵadvance();
|
|
76
|
-
i0.ɵɵproperty("ngTemplateOutlet", readyContainerTmpl_r7)("ngTemplateOutletContext", i0.ɵɵpureFunction1(
|
|
60
|
+
i0.ɵɵproperty("ngTemplateOutlet", readyContainerTmpl_r7)("ngTemplateOutletContext", i0.ɵɵpureFunction1(19, _c1, i0.ɵɵpipeBind2(7, 12, ctx_r4.pod, ctx_r4.getReadyContainer)));
|
|
77
61
|
i0.ɵɵadvance(4);
|
|
78
|
-
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind2(
|
|
62
|
+
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind2(11, 15, ctx_r4.pod, ctx_r4.getPodErrorMessages));
|
|
79
63
|
} }
|
|
80
64
|
function PodStatusComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
81
65
|
i0.ɵɵtext(0, "-");
|
|
@@ -92,8 +76,8 @@ function PodStatusComponent_ng_template_4_li_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
92
76
|
i0.ɵɵtextInterpolate(msg_r8);
|
|
93
77
|
} }
|
|
94
78
|
function PodStatusComponent_ng_template_4_Template(rf, ctx) { if (rf & 1) {
|
|
95
|
-
i0.ɵɵelementStart(0, "ul",
|
|
96
|
-
i0.ɵɵtemplate(1, PodStatusComponent_ng_template_4_li_1_Template, 4, 1, "li",
|
|
79
|
+
i0.ɵɵelementStart(0, "ul", 12);
|
|
80
|
+
i0.ɵɵtemplate(1, PodStatusComponent_ng_template_4_li_1_Template, 4, 1, "li", 13);
|
|
97
81
|
i0.ɵɵelementEnd();
|
|
98
82
|
} if (rf & 2) {
|
|
99
83
|
const messages_r9 = ctx.messages;
|
|
@@ -126,8 +110,8 @@ export class PodStatusComponent {
|
|
|
126
110
|
};
|
|
127
111
|
}
|
|
128
112
|
static { this.ɵfac = function PodStatusComponent_Factory(t) { return new (t || PodStatusComponent)(); }; }
|
|
129
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PodStatusComponent, selectors: [["acl-pod-status"]], inputs: { pod: "pod",
|
|
130
|
-
i0.ɵɵtemplate(0, PodStatusComponent_ng_container_0_Template,
|
|
113
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PodStatusComponent, selectors: [["acl-pod-status"]], inputs: { pod: "pod", disableMessageOverview: "disableMessageOverview" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 8, vars: 5, consts: [["nodata", ""], ["podMessages", ""], ["onlyOnePodMessage", ""], ["readyContainerTmpl", ""], [4, "ngIf", "ngIfElse"], [1, "status-wrapper"], [3, "status", "colorMapper", "iconMapper", "withText", "ngStyle"], [1, "tw-flex"], [3, "ngTemplateOutlet", "ngTemplateOutletContext"], [4, "ngIf"], ["icon", "file_magnifier", "class", "message-tip-icon", "size", "14", "auiTooltipClass", "condition-message-tip", 3, "auiTooltip", "auiTooltipContext", 4, "ngIf"], ["icon", "file_magnifier", "size", "14", "auiTooltipClass", "condition-message-tip", 1, "message-tip-icon", 3, "auiTooltip", "auiTooltipContext"], [1, "pod-messages"], [4, "ngFor", "ngForOf"]], template: function PodStatusComponent_Template(rf, ctx) { if (rf & 1) {
|
|
114
|
+
i0.ɵɵtemplate(0, PodStatusComponent_ng_container_0_Template, 12, 21, "ng-container", 4);
|
|
131
115
|
i0.ɵɵpipe(1, "pure");
|
|
132
116
|
i0.ɵɵtemplate(2, PodStatusComponent_ng_template_2_Template, 1, 0, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor)(4, PodStatusComponent_ng_template_4_Template, 2, 1, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor)(6, PodStatusComponent_ng_template_6_Template, 1, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
|
|
133
117
|
} if (rf & 2) {
|
|
@@ -136,7 +120,6 @@ export class PodStatusComponent {
|
|
|
136
120
|
} }, dependencies: [StatusIconComponent,
|
|
137
121
|
NgIf,
|
|
138
122
|
IconModule, i1.IconComponent, TooltipModule, i1.TooltipDirective, NgStyle,
|
|
139
|
-
NgClass,
|
|
140
123
|
NgTemplateOutlet,
|
|
141
124
|
PurePipe,
|
|
142
125
|
NgFor], styles: ["[_nghost-%COMP%]{display:flex}[_nghost-%COMP%] .condition-message-tip{white-space:pre-line}[_nghost-%COMP%] .message-tip-icon[_ngcontent-%COMP%]{margin-left:6px}[_nghost-%COMP%] .status-wrapper[_ngcontent-%COMP%]{display:flex;overflow:hidden;text-overflow:ellipsis}.pod-messages[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding-left:8px}.pod-messages[_ngcontent-%COMP%] li[_ngcontent-%COMP%] em[_ngcontent-%COMP%]{color:rgb(var(--aui-color-n-4));margin-right:4px;margin-left:-8px;font-size:14px}"], changeDetection: 0 }); }
|
|
@@ -153,15 +136,11 @@ export class PodStatusComponent {
|
|
|
153
136
|
NgTemplateOutlet,
|
|
154
137
|
PurePipe,
|
|
155
138
|
NgFor,
|
|
156
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"pod | pure: getPodStatus as status; else nodata\">\n <div class=\"status-wrapper\">\n <acl-status-icon\n [status]=\"status | pure: getPodAggregatedStatus\"\n [colorMapper]=\"PodStatusColorMapper\"\n [iconMapper]=\"PodStatusIconMapper\"\n [withText]=\"false\"\n [ngStyle]=\"{ 'margin-right': 0 }\"\n ></acl-status-icon>\n <div
|
|
139
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"pod | pure: getPodStatus as status; else nodata\">\n <div class=\"status-wrapper\">\n <acl-status-icon\n [status]=\"status | pure: getPodAggregatedStatus\"\n [colorMapper]=\"PodStatusColorMapper\"\n [iconMapper]=\"PodStatusIconMapper\"\n [withText]=\"false\"\n [ngStyle]=\"{ 'margin-right': 0 }\"\n ></acl-status-icon>\n <div class=\"tw-flex\">\n {{ status }}\n <ng-container\n [ngTemplateOutlet]=\"readyContainerTmpl\"\n [ngTemplateOutletContext]=\"{\n $implicit: pod | pure: getReadyContainer,\n }\"\n ></ng-container>\n <ng-template\n #readyContainerTmpl\n let-data\n >\n ({{ data.ready }}/{{ data.all }})\n </ng-template>\n <ng-container *ngIf=\"pod | pure: getPodErrorMessages as messages\">\n <aui-icon\n icon=\"file_magnifier\"\n *ngIf=\"messages?.length && !disableMessageOverview\"\n class=\"message-tip-icon\"\n [auiTooltip]=\"messages.length === 1 ? onlyOnePodMessage : podMessages\"\n [auiTooltipContext]=\"{ messages: messages }\"\n size=\"14\"\n auiTooltipClass=\"condition-message-tip\"\n ></aui-icon>\n </ng-container>\n </div>\n </div>\n</ng-container>\n<ng-template #nodata>-</ng-template>\n<ng-template\n #podMessages\n let-messages=\"messages\"\n>\n <ul class=\"pod-messages\">\n <li *ngFor=\"let msg of messages\"><em>•</em>{{ msg }}</li>\n </ul>\n</ng-template>\n<ng-template\n #onlyOnePodMessage\n let-messages=\"messages\"\n>\n {{ messages[0] }}\n</ng-template>\n", styles: [":host{display:flex}:host ::ng-deep .condition-message-tip{white-space:pre-line}:host .message-tip-icon{margin-left:6px}:host .status-wrapper{display:flex;overflow:hidden;text-overflow:ellipsis}.pod-messages li{padding-left:8px}.pod-messages li em{color:rgb(var(--aui-color-n-4));margin-right:4px;margin-left:-8px;font-size:14px}\n"] }]
|
|
157
140
|
}], null, { pod: [{
|
|
158
141
|
type: Input
|
|
159
|
-
}], showNativeStatus: [{
|
|
160
|
-
type: Input
|
|
161
|
-
}], showNativeStatusWrap: [{
|
|
162
|
-
type: Input
|
|
163
142
|
}], disableMessageOverview: [{
|
|
164
143
|
type: Input
|
|
165
144
|
}] }); })();
|
|
166
145
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PodStatusComponent, { className: "PodStatusComponent" }); })();
|
|
167
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
146
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vc3JjL3BvZC1zdGF0dXMvY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vc3JjL3BvZC1zdGF0dXMvdGVtcGxhdGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUN2RCxPQUFPLEVBQ0wsT0FBTyxFQUNQLEtBQUssRUFDTCxJQUFJLEVBQ0osT0FBTyxFQUNQLGdCQUFnQixHQUNqQixNQUFNLGlCQUFpQixDQUFDO0FBQ3pCLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTFFLE9BQU8sRUFBTyxRQUFRLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNuRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUUzRCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsWUFBWSxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLFdBQVcsQ0FBQzs7Ozs7OztJQ085RCxZQUNGOzs7SUFERSxrRUFDRjs7O0lBRUUsK0JBUVk7Ozs7OztJQUhWLEFBREEsNkZBQXNFLDhEQUMxQjs7O0lBTmhELDZCQUFrRTtJQUNoRSw2R0FRQzs7Ozs7SUFORSxjQUFpRDtJQUFqRCwwR0FBaUQ7OztJQTFCNUQsNkJBQXNFO0lBQ3BFLDhCQUE0QjtJQUMxQixxQ0FNbUI7O0lBQ25CLDhCQUFxQjtJQUNuQixZQUNBO0lBQUEsMkJBS2dCOztJQU9oQixBQU5BLG1JQUdDLHlGQUdpRTs7SUFZdEUsQUFERSxpQkFBTSxFQUNGOzs7Ozs7SUFoQ0YsZUFBZ0Q7SUFJaEQsQUFEQSxBQURBLEFBREEsQUFEQSx1RkFBZ0QsNENBQ1osMENBQ0YsbUJBQ2hCLHdDQUNlO0lBR2pDLGVBQ0E7SUFEQSwwQ0FDQTtJQUNFLGNBQXVDO0lBQ3ZDLEFBREEsd0RBQXVDLHFIQUdyQztJQVFXLGVBQXNDO0lBQXRDLHFGQUFzQzs7O0lBY3RDLGlCQUFDOzs7SUFNZSxBQUFqQywwQkFBaUMsU0FBSTtJQUFBLHNCQUFNO0lBQUEsaUJBQUs7SUFBQSxZQUFTO0lBQUEsaUJBQUs7OztJQUFkLGVBQVM7SUFBVCw0QkFBUzs7O0lBRDNELDhCQUF5QjtJQUN2QixnRkFBaUM7SUFDbkMsaUJBQUs7OztJQURpQixjQUFXO0lBQVgscUNBQVc7OztJQU9qQyxZQUNGOzs7SUFERSxpREFDRjs7QURqQkEsTUFBTSxPQUFPLGtCQUFrQjtJQWxCL0I7UUFnQ0Usd0JBQW1CLEdBQUcsQ0FBQyxHQUFRLEVBQUUsRUFBRSxDQUNqQyxZQUFZLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQztZQUNuQyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQUUsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUM7WUFDdkUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsaUJBQWlCO2dCQUMxQixFQUFFLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztpQkFDdEIsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxPQUFPLEVBQUUsT0FBTyxDQUFDO2lCQUNuQyxNQUFNLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUM7UUFFOUIsMkJBQXNCLEdBQUcsc0JBQXNCLENBQUM7UUFDaEQsaUJBQVksR0FBRyxZQUFZLENBQUM7UUFDNUIseUJBQW9CLEdBQUcsb0JBQW9CLENBQUM7UUFDNUMsd0JBQW1CLEdBQUcsbUJBQW1CLENBQUM7S0FDM0M7SUFuQkMsaUJBQWlCLENBQUMsR0FBUTtRQUN4QixPQUFPO1lBQ0wsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxpQkFBaUIsSUFBSSxFQUFFLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsTUFBTTtZQUN2RSxHQUFHLEVBQUUsR0FBRyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTTtTQUNoQyxDQUFDO0lBQ0osQ0FBQzttRkFaVSxrQkFBa0I7b0VBQWxCLGtCQUFrQjtZQ2xDL0IsdUZBQXNFOztZQThDdEUsQUFSQSxBQURBLG9IQUFxQix1R0FJcEIsdUdBUUE7OztZQWpEd0QsQUFBMUMsc0VBQStCLHdCQUFzQjs0QkRzQmhFLG1CQUFtQjtZQUNuQixJQUFJO1lBQ0osVUFBVSxvQkFDVixhQUFhLHVCQUNiLE9BQU87WUFFUCxnQkFBZ0I7WUFDaEIsUUFBUTtZQUNSLEtBQUs7O2lGQUlJLGtCQUFrQjtjQWxCOUIsU0FBUzsyQkFDRSxnQkFBZ0IsY0FHZCxJQUFJLFdBQ1A7b0JBQ1AsbUJBQW1CO29CQUNuQixJQUFJO29CQUNKLFVBQVU7b0JBQ1YsYUFBYTtvQkFDYixPQUFPO29CQUNQLE9BQU87b0JBQ1AsZ0JBQWdCO29CQUNoQixRQUFRO29CQUNSLEtBQUs7aUJBQ04sbUJBQ2dCLHVCQUF1QixDQUFDLE1BQU07Z0JBSS9DLEdBQUc7a0JBREYsS0FBSztZQUlOLHNCQUFzQjtrQkFEckIsS0FBSzs7a0ZBSkssa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSWNvbk1vZHVsZSwgVG9vbHRpcE1vZHVsZSB9IGZyb20gJ0BhbGF1ZGEvdWknO1xuaW1wb3J0IHtcbiAgTmdDbGFzcyxcbiAgTmdGb3IsXG4gIE5nSWYsXG4gIE5nU3R5bGUsXG4gIE5nVGVtcGxhdGVPdXRsZXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBQb2QsIFB1cmVQaXBlIH0gZnJvbSAnLi4vY29yZS9wdWJsaWMtYXBpJztcbmltcG9ydCB7IFN0YXR1c0ljb25Db21wb25lbnQgfSBmcm9tICcuLi93aWRnZXQvcHVibGljLWFwaSc7XG5cbmltcG9ydCB7IGdldFBvZEFnZ3JlZ2F0ZWRTdGF0dXMsIGdldFBvZFN0YXR1cyB9IGZyb20gJy4vc3RhdHVzJztcbmltcG9ydCB7IFBvZFN0YXR1c0NvbG9yTWFwcGVyLCBQb2RTdGF0dXNJY29uTWFwcGVyIH0gZnJvbSAnLi90eXBpbmdzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYWNsLXBvZC1zdGF0dXMnLFxuICB0ZW1wbGF0ZVVybDogJ3RlbXBsYXRlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnc3R5bGUuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgU3RhdHVzSWNvbkNvbXBvbmVudCxcbiAgICBOZ0lmLFxuICAgIEljb25Nb2R1bGUsXG4gICAgVG9vbHRpcE1vZHVsZSxcbiAgICBOZ1N0eWxlLFxuICAgIE5nQ2xhc3MsXG4gICAgTmdUZW1wbGF0ZU91dGxldCxcbiAgICBQdXJlUGlwZSxcbiAgICBOZ0ZvcixcbiAgXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFBvZFN0YXR1c0NvbXBvbmVudCB7XG4gIEBJbnB1dCgpXG4gIHBvZDogUG9kO1xuXG4gIEBJbnB1dCgpXG4gIGRpc2FibGVNZXNzYWdlT3ZlcnZpZXc6IGJvb2xlYW47XG5cbiAgZ2V0UmVhZHlDb250YWluZXIocG9kOiBQb2QpIHtcbiAgICByZXR1cm4ge1xuICAgICAgcmVhZHk6IChwb2Quc3RhdHVzLmNvbnRhaW5lclN0YXR1c2VzIHx8IFtdKS5maWx0ZXIoaSA9PiBpLnJlYWR5KS5sZW5ndGgsXG4gICAgICBhbGw6IHBvZC5zcGVjLmNvbnRhaW5lcnMubGVuZ3RoLFxuICAgIH07XG4gIH1cblxuICBnZXRQb2RFcnJvck1lc3NhZ2VzID0gKHBvZDogUG9kKSA9PlxuICAgIGdldFBvZFN0YXR1cyhwb2QpLmluY2x1ZGVzKCdQZW5kaW5nJylcbiAgICAgID8gcG9kLnN0YXR1cy5jb25kaXRpb25zPy5tYXAoaXRlbSA9PiBpdGVtLm1lc3NhZ2UpLmZpbHRlcihtc2cgPT4gISFtc2cpXG4gICAgICA6IHBvZC5zdGF0dXMuY29udGFpbmVyU3RhdHVzZXNcbiAgICAgICAgICA/LmZpbHRlcihjID0+ICFjLnJlYWR5KVxuICAgICAgICAgIC5tYXAoYyA9PiBjLnN0YXRlPy53YWl0aW5nPy5tZXNzYWdlKVxuICAgICAgICAgIC5maWx0ZXIobXNnID0+ICEhbXNnKTtcblxuICBnZXRQb2RBZ2dyZWdhdGVkU3RhdHVzID0gZ2V0UG9kQWdncmVnYXRlZFN0YXR1cztcbiAgZ2V0UG9kU3RhdHVzID0gZ2V0UG9kU3RhdHVzO1xuICBQb2RTdGF0dXNDb2xvck1hcHBlciA9IFBvZFN0YXR1c0NvbG9yTWFwcGVyO1xuICBQb2RTdGF0dXNJY29uTWFwcGVyID0gUG9kU3RhdHVzSWNvbk1hcHBlcjtcbn1cbiIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJwb2QgfCBwdXJlOiBnZXRQb2RTdGF0dXMgYXMgc3RhdHVzOyBlbHNlIG5vZGF0YVwiPlxuICA8ZGl2IGNsYXNzPVwic3RhdHVzLXdyYXBwZXJcIj5cbiAgICA8YWNsLXN0YXR1cy1pY29uXG4gICAgICBbc3RhdHVzXT1cInN0YXR1cyB8IHB1cmU6IGdldFBvZEFnZ3JlZ2F0ZWRTdGF0dXNcIlxuICAgICAgW2NvbG9yTWFwcGVyXT1cIlBvZFN0YXR1c0NvbG9yTWFwcGVyXCJcbiAgICAgIFtpY29uTWFwcGVyXT1cIlBvZFN0YXR1c0ljb25NYXBwZXJcIlxuICAgICAgW3dpdGhUZXh0XT1cImZhbHNlXCJcbiAgICAgIFtuZ1N0eWxlXT1cInsgJ21hcmdpbi1yaWdodCc6IDAgfVwiXG4gICAgPjwvYWNsLXN0YXR1cy1pY29uPlxuICAgIDxkaXYgY2xhc3M9XCJ0dy1mbGV4XCI+XG4gICAgICB7eyBzdGF0dXMgfX1cbiAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgW25nVGVtcGxhdGVPdXRsZXRdPVwicmVhZHlDb250YWluZXJUbXBsXCJcbiAgICAgICAgW25nVGVtcGxhdGVPdXRsZXRDb250ZXh0XT1cIntcbiAgICAgICAgICAkaW1wbGljaXQ6IHBvZCB8IHB1cmU6IGdldFJlYWR5Q29udGFpbmVyLFxuICAgICAgICB9XCJcbiAgICAgID48L25nLWNvbnRhaW5lcj5cbiAgICAgIDxuZy10ZW1wbGF0ZVxuICAgICAgICAjcmVhZHlDb250YWluZXJUbXBsXG4gICAgICAgIGxldC1kYXRhXG4gICAgICA+XG4gICAgICAgICh7eyBkYXRhLnJlYWR5IH19L3t7IGRhdGEuYWxsIH19KVxuICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJwb2QgfCBwdXJlOiBnZXRQb2RFcnJvck1lc3NhZ2VzIGFzIG1lc3NhZ2VzXCI+XG4gICAgICAgIDxhdWktaWNvblxuICAgICAgICAgIGljb249XCJmaWxlX21hZ25pZmllclwiXG4gICAgICAgICAgKm5nSWY9XCJtZXNzYWdlcz8ubGVuZ3RoICYmICFkaXNhYmxlTWVzc2FnZU92ZXJ2aWV3XCJcbiAgICAgICAgICBjbGFzcz1cIm1lc3NhZ2UtdGlwLWljb25cIlxuICAgICAgICAgIFthdWlUb29sdGlwXT1cIm1lc3NhZ2VzLmxlbmd0aCA9PT0gMSA/IG9ubHlPbmVQb2RNZXNzYWdlIDogcG9kTWVzc2FnZXNcIlxuICAgICAgICAgIFthdWlUb29sdGlwQ29udGV4dF09XCJ7IG1lc3NhZ2VzOiBtZXNzYWdlcyB9XCJcbiAgICAgICAgICBzaXplPVwiMTRcIlxuICAgICAgICAgIGF1aVRvb2x0aXBDbGFzcz1cImNvbmRpdGlvbi1tZXNzYWdlLXRpcFwiXG4gICAgICAgID48L2F1aS1pY29uPlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG48bmctdGVtcGxhdGUgI25vZGF0YT4tPC9uZy10ZW1wbGF0ZT5cbjxuZy10ZW1wbGF0ZVxuICAjcG9kTWVzc2FnZXNcbiAgbGV0LW1lc3NhZ2VzPVwibWVzc2FnZXNcIlxuPlxuICA8dWwgY2xhc3M9XCJwb2QtbWVzc2FnZXNcIj5cbiAgICA8bGkgKm5nRm9yPVwibGV0IG1zZyBvZiBtZXNzYWdlc1wiPjxlbT4mYnVsbDs8L2VtPnt7IG1zZyB9fTwvbGk+XG4gIDwvdWw+XG48L25nLXRlbXBsYXRlPlxuPG5nLXRlbXBsYXRlXG4gICNvbmx5T25lUG9kTWVzc2FnZVxuICBsZXQtbWVzc2FnZXM9XCJtZXNzYWdlc1wiXG4+XG4gIHt7IG1lc3NhZ2VzWzBdIH19XG48L25nLXRlbXBsYXRlPlxuIl19
|
package/esm2022/public-api.mjs
CHANGED
|
@@ -42,4 +42,5 @@ export * from './k8s-shared/public-api';
|
|
|
42
42
|
export * from './list-display/public-api';
|
|
43
43
|
export * from './pod-status/public-api';
|
|
44
44
|
export * from './workload-status-icon/public-api';
|
|
45
|
-
|
|
45
|
+
export * from './editable/public-api';
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2xpYnMvY29tbW9uL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHVCQUF1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9hcGkvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2FzeW5jLWRhdGEvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2F1dGhvcml6YXRpb24vcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2J1c2luZXNzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9jb2RlL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9kaXNhYmxlZC1jb250YWluZXIvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2s4cy1yZXNvdXJjZS1saXN0L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9sYXp5LWNvbXBvbmVudC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbGljZW5zZS9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbm90aWZpY2F0aW9uL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9wZXJtaXNzaW9uL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi90cmFuc2xhdGUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2NvcmUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2hlbHAtZG9jdW1lbnQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2FycmF5LWZvcm0tdGFibGUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3dpZGdldC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdmlldy1jaGFydC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdmlldy16Y2hhcnQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL21ldHJpYy1jaGFydC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vYWJub3JtYWwtcGFnZS9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbXV0YWJsZS9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcGllLWRlcml2YXRpdmUtY2hhcnQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL292ZXJ2aWV3LWJhbm5lci9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZ3JhcGgtY2FudmFzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9za2VsZXRvbi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZm9ybS9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcGFnZS1ndWFyZC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcGFnZS1zY2FmZm9sZC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2ZlYXR1cmUtZ2F0ZS1mb3JiaWRkZW4vcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL211bHRpLXNlYXJjaC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZXhlYy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vc2VhcmNoYWJsZS1zZWxlY3Rvci9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZ3JpZC1sYXlvdXQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRhYmxlLXRleHQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3dpbmRvdy1jaGFubmVsL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9jdXN0b20tY29sdW1ucy1zZXR0aW5nL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9pZnJhbWUtY29uZmlnL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9lZmZlY3QtZGlyZWN0aXZlL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi94dGVybS9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vazhzLXNoYXJlZC9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbGlzdC1kaXNwbGF5L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9wb2Qtc3RhdHVzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi93b3JrbG9hZC1zdGF0dXMtaWNvbi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdGFibGUvcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -216,7 +216,7 @@ export class SearchableSelectorComponent extends CommonFormControl {
|
|
|
216
216
|
} if (rf & 2) {
|
|
217
217
|
const single_r11 = i0.ɵɵreference(2);
|
|
218
218
|
i0.ɵɵproperty("ngIf", ctx.multi)("ngIfElse", single_r11);
|
|
219
|
-
} }, styles: ["[_nghost-%COMP%]{display:block}.ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input, .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input{border-color:rgb(var(--aui-color-red))!important}:root .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, :root .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, :root .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, :root .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}html[aui-theme-mode=light] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=light] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=light] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=light] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=system] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=system] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=system] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)}}html[aui-theme-mode=dark] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=dark] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=dark] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=dark] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)} .option .aui-option{max-width:600px}"], changeDetection: 0 }); }
|
|
219
|
+
} }, styles: ["[_nghost-%COMP%]{display:block}.ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input, .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input, .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input, .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input{border-color:rgb(var(--aui-color-red))!important}:root .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, :root .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, :root .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, :root .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused, :root .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, :root .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, :root .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, :root .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}html[aui-theme-mode=light] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=light] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=light] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=light] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=light] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=light] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=light] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=light] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=system] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=system] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=system] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=system] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=system] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=system] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=system] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)}}html[aui-theme-mode=dark] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=dark] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=dark] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=dark] .ng-invalid.ng-submitted[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=dark] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=dark] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-select[_ngcontent-%COMP%] .aui-input.isFocused, html[aui-theme-mode=dark] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input:focus, html[aui-theme-mode=dark] .ng-invalid.ng-dirty[_nghost-%COMP%] aui-multi-select[_ngcontent-%COMP%] .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)} .option .aui-option{max-width:600px}"], changeDetection: 0 }); }
|
|
220
220
|
}
|
|
221
221
|
__decorate([
|
|
222
222
|
ObservableInput(),
|
|
@@ -234,7 +234,7 @@ __decorate([
|
|
|
234
234
|
useExisting: forwardRef(() => SearchableSelectorComponent),
|
|
235
235
|
multi: true,
|
|
236
236
|
},
|
|
237
|
-
], template: "<ng-container *ngIf=\"multi; else single\">\n <aui-multi-select\n auiFormItemControl\n [aclReadonlyField]=\"!!readonly\"\n [aclReadonlyFieldTemplate]=\"temp\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitValue($event)\"\n [loading]=\"loading\"\n [filterFn]=\"filterFn\"\n (filterChange)=\"filterChange($event)\"\n [placeholder]=\"placeholder ? (placeholder | translate) : ''\"\n [allowCreate]=\"allowCreate\"\n [trackFn]=\"trackFn || defaultTrackFn\"\n [clearable]=\"clearable\"\n [filterable]=\"true\"\n >\n <aui-option\n *ngFor=\"let option of data$ | async\"\n [labelContext]=\"option\"\n [value]=\"option.value\"\n class=\"option\"\n [label]=\"labelTemplate || option.label\"\n >\n <ng-container *ngIf=\"optionTemplate; else normalOption\">\n <ng-container\n *ngTemplateOutlet=\"optionTemplate; context: { $implicit: option }\"\n ></ng-container>\n </ng-container>\n <ng-template #normalOption>\n {{ option.label }}\n </ng-template>\n </aui-option>\n <aui-option-placeholder>\n {{ 'no_data' | translate }}\n </aui-option-placeholder>\n <ng-template #temp>\n <aui-tag\n size=\"mini\"\n type=\"info\"\n [border]=\"true\"\n *ngFor=\"let m of $any(model)\"\n >\n {{ m | pure: getLabel:(data$ | async) }}\n </aui-tag>\n </ng-template>\n </aui-multi-select>\n</ng-container>\n<ng-template #single>\n <aui-select\n auiFormItemControl\n [aclReadonlyField]=\"!!readonly\"\n [aclReadonlyFieldTemplate]=\"temps\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitValue($event)\"\n [loading]=\"loading\"\n [filterFn]=\"filterFn\"\n (filterChange)=\"filterChange($event)\"\n [placeholder]=\"placeholder ? (placeholder | translate) : ''\"\n [allowCreate]=\"allowCreate\"\n [trackFn]=\"trackFn || defaultTrackFn\"\n [clearable]=\"clearable\"\n >\n <aui-option\n *ngFor=\"let option of data$ | async\"\n [labelContext]=\"{ $implicit: option }\"\n [value]=\"option.value\"\n class=\"option\"\n [label]=\"labelTemplate || option.label\"\n [disabled]=\"disableFn ? (option | pure: disableFn:disableParams) : false\"\n [auiTooltip]=\"disableTooltip\"\n [auiTooltipDisabled]=\"\n disableFn ? !(option | pure: disableFn:disableParams) : true\n \"\n >\n <ng-container *ngIf=\"optionTemplate; else normalOption\">\n <ng-container\n *ngTemplateOutlet=\"optionTemplate; context: { $implicit: option }\"\n ></ng-container>\n </ng-container>\n <ng-template #normalOption>\n {{ option.label }}\n </ng-template>\n </aui-option>\n <aui-option-placeholder>\n {{ 'no_data' | translate }}\n </aui-option-placeholder>\n\n <ng-template #temps>\n {{ $any(model) | pure: getLabel:(data$ | async) }}\n </ng-template>\n </aui-select>\n</ng-template>\n", styles: [":host{display:block}:host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input,:host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input{border-color:rgb(var(--aui-color-red))!important}:root :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,:root :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,:root :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,:root :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}html[aui-theme-mode=light] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=light] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=light] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=light] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=system] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=system] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=system] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)}}html[aui-theme-mode=dark] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=dark] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=dark] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=dark] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)}::ng-deep .option .aui-option{max-width:600px}\n"] }]
|
|
237
|
+
], template: "<ng-container *ngIf=\"multi; else single\">\n <aui-multi-select\n auiFormItemControl\n [aclReadonlyField]=\"!!readonly\"\n [aclReadonlyFieldTemplate]=\"temp\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitValue($event)\"\n [loading]=\"loading\"\n [filterFn]=\"filterFn\"\n (filterChange)=\"filterChange($event)\"\n [placeholder]=\"placeholder ? (placeholder | translate) : ''\"\n [allowCreate]=\"allowCreate\"\n [trackFn]=\"trackFn || defaultTrackFn\"\n [clearable]=\"clearable\"\n [filterable]=\"true\"\n >\n <aui-option\n *ngFor=\"let option of data$ | async\"\n [labelContext]=\"option\"\n [value]=\"option.value\"\n class=\"option\"\n [label]=\"labelTemplate || option.label\"\n >\n <ng-container *ngIf=\"optionTemplate; else normalOption\">\n <ng-container\n *ngTemplateOutlet=\"optionTemplate; context: { $implicit: option }\"\n ></ng-container>\n </ng-container>\n <ng-template #normalOption>\n {{ option.label }}\n </ng-template>\n </aui-option>\n <aui-option-placeholder>\n {{ 'no_data' | translate }}\n </aui-option-placeholder>\n <ng-template #temp>\n <aui-tag\n size=\"mini\"\n type=\"info\"\n [border]=\"true\"\n *ngFor=\"let m of $any(model)\"\n >\n {{ m | pure: getLabel:(data$ | async) }}\n </aui-tag>\n </ng-template>\n </aui-multi-select>\n</ng-container>\n<ng-template #single>\n <aui-select\n auiFormItemControl\n [aclReadonlyField]=\"!!readonly\"\n [aclReadonlyFieldTemplate]=\"temps\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitValue($event)\"\n [loading]=\"loading\"\n [filterFn]=\"filterFn\"\n (filterChange)=\"filterChange($event)\"\n [placeholder]=\"placeholder ? (placeholder | translate) : ''\"\n [allowCreate]=\"allowCreate\"\n [trackFn]=\"trackFn || defaultTrackFn\"\n [clearable]=\"clearable\"\n >\n <aui-option\n *ngFor=\"let option of data$ | async\"\n [labelContext]=\"{ $implicit: option }\"\n [value]=\"option.value\"\n class=\"option\"\n [label]=\"labelTemplate || option.label\"\n [disabled]=\"disableFn ? (option | pure: disableFn:disableParams) : false\"\n [auiTooltip]=\"disableTooltip\"\n [auiTooltipDisabled]=\"\n disableFn ? !(option | pure: disableFn:disableParams) : true\n \"\n >\n <ng-container *ngIf=\"optionTemplate; else normalOption\">\n <ng-container\n *ngTemplateOutlet=\"optionTemplate; context: { $implicit: option }\"\n ></ng-container>\n </ng-container>\n <ng-template #normalOption>\n {{ option.label }}\n </ng-template>\n </aui-option>\n <aui-option-placeholder>\n {{ 'no_data' | translate }}\n </aui-option-placeholder>\n\n <ng-template #temps>\n {{ $any(model) | pure: getLabel:(data$ | async) }}\n </ng-template>\n </aui-select>\n</ng-template>\n", styles: [":host{display:block}:host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input,:host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input,:host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input,:host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input{border-color:rgb(var(--aui-color-red))!important}:root :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,:root :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,:root :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input:focus,:root :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input.isFocused,:root :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,:root :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused,:root :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input:focus,:root :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}html[aui-theme-mode=light] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=light] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=light] :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input:focus,html[aui-theme-mode=light] :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=light] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=light] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=light] :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input:focus,html[aui-theme-mode=light] :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=system] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=system] :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input:focus,html[aui-theme-mode=system] :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=system] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=system] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=system] :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input:focus,html[aui-theme-mode=system] :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)}}html[aui-theme-mode=dark] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=dark] :host.ng-invalid.ng-submitted aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=dark] :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input:focus,html[aui-theme-mode=dark] :host.ng-invalid.ng-submitted aui-multi-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=dark] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input:focus,html[aui-theme-mode=dark] :host.ng-invalid.ng-dirty aui-select ::ng-deep .aui-input.isFocused,html[aui-theme-mode=dark] :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input:focus,html[aui-theme-mode=dark] :host.ng-invalid.ng-dirty aui-multi-select ::ng-deep .aui-input.isFocused{box-shadow:0 0 0 2px rgba(var(--aui-color-red),.3)}::ng-deep .option .aui-option{max-width:600px}\n"] }]
|
|
238
238
|
}], () => [{ type: i1.FormGroupDirective, decorators: [{
|
|
239
239
|
type: Optional
|
|
240
240
|
}] }, { type: i0.ChangeDetectorRef }], { errorState: [{
|