ngx-wapp-components 1.30.3-alpha.2 → 1.30.3
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/esm2020/lib/edit/w-edit-multiselect/w-edit-multiselect.component.mjs +8 -4
- package/esm2020/lib/misc/w-filter-panel/w-list-field/w-list-field.component.mjs +1 -1
- package/esm2020/lib/shared/components/w-address-field/w-address-field.component.mjs +1 -1
- package/fesm2015/ngx-wapp-components.mjs +9 -5
- package/fesm2015/ngx-wapp-components.mjs.map +1 -1
- package/fesm2020/ngx-wapp-components.mjs +9 -5
- package/fesm2020/ngx-wapp-components.mjs.map +1 -1
- package/lib/edit/w-edit-multiselect/w-edit-multiselect.component.d.ts +2 -1
- package/package.json +2 -2
|
@@ -17,6 +17,7 @@ export class WEditMultiselectComponent {
|
|
|
17
17
|
this.required = false;
|
|
18
18
|
this.size = "small";
|
|
19
19
|
this.showClear = false;
|
|
20
|
+
this.showToggleAll = false;
|
|
20
21
|
this.errorDescription = "Select an option is required";
|
|
21
22
|
this.removePaddingTop = false;
|
|
22
23
|
this.onChangeEvent = new EventEmitter();
|
|
@@ -57,13 +58,13 @@ export class WEditMultiselectComponent {
|
|
|
57
58
|
}
|
|
58
59
|
}
|
|
59
60
|
WEditMultiselectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WEditMultiselectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
60
|
-
WEditMultiselectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WEditMultiselectComponent, selector: "w-edit-multiselect", inputs: { label: "label", showLabel: "showLabel", placeholder: "placeholder", filter: "filter", filterPlaceholder: "filterPlaceholder", disabled: "disabled", optionDisabled: "optionDisabled", showPanelDisabled: "showPanelDisabled", readonly: "readonly", required: "required", size: "size", options: "options", optionLabel: "optionLabel", optionValue: "optionValue", appendTo: "appendTo", showClear: "showClear", formControl: "formControl", errorDescription: ["requiredErrorDescription", "errorDescription"], removePaddingTop: "removePaddingTop", tooltip: "tooltip", tooltipPosition: "tooltipPosition" }, outputs: { onChangeEvent: "onChange" }, providers: [
|
|
61
|
+
WEditMultiselectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WEditMultiselectComponent, selector: "w-edit-multiselect", inputs: { label: "label", showLabel: "showLabel", placeholder: "placeholder", filter: "filter", filterPlaceholder: "filterPlaceholder", disabled: "disabled", optionDisabled: "optionDisabled", showPanelDisabled: "showPanelDisabled", readonly: "readonly", required: "required", size: "size", options: "options", optionLabel: "optionLabel", optionValue: "optionValue", appendTo: "appendTo", showClear: "showClear", showToggleAll: "showToggleAll", formControl: "formControl", errorDescription: ["requiredErrorDescription", "errorDescription"], removePaddingTop: "removePaddingTop", tooltip: "tooltip", tooltipPosition: "tooltipPosition" }, outputs: { onChangeEvent: "onChange" }, providers: [
|
|
61
62
|
{
|
|
62
63
|
provide: NG_VALUE_ACCESSOR,
|
|
63
64
|
useExisting: forwardRef(() => WEditMultiselectComponent),
|
|
64
65
|
multi: true
|
|
65
66
|
}
|
|
66
|
-
], ngImport: i0, template: "<div *ngIf=\"formControl; else noNgControl\" class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\" \r\n [options]=\"options\" \r\n display=\"chip\" \r\n [optionLabel]=\"optionLabel\" \r\n [optionValue]=\"optionValue\" \r\n [placeholder]=\"placeholder\" \r\n [required]=\"required\" \r\n [formControl]=\"formControl\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\" \r\n [optionDisabled]=\"optionDisabled\"\r\n [placeholder]=\"placeholder\"\r\n [required]=\"required\"\r\n [formControl]=\"formControl\"\r\n [filter]=\"filter\"\r\n [filterPlaceHolder]=\"filterPlaceholder\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <span *ngIf=\"getSizeName(sizeType.small) == size && formControl.dirty && formControl.hasError('required')\" class=\"w-full w-error-message\">{{errorDescription}}</span>\r\n</div>\r\n<ng-template #noNgControl>\r\n <div class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\" \r\n [optionDisabled]=\"optionDisabled\" \r\n [readonly]=\"readonly\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\">\r\n </p-multiSelect>\r\n </div>\r\n</ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-focus,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-weight:600}.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token .p-multiselect-token-icon{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-multiselect-medium .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{color:#5f6468}.w-input-small-text-icon{color:#1f2224}.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{color:#1f2224}.w-input-medium-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect .p-multiselect-label.p-placeholder{color:#1f2224}.w-input-medium-placeholder-text-disabled{color:#5f6468}.w-input-medium-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-disabled .p-multiselect-label.p-placeholder{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.w-edit-multiselect-field{margin:0;display:flex;flex-direction:column;gap:6px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;height:28px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container{opacity:.6}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{display:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{padding:4px;background-color:#fff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header{background-color:#f8f9fa!important;padding:6px 6px 6px 8px!important;border-bottom:1px solid #e8ebee;border-top:8px;gap:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter{height:20px!important;padding:0 8px!important;border-radius:6px;border:1px solid #e8ebee;background-color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter:focus{border:1px solid #e8ebee!important;border-radius:8px!important;box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{font-size:.8333333333rem;line-height:1rem;font-weight:400;display:flex;align-self:center;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon:before{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:-4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close .p-multiselect-close-icon:before{content:\"\\e903\"!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items{padding:0;display:grid;gap:4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px;align-content:center;display:flex;gap:8px;border-radius:2px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background-color:#e0f5fc!important;border-radius:2px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus{box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background-color:#fff;border-radius:2px;font-weight:600;color:#000}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox{height:12px;width:12px;border:none;margin:0!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box{height:12px;width:12px;border-radius:2px;background-color:#fff;border:1px solid #9aa0a7;align-self:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:8px;font-weight:700}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon:before{color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box.p-highlight{border:none;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#e8ebee;border:1px solid #9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border:none;background:#005c7a}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect{border:1px solid #e8ebee;border-radius:8px;margin-top:6px!important}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-multiselect-chip .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token{height:24px;padding:6px 12px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel{border:1px solid #e8ebee}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items{padding:7px 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px 16px;margin-bottom:4px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox{height:24px;width:24px;border-width:1px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box{height:24px;width:24px;border-radius:4px;border:1px solid #dadce0;align-self:center}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:12px;font-weight:700}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box.p-highlight{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{background-color:#00b3eb;border:1px solid #e0f5fc}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-header{padding:7px 23px}:host ::ng-deep p-multiselect.w-edit-multiselect-medium.ng-dirty.ng-invalid>.p-multiselect{border-color:#ffbdbd}.w-error-message{color:#e50000;font-size:.8333333333rem;line-height:1rem;font-weight:400;margin-top:-2px;padding:0 4px}\n"], dependencies: [{ kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.MultiSelect, selector: "p-multiSelect", inputs: ["style", "styleClass", "panelStyle", "panelStyleClass", "inputId", "disabled", "readonly", "group", "filter", "filterPlaceHolder", "filterLocale", "overlayVisible", "tabindex", "appendTo", "dataKey", "name", "label", "ariaLabelledBy", "displaySelectedLabel", "maxSelectedLabels", "selectionLimit", "selectedItemsLabel", "showToggleAll", "emptyFilterMessage", "emptyMessage", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "showHeader", "filterBy", "scrollHeight", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "display", "autocomplete", "showClear", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "defaultLabel", "placeholder", "options", "filterValue", "itemSize"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onClear", "onPanelShow", "onPanelHide", "onLazyLoad", "onRemove"] }, { kind: "component", type: i4.WInputLabelComponent, selector: "w-input-label", inputs: ["label", "disabled", "required", "tooltip", "tooltipPosition", "size"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
67
|
+
], ngImport: i0, template: "<div *ngIf=\"formControl; else noNgControl\" class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\" \r\n [options]=\"options\" \r\n display=\"chip\" \r\n [optionLabel]=\"optionLabel\" \r\n [optionValue]=\"optionValue\" \r\n [placeholder]=\"placeholder\" \r\n [required]=\"required\" \r\n [formControl]=\"formControl\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\" \r\n [optionDisabled]=\"optionDisabled\"\r\n [placeholder]=\"placeholder\"\r\n [required]=\"required\"\r\n [formControl]=\"formControl\"\r\n [filter]=\"filter\"\r\n [filterPlaceHolder]=\"filterPlaceholder\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <span *ngIf=\"getSizeName(sizeType.small) == size && formControl.dirty && formControl.hasError('required')\" class=\"w-full w-error-message\">{{errorDescription}}</span>\r\n</div>\r\n<ng-template #noNgControl>\r\n <div class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\" \r\n [optionDisabled]=\"optionDisabled\" \r\n [readonly]=\"readonly\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\">\r\n </p-multiSelect>\r\n </div>\r\n</ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-focus,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-weight:600}.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token .p-multiselect-token-icon{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-multiselect-medium .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{color:#5f6468}.w-input-small-text-icon{color:#1f2224}.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{color:#1f2224}.w-input-medium-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect .p-multiselect-label.p-placeholder{color:#1f2224}.w-input-medium-placeholder-text-disabled{color:#5f6468}.w-input-medium-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-disabled .p-multiselect-label.p-placeholder{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.w-edit-multiselect-field{margin:0;display:flex;flex-direction:column;gap:6px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;height:28px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container{opacity:.6}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{display:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{padding:4px;background-color:#fff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header{background-color:#f8f9fa!important;padding:6px 6px 6px 8px!important;border-bottom:1px solid #e8ebee;border-top:8px;gap:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter{height:20px!important;padding:0 8px!important;border-radius:6px;border:1px solid #e8ebee;background-color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter:focus{border:1px solid #e8ebee!important;border-radius:8px!important;box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{font-size:.8333333333rem;line-height:1rem;font-weight:400;display:flex;align-self:center;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon:before{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:-4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close .p-multiselect-close-icon:before{content:\"\\e903\"!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items{padding:0;display:grid;gap:4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px;align-content:center;display:flex;gap:8px;border-radius:2px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background-color:#e0f5fc!important;border-radius:2px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus{box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background-color:#fff;border-radius:2px;font-weight:600;color:#000}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox{height:12px;width:12px;border:none;margin:0!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box{height:12px;width:12px;border-radius:2px;background-color:#fff;border:1px solid #9aa0a7;align-self:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:8px;font-weight:700}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon:before{color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box.p-highlight{border:none;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#e8ebee;border:1px solid #9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border:none;background:#005c7a}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect{border:1px solid #e8ebee;border-radius:8px;margin-top:6px!important}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-multiselect-chip .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token{height:24px;padding:6px 12px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel{border:1px solid #e8ebee}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items{padding:7px 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px 16px;margin-bottom:4px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox{height:24px;width:24px;border-width:1px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box{height:24px;width:24px;border-radius:4px;border:1px solid #dadce0;align-self:center}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:12px;font-weight:700}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box.p-highlight{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{background-color:#00b3eb;border:1px solid #e0f5fc}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-header{padding:7px 23px}:host ::ng-deep p-multiselect.w-edit-multiselect-medium.ng-dirty.ng-invalid>.p-multiselect{border-color:#ffbdbd}.w-error-message{color:#e50000;font-size:.8333333333rem;line-height:1rem;font-weight:400;margin-top:-2px;padding:0 4px}\n"], dependencies: [{ kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.MultiSelect, selector: "p-multiSelect", inputs: ["style", "styleClass", "panelStyle", "panelStyleClass", "inputId", "disabled", "readonly", "group", "filter", "filterPlaceHolder", "filterLocale", "overlayVisible", "tabindex", "appendTo", "dataKey", "name", "label", "ariaLabelledBy", "displaySelectedLabel", "maxSelectedLabels", "selectionLimit", "selectedItemsLabel", "showToggleAll", "emptyFilterMessage", "emptyMessage", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "showHeader", "filterBy", "scrollHeight", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "display", "autocomplete", "showClear", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "defaultLabel", "placeholder", "options", "filterValue", "itemSize"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onClear", "onPanelShow", "onPanelHide", "onLazyLoad", "onRemove"] }, { kind: "component", type: i4.WInputLabelComponent, selector: "w-input-label", inputs: ["label", "disabled", "required", "tooltip", "tooltipPosition", "size"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
67
68
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WEditMultiselectComponent, decorators: [{
|
|
68
69
|
type: Component,
|
|
69
70
|
args: [{ selector: 'w-edit-multiselect', providers: [
|
|
@@ -72,7 +73,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
72
73
|
useExisting: forwardRef(() => WEditMultiselectComponent),
|
|
73
74
|
multi: true
|
|
74
75
|
}
|
|
75
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"formControl; else noNgControl\" class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\" \r\n [options]=\"options\" \r\n display=\"chip\" \r\n [optionLabel]=\"optionLabel\" \r\n [optionValue]=\"optionValue\" \r\n [placeholder]=\"placeholder\" \r\n [required]=\"required\" \r\n [formControl]=\"formControl\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\" \r\n [optionDisabled]=\"optionDisabled\"\r\n [placeholder]=\"placeholder\"\r\n [required]=\"required\"\r\n [formControl]=\"formControl\"\r\n [filter]=\"filter\"\r\n [filterPlaceHolder]=\"filterPlaceholder\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <span *ngIf=\"getSizeName(sizeType.small) == size && formControl.dirty && formControl.hasError('required')\" class=\"w-full w-error-message\">{{errorDescription}}</span>\r\n</div>\r\n<ng-template #noNgControl>\r\n <div class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\" \r\n [optionDisabled]=\"optionDisabled\" \r\n [readonly]=\"readonly\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\">\r\n </p-multiSelect>\r\n </div>\r\n</ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-focus,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-weight:600}.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token .p-multiselect-token-icon{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-multiselect-medium .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{color:#5f6468}.w-input-small-text-icon{color:#1f2224}.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{color:#1f2224}.w-input-medium-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect .p-multiselect-label.p-placeholder{color:#1f2224}.w-input-medium-placeholder-text-disabled{color:#5f6468}.w-input-medium-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-disabled .p-multiselect-label.p-placeholder{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.w-edit-multiselect-field{margin:0;display:flex;flex-direction:column;gap:6px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;height:28px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container{opacity:.6}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{display:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{padding:4px;background-color:#fff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header{background-color:#f8f9fa!important;padding:6px 6px 6px 8px!important;border-bottom:1px solid #e8ebee;border-top:8px;gap:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter{height:20px!important;padding:0 8px!important;border-radius:6px;border:1px solid #e8ebee;background-color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter:focus{border:1px solid #e8ebee!important;border-radius:8px!important;box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{font-size:.8333333333rem;line-height:1rem;font-weight:400;display:flex;align-self:center;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon:before{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:-4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close .p-multiselect-close-icon:before{content:\"\\e903\"!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items{padding:0;display:grid;gap:4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px;align-content:center;display:flex;gap:8px;border-radius:2px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background-color:#e0f5fc!important;border-radius:2px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus{box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background-color:#fff;border-radius:2px;font-weight:600;color:#000}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox{height:12px;width:12px;border:none;margin:0!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box{height:12px;width:12px;border-radius:2px;background-color:#fff;border:1px solid #9aa0a7;align-self:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:8px;font-weight:700}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon:before{color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box.p-highlight{border:none;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#e8ebee;border:1px solid #9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border:none;background:#005c7a}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect{border:1px solid #e8ebee;border-radius:8px;margin-top:6px!important}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-multiselect-chip .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token{height:24px;padding:6px 12px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel{border:1px solid #e8ebee}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items{padding:7px 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px 16px;margin-bottom:4px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox{height:24px;width:24px;border-width:1px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box{height:24px;width:24px;border-radius:4px;border:1px solid #dadce0;align-self:center}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:12px;font-weight:700}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box.p-highlight{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{background-color:#00b3eb;border:1px solid #e0f5fc}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-header{padding:7px 23px}:host ::ng-deep p-multiselect.w-edit-multiselect-medium.ng-dirty.ng-invalid>.p-multiselect{border-color:#ffbdbd}.w-error-message{color:#e50000;font-size:.8333333333rem;line-height:1rem;font-weight:400;margin-top:-2px;padding:0 4px}\n"] }]
|
|
76
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"formControl; else noNgControl\" class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\" \r\n [options]=\"options\" \r\n display=\"chip\" \r\n [optionLabel]=\"optionLabel\" \r\n [optionValue]=\"optionValue\" \r\n [placeholder]=\"placeholder\" \r\n [required]=\"required\" \r\n [formControl]=\"formControl\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\" \r\n [optionDisabled]=\"optionDisabled\"\r\n [placeholder]=\"placeholder\"\r\n [required]=\"required\"\r\n [formControl]=\"formControl\"\r\n [filter]=\"filter\"\r\n [filterPlaceHolder]=\"filterPlaceholder\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\"\r\n (onChange)=\"onOptionSelectedForm($event)\">\r\n </p-multiSelect>\r\n <span *ngIf=\"getSizeName(sizeType.small) == size && formControl.dirty && formControl.hasError('required')\" class=\"w-full w-error-message\">{{errorDescription}}</span>\r\n</div>\r\n<ng-template #noNgControl>\r\n <div class=\"w-edit-multiselect-field p-fluid field\">\r\n <w-input-label [label]=\"label\" [required]=\"required\" [disabled]=\"disabled\" [size]=\"size\" [tooltip]=\"tooltip\"\r\n [tooltipPosition]=\"tooltipPosition\" *ngIf=\"showLabel\"></w-input-label>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.medium) == size\" class=\"w-edit-multiselect-medium\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\">\r\n </p-multiSelect>\r\n <p-multiSelect *ngIf=\"getSizeName(sizeType.small) == size\" class=\"w-edit-multiselect-small\" [ngClass]=\"{'disabled-options': showPanelDisabled}\"\r\n [options]=\"options\"\r\n display=\"chip\"\r\n [optionLabel]=\"optionLabel\"\r\n [optionValue]=\"optionValue\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\" \r\n [optionDisabled]=\"optionDisabled\" \r\n [readonly]=\"readonly\"\r\n [(ngModel)]=\"ngModelValue\"\r\n (onChange)=\"onOptionSelected()\"\r\n [appendTo]=\"appendTo\"\r\n [showClear]=\"showClear\" \r\n [showToggleAll]=\"showToggleAll\">\r\n </p-multiSelect>\r\n </div>\r\n</ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-focus,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token,.w-button-small-tertiary-label-text{font-weight:600}.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token .p-multiselect-token-icon{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-multiselect-medium .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-disabled .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-disabled{color:#5f6468}.w-input-small-text-icon{color:#1f2224}.w-input-small-select-options-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{color:#1f2224}.w-input-medium-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect .p-multiselect-label.p-placeholder{color:#1f2224}.w-input-medium-placeholder-text-disabled{color:#5f6468}.w-input-medium-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-multiselect-medium .p-disabled .p-multiselect-label.p-placeholder{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text,:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.w-edit-multiselect-field{margin:0;display:flex;flex-direction:column;gap:6px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;height:28px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container{opacity:.6}:host ::ng-deep .w-edit-multiselect-small.disabled-options .p-multiselect-chip .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{display:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel{padding:4px;background-color:#fff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header{background-color:#f8f9fa!important;padding:6px 6px 6px 8px!important;border-bottom:1px solid #e8ebee;border-top:8px;gap:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter{height:20px!important;padding:0 8px!important;border-radius:6px;border:1px solid #e8ebee;background-color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter:focus{border:1px solid #e8ebee!important;border-radius:8px!important;box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{font-size:.8333333333rem;line-height:1rem;font-weight:400;display:flex;align-self:center;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-webkit-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext::-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-ms-input-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext:-moz-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon:before{color:#9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:-4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-header .p-multiselect-close .p-multiselect-close-icon:before{content:\"\\e903\"!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items{padding:0;display:grid;gap:4px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px;align-content:center;display:flex;gap:8px;border-radius:2px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background-color:#e0f5fc!important;border-radius:2px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus{box-shadow:none!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background-color:#fff;border-radius:2px;font-weight:600;color:#000}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox{height:12px;width:12px;border:none;margin:0!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box{height:12px;width:12px;border-radius:2px;background-color:#fff;border:1px solid #9aa0a7;align-self:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:8px;font-weight:700}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box .p-checkbox-icon:before{color:#fff}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox .p-checkbox-box.p-highlight{border:none;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#e8ebee;border:1px solid #9aa0a7}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{border:none}:host ::ng-deep .w-edit-multiselect-small .p-multiselect-panel .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border:none;background:#005c7a}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect{border:1px solid #e8ebee;border-radius:8px;margin-top:6px!important}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect:hover{border:1px solid #00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect.p-multiselect-chip .p-multiselect-label{padding:7px 0 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-token{height:24px;padding:6px 12px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel{border:1px solid #e8ebee}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items{padding:7px 7px 15px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item{padding:8px 16px;margin-bottom:4px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox{height:24px;width:24px;border-width:1px}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box{height:24px;width:24px;border-radius:4px;border:1px solid #dadce0;align-self:center}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box .p-checkbox-icon{font-size:12px;font-weight:700}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox .p-checkbox-box.p-highlight{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{background-color:#00b3eb;border:1px solid #e0f5fc}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:not(.p-highlight).p-focus{background-color:#dadce0;border:1px solid #dadce0}:host ::ng-deep .w-edit-multiselect-medium .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#00b3eb;background:#00b3eb}:host ::ng-deep .w-edit-multiselect-medium .p-multiselect-panel .p-multiselect-header{padding:7px 23px}:host ::ng-deep p-multiselect.w-edit-multiselect-medium.ng-dirty.ng-invalid>.p-multiselect{border-color:#ffbdbd}.w-error-message{color:#e50000;font-size:.8333333333rem;line-height:1rem;font-weight:400;margin-top:-2px;padding:0 4px}\n"] }]
|
|
76
77
|
}], propDecorators: { label: [{
|
|
77
78
|
type: Input,
|
|
78
79
|
args: ['label']
|
|
@@ -121,6 +122,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
121
122
|
}], showClear: [{
|
|
122
123
|
type: Input,
|
|
123
124
|
args: ['showClear']
|
|
125
|
+
}], showToggleAll: [{
|
|
126
|
+
type: Input,
|
|
127
|
+
args: ['showToggleAll']
|
|
124
128
|
}], formControl: [{
|
|
125
129
|
type: Input,
|
|
126
130
|
args: ['formControl']
|
|
@@ -139,4 +143,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
139
143
|
type: Output,
|
|
140
144
|
args: ['onChange']
|
|
141
145
|
}] } });
|
|
142
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy1lZGl0LW11bHRpc2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhcHAtY29tcG9uZW50cy9zcmMvbGliL2VkaXQvdy1lZGl0LW11bHRpc2VsZWN0L3ctZWRpdC1tdWx0aXNlbGVjdC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi9lZGl0L3ctZWRpdC1tdWx0aXNlbGVjdC93LWVkaXQtbXVsdGlzZWxlY3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDcEgsT0FBTyxFQUFlLGlCQUFpQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFaEUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlCQUF5QixDQUFDOzs7Ozs7QUFlbkQsTUFBTSxPQUFPLHlCQUF5QjtJQWJ0QztRQWVzQixjQUFTLEdBQVksSUFBSSxDQUFDO1FBQ3hCLGdCQUFXLEdBQUcsRUFBRSxDQUFDO1FBQ3RCLFdBQU0sR0FBWSxJQUFJLENBQUM7UUFDWixzQkFBaUIsR0FBVyxRQUFRLENBQUM7UUFDOUMsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUVqQixzQkFBaUIsR0FBWSxLQUFLLENBQUM7UUFFNUMsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUM5QixTQUFJLEdBQVcsT0FBTyxDQUFDO1FBS2xCLGNBQVMsR0FBWSxLQUFLLENBQUM7UUFFWixxQkFBZ0IsR0FBVyw4QkFBOEIsQ0FBQztRQUNsRSxxQkFBZ0IsR0FBWSxLQUFLLENBQUM7UUFJekMsa0JBQWEsR0FBc0IsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUUxRSxhQUFRLEdBQW9CLFFBQVEsQ0FBQztRQUVyQyxhQUFRLEdBQVEsR0FBRyxFQUFFLEdBQUUsQ0FBQyxDQUFDO1FBQ3pCLFlBQU8sR0FBUSxHQUFHLEVBQUUsR0FBRSxDQUFDLENBQUM7S0E0Q3pCO0lBeENDLFFBQVE7SUFDUixDQUFDO0lBRUQsVUFBVSxDQUFDLEtBQVU7UUFDbkIsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUM7SUFDNUIsQ0FBQztJQUVELGdCQUFnQixDQUFDLEVBQU87UUFDdEIsSUFBSSxDQUFDLFFBQVEsR0FBRyxFQUFFLENBQUM7SUFDckIsQ0FBQztJQUVELGlCQUFpQixDQUFDLEVBQU87UUFDdkIsSUFBSSxDQUFDLE9BQU8sR0FBRyxFQUFFLENBQUM7SUFDcEIsQ0FBQztJQUVELGdCQUFnQixDQUFDLFVBQW1CO1FBQ2xDLElBQUksQ0FBQyxRQUFRLEdBQUcsVUFBVSxDQUFDO0lBQzdCLENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztRQUNqQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7UUFFZixJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVELG9CQUFvQixDQUFDLEtBQVU7UUFDN0IsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxXQUFXLENBQUMsS0FBWTtRQUN0QixNQUFNLFFBQVEsR0FBSSxLQUFLLENBQUMsTUFBMkIsQ0FBQyxLQUFLLENBQUM7UUFDMUQsSUFBSSxDQUFDLFlBQVksR0FBRyxRQUFRLENBQUM7UUFDN0IsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDakMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO0lBQ2pCLENBQUM7SUFFRCxXQUFXLENBQUMsS0FBYTtRQUN2QixPQUFPLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN6QixDQUFDOztzSEF2RVUseUJBQXlCOzBHQUF6Qix5QkFBeUIsaXJCQVR6QjtRQUNUO1lBQ0UsT0FBTyxFQUFFLGlCQUFpQjtZQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHlCQUF5QixDQUFDO1lBQ3hELEtBQUssRUFBRSxJQUFJO1NBQ1o7S0FDRiwwQkNmSCxvdkdBZ0VBOzJGRDlDYSx5QkFBeUI7a0JBYnJDLFNBQVM7K0JBQ0Usb0JBQW9CLGFBR25CO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLDBCQUEwQixDQUFDOzRCQUN4RCxLQUFLLEVBQUUsSUFBSTt5QkFDWjtxQkFDRixtQkFDZ0IsdUJBQXVCLENBQUMsTUFBTTs4QkFHL0IsS0FBSztzQkFBcEIsS0FBSzt1QkFBQyxPQUFPO2dCQUNNLFNBQVM7c0JBQTVCLEtBQUs7dUJBQUMsV0FBVztnQkFDSSxXQUFXO3NCQUFoQyxLQUFLO3VCQUFDLGFBQWE7Z0JBQ0gsTUFBTTtzQkFBdEIsS0FBSzt1QkFBQyxRQUFRO2dCQUNhLGlCQUFpQjtzQkFBNUMsS0FBSzt1QkFBQyxtQkFBbUI7Z0JBQ1AsUUFBUTtzQkFBMUIsS0FBSzt1QkFBQyxVQUFVO2dCQUNRLGNBQWM7c0JBQXRDLEtBQUs7dUJBQUMsZ0JBQWdCO2dCQUNLLGlCQUFpQjtzQkFBNUMsS0FBSzt1QkFBQyxtQkFBbUI7Z0JBQ1AsUUFBUTtzQkFBMUIsS0FBSzt1QkFBQyxVQUFVO2dCQUNFLFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFDRixJQUFJO3NCQUFsQixLQUFLO3VCQUFDLE1BQU07Z0JBQ0ssT0FBTztzQkFBeEIsS0FBSzt1QkFBQyxTQUFTO2dCQUNNLFdBQVc7c0JBQWhDLEtBQUs7dUJBQUMsYUFBYTtnQkFDRSxXQUFXO3NCQUFoQyxLQUFLO3VCQUFDLGFBQWE7Z0JBQ0QsUUFBUTtzQkFBMUIsS0FBSzt1QkFBQyxVQUFVO2dCQUNHLFNBQVM7c0JBQTVCLEtBQUs7dUJBQUMsV0FBVztnQkFDSSxXQUFXO3NCQUFoQyxLQUFLO3VCQUFDLGFBQWE7Z0JBQ2UsZ0JBQWdCO3NCQUFsRCxLQUFLO3VCQUFDLDBCQUEwQjtnQkFDTixnQkFBZ0I7c0JBQTFDLEtBQUs7dUJBQUMsa0JBQWtCO2dCQUNQLE9BQU87c0JBQXhCLEtBQUs7dUJBQUMsU0FBUztnQkFDUCxlQUFlO3NCQUF2QixLQUFLO2dCQUVjLGFBQWE7c0JBQWhDLE1BQU07dUJBQUMsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBmb3J3YXJkUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEZvcm1Db250cm9sLCBOR19WQUxVRV9BQ0NFU1NPUiB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgQ29udHJvbFZhbHVlQWNjZXNzb3IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IFNpemVUeXBlIH0gZnJvbSAnLi4vLi4vc2hhcmVkL2VudW1zL2VudW0nO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICd3LWVkaXQtbXVsdGlzZWxlY3QnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi93LWVkaXQtbXVsdGlzZWxlY3QuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL3ctZWRpdC1tdWx0aXNlbGVjdC5jb21wb25lbnQuc2NzcyddLFxyXG4gIHByb3ZpZGVyczogW1xyXG4gICAge1xyXG4gICAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcclxuICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gV0VkaXRNdWx0aXNlbGVjdENvbXBvbmVudCksXHJcbiAgICAgIG11bHRpOiB0cnVlXHJcbiAgICB9XHJcbiAgXSxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxyXG59KVxyXG5leHBvcnQgY2xhc3MgV0VkaXRNdWx0aXNlbGVjdENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQ29udHJvbFZhbHVlQWNjZXNzb3J7XHJcbiAgQElucHV0KCdsYWJlbCcpIGxhYmVsITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnc2hvd0xhYmVsJykgc2hvd0xhYmVsOiBib29sZWFuID0gdHJ1ZTtcclxuICBASW5wdXQoJ3BsYWNlaG9sZGVyJykgcGxhY2Vob2xkZXIgPSBcIlwiO1xyXG4gIEBJbnB1dCgnZmlsdGVyJykgZmlsdGVyOiBib29sZWFuID0gdHJ1ZTtcclxuICBASW5wdXQoJ2ZpbHRlclBsYWNlaG9sZGVyJykgZmlsdGVyUGxhY2Vob2xkZXI6IHN0cmluZyA9ICdTZWFyY2gnO1xyXG4gIEBJbnB1dCgnZGlzYWJsZWQnKSBkaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgnb3B0aW9uRGlzYWJsZWQnKSBvcHRpb25EaXNhYmxlZCE6IHN0cmluZztcclxuICBASW5wdXQoJ3Nob3dQYW5lbERpc2FibGVkJykgc2hvd1BhbmVsRGlzYWJsZWQ6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoJ3JlYWRvbmx5JykgcmVhZG9ubHkhOiBib29sZWFuO1xyXG4gIEBJbnB1dCgncmVxdWlyZWQnKSByZXF1aXJlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgnc2l6ZScpIHNpemU6IHN0cmluZyA9IFwic21hbGxcIjtcclxuICBASW5wdXQoJ29wdGlvbnMnKSBvcHRpb25zOiBhbnk7XHJcbiAgQElucHV0KCdvcHRpb25MYWJlbCcpIG9wdGlvbkxhYmVsITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnb3B0aW9uVmFsdWUnKSBvcHRpb25WYWx1ZSE6IHN0cmluZztcclxuICBASW5wdXQoJ2FwcGVuZFRvJykgYXBwZW5kVG8hOiBzdHJpbmc7XHJcbiAgQElucHV0KCdzaG93Q2xlYXInKSBzaG93Q2xlYXI6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoJ2Zvcm1Db250cm9sJykgZm9ybUNvbnRyb2whOiBGb3JtQ29udHJvbCB8IG51bGw7XHJcbiAgQElucHV0KCdyZXF1aXJlZEVycm9yRGVzY3JpcHRpb24nKSBlcnJvckRlc2NyaXB0aW9uOiBzdHJpbmcgPSBcIlNlbGVjdCBhbiBvcHRpb24gaXMgcmVxdWlyZWRcIjtcclxuICBASW5wdXQoJ3JlbW92ZVBhZGRpbmdUb3AnKSByZW1vdmVQYWRkaW5nVG9wOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCd0b29sdGlwJykgdG9vbHRpcCE6IHN0cmluZztcclxuICBASW5wdXQoKSB0b29sdGlwUG9zaXRpb24/OiBzdHJpbmc7XHJcblxyXG4gIEBPdXRwdXQoJ29uQ2hhbmdlJykgb25DaGFuZ2VFdmVudDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gIHNpemVUeXBlOiB0eXBlb2YgU2l6ZVR5cGUgPSBTaXplVHlwZTtcclxuXHJcbiAgb25DaGFuZ2U6IGFueSA9ICgpID0+IHt9O1xyXG4gIG9uVG91Y2g6IGFueSA9ICgpID0+IHt9O1xyXG5cclxuICBuZ01vZGVsVmFsdWU6IGFueTtcclxuXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgfVxyXG5cclxuICB3cml0ZVZhbHVlKHZhbHVlOiBhbnkpOiB2b2lkIHtcclxuICAgIHRoaXMubmdNb2RlbFZhbHVlID0gdmFsdWU7XHJcbiAgfVxyXG5cclxuICByZWdpc3Rlck9uQ2hhbmdlKGZuOiBhbnkpOiB2b2lkIHtcclxuICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcclxuICB9XHJcblxyXG4gIHJlZ2lzdGVyT25Ub3VjaGVkKGZuOiBhbnkpOiB2b2lkIHtcclxuICAgIHRoaXMub25Ub3VjaCA9IGZuO1xyXG4gIH1cclxuXHJcbiAgc2V0RGlzYWJsZWRTdGF0ZShpc0Rpc2FibGVkOiBib29sZWFuKTogdm9pZCB7XHJcbiAgICB0aGlzLmRpc2FibGVkID0gaXNEaXNhYmxlZDtcclxuICB9XHJcblxyXG4gIG9uT3B0aW9uU2VsZWN0ZWQoKXtcclxuICAgIHRoaXMub25DaGFuZ2UodGhpcy5uZ01vZGVsVmFsdWUpO1xyXG4gICAgdGhpcy5vblRvdWNoKCk7XHJcblxyXG4gICAgdGhpcy5vbkNoYW5nZUV2ZW50LmVtaXQodGhpcy5uZ01vZGVsVmFsdWUpO1xyXG4gIH1cclxuXHJcbiAgb25PcHRpb25TZWxlY3RlZEZvcm0oZXZlbnQ6IGFueSl7XHJcbiAgICB0aGlzLm9uQ2hhbmdlRXZlbnQuZW1pdChldmVudC52YWx1ZSk7XHJcbiAgfVxyXG5cclxuICBvbklucHV0Qmx1cihldmVudDogRXZlbnQpe1xyXG4gICAgY29uc3QgbmV3VmFsdWUgPSAoZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQpLnZhbHVlO1xyXG4gICAgdGhpcy5uZ01vZGVsVmFsdWUgPSBuZXdWYWx1ZTtcclxuICAgIHRoaXMub25DaGFuZ2UodGhpcy5uZ01vZGVsVmFsdWUpO1xyXG4gICAgdGhpcy5vblRvdWNoKCk7XHJcbiAgfVxyXG5cclxuICBnZXRTaXplTmFtZSh2YWx1ZTogbnVtYmVyKTogc3RyaW5nIHtcclxuICAgIHJldHVybiBTaXplVHlwZVt2YWx1ZV07XHJcbiAgfVxyXG59XHJcbiIsIjxkaXYgKm5nSWY9XCJmb3JtQ29udHJvbDsgZWxzZSBub05nQ29udHJvbFwiIGNsYXNzPVwidy1lZGl0LW11bHRpc2VsZWN0LWZpZWxkIHAtZmx1aWQgZmllbGRcIj5cclxuICAgIDx3LWlucHV0LWxhYmVsIFtsYWJlbF09XCJsYWJlbFwiIFtyZXF1aXJlZF09XCJyZXF1aXJlZFwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiIFtzaXplXT1cInNpemVcIiBbdG9vbHRpcF09XCJ0b29sdGlwXCJcclxuICAgICAgICBbdG9vbHRpcFBvc2l0aW9uXT1cInRvb2x0aXBQb3NpdGlvblwiICpuZ0lmPVwic2hvd0xhYmVsXCI+PC93LWlucHV0LWxhYmVsPlxyXG4gICAgPHAtbXVsdGlTZWxlY3QgKm5nSWY9XCJnZXRTaXplTmFtZShzaXplVHlwZS5tZWRpdW0pID09IHNpemVcIiBjbGFzcz1cInctZWRpdC1tdWx0aXNlbGVjdC1tZWRpdW1cIiBcclxuICAgICAgICBbb3B0aW9uc109XCJvcHRpb25zXCIgXHJcbiAgICAgICAgZGlzcGxheT1cImNoaXBcIiBcclxuICAgICAgICBbb3B0aW9uTGFiZWxdPVwib3B0aW9uTGFiZWxcIiBcclxuICAgICAgICBbb3B0aW9uVmFsdWVdPVwib3B0aW9uVmFsdWVcIiBcclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIiBcclxuICAgICAgICBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIiBcclxuICAgICAgICBbZm9ybUNvbnRyb2xdPVwiZm9ybUNvbnRyb2xcIlxyXG4gICAgICAgIFthcHBlbmRUb109XCJhcHBlbmRUb1wiXHJcbiAgICAgICAgW3Nob3dDbGVhcl09XCJzaG93Q2xlYXJcIlxyXG4gICAgICAgIChvbkNoYW5nZSk9XCJvbk9wdGlvblNlbGVjdGVkRm9ybSgkZXZlbnQpXCI+XHJcbiAgICA8L3AtbXVsdGlTZWxlY3Q+XHJcbiAgICA8cC1tdWx0aVNlbGVjdCAqbmdJZj1cImdldFNpemVOYW1lKHNpemVUeXBlLnNtYWxsKSA9PSBzaXplXCIgY2xhc3M9XCJ3LWVkaXQtbXVsdGlzZWxlY3Qtc21hbGxcIiBbbmdDbGFzc109XCJ7J2Rpc2FibGVkLW9wdGlvbnMnOiBzaG93UGFuZWxEaXNhYmxlZH1cIlxyXG4gICAgICAgIFtvcHRpb25zXT1cIm9wdGlvbnNcIlxyXG4gICAgICAgIGRpc3BsYXk9XCJjaGlwXCJcclxuICAgICAgICBbb3B0aW9uTGFiZWxdPVwib3B0aW9uTGFiZWxcIlxyXG4gICAgICAgIFtvcHRpb25WYWx1ZV09XCJvcHRpb25WYWx1ZVwiIFxyXG4gICAgICAgIFtvcHRpb25EaXNhYmxlZF09XCJvcHRpb25EaXNhYmxlZFwiXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcclxuICAgICAgICBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIlxyXG4gICAgICAgIFtmb3JtQ29udHJvbF09XCJmb3JtQ29udHJvbFwiXHJcbiAgICAgICAgW2ZpbHRlcl09XCJmaWx0ZXJcIlxyXG4gICAgICAgIFtmaWx0ZXJQbGFjZUhvbGRlcl09XCJmaWx0ZXJQbGFjZWhvbGRlclwiXHJcbiAgICAgICAgW2FwcGVuZFRvXT1cImFwcGVuZFRvXCJcclxuICAgICAgICBbc2hvd0NsZWFyXT1cInNob3dDbGVhclwiXHJcbiAgICAgICAgKG9uQ2hhbmdlKT1cIm9uT3B0aW9uU2VsZWN0ZWRGb3JtKCRldmVudClcIj5cclxuICAgIDwvcC1tdWx0aVNlbGVjdD5cclxuICAgIDxzcGFuICpuZ0lmPVwiZ2V0U2l6ZU5hbWUoc2l6ZVR5cGUuc21hbGwpID09IHNpemUgJiYgZm9ybUNvbnRyb2wuZGlydHkgJiYgZm9ybUNvbnRyb2wuaGFzRXJyb3IoJ3JlcXVpcmVkJylcIiBjbGFzcz1cInctZnVsbCB3LWVycm9yLW1lc3NhZ2VcIj57e2Vycm9yRGVzY3JpcHRpb259fTwvc3Bhbj5cclxuPC9kaXY+XHJcbjxuZy10ZW1wbGF0ZSAjbm9OZ0NvbnRyb2w+XHJcbiAgICA8ZGl2IGNsYXNzPVwidy1lZGl0LW11bHRpc2VsZWN0LWZpZWxkIHAtZmx1aWQgZmllbGRcIj5cclxuICAgICAgICA8dy1pbnB1dC1sYWJlbCBbbGFiZWxdPVwibGFiZWxcIiBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiBbc2l6ZV09XCJzaXplXCIgW3Rvb2x0aXBdPVwidG9vbHRpcFwiXHJcbiAgICAgICAgW3Rvb2x0aXBQb3NpdGlvbl09XCJ0b29sdGlwUG9zaXRpb25cIiAqbmdJZj1cInNob3dMYWJlbFwiPjwvdy1pbnB1dC1sYWJlbD5cclxuICAgICAgICA8cC1tdWx0aVNlbGVjdCAqbmdJZj1cImdldFNpemVOYW1lKHNpemVUeXBlLm1lZGl1bSkgPT0gc2l6ZVwiIGNsYXNzPVwidy1lZGl0LW11bHRpc2VsZWN0LW1lZGl1bVwiXHJcbiAgICAgICAgICAgIFtvcHRpb25zXT1cIm9wdGlvbnNcIlxyXG4gICAgICAgICAgICBkaXNwbGF5PVwiY2hpcFwiXHJcbiAgICAgICAgICAgIFtvcHRpb25MYWJlbF09XCJvcHRpb25MYWJlbFwiXHJcbiAgICAgICAgICAgIFtvcHRpb25WYWx1ZV09XCJvcHRpb25WYWx1ZVwiXHJcbiAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXHJcbiAgICAgICAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXHJcbiAgICAgICAgICAgIFsobmdNb2RlbCldPVwibmdNb2RlbFZhbHVlXCJcclxuICAgICAgICAgICAgKG9uQ2hhbmdlKT1cIm9uT3B0aW9uU2VsZWN0ZWQoKVwiXHJcbiAgICAgICAgICAgIFthcHBlbmRUb109XCJhcHBlbmRUb1wiXHJcbiAgICAgICAgICAgIFtzaG93Q2xlYXJdPVwic2hvd0NsZWFyXCI+XHJcbiAgICAgICAgPC9wLW11bHRpU2VsZWN0PlxyXG4gICAgICAgIDxwLW11bHRpU2VsZWN0ICpuZ0lmPVwiZ2V0U2l6ZU5hbWUoc2l6ZVR5cGUuc21hbGwpID09IHNpemVcIiBjbGFzcz1cInctZWRpdC1tdWx0aXNlbGVjdC1zbWFsbFwiIFtuZ0NsYXNzXT1cInsnZGlzYWJsZWQtb3B0aW9ucyc6IHNob3dQYW5lbERpc2FibGVkfVwiXHJcbiAgICAgICAgICAgIFtvcHRpb25zXT1cIm9wdGlvbnNcIlxyXG4gICAgICAgICAgICBkaXNwbGF5PVwiY2hpcFwiXHJcbiAgICAgICAgICAgIFtvcHRpb25MYWJlbF09XCJvcHRpb25MYWJlbFwiXHJcbiAgICAgICAgICAgIFtvcHRpb25WYWx1ZV09XCJvcHRpb25WYWx1ZVwiXHJcbiAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXHJcbiAgICAgICAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiIFxyXG4gICAgICAgICAgICBbb3B0aW9uRGlzYWJsZWRdPVwib3B0aW9uRGlzYWJsZWRcIiBcclxuICAgICAgICAgICAgW3JlYWRvbmx5XT1cInJlYWRvbmx5XCJcclxuICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJuZ01vZGVsVmFsdWVcIlxyXG4gICAgICAgICAgICAob25DaGFuZ2UpPVwib25PcHRpb25TZWxlY3RlZCgpXCJcclxuICAgICAgICAgICAgW2FwcGVuZFRvXT1cImFwcGVuZFRvXCJcclxuICAgICAgICAgICAgW3Nob3dDbGVhcl09XCJzaG93Q2xlYXJcIj5cclxuICAgICAgICA8L3AtbXVsdGlTZWxlY3Q+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
|
|
146
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy1lZGl0LW11bHRpc2VsZWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhcHAtY29tcG9uZW50cy9zcmMvbGliL2VkaXQvdy1lZGl0LW11bHRpc2VsZWN0L3ctZWRpdC1tdWx0aXNlbGVjdC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi9lZGl0L3ctZWRpdC1tdWx0aXNlbGVjdC93LWVkaXQtbXVsdGlzZWxlY3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDcEgsT0FBTyxFQUFlLGlCQUFpQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFaEUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlCQUF5QixDQUFDOzs7Ozs7QUFlbkQsTUFBTSxPQUFPLHlCQUF5QjtJQWJ0QztRQWVzQixjQUFTLEdBQVksSUFBSSxDQUFDO1FBQ3hCLGdCQUFXLEdBQUcsRUFBRSxDQUFDO1FBQ3RCLFdBQU0sR0FBWSxJQUFJLENBQUM7UUFDWixzQkFBaUIsR0FBVyxRQUFRLENBQUM7UUFDOUMsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUVqQixzQkFBaUIsR0FBWSxLQUFLLENBQUM7UUFFNUMsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUM5QixTQUFJLEdBQVcsT0FBTyxDQUFDO1FBS2xCLGNBQVMsR0FBWSxLQUFLLENBQUM7UUFDdkIsa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFFcEIscUJBQWdCLEdBQVcsOEJBQThCLENBQUM7UUFDbEUscUJBQWdCLEdBQVksS0FBSyxDQUFDO1FBSXpDLGtCQUFhLEdBQXNCLElBQUksWUFBWSxFQUFFLENBQUM7UUFFMUUsYUFBUSxHQUFvQixRQUFRLENBQUM7UUFFckMsYUFBUSxHQUFRLEdBQUcsRUFBRSxHQUFFLENBQUMsQ0FBQztRQUN6QixZQUFPLEdBQVEsR0FBRyxFQUFFLEdBQUUsQ0FBQyxDQUFDO0tBNEN6QjtJQXhDQyxRQUFRO0lBQ1IsQ0FBQztJQUVELFVBQVUsQ0FBQyxLQUFVO1FBQ25CLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO0lBQzVCLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxFQUFPO1FBQ3RCLElBQUksQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFRCxpQkFBaUIsQ0FBQyxFQUFPO1FBQ3ZCLElBQUksQ0FBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO0lBQ3BCLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxVQUFtQjtRQUNsQyxJQUFJLENBQUMsUUFBUSxHQUFHLFVBQVUsQ0FBQztJQUM3QixDQUFDO0lBRUQsZ0JBQWdCO1FBQ2QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDakMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO1FBRWYsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFRCxvQkFBb0IsQ0FBQyxLQUFVO1FBQzdCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRUQsV0FBVyxDQUFDLEtBQVk7UUFDdEIsTUFBTSxRQUFRLEdBQUksS0FBSyxDQUFDLE1BQTJCLENBQUMsS0FBSyxDQUFDO1FBQzFELElBQUksQ0FBQyxZQUFZLEdBQUcsUUFBUSxDQUFDO1FBQzdCLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQ2pDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztJQUNqQixDQUFDO0lBRUQsV0FBVyxDQUFDLEtBQWE7UUFDdkIsT0FBTyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDekIsQ0FBQzs7c0hBeEVVLHlCQUF5QjswR0FBekIseUJBQXlCLGl0QkFUekI7UUFDVDtZQUNFLE9BQU8sRUFBRSxpQkFBaUI7WUFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztZQUN4RCxLQUFLLEVBQUUsSUFBSTtTQUNaO0tBQ0YsMEJDZkgsbzdHQW9FQTsyRkRsRGEseUJBQXlCO2tCQWJyQyxTQUFTOytCQUNFLG9CQUFvQixhQUduQjt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSwwQkFBMEIsQ0FBQzs0QkFDeEQsS0FBSyxFQUFFLElBQUk7eUJBQ1o7cUJBQ0YsbUJBQ2dCLHVCQUF1QixDQUFDLE1BQU07OEJBRy9CLEtBQUs7c0JBQXBCLEtBQUs7dUJBQUMsT0FBTztnQkFDTSxTQUFTO3NCQUE1QixLQUFLO3VCQUFDLFdBQVc7Z0JBQ0ksV0FBVztzQkFBaEMsS0FBSzt1QkFBQyxhQUFhO2dCQUNILE1BQU07c0JBQXRCLEtBQUs7dUJBQUMsUUFBUTtnQkFDYSxpQkFBaUI7c0JBQTVDLEtBQUs7dUJBQUMsbUJBQW1CO2dCQUNQLFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFDUSxjQUFjO3NCQUF0QyxLQUFLO3VCQUFDLGdCQUFnQjtnQkFDSyxpQkFBaUI7c0JBQTVDLEtBQUs7dUJBQUMsbUJBQW1CO2dCQUNQLFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFDRSxRQUFRO3NCQUExQixLQUFLO3VCQUFDLFVBQVU7Z0JBQ0YsSUFBSTtzQkFBbEIsS0FBSzt1QkFBQyxNQUFNO2dCQUNLLE9BQU87c0JBQXhCLEtBQUs7dUJBQUMsU0FBUztnQkFDTSxXQUFXO3NCQUFoQyxLQUFLO3VCQUFDLGFBQWE7Z0JBQ0UsV0FBVztzQkFBaEMsS0FBSzt1QkFBQyxhQUFhO2dCQUNELFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFDRyxTQUFTO3NCQUE1QixLQUFLO3VCQUFDLFdBQVc7Z0JBQ00sYUFBYTtzQkFBcEMsS0FBSzt1QkFBQyxlQUFlO2dCQUNBLFdBQVc7c0JBQWhDLEtBQUs7dUJBQUMsYUFBYTtnQkFDZSxnQkFBZ0I7c0JBQWxELEtBQUs7dUJBQUMsMEJBQTBCO2dCQUNOLGdCQUFnQjtzQkFBMUMsS0FBSzt1QkFBQyxrQkFBa0I7Z0JBQ1AsT0FBTztzQkFBeEIsS0FBSzt1QkFBQyxTQUFTO2dCQUNQLGVBQWU7c0JBQXZCLEtBQUs7Z0JBRWMsYUFBYTtzQkFBaEMsTUFBTTt1QkFBQyxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIGZvcndhcmRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRm9ybUNvbnRyb2wsIE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBDb250cm9sVmFsdWVBY2Nlc3NvciB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgU2l6ZVR5cGUgfSBmcm9tICcuLi8uLi9zaGFyZWQvZW51bXMvZW51bSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3ctZWRpdC1tdWx0aXNlbGVjdCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3ctZWRpdC1tdWx0aXNlbGVjdC5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vdy1lZGl0LW11bHRpc2VsZWN0LmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgcHJvdmlkZXJzOiBbXHJcbiAgICB7XHJcbiAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxyXG4gICAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBXRWRpdE11bHRpc2VsZWN0Q29tcG9uZW50KSxcclxuICAgICAgbXVsdGk6IHRydWVcclxuICAgIH1cclxuICBdLFxyXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBXRWRpdE11bHRpc2VsZWN0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBDb250cm9sVmFsdWVBY2Nlc3NvcntcclxuICBASW5wdXQoJ2xhYmVsJykgbGFiZWwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdzaG93TGFiZWwnKSBzaG93TGFiZWw6IGJvb2xlYW4gPSB0cnVlO1xyXG4gIEBJbnB1dCgncGxhY2Vob2xkZXInKSBwbGFjZWhvbGRlciA9IFwiXCI7XHJcbiAgQElucHV0KCdmaWx0ZXInKSBmaWx0ZXI6IGJvb2xlYW4gPSB0cnVlO1xyXG4gIEBJbnB1dCgnZmlsdGVyUGxhY2Vob2xkZXInKSBmaWx0ZXJQbGFjZWhvbGRlcjogc3RyaW5nID0gJ1NlYXJjaCc7XHJcbiAgQElucHV0KCdkaXNhYmxlZCcpIGRpc2FibGVkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCdvcHRpb25EaXNhYmxlZCcpIG9wdGlvbkRpc2FibGVkITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnc2hvd1BhbmVsRGlzYWJsZWQnKSBzaG93UGFuZWxEaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgncmVhZG9ubHknKSByZWFkb25seSE6IGJvb2xlYW47XHJcbiAgQElucHV0KCdyZXF1aXJlZCcpIHJlcXVpcmVkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCdzaXplJykgc2l6ZTogc3RyaW5nID0gXCJzbWFsbFwiO1xyXG4gIEBJbnB1dCgnb3B0aW9ucycpIG9wdGlvbnM6IGFueTtcclxuICBASW5wdXQoJ29wdGlvbkxhYmVsJykgb3B0aW9uTGFiZWwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdvcHRpb25WYWx1ZScpIG9wdGlvblZhbHVlITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnYXBwZW5kVG8nKSBhcHBlbmRUbyE6IHN0cmluZztcclxuICBASW5wdXQoJ3Nob3dDbGVhcicpIHNob3dDbGVhcjogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgnc2hvd1RvZ2dsZUFsbCcpIHNob3dUb2dnbGVBbGw6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoJ2Zvcm1Db250cm9sJykgZm9ybUNvbnRyb2whOiBGb3JtQ29udHJvbCB8IG51bGw7XHJcbiAgQElucHV0KCdyZXF1aXJlZEVycm9yRGVzY3JpcHRpb24nKSBlcnJvckRlc2NyaXB0aW9uOiBzdHJpbmcgPSBcIlNlbGVjdCBhbiBvcHRpb24gaXMgcmVxdWlyZWRcIjtcclxuICBASW5wdXQoJ3JlbW92ZVBhZGRpbmdUb3AnKSByZW1vdmVQYWRkaW5nVG9wOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCd0b29sdGlwJykgdG9vbHRpcCE6IHN0cmluZztcclxuICBASW5wdXQoKSB0b29sdGlwUG9zaXRpb24/OiBzdHJpbmc7XHJcblxyXG4gIEBPdXRwdXQoJ29uQ2hhbmdlJykgb25DaGFuZ2VFdmVudDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gIHNpemVUeXBlOiB0eXBlb2YgU2l6ZVR5cGUgPSBTaXplVHlwZTtcclxuXHJcbiAgb25DaGFuZ2U6IGFueSA9ICgpID0+IHt9O1xyXG4gIG9uVG91Y2g6IGFueSA9ICgpID0+IHt9O1xyXG5cclxuICBuZ01vZGVsVmFsdWU6IGFueTtcclxuXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgfVxyXG5cclxuICB3cml0ZVZhbHVlKHZhbHVlOiBhbnkpOiB2b2lkIHtcclxuICAgIHRoaXMubmdNb2RlbFZhbHVlID0gdmFsdWU7XHJcbiAgfVxyXG5cclxuICByZWdpc3Rlck9uQ2hhbmdlKGZuOiBhbnkpOiB2b2lkIHtcclxuICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcclxuICB9XHJcblxyXG4gIHJlZ2lzdGVyT25Ub3VjaGVkKGZuOiBhbnkpOiB2b2lkIHtcclxuICAgIHRoaXMub25Ub3VjaCA9IGZuO1xyXG4gIH1cclxuXHJcbiAgc2V0RGlzYWJsZWRTdGF0ZShpc0Rpc2FibGVkOiBib29sZWFuKTogdm9pZCB7XHJcbiAgICB0aGlzLmRpc2FibGVkID0gaXNEaXNhYmxlZDtcclxuICB9XHJcblxyXG4gIG9uT3B0aW9uU2VsZWN0ZWQoKXtcclxuICAgIHRoaXMub25DaGFuZ2UodGhpcy5uZ01vZGVsVmFsdWUpO1xyXG4gICAgdGhpcy5vblRvdWNoKCk7XHJcblxyXG4gICAgdGhpcy5vbkNoYW5nZUV2ZW50LmVtaXQodGhpcy5uZ01vZGVsVmFsdWUpO1xyXG4gIH1cclxuXHJcbiAgb25PcHRpb25TZWxlY3RlZEZvcm0oZXZlbnQ6IGFueSl7XHJcbiAgICB0aGlzLm9uQ2hhbmdlRXZlbnQuZW1pdChldmVudC52YWx1ZSk7XHJcbiAgfVxyXG5cclxuICBvbklucHV0Qmx1cihldmVudDogRXZlbnQpe1xyXG4gICAgY29uc3QgbmV3VmFsdWUgPSAoZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQpLnZhbHVlO1xyXG4gICAgdGhpcy5uZ01vZGVsVmFsdWUgPSBuZXdWYWx1ZTtcclxuICAgIHRoaXMub25DaGFuZ2UodGhpcy5uZ01vZGVsVmFsdWUpO1xyXG4gICAgdGhpcy5vblRvdWNoKCk7XHJcbiAgfVxyXG5cclxuICBnZXRTaXplTmFtZSh2YWx1ZTogbnVtYmVyKTogc3RyaW5nIHtcclxuICAgIHJldHVybiBTaXplVHlwZVt2YWx1ZV07XHJcbiAgfVxyXG59XHJcbiIsIjxkaXYgKm5nSWY9XCJmb3JtQ29udHJvbDsgZWxzZSBub05nQ29udHJvbFwiIGNsYXNzPVwidy1lZGl0LW11bHRpc2VsZWN0LWZpZWxkIHAtZmx1aWQgZmllbGRcIj5cclxuICAgIDx3LWlucHV0LWxhYmVsIFtsYWJlbF09XCJsYWJlbFwiIFtyZXF1aXJlZF09XCJyZXF1aXJlZFwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiIFtzaXplXT1cInNpemVcIiBbdG9vbHRpcF09XCJ0b29sdGlwXCJcclxuICAgICAgICBbdG9vbHRpcFBvc2l0aW9uXT1cInRvb2x0aXBQb3NpdGlvblwiICpuZ0lmPVwic2hvd0xhYmVsXCI+PC93LWlucHV0LWxhYmVsPlxyXG4gICAgPHAtbXVsdGlTZWxlY3QgKm5nSWY9XCJnZXRTaXplTmFtZShzaXplVHlwZS5tZWRpdW0pID09IHNpemVcIiBjbGFzcz1cInctZWRpdC1tdWx0aXNlbGVjdC1tZWRpdW1cIiBcclxuICAgICAgICBbb3B0aW9uc109XCJvcHRpb25zXCIgXHJcbiAgICAgICAgZGlzcGxheT1cImNoaXBcIiBcclxuICAgICAgICBbb3B0aW9uTGFiZWxdPVwib3B0aW9uTGFiZWxcIiBcclxuICAgICAgICBbb3B0aW9uVmFsdWVdPVwib3B0aW9uVmFsdWVcIiBcclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIiBcclxuICAgICAgICBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIiBcclxuICAgICAgICBbZm9ybUNvbnRyb2xdPVwiZm9ybUNvbnRyb2xcIlxyXG4gICAgICAgIFthcHBlbmRUb109XCJhcHBlbmRUb1wiXHJcbiAgICAgICAgW3Nob3dDbGVhcl09XCJzaG93Q2xlYXJcIiBcclxuICAgICAgICBbc2hvd1RvZ2dsZUFsbF09XCJzaG93VG9nZ2xlQWxsXCJcclxuICAgICAgICAob25DaGFuZ2UpPVwib25PcHRpb25TZWxlY3RlZEZvcm0oJGV2ZW50KVwiPlxyXG4gICAgPC9wLW11bHRpU2VsZWN0PlxyXG4gICAgPHAtbXVsdGlTZWxlY3QgKm5nSWY9XCJnZXRTaXplTmFtZShzaXplVHlwZS5zbWFsbCkgPT0gc2l6ZVwiIGNsYXNzPVwidy1lZGl0LW11bHRpc2VsZWN0LXNtYWxsXCIgW25nQ2xhc3NdPVwieydkaXNhYmxlZC1vcHRpb25zJzogc2hvd1BhbmVsRGlzYWJsZWR9XCJcclxuICAgICAgICBbb3B0aW9uc109XCJvcHRpb25zXCJcclxuICAgICAgICBkaXNwbGF5PVwiY2hpcFwiXHJcbiAgICAgICAgW29wdGlvbkxhYmVsXT1cIm9wdGlvbkxhYmVsXCJcclxuICAgICAgICBbb3B0aW9uVmFsdWVdPVwib3B0aW9uVmFsdWVcIiBcclxuICAgICAgICBbb3B0aW9uRGlzYWJsZWRdPVwib3B0aW9uRGlzYWJsZWRcIlxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXHJcbiAgICAgICAgW3JlcXVpcmVkXT1cInJlcXVpcmVkXCJcclxuICAgICAgICBbZm9ybUNvbnRyb2xdPVwiZm9ybUNvbnRyb2xcIlxyXG4gICAgICAgIFtmaWx0ZXJdPVwiZmlsdGVyXCJcclxuICAgICAgICBbZmlsdGVyUGxhY2VIb2xkZXJdPVwiZmlsdGVyUGxhY2Vob2xkZXJcIlxyXG4gICAgICAgIFthcHBlbmRUb109XCJhcHBlbmRUb1wiXHJcbiAgICAgICAgW3Nob3dDbGVhcl09XCJzaG93Q2xlYXJcIiBcclxuICAgICAgICBbc2hvd1RvZ2dsZUFsbF09XCJzaG93VG9nZ2xlQWxsXCJcclxuICAgICAgICAob25DaGFuZ2UpPVwib25PcHRpb25TZWxlY3RlZEZvcm0oJGV2ZW50KVwiPlxyXG4gICAgPC9wLW11bHRpU2VsZWN0PlxyXG4gICAgPHNwYW4gKm5nSWY9XCJnZXRTaXplTmFtZShzaXplVHlwZS5zbWFsbCkgPT0gc2l6ZSAmJiBmb3JtQ29udHJvbC5kaXJ0eSAmJiBmb3JtQ29udHJvbC5oYXNFcnJvcigncmVxdWlyZWQnKVwiIGNsYXNzPVwidy1mdWxsIHctZXJyb3ItbWVzc2FnZVwiPnt7ZXJyb3JEZXNjcmlwdGlvbn19PC9zcGFuPlxyXG48L2Rpdj5cclxuPG5nLXRlbXBsYXRlICNub05nQ29udHJvbD5cclxuICAgIDxkaXYgY2xhc3M9XCJ3LWVkaXQtbXVsdGlzZWxlY3QtZmllbGQgcC1mbHVpZCBmaWVsZFwiPlxyXG4gICAgICAgIDx3LWlucHV0LWxhYmVsIFtsYWJlbF09XCJsYWJlbFwiIFtyZXF1aXJlZF09XCJyZXF1aXJlZFwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiIFtzaXplXT1cInNpemVcIiBbdG9vbHRpcF09XCJ0b29sdGlwXCJcclxuICAgICAgICBbdG9vbHRpcFBvc2l0aW9uXT1cInRvb2x0aXBQb3NpdGlvblwiICpuZ0lmPVwic2hvd0xhYmVsXCI+PC93LWlucHV0LWxhYmVsPlxyXG4gICAgICAgIDxwLW11bHRpU2VsZWN0ICpuZ0lmPVwiZ2V0U2l6ZU5hbWUoc2l6ZVR5cGUubWVkaXVtKSA9PSBzaXplXCIgY2xhc3M9XCJ3LWVkaXQtbXVsdGlzZWxlY3QtbWVkaXVtXCJcclxuICAgICAgICAgICAgW29wdGlvbnNdPVwib3B0aW9uc1wiXHJcbiAgICAgICAgICAgIGRpc3BsYXk9XCJjaGlwXCJcclxuICAgICAgICAgICAgW29wdGlvbkxhYmVsXT1cIm9wdGlvbkxhYmVsXCJcclxuICAgICAgICAgICAgW29wdGlvblZhbHVlXT1cIm9wdGlvblZhbHVlXCJcclxuICAgICAgICAgICAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcclxuICAgICAgICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcclxuICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJuZ01vZGVsVmFsdWVcIlxyXG4gICAgICAgICAgICAob25DaGFuZ2UpPVwib25PcHRpb25TZWxlY3RlZCgpXCJcclxuICAgICAgICAgICAgW2FwcGVuZFRvXT1cImFwcGVuZFRvXCJcclxuICAgICAgICAgICAgW3Nob3dDbGVhcl09XCJzaG93Q2xlYXJcIiBcclxuICAgICAgICAgICAgW3Nob3dUb2dnbGVBbGxdPVwic2hvd1RvZ2dsZUFsbFwiPlxyXG4gICAgICAgIDwvcC1tdWx0aVNlbGVjdD5cclxuICAgICAgICA8cC1tdWx0aVNlbGVjdCAqbmdJZj1cImdldFNpemVOYW1lKHNpemVUeXBlLnNtYWxsKSA9PSBzaXplXCIgY2xhc3M9XCJ3LWVkaXQtbXVsdGlzZWxlY3Qtc21hbGxcIiBbbmdDbGFzc109XCJ7J2Rpc2FibGVkLW9wdGlvbnMnOiBzaG93UGFuZWxEaXNhYmxlZH1cIlxyXG4gICAgICAgICAgICBbb3B0aW9uc109XCJvcHRpb25zXCJcclxuICAgICAgICAgICAgZGlzcGxheT1cImNoaXBcIlxyXG4gICAgICAgICAgICBbb3B0aW9uTGFiZWxdPVwib3B0aW9uTGFiZWxcIlxyXG4gICAgICAgICAgICBbb3B0aW9uVmFsdWVdPVwib3B0aW9uVmFsdWVcIlxyXG4gICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxyXG4gICAgICAgICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiBcclxuICAgICAgICAgICAgW29wdGlvbkRpc2FibGVkXT1cIm9wdGlvbkRpc2FibGVkXCIgXHJcbiAgICAgICAgICAgIFtyZWFkb25seV09XCJyZWFkb25seVwiXHJcbiAgICAgICAgICAgIFsobmdNb2RlbCldPVwibmdNb2RlbFZhbHVlXCJcclxuICAgICAgICAgICAgKG9uQ2hhbmdlKT1cIm9uT3B0aW9uU2VsZWN0ZWQoKVwiXHJcbiAgICAgICAgICAgIFthcHBlbmRUb109XCJhcHBlbmRUb1wiXHJcbiAgICAgICAgICAgIFtzaG93Q2xlYXJdPVwic2hvd0NsZWFyXCIgXHJcbiAgICAgICAgICAgIFtzaG93VG9nZ2xlQWxsXT1cInNob3dUb2dnbGVBbGxcIj5cclxuICAgICAgICA8L3AtbXVsdGlTZWxlY3Q+XHJcbiAgICA8L2Rpdj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
|
|
@@ -57,7 +57,7 @@ WListFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
57
57
|
useExisting: forwardRef(() => WListFieldComponent),
|
|
58
58
|
multi: true
|
|
59
59
|
}
|
|
60
|
-
], usesOnChanges: true, ngImport: i0, template: "<!-- <div *ngIf=\"options.length == 0; else optionsDataReady\" class=\"mx-2 w-list-field-skeleton-container p-dropdown p-component\"><p-skeleton width=\"8rem\" height=\"9px\"></p-skeleton></div>\r\n<ng-template #optionsDataReady>\r\n <p-multiSelect *ngIf=\"getDataType() == dataType.Multi\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder ?? 'Select an option'\"\r\n (onChange)=\"onOptionSelected()\">\r\n </p-multiSelect>\r\n <p-dropdown *ngIf=\"options && getDataType() == dataType.Single\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder ?? 'Select an option'\" \r\n (onChange)=\"onOptionSelected()\">\r\n </p-dropdown>\r\n</ng-template> -->\r\n\r\n<div *ngIf=\"options.length == 0; else optionsDataReady\" class=\"wapp-list-field-skeleton-container\"><p-skeleton width=\"8rem\" height=\"14px\"></p-skeleton></div>\r\n<ng-template #optionsDataReady>\r\n <w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi\"\r\n [showClear]=\"false\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder\"\r\n (onChange)=\"onOptionSelected()\" \r\n [disabled]=\"disabled\" \r\n [showLabel]=\"false\">\r\n </w-edit-multiselect>\r\n <w-edit-select *ngIf=\"options && getDataType() == dataType.Single\"\r\n [showClear]=\"false\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder\" \r\n (onChange)=\"onOptionSelected()\" \r\n [disabled]=\"disabled\" \r\n [required]=\"true\" \r\n [showLabel]=\"false\">\r\n </w-edit-select>\r\n</ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text{color:#1f2224}.w-input-small-placeholder-text-only-color{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text-disabled-only-color{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.w-list-field-skeleton-container{padding:14px}:host ::ng-deep .w-edit-select-input-small .p-dropdown{font-weight:600;border-width:1px;border-radius:8px;border-color:#e8ebee;height:32px;margin:4px}:host ::ng-deep .w-edit-select-input-small .p-dropdown:not(.p-disabled):hover{border:1px solid #005c7a!important}:host ::ng-deep .w-edit-select-input-small .p-dropdown:not(.p-disabled).p-focus{box-shadow:0 0 8px #3c7e9a80;border:1px solid #d6f2ff}:host ::ng-deep .w-edit-select-input-small .p-dropdown .p-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-select-input-small .p-inputtext{padding:6px 0 6px 12px}:host ::ng-deep .w-edit-select-input-small .p-dropdown .pi{font-size:.8rem}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel{padding:8px}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items{padding:0}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items .p-dropdown-item{padding:8px;margin-bottom:4px;font-weight:600}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items .p-dropdown-item:hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight{background:#d6f2ff;border-radius:8px;color:#000}:host ::ng-deep .w-edit-select-input-small .p-disabled{background:#ffffff;opacity:1}:host ::ng-deep .w-edit-select-input-small .p-disabled .p-inputtext{color:#bdc1c6}::ng-deep .select-disabled .p-dropdown .p-dropdown-trigger{display:none}\n"], dependencies: [{ kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.Skeleton, selector: "p-skeleton", inputs: ["styleClass", "style", "shape", "animation", "borderRadius", "size", "width", "height"] }, { kind: "component", type: i4.WEditSelectComponent, selector: "w-edit-select", inputs: ["label", "showLabel", "placeholder", "disabled", "loading", "required", "size", "options", "filter", "optionLabel", "optionValue", "appendTo", "showClear", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange", "onClear"] }, { kind: "component", type: i5.WEditMultiselectComponent, selector: "w-edit-multiselect", inputs: ["label", "showLabel", "placeholder", "filter", "filterPlaceholder", "disabled", "optionDisabled", "showPanelDisabled", "readonly", "required", "size", "options", "optionLabel", "optionValue", "appendTo", "showClear", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange"] }] });
|
|
60
|
+
], usesOnChanges: true, ngImport: i0, template: "<!-- <div *ngIf=\"options.length == 0; else optionsDataReady\" class=\"mx-2 w-list-field-skeleton-container p-dropdown p-component\"><p-skeleton width=\"8rem\" height=\"9px\"></p-skeleton></div>\r\n<ng-template #optionsDataReady>\r\n <p-multiSelect *ngIf=\"getDataType() == dataType.Multi\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder ?? 'Select an option'\"\r\n (onChange)=\"onOptionSelected()\">\r\n </p-multiSelect>\r\n <p-dropdown *ngIf=\"options && getDataType() == dataType.Single\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder ?? 'Select an option'\" \r\n (onChange)=\"onOptionSelected()\">\r\n </p-dropdown>\r\n</ng-template> -->\r\n\r\n<div *ngIf=\"options.length == 0; else optionsDataReady\" class=\"wapp-list-field-skeleton-container\"><p-skeleton width=\"8rem\" height=\"14px\"></p-skeleton></div>\r\n<ng-template #optionsDataReady>\r\n <w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi\"\r\n [showClear]=\"false\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder\"\r\n (onChange)=\"onOptionSelected()\" \r\n [disabled]=\"disabled\" \r\n [showLabel]=\"false\">\r\n </w-edit-multiselect>\r\n <w-edit-select *ngIf=\"options && getDataType() == dataType.Single\"\r\n [showClear]=\"false\"\r\n appendTo=\"body\" \r\n [options]=\"options\" \r\n [(ngModel)]=\"optionSelected\" \r\n optionLabel=\"name\" \r\n optionValue=\"value\" \r\n [placeholder]=\"placeholder\" \r\n (onChange)=\"onOptionSelected()\" \r\n [disabled]=\"disabled\" \r\n [required]=\"true\" \r\n [showLabel]=\"false\">\r\n </w-edit-select>\r\n</ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text{color:#1f2224}.w-input-small-placeholder-text-only-color{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text-disabled-only-color{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.w-list-field-skeleton-container{padding:14px}:host ::ng-deep .w-edit-select-input-small .p-dropdown{font-weight:600;border-width:1px;border-radius:8px;border-color:#e8ebee;height:32px;margin:4px}:host ::ng-deep .w-edit-select-input-small .p-dropdown:not(.p-disabled):hover{border:1px solid #005c7a!important}:host ::ng-deep .w-edit-select-input-small .p-dropdown:not(.p-disabled).p-focus{box-shadow:0 0 8px #3c7e9a80;border:1px solid #d6f2ff}:host ::ng-deep .w-edit-select-input-small .p-dropdown .p-placeholder{color:#9aa0a7}:host ::ng-deep .w-edit-select-input-small .p-inputtext{padding:6px 0 6px 12px}:host ::ng-deep .w-edit-select-input-small .p-dropdown .pi{font-size:.8rem}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel{padding:8px}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items{padding:0}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items .p-dropdown-item{padding:8px;margin-bottom:4px;font-weight:600}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items .p-dropdown-item:hover{background:#d6f2ff;border-radius:8px}:host ::ng-deep .w-edit-select-input-small .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight{background:#d6f2ff;border-radius:8px;color:#000}:host ::ng-deep .w-edit-select-input-small .p-disabled{background:#ffffff;opacity:1}:host ::ng-deep .w-edit-select-input-small .p-disabled .p-inputtext{color:#bdc1c6}::ng-deep .select-disabled .p-dropdown .p-dropdown-trigger{display:none}\n"], dependencies: [{ kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.Skeleton, selector: "p-skeleton", inputs: ["styleClass", "style", "shape", "animation", "borderRadius", "size", "width", "height"] }, { kind: "component", type: i4.WEditSelectComponent, selector: "w-edit-select", inputs: ["label", "showLabel", "placeholder", "disabled", "loading", "required", "size", "options", "filter", "optionLabel", "optionValue", "appendTo", "showClear", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange", "onClear"] }, { kind: "component", type: i5.WEditMultiselectComponent, selector: "w-edit-multiselect", inputs: ["label", "showLabel", "placeholder", "filter", "filterPlaceholder", "disabled", "optionDisabled", "showPanelDisabled", "readonly", "required", "size", "options", "optionLabel", "optionValue", "appendTo", "showClear", "showToggleAll", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange"] }] });
|
|
61
61
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WListFieldComponent, decorators: [{
|
|
62
62
|
type: Component,
|
|
63
63
|
args: [{ selector: 'w-list-field', providers: [
|
|
@@ -262,7 +262,7 @@ WAddressFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
262
262
|
useExisting: forwardRef(() => WAddressFieldComponent),
|
|
263
263
|
multi: true
|
|
264
264
|
}
|
|
265
|
-
], usesOnChanges: true, ngImport: i0, template: "<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && countries.length > 0\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"countries\" [(ngModel)]=\"countrySelected\" optionLabel=\"name\" optionValue=\"gmCountryId\" (onChange)=\"onCountrySelected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && areaLevels1.length > 0 && countrySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels1\" [(ngModel)]=\"areaLevel1Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel1Id\" (onChange)=\"onAreaLevel1Selected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && areaLevels2.length > 0 && areaLevel1Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels2\" [(ngModel)]=\"areaLevel2Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel2Id\" (onChange)=\"onAreaLevel2Selected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && localities.length > 0 && areaLevel2Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"localities\" [(ngModel)]=\"localitySelected\" optionLabel=\"name\" optionValue=\"gmLocalityId\" (onChange)=\"onLocalitySelected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && postalCodes.length > 0 && localitySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"postalCodes\" [(ngModel)]=\"postalCodeSelected\" optionLabel=\"name\" optionValue=\"gmPostalCodeId\" (onChange)=\"onPostalCodeSelected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && countries.length > 0\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"countries\" [(ngModel)]=\"countrySelected\" optionLabel=\"name\" optionValue=\"gmCountryId\" (onChange)=\"onCountrySelected()\" (onClear)=\"onCountryCleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && areaLevels1.length > 0 && countrySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels1\" [(ngModel)]=\"areaLevel1Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel1Id\" (onChange)=\"onAreaLevel1Selected()\" (onClear)=\"onAreaLevel1Cleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && areaLevels2.length > 0 && areaLevel1Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels2\" [(ngModel)]=\"areaLevel2Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel2Id\" (onChange)=\"onAreaLevel2Selected()\" (onClear)=\"onAreaLevel2Cleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && localities.length > 0 && areaLevel2Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"localities\" [(ngModel)]=\"localitySelected\" optionLabel=\"name\" optionValue=\"gmLocalityId\" (onChange)=\"onLocalitySelected()\" (onClear)=\"onLocalityCleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && postalCodes.length > 0 && localitySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"postalCodes\" [(ngModel)]=\"postalCodeSelected\" optionLabel=\"name\" optionValue=\"gmPostalCodeId\" (onChange)=\"onPostalCodeSelected()\" (onClear)=\"onPostalCodeCleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.WEditSelectComponent, selector: "w-edit-select", inputs: ["label", "showLabel", "placeholder", "disabled", "loading", "required", "size", "options", "filter", "optionLabel", "optionValue", "appendTo", "showClear", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange", "onClear"] }, { kind: "component", type: i5.WEditMultiselectComponent, selector: "w-edit-multiselect", inputs: ["label", "showLabel", "placeholder", "filter", "filterPlaceholder", "disabled", "optionDisabled", "showPanelDisabled", "readonly", "required", "size", "options", "optionLabel", "optionValue", "appendTo", "showClear", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange"] }] });
|
|
265
|
+
], usesOnChanges: true, ngImport: i0, template: "<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && countries.length > 0\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"countries\" [(ngModel)]=\"countrySelected\" optionLabel=\"name\" optionValue=\"gmCountryId\" (onChange)=\"onCountrySelected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && areaLevels1.length > 0 && countrySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels1\" [(ngModel)]=\"areaLevel1Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel1Id\" (onChange)=\"onAreaLevel1Selected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && areaLevels2.length > 0 && areaLevel1Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels2\" [(ngModel)]=\"areaLevel2Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel2Id\" (onChange)=\"onAreaLevel2Selected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && localities.length > 0 && areaLevel2Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"localities\" [(ngModel)]=\"localitySelected\" optionLabel=\"name\" optionValue=\"gmLocalityId\" (onChange)=\"onLocalitySelected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n<w-edit-multiselect *ngIf=\"getDataType() == dataType.Multi && postalCodes.length > 0 && localitySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"postalCodes\" [(ngModel)]=\"postalCodeSelected\" optionLabel=\"name\" optionValue=\"gmPostalCodeId\" (onChange)=\"onPostalCodeSelected()\" [placeholder]=\"selectPlaceholder\"></w-edit-multiselect>\r\n\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && countries.length > 0\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"countries\" [(ngModel)]=\"countrySelected\" optionLabel=\"name\" optionValue=\"gmCountryId\" (onChange)=\"onCountrySelected()\" (onClear)=\"onCountryCleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && areaLevels1.length > 0 && countrySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels1\" [(ngModel)]=\"areaLevel1Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel1Id\" (onChange)=\"onAreaLevel1Selected()\" (onClear)=\"onAreaLevel1Cleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && areaLevels2.length > 0 && areaLevel1Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"areaLevels2\" [(ngModel)]=\"areaLevel2Selected\" optionLabel=\"name\" optionValue=\"gmAreaLevel2Id\" (onChange)=\"onAreaLevel2Selected()\" (onClear)=\"onAreaLevel2Cleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && localities.length > 0 && areaLevel2Selected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"localities\" [(ngModel)]=\"localitySelected\" optionLabel=\"name\" optionValue=\"gmLocalityId\" (onChange)=\"onLocalitySelected()\" (onClear)=\"onLocalityCleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n<w-edit-select *ngIf=\"getDataType() == dataType.Single && postalCodes.length > 0 && localitySelected\" class=\"w-address-field-width q-inline-block-display inline-flex\" [showClear]=\"false\" appendTo=\"body\" [options]=\"postalCodes\" [(ngModel)]=\"postalCodeSelected\" optionLabel=\"name\" optionValue=\"gmPostalCodeId\" (onChange)=\"onPostalCodeSelected()\" (onClear)=\"onPostalCodeCleared()\" [placeholder]=\"selectPlaceholder\"></w-edit-select>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.WEditSelectComponent, selector: "w-edit-select", inputs: ["label", "showLabel", "placeholder", "disabled", "loading", "required", "size", "options", "filter", "optionLabel", "optionValue", "appendTo", "showClear", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange", "onClear"] }, { kind: "component", type: i5.WEditMultiselectComponent, selector: "w-edit-multiselect", inputs: ["label", "showLabel", "placeholder", "filter", "filterPlaceholder", "disabled", "optionDisabled", "showPanelDisabled", "readonly", "required", "size", "options", "optionLabel", "optionValue", "appendTo", "showClear", "showToggleAll", "formControl", "requiredErrorDescription", "removePaddingTop", "tooltip", "tooltipPosition"], outputs: ["onChange"] }] });
|
|
266
266
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WAddressFieldComponent, decorators: [{
|
|
267
267
|
type: Component,
|
|
268
268
|
args: [{ selector: 'w-address-field', providers: [
|