ngx-wapp-components 1.28.4 → 1.28.5-alpha.2
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/tabview/w-tabview/w-tabview.component.mjs +7 -3
- package/fesm2015/ngx-wapp-components.mjs +6 -2
- package/fesm2015/ngx-wapp-components.mjs.map +1 -1
- package/fesm2020/ngx-wapp-components.mjs +6 -2
- package/fesm2020/ngx-wapp-components.mjs.map +1 -1
- package/lib/tabview/w-tabview/w-tabview.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export class WTabviewComponent {
|
|
|
11
11
|
this.disabledTabs = [false, false, false];
|
|
12
12
|
this.requiredTabs = [false, false, false];
|
|
13
13
|
this.validatedTabs = [false, false, false];
|
|
14
|
+
this.applyValidationStyle = false;
|
|
14
15
|
this.activeIndex = 0;
|
|
15
16
|
this.type = "regular";
|
|
16
17
|
this.outActiveIndex = new EventEmitter();
|
|
@@ -42,10 +43,10 @@ export class WTabviewComponent {
|
|
|
42
43
|
}
|
|
43
44
|
}
|
|
44
45
|
WTabviewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WTabviewComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
45
|
-
WTabviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WTabviewComponent, selector: "w-tabview", inputs: { headers: "headers", disabledTabs: "disabledTabs", requiredTabs: "requiredTabs", validatedTabs: "validatedTabs", icons: "icons", activeIndex: "activeIndex", type: "type" }, outputs: { outActiveIndex: "outActiveIndex" }, viewQueries: [{ propertyName: "tabView", first: true, predicate: TabView, descendants: true }], ngImport: i0, template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i3.TabView, selector: "p-tabView", inputs: ["orientation", "style", "styleClass", "controlClose", "scrollable", "activeIndex"], outputs: ["onChange", "onClose", "activeIndexChange"] }, { kind: "component", type: i3.TabPanel, selector: "p-tabPanel", inputs: ["closable", "headerStyle", "headerStyleClass", "cache", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "selected", "disabled", "header", "leftIcon", "rightIcon"] }] });
|
|
46
|
+
WTabviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WTabviewComponent, selector: "w-tabview", inputs: { headers: "headers", disabledTabs: "disabledTabs", requiredTabs: "requiredTabs", validatedTabs: "validatedTabs", applyValidationStyle: "applyValidationStyle", icons: "icons", activeIndex: "activeIndex", type: "type" }, outputs: { outActiveIndex: "outActiveIndex" }, viewQueries: [{ propertyName: "tabView", first: true, predicate: TabView, descendants: true }], ngImport: i0, template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i3.TabView, selector: "p-tabView", inputs: ["orientation", "style", "styleClass", "controlClose", "scrollable", "activeIndex"], outputs: ["onChange", "onClose", "activeIndexChange"] }, { kind: "component", type: i3.TabPanel, selector: "p-tabPanel", inputs: ["closable", "headerStyle", "headerStyleClass", "cache", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "selected", "disabled", "header", "leftIcon", "rightIcon"] }] });
|
|
46
47
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WTabviewComponent, decorators: [{
|
|
47
48
|
type: Component,
|
|
48
|
-
args: [{ selector: 'w-tabview', template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"] }]
|
|
49
|
+
args: [{ selector: 'w-tabview', template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"] }]
|
|
49
50
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { headers: [{
|
|
50
51
|
type: Input,
|
|
51
52
|
args: ['headers']
|
|
@@ -58,6 +59,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
58
59
|
}], validatedTabs: [{
|
|
59
60
|
type: Input,
|
|
60
61
|
args: ['validatedTabs']
|
|
62
|
+
}], applyValidationStyle: [{
|
|
63
|
+
type: Input,
|
|
64
|
+
args: ['applyValidationStyle']
|
|
61
65
|
}], icons: [{
|
|
62
66
|
type: Input,
|
|
63
67
|
args: ['icons']
|
|
@@ -74,4 +78,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
74
78
|
type: ViewChild,
|
|
75
79
|
args: [TabView]
|
|
76
80
|
}] } });
|
|
77
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy10YWJ2aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhcHAtY29tcG9uZW50cy9zcmMvbGliL3RhYnZpZXcvdy10YWJ2aWV3L3ctdGFidmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi90YWJ2aWV3L3ctdGFidmlldy93LXRhYnZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFxQixTQUFTLEVBQWMsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pILE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7Ozs7QUFPMUMsTUFBTSxPQUFPLGlCQUFpQjtJQWM1QixZQUFvQixLQUF3QjtRQUF4QixVQUFLLEdBQUwsS0FBSyxDQUFtQjtRQVoxQixZQUFPLEdBQWEsQ0FBQyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQ3BELGlCQUFZLEdBQWMsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQ2hELGlCQUFZLEdBQWMsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQy9DLGtCQUFhLEdBQWMsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBRW5ELGdCQUFXLEdBQVcsQ0FBQyxDQUFDO1FBQy9CLFNBQUksR0FBVyxTQUFTLENBQUM7UUFDZCxtQkFBYyxHQUF5QixJQUFJLFlBQVksRUFBVSxDQUFDO1FBRzVGLGlCQUFZLEdBQVksS0FBSyxDQUFDO0lBRWdCLENBQUM7SUFFL0MsUUFBUTtRQUNOLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDN0IsQ0FBQztJQUVELGVBQWU7UUFDYixVQUFVLENBQUMsR0FBRyxFQUFFO1lBQ2QsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7UUFDM0IsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBRU4sTUFBTSxDQUFDLGdCQUFnQixDQUFDLFFBQVEsRUFBRSxHQUFHLEVBQUU7WUFDckMsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7UUFDM0IsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsaUJBQWlCLENBQUMsS0FBVTtRQUMxQixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQTtJQUNqQyxDQUFDO0lBRUQsaUJBQWlCO1FBQ2YsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUU7WUFDakIsT0FBTztTQUNSO1FBRUQsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDLGFBQWEsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBRWhGLElBQUksU0FBUyxFQUFFO1lBQ2IsTUFBTSxhQUFhLEdBQUcsU0FBUyxDQUFDLFdBQVcsR0FBRyxTQUFTLENBQUMsV0FBVyxDQUFDO1lBQ3BFLElBQUksQ0FBQyxZQUFZLEdBQUcsYUFBYSxDQUFDO1NBQ25DO0lBQ0gsQ0FBQzs7OEdBN0NVLGlCQUFpQjtrR0FBakIsaUJBQWlCLCtUQVVqQixPQUFPLGdEQ2xCcEIseTROQXNHQTsyRkQ5RmEsaUJBQWlCO2tCQUw3QixTQUFTOytCQUNFLFdBQVc7d0dBTUgsT0FBTztzQkFBeEIsS0FBSzt1QkFBQyxTQUFTO2dCQUNPLFlBQVk7c0JBQWxDLEtBQUs7dUJBQUMsY0FBYztnQkFDRSxZQUFZO3NCQUFsQyxLQUFLO3VCQUFDLGNBQWM7Z0JBQ0csYUFBYTtzQkFBcEMsS0FBSzt1QkFBQyxlQUFlO2dCQUNOLEtBQUs7c0JBQXBCLEtBQUs7dUJBQUMsT0FBTztnQkFDUSxXQUFXO3NCQUFoQyxLQUFLO3VCQUFDLGFBQWE7Z0JBQ0wsSUFBSTtzQkFBbEIsS0FBSzt1QkFBQyxNQUFNO2dCQUNhLGNBQWM7c0JBQXZDLE1BQU07dUJBQUMsZ0JBQWdCO2dCQUNKLE9BQU87c0JBQTFCLFNBQVM7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdG9yUmVmLCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgVGFiVmlldyB9IGZyb20gJ3ByaW1lbmcvdGFidmlldyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3ctdGFidmlldycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3ctdGFidmlldy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vdy10YWJ2aWV3LmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFdUYWJ2aWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0e1xyXG5cclxuICBASW5wdXQoJ2hlYWRlcnMnKSBoZWFkZXJzOiBzdHJpbmdbXSA9IFsnSGVhZGVyIDEnLCAnSGVhZGVyIDInLCAnSGVhZGVyIDMnXTtcclxuICBASW5wdXQoJ2Rpc2FibGVkVGFicycpIGRpc2FibGVkVGFiczogYm9vbGVhbltdID0gW2ZhbHNlLCBmYWxzZSwgZmFsc2VdO1xyXG4gIEBJbnB1dCgncmVxdWlyZWRUYWJzJykgcmVxdWlyZWRUYWJzOiBib29sZWFuW10gPSBbZmFsc2UsIGZhbHNlLCBmYWxzZV07XHJcbiAgQElucHV0KCd2YWxpZGF0ZWRUYWJzJykgdmFsaWRhdGVkVGFiczogYm9vbGVhbltdID0gW2ZhbHNlLCBmYWxzZSwgZmFsc2VdO1xyXG4gIEBJbnB1dCgnaWNvbnMnKSBpY29ucyE6IHN0cmluZ1tdO1xyXG4gIEBJbnB1dCgnYWN0aXZlSW5kZXgnKSBhY3RpdmVJbmRleDogbnVtYmVyID0gMDtcclxuICBASW5wdXQoJ3R5cGUnKSB0eXBlOiBzdHJpbmcgPSBcInJlZ3VsYXJcIjtcclxuICBAT3V0cHV0KCdvdXRBY3RpdmVJbmRleCcpIG91dEFjdGl2ZUluZGV4OiBFdmVudEVtaXR0ZXI8bnVtYmVyPiA9IG5ldyBFdmVudEVtaXR0ZXI8bnVtYmVyPigpO1xyXG4gIEBWaWV3Q2hpbGQoVGFiVmlldykgdGFiVmlldyE6IFRhYlZpZXc7XHJcblxyXG4gIGlzU2Nyb2xsYWJsZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkcmVmOiBDaGFuZ2VEZXRlY3RvclJlZil7fVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuY2RyZWYuZGV0ZWN0Q2hhbmdlcygpO1xyXG4gIH1cclxuXHJcbiAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xyXG4gICAgc2V0VGltZW91dCgoKSA9PiB7XHJcbiAgICAgIHRoaXMuY2hlY2tUYWJzT3ZlcmZsb3coKTtcclxuICAgIH0sIDApO1xyXG5cclxuICAgIHdpbmRvdy5hZGRFdmVudExpc3RlbmVyKCdyZXNpemUnLCAoKSA9PiB7XHJcbiAgICAgIHRoaXMuY2hlY2tUYWJzT3ZlcmZsb3coKTtcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgYWN0aXZlSW5kZXhDaGFuZ2UoaW5kZXg6IGFueSkge1xyXG4gICAgdGhpcy5vdXRBY3RpdmVJbmRleC5lbWl0KGluZGV4KVxyXG4gIH1cclxuXHJcbiAgY2hlY2tUYWJzT3ZlcmZsb3coKTogdm9pZCB7XHJcbiAgICBpZiAoIXRoaXMudGFiVmlldykge1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcblxyXG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy50YWJWaWV3LmVsLm5hdGl2ZUVsZW1lbnQucXVlcnlTZWxlY3RvcignLnAtdGFidmlldy1uYXYnKTtcclxuXHJcbiAgICBpZiAoY29udGFpbmVyKSB7XHJcbiAgICAgIGNvbnN0IGlzT3ZlcmZsb3dpbmcgPSBjb250YWluZXIuc2Nyb2xsV2lkdGggPiBjb250YWluZXIuY2xpZW50V2lkdGg7XHJcbiAgICAgIHRoaXMuaXNTY3JvbGxhYmxlID0gaXNPdmVyZmxvd2luZztcclxuICAgIH1cclxuICB9XHJcblxyXG59XHJcbiIsIjxwLXRhYlZpZXcgWyhhY3RpdmVJbmRleCldPVwiYWN0aXZlSW5kZXhcIiBbc3R5bGVDbGFzc109XCJ0eXBlID09ICdyZWd1bGFyJyA/ICd3LXRhYnZpZXctcmVndWxhcicgOiAndy10YWJ2aWV3LXNlY29uZGFyeSdcIiAoYWN0aXZlSW5kZXhDaGFuZ2UpPVwiYWN0aXZlSW5kZXhDaGFuZ2UoJGV2ZW50KVwiIFtzY3JvbGxhYmxlXT1cImlzU2Nyb2xsYWJsZVwiPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDAgXCIgW2hlYWRlcl09XCJoZWFkZXJzWzBdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1swXVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1swXVwiIFtjbGFzc109XCIncGkgJytpY29uc1swXVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbMF1cIj57e2hlYWRlcnNbMF19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1swXSAmJiAhZGlzYWJsZWRUYWJzWzBdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogIXZhbGlkYXRlZFRhYnNbMF19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gMFwiIHNlbGVjdD1cIi5wYW5lbC0xXCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gMVwiIFtoZWFkZXJdPVwiaGVhZGVyc1sxXVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbMV1cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbMV1cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbMV1cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzFdXCI+e3toZWFkZXJzWzFdfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbMV0gJiYgIWRpc2FibGVkVGFic1sxXVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6ICF2YWxpZGF0ZWRUYWJzWzFdfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDFcIiBzZWxlY3Q9XCIucGFuZWwtMlwiPjwvbmctY29udGVudD5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLXRhYlBhbmVsPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDIgXCIgW2hlYWRlcl09XCJoZWFkZXJzWzJdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1syXVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1syXVwiIFtjbGFzc109XCIncGkgJytpY29uc1syXVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbMl1cIj57e2hlYWRlcnNbMl19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1syXSAmJiAhZGlzYWJsZWRUYWJzWzJdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogIXZhbGlkYXRlZFRhYnNbMl19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gMlwiIHNlbGVjdD1cIi5wYW5lbC0zXCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gM1wiIFtoZWFkZXJdPVwiaGVhZGVyc1szXVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbM11cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbM11cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbM11cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzNdXCI+e3toZWFkZXJzWzNdfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbM10gJiYgIWRpc2FibGVkVGFic1szXVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6ICF2YWxpZGF0ZWRUYWJzWzNdfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDNcIiBzZWxlY3Q9XCIucGFuZWwtNFwiPjwvbmctY29udGVudD5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLXRhYlBhbmVsPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDRcIiBbaGVhZGVyXT1cImhlYWRlcnNbNF1cIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRUYWJzWzRdXCI+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiPlxyXG4gICAgICAgICAgICA8aSAqbmdJZj1cImljb25zICYmIGljb25zWzRdXCIgW2NsYXNzXT1cIidwaSAnK2ljb25zWzRdXCI+PC9pPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy10aXRsZVwiICpuZ0lmPVwiaGVhZGVyc1s0XVwiPnt7aGVhZGVyc1s0XX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy1hc3Rlcmlza1wiICpuZ0lmPVwicmVxdWlyZWRUYWJzWzRdICYmICFkaXNhYmxlZFRhYnNbNF1cIiBbbmdDbGFzc109XCJ7J25vdC12YWxpZGF0ZWQnOiAhdmFsaWRhdGVkVGFic1s0XX1cIj4qPC9zcGFuPlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImNvbnRlbnRcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRlbnQgKm5nSWY9XCJhY3RpdmVJbmRleCA9PSA0XCIgc2VsZWN0PVwiLnBhbmVsLTVcIj48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC10YWJQYW5lbD5cclxuICAgIDxwLXRhYlBhbmVsICpuZ0lmPVwiaGVhZGVycy5sZW5ndGggPiA1XCIgW2hlYWRlcl09XCJoZWFkZXJzWzVdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1s1XVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1s1XVwiIFtjbGFzc109XCIncGkgJytpY29uc1s1XVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbNV1cIj57e2hlYWRlcnNbNV19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1s1XSAmJiAhZGlzYWJsZWRUYWJzWzVdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogIXZhbGlkYXRlZFRhYnNbNV19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gNVwiIHNlbGVjdD1cIi5wYW5lbC02XCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gNlwiIFtoZWFkZXJdPVwiaGVhZGVyc1s2XVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbNl1cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbNl1cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbNl1cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzZdXCI+e3toZWFkZXJzWzZdfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbNl0gJiYgIWRpc2FibGVkVGFic1s2XVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6ICF2YWxpZGF0ZWRUYWJzWzZdfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDZcIiBzZWxlY3Q9XCIucGFuZWwtN1wiPjwvbmctY29udGVudD5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLXRhYlBhbmVsPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDdcIiBbaGVhZGVyXT1cImhlYWRlcnNbN11cIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRUYWJzWzddXCI+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiPlxyXG4gICAgICAgICAgICA8aSAqbmdJZj1cImljb25zICYmIGljb25zWzddXCIgW2NsYXNzXT1cIidwaSAnK2ljb25zWzddXCI+PC9pPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy10aXRsZVwiICpuZ0lmPVwiaGVhZGVyc1s3XVwiPnt7aGVhZGVyc1s3XX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy1hc3Rlcmlza1wiICpuZ0lmPVwicmVxdWlyZWRUYWJzWzddICYmICFkaXNhYmxlZFRhYnNbN11cIiBbbmdDbGFzc109XCJ7J25vdC12YWxpZGF0ZWQnOiAhdmFsaWRhdGVkVGFic1s3XX1cIj4qPC9zcGFuPlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImNvbnRlbnRcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRlbnQgKm5nSWY9XCJhY3RpdmVJbmRleCA9PSA3XCIgc2VsZWN0PVwiLnBhbmVsLThcIj48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC10YWJQYW5lbD5cclxuICAgIDxwLXRhYlBhbmVsICpuZ0lmPVwiaGVhZGVycy5sZW5ndGggPiA4XCIgW2hlYWRlcl09XCJoZWFkZXJzWzhdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1s4XVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1s4XVwiIFtjbGFzc109XCIncGkgJytpY29uc1s4XVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbOF1cIj57e2hlYWRlcnNbOF19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1s4XSAmJiAhZGlzYWJsZWRUYWJzWzhdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogIXZhbGlkYXRlZFRhYnNbOF19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gOFwiIHNlbGVjdD1cIi5wYW5lbC05XCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gOVwiIFtoZWFkZXJdPVwiaGVhZGVyc1s5XVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbOV1cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbOV1cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbOV1cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzldXCI+e3toZWFkZXJzWzldfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbOV0gJiYgIWRpc2FibGVkVGFic1s5XVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6ICF2YWxpZGF0ZWRUYWJzWzldfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDlcIiBzZWxlY3Q9XCIucGFuZWwtMTBcIj48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC10YWJQYW5lbD5cclxuPC9wLXRhYlZpZXc+XHJcbiJdfQ==
|
|
81
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy10YWJ2aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhcHAtY29tcG9uZW50cy9zcmMvbGliL3RhYnZpZXcvdy10YWJ2aWV3L3ctdGFidmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi90YWJ2aWV3L3ctdGFidmlldy93LXRhYnZpZXcuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFxQixTQUFTLEVBQWMsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pILE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7Ozs7QUFPMUMsTUFBTSxPQUFPLGlCQUFpQjtJQWU1QixZQUFvQixLQUF3QjtRQUF4QixVQUFLLEdBQUwsS0FBSyxDQUFtQjtRQWIxQixZQUFPLEdBQWEsQ0FBQyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQ3BELGlCQUFZLEdBQWMsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQ2hELGlCQUFZLEdBQWMsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQy9DLGtCQUFhLEdBQWMsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQzFDLHlCQUFvQixHQUFZLEtBQUssQ0FBQztRQUUvQyxnQkFBVyxHQUFXLENBQUMsQ0FBQztRQUMvQixTQUFJLEdBQVcsU0FBUyxDQUFDO1FBQ2QsbUJBQWMsR0FBeUIsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUc1RixpQkFBWSxHQUFZLEtBQUssQ0FBQztJQUVnQixDQUFDO0lBRS9DLFFBQVE7UUFDTixJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFRCxlQUFlO1FBQ2IsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNkLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1FBQzNCLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztRQUVOLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxRQUFRLEVBQUUsR0FBRyxFQUFFO1lBQ3JDLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1FBQzNCLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGlCQUFpQixDQUFDLEtBQVU7UUFDMUIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUE7SUFDakMsQ0FBQztJQUVELGlCQUFpQjtRQUNmLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFO1lBQ2pCLE9BQU87U0FDUjtRQUVELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUVoRixJQUFJLFNBQVMsRUFBRTtZQUNiLE1BQU0sYUFBYSxHQUFHLFNBQVMsQ0FBQyxXQUFXLEdBQUcsU0FBUyxDQUFDLFdBQVcsQ0FBQztZQUNwRSxJQUFJLENBQUMsWUFBWSxHQUFHLGFBQWEsQ0FBQztTQUNuQztJQUNILENBQUM7OzhHQTlDVSxpQkFBaUI7a0dBQWpCLGlCQUFpQiw2V0FXakIsT0FBTyxnRENuQnBCLHluT0FzR0E7MkZEOUZhLGlCQUFpQjtrQkFMN0IsU0FBUzsrQkFDRSxXQUFXO3dHQU1ILE9BQU87c0JBQXhCLEtBQUs7dUJBQUMsU0FBUztnQkFDTyxZQUFZO3NCQUFsQyxLQUFLO3VCQUFDLGNBQWM7Z0JBQ0UsWUFBWTtzQkFBbEMsS0FBSzt1QkFBQyxjQUFjO2dCQUNHLGFBQWE7c0JBQXBDLEtBQUs7dUJBQUMsZUFBZTtnQkFDUyxvQkFBb0I7c0JBQWxELEtBQUs7dUJBQUMsc0JBQXNCO2dCQUNiLEtBQUs7c0JBQXBCLEtBQUs7dUJBQUMsT0FBTztnQkFDUSxXQUFXO3NCQUFoQyxLQUFLO3VCQUFDLGFBQWE7Z0JBQ0wsSUFBSTtzQkFBbEIsS0FBSzt1QkFBQyxNQUFNO2dCQUNhLGNBQWM7c0JBQXZDLE1BQU07dUJBQUMsZ0JBQWdCO2dCQUNKLE9BQU87c0JBQTFCLFNBQVM7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdG9yUmVmLCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgVGFiVmlldyB9IGZyb20gJ3ByaW1lbmcvdGFidmlldyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3ctdGFidmlldycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3ctdGFidmlldy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vdy10YWJ2aWV3LmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFdUYWJ2aWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0e1xyXG5cclxuICBASW5wdXQoJ2hlYWRlcnMnKSBoZWFkZXJzOiBzdHJpbmdbXSA9IFsnSGVhZGVyIDEnLCAnSGVhZGVyIDInLCAnSGVhZGVyIDMnXTtcclxuICBASW5wdXQoJ2Rpc2FibGVkVGFicycpIGRpc2FibGVkVGFiczogYm9vbGVhbltdID0gW2ZhbHNlLCBmYWxzZSwgZmFsc2VdO1xyXG4gIEBJbnB1dCgncmVxdWlyZWRUYWJzJykgcmVxdWlyZWRUYWJzOiBib29sZWFuW10gPSBbZmFsc2UsIGZhbHNlLCBmYWxzZV07XHJcbiAgQElucHV0KCd2YWxpZGF0ZWRUYWJzJykgdmFsaWRhdGVkVGFiczogYm9vbGVhbltdID0gW2ZhbHNlLCBmYWxzZSwgZmFsc2VdO1xyXG4gIEBJbnB1dCgnYXBwbHlWYWxpZGF0aW9uU3R5bGUnKSBhcHBseVZhbGlkYXRpb25TdHlsZTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgnaWNvbnMnKSBpY29ucyE6IHN0cmluZ1tdO1xyXG4gIEBJbnB1dCgnYWN0aXZlSW5kZXgnKSBhY3RpdmVJbmRleDogbnVtYmVyID0gMDtcclxuICBASW5wdXQoJ3R5cGUnKSB0eXBlOiBzdHJpbmcgPSBcInJlZ3VsYXJcIjtcclxuICBAT3V0cHV0KCdvdXRBY3RpdmVJbmRleCcpIG91dEFjdGl2ZUluZGV4OiBFdmVudEVtaXR0ZXI8bnVtYmVyPiA9IG5ldyBFdmVudEVtaXR0ZXI8bnVtYmVyPigpO1xyXG4gIEBWaWV3Q2hpbGQoVGFiVmlldykgdGFiVmlldyE6IFRhYlZpZXc7XHJcblxyXG4gIGlzU2Nyb2xsYWJsZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkcmVmOiBDaGFuZ2VEZXRlY3RvclJlZil7fVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuY2RyZWYuZGV0ZWN0Q2hhbmdlcygpO1xyXG4gIH1cclxuXHJcbiAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xyXG4gICAgc2V0VGltZW91dCgoKSA9PiB7XHJcbiAgICAgIHRoaXMuY2hlY2tUYWJzT3ZlcmZsb3coKTtcclxuICAgIH0sIDApO1xyXG5cclxuICAgIHdpbmRvdy5hZGRFdmVudExpc3RlbmVyKCdyZXNpemUnLCAoKSA9PiB7XHJcbiAgICAgIHRoaXMuY2hlY2tUYWJzT3ZlcmZsb3coKTtcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgYWN0aXZlSW5kZXhDaGFuZ2UoaW5kZXg6IGFueSkge1xyXG4gICAgdGhpcy5vdXRBY3RpdmVJbmRleC5lbWl0KGluZGV4KVxyXG4gIH1cclxuXHJcbiAgY2hlY2tUYWJzT3ZlcmZsb3coKTogdm9pZCB7XHJcbiAgICBpZiAoIXRoaXMudGFiVmlldykge1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcblxyXG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy50YWJWaWV3LmVsLm5hdGl2ZUVsZW1lbnQucXVlcnlTZWxlY3RvcignLnAtdGFidmlldy1uYXYnKTtcclxuXHJcbiAgICBpZiAoY29udGFpbmVyKSB7XHJcbiAgICAgIGNvbnN0IGlzT3ZlcmZsb3dpbmcgPSBjb250YWluZXIuc2Nyb2xsV2lkdGggPiBjb250YWluZXIuY2xpZW50V2lkdGg7XHJcbiAgICAgIHRoaXMuaXNTY3JvbGxhYmxlID0gaXNPdmVyZmxvd2luZztcclxuICAgIH1cclxuICB9XHJcblxyXG59XHJcbiIsIjxwLXRhYlZpZXcgWyhhY3RpdmVJbmRleCldPVwiYWN0aXZlSW5kZXhcIiBbc3R5bGVDbGFzc109XCJ0eXBlID09ICdyZWd1bGFyJyA/ICd3LXRhYnZpZXctcmVndWxhcicgOiAndy10YWJ2aWV3LXNlY29uZGFyeSdcIiAoYWN0aXZlSW5kZXhDaGFuZ2UpPVwiYWN0aXZlSW5kZXhDaGFuZ2UoJGV2ZW50KVwiIFtzY3JvbGxhYmxlXT1cImlzU2Nyb2xsYWJsZVwiPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDAgXCIgW2hlYWRlcl09XCJoZWFkZXJzWzBdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1swXVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1swXVwiIFtjbGFzc109XCIncGkgJytpY29uc1swXVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbMF1cIj57e2hlYWRlcnNbMF19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1swXSAmJiAhZGlzYWJsZWRUYWJzWzBdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogYXBwbHlWYWxpZGF0aW9uU3R5bGUgJiYgIXZhbGlkYXRlZFRhYnNbMF19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gMFwiIHNlbGVjdD1cIi5wYW5lbC0xXCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gMVwiIFtoZWFkZXJdPVwiaGVhZGVyc1sxXVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbMV1cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbMV1cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbMV1cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzFdXCI+e3toZWFkZXJzWzFdfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbMV0gJiYgIWRpc2FibGVkVGFic1sxXVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6IGFwcGx5VmFsaWRhdGlvblN0eWxlICYmICF2YWxpZGF0ZWRUYWJzWzFdfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDFcIiBzZWxlY3Q9XCIucGFuZWwtMlwiPjwvbmctY29udGVudD5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLXRhYlBhbmVsPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDIgXCIgW2hlYWRlcl09XCJoZWFkZXJzWzJdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1syXVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1syXVwiIFtjbGFzc109XCIncGkgJytpY29uc1syXVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbMl1cIj57e2hlYWRlcnNbMl19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1syXSAmJiAhZGlzYWJsZWRUYWJzWzJdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogYXBwbHlWYWxpZGF0aW9uU3R5bGUgJiYgIXZhbGlkYXRlZFRhYnNbMl19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gMlwiIHNlbGVjdD1cIi5wYW5lbC0zXCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gM1wiIFtoZWFkZXJdPVwiaGVhZGVyc1szXVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbM11cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbM11cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbM11cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzNdXCI+e3toZWFkZXJzWzNdfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbM10gJiYgIWRpc2FibGVkVGFic1szXVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6IGFwcGx5VmFsaWRhdGlvblN0eWxlICYmICF2YWxpZGF0ZWRUYWJzWzNdfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDNcIiBzZWxlY3Q9XCIucGFuZWwtNFwiPjwvbmctY29udGVudD5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLXRhYlBhbmVsPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDRcIiBbaGVhZGVyXT1cImhlYWRlcnNbNF1cIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRUYWJzWzRdXCI+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiPlxyXG4gICAgICAgICAgICA8aSAqbmdJZj1cImljb25zICYmIGljb25zWzRdXCIgW2NsYXNzXT1cIidwaSAnK2ljb25zWzRdXCI+PC9pPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy10aXRsZVwiICpuZ0lmPVwiaGVhZGVyc1s0XVwiPnt7aGVhZGVyc1s0XX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy1hc3Rlcmlza1wiICpuZ0lmPVwicmVxdWlyZWRUYWJzWzRdICYmICFkaXNhYmxlZFRhYnNbNF1cIiBbbmdDbGFzc109XCJ7J25vdC12YWxpZGF0ZWQnOiBhcHBseVZhbGlkYXRpb25TdHlsZSAmJiAhdmFsaWRhdGVkVGFic1s0XX1cIj4qPC9zcGFuPlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImNvbnRlbnRcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRlbnQgKm5nSWY9XCJhY3RpdmVJbmRleCA9PSA0XCIgc2VsZWN0PVwiLnBhbmVsLTVcIj48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC10YWJQYW5lbD5cclxuICAgIDxwLXRhYlBhbmVsICpuZ0lmPVwiaGVhZGVycy5sZW5ndGggPiA1XCIgW2hlYWRlcl09XCJoZWFkZXJzWzVdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1s1XVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1s1XVwiIFtjbGFzc109XCIncGkgJytpY29uc1s1XVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbNV1cIj57e2hlYWRlcnNbNV19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1s1XSAmJiAhZGlzYWJsZWRUYWJzWzVdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogYXBwbHlWYWxpZGF0aW9uU3R5bGUgJiYgIXZhbGlkYXRlZFRhYnNbNV19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gNVwiIHNlbGVjdD1cIi5wYW5lbC02XCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gNlwiIFtoZWFkZXJdPVwiaGVhZGVyc1s2XVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbNl1cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbNl1cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbNl1cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzZdXCI+e3toZWFkZXJzWzZdfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbNl0gJiYgIWRpc2FibGVkVGFic1s2XVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6IGFwcGx5VmFsaWRhdGlvblN0eWxlICYmICF2YWxpZGF0ZWRUYWJzWzZdfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDZcIiBzZWxlY3Q9XCIucGFuZWwtN1wiPjwvbmctY29udGVudD5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLXRhYlBhbmVsPlxyXG4gICAgPHAtdGFiUGFuZWwgKm5nSWY9XCJoZWFkZXJzLmxlbmd0aCA+IDdcIiBbaGVhZGVyXT1cImhlYWRlcnNbN11cIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRUYWJzWzddXCI+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiPlxyXG4gICAgICAgICAgICA8aSAqbmdJZj1cImljb25zICYmIGljb25zWzddXCIgW2NsYXNzXT1cIidwaSAnK2ljb25zWzddXCI+PC9pPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy10aXRsZVwiICpuZ0lmPVwiaGVhZGVyc1s3XVwiPnt7aGVhZGVyc1s3XX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtdGFidmlldy1hc3Rlcmlza1wiICpuZ0lmPVwicmVxdWlyZWRUYWJzWzddICYmICFkaXNhYmxlZFRhYnNbN11cIiBbbmdDbGFzc109XCJ7J25vdC12YWxpZGF0ZWQnOiBhcHBseVZhbGlkYXRpb25TdHlsZSAmJiAhdmFsaWRhdGVkVGFic1s3XX1cIj4qPC9zcGFuPlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImNvbnRlbnRcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRlbnQgKm5nSWY9XCJhY3RpdmVJbmRleCA9PSA3XCIgc2VsZWN0PVwiLnBhbmVsLThcIj48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC10YWJQYW5lbD5cclxuICAgIDxwLXRhYlBhbmVsICpuZ0lmPVwiaGVhZGVycy5sZW5ndGggPiA4XCIgW2hlYWRlcl09XCJoZWFkZXJzWzhdXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkVGFic1s4XVwiPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cclxuICAgICAgICAgICAgPGkgKm5nSWY9XCJpY29ucyAmJiBpY29uc1s4XVwiIFtjbGFzc109XCIncGkgJytpY29uc1s4XVwiPjwvaT5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctdGl0bGVcIiAqbmdJZj1cImhlYWRlcnNbOF1cIj57e2hlYWRlcnNbOF19fTwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwLXRhYnZpZXctYXN0ZXJpc2tcIiAqbmdJZj1cInJlcXVpcmVkVGFic1s4XSAmJiAhZGlzYWJsZWRUYWJzWzhdXCIgW25nQ2xhc3NdPVwieydub3QtdmFsaWRhdGVkJzogYXBwbHlWYWxpZGF0aW9uU3R5bGUgJiYgIXZhbGlkYXRlZFRhYnNbOF19XCI+Kjwvc3Bhbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxuZy1jb250ZW50ICpuZ0lmPVwiYWN0aXZlSW5kZXggPT0gOFwiIHNlbGVjdD1cIi5wYW5lbC05XCI+PC9uZy1jb250ZW50PlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8L3AtdGFiUGFuZWw+XHJcbiAgICA8cC10YWJQYW5lbCAqbmdJZj1cImhlYWRlcnMubGVuZ3RoID4gOVwiIFtoZWFkZXJdPVwiaGVhZGVyc1s5XVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFRhYnNbOV1cIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgICAgIDxpICpuZ0lmPVwiaWNvbnMgJiYgaWNvbnNbOV1cIiBbY2xhc3NdPVwiJ3BpICcraWNvbnNbOV1cIj48L2k+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LXRpdGxlXCIgKm5nSWY9XCJoZWFkZXJzWzldXCI+e3toZWFkZXJzWzldfX08L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC10YWJ2aWV3LWFzdGVyaXNrXCIgKm5nSWY9XCJyZXF1aXJlZFRhYnNbOV0gJiYgIWRpc2FibGVkVGFic1s5XVwiIFtuZ0NsYXNzXT1cInsnbm90LXZhbGlkYXRlZCc6IGFwcGx5VmFsaWRhdGlvblN0eWxlICYmICF2YWxpZGF0ZWRUYWJzWzldfVwiPio8L3NwYW4+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGVudCAqbmdJZj1cImFjdGl2ZUluZGV4ID09IDlcIiBzZWxlY3Q9XCIucGFuZWwtMTBcIj48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC10YWJQYW5lbD5cclxuPC9wLXRhYlZpZXc+XHJcbiJdfQ==
|
|
@@ -6024,6 +6024,7 @@ class WTabviewComponent {
|
|
|
6024
6024
|
this.disabledTabs = [false, false, false];
|
|
6025
6025
|
this.requiredTabs = [false, false, false];
|
|
6026
6026
|
this.validatedTabs = [false, false, false];
|
|
6027
|
+
this.applyValidationStyle = false;
|
|
6027
6028
|
this.activeIndex = 0;
|
|
6028
6029
|
this.type = "regular";
|
|
6029
6030
|
this.outActiveIndex = new EventEmitter();
|
|
@@ -6055,10 +6056,10 @@ class WTabviewComponent {
|
|
|
6055
6056
|
}
|
|
6056
6057
|
}
|
|
6057
6058
|
WTabviewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WTabviewComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
6058
|
-
WTabviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WTabviewComponent, selector: "w-tabview", inputs: { headers: "headers", disabledTabs: "disabledTabs", requiredTabs: "requiredTabs", validatedTabs: "validatedTabs", icons: "icons", activeIndex: "activeIndex", type: "type" }, outputs: { outActiveIndex: "outActiveIndex" }, viewQueries: [{ propertyName: "tabView", first: true, predicate: TabView, descendants: true }], ngImport: i0, template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i3$b.TabView, selector: "p-tabView", inputs: ["orientation", "style", "styleClass", "controlClose", "scrollable", "activeIndex"], outputs: ["onChange", "onClose", "activeIndexChange"] }, { kind: "component", type: i3$b.TabPanel, selector: "p-tabPanel", inputs: ["closable", "headerStyle", "headerStyleClass", "cache", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "selected", "disabled", "header", "leftIcon", "rightIcon"] }] });
|
|
6059
|
+
WTabviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WTabviewComponent, selector: "w-tabview", inputs: { headers: "headers", disabledTabs: "disabledTabs", requiredTabs: "requiredTabs", validatedTabs: "validatedTabs", applyValidationStyle: "applyValidationStyle", icons: "icons", activeIndex: "activeIndex", type: "type" }, outputs: { outActiveIndex: "outActiveIndex" }, viewQueries: [{ propertyName: "tabView", first: true, predicate: TabView, descendants: true }], ngImport: i0, template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i3$b.TabView, selector: "p-tabView", inputs: ["orientation", "style", "styleClass", "controlClose", "scrollable", "activeIndex"], outputs: ["onChange", "onClose", "activeIndexChange"] }, { kind: "component", type: i3$b.TabPanel, selector: "p-tabPanel", inputs: ["closable", "headerStyle", "headerStyleClass", "cache", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "selected", "disabled", "header", "leftIcon", "rightIcon"] }] });
|
|
6059
6060
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WTabviewComponent, decorators: [{
|
|
6060
6061
|
type: Component,
|
|
6061
|
-
args: [{ selector: 'w-tabview', template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"] }]
|
|
6062
|
+
args: [{ selector: 'w-tabview', template: "<p-tabView [(activeIndex)]=\"activeIndex\" [styleClass]=\"type == 'regular' ? 'w-tabview-regular' : 'w-tabview-secondary'\" (activeIndexChange)=\"activeIndexChange($event)\" [scrollable]=\"isScrollable\">\r\n <p-tabPanel *ngIf=\"headers.length > 0 \" [header]=\"headers[0]\" [disabled]=\"disabledTabs[0]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[0]\" [class]=\"'pi '+icons[0]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[0]\">{{headers[0]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[0] && !disabledTabs[0]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[0]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 0\" select=\".panel-1\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 1\" [header]=\"headers[1]\" [disabled]=\"disabledTabs[1]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[1]\" [class]=\"'pi '+icons[1]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[1]\">{{headers[1]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[1] && !disabledTabs[1]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[1]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 1\" select=\".panel-2\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 2 \" [header]=\"headers[2]\" [disabled]=\"disabledTabs[2]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[2]\" [class]=\"'pi '+icons[2]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[2]\">{{headers[2]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[2] && !disabledTabs[2]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[2]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 2\" select=\".panel-3\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 3\" [header]=\"headers[3]\" [disabled]=\"disabledTabs[3]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[3]\" [class]=\"'pi '+icons[3]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[3]\">{{headers[3]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[3] && !disabledTabs[3]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[3]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 3\" select=\".panel-4\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 4\" [header]=\"headers[4]\" [disabled]=\"disabledTabs[4]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[4]\" [class]=\"'pi '+icons[4]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[4]\">{{headers[4]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[4] && !disabledTabs[4]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[4]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 4\" select=\".panel-5\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 5\" [header]=\"headers[5]\" [disabled]=\"disabledTabs[5]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[5]\" [class]=\"'pi '+icons[5]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[5]\">{{headers[5]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[5] && !disabledTabs[5]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[5]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 5\" select=\".panel-6\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 6\" [header]=\"headers[6]\" [disabled]=\"disabledTabs[6]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[6]\" [class]=\"'pi '+icons[6]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[6]\">{{headers[6]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[6] && !disabledTabs[6]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[6]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 6\" select=\".panel-7\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 7\" [header]=\"headers[7]\" [disabled]=\"disabledTabs[7]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[7]\" [class]=\"'pi '+icons[7]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[7]\">{{headers[7]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[7] && !disabledTabs[7]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[7]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 7\" select=\".panel-8\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 8\" [header]=\"headers[8]\" [disabled]=\"disabledTabs[8]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[8]\" [class]=\"'pi '+icons[8]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[8]\">{{headers[8]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[8] && !disabledTabs[8]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[8]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 8\" select=\".panel-9\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n <p-tabPanel *ngIf=\"headers.length > 9\" [header]=\"headers[9]\" [disabled]=\"disabledTabs[9]\">\r\n <ng-template pTemplate=\"header\">\r\n <i *ngIf=\"icons && icons[9]\" [class]=\"'pi '+icons[9]\"></i>\r\n <span class=\"p-tabview-title\" *ngIf=\"headers[9]\">{{headers[9]}}</span>\r\n <span class=\"p-tabview-asterisk\" *ngIf=\"requiredTabs[9] && !disabledTabs[9]\" [ngClass]=\"{'not-validated': applyValidationStyle && !validatedTabs[9]}\">*</span>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <ng-content *ngIf=\"activeIndex == 9\" select=\".panel-10\"></ng-content>\r\n </ng-template>\r\n </p-tabPanel>\r\n</p-tabView>\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,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link,::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link,.w-tab-text,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link,.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,::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{color:#1f2224}.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}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:transparent;border-color:#000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link{padding:12px;background:transparent;gap:8px}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:unset}::ng-deep .w-tabview-regular.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:transparent}::ng-deep .w-tabview-regular.p-tabview .p-tabview-panels{background:none!important;padding:0!important;margin-top:8px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content{box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a;border-radius:8px}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav{background-color:#fff}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li.p-highlight .p-tabview-nav-link{border-bottom:#1f2224;color:#1f2224;font-size:13.6px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link{font-weight:400;color:#000;padding:0 32px;border-bottom:#9aa0a7;background:none!important;height:52px!important}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=true] .p-tabview-asterisk{font-weight:600}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link[aria-selected=false] .p-tabview-asterisk{font-weight:300}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link .p-tabview-asterisk.not-validated{color:#e50000}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{box-shadow:none}::ng-deep .w-tabview-secondary.p-tabview .p-tabview-nav-container .p-tabview-nav-content .p-tabview-nav .p-tabview-ink-bar{background-color:#000}::ng-deep .p-tabview .p-tabview-nav-btn.p-link{background-color:#fff!important;padding:0 12px!important;width:40px!important;box-shadow:none!important;color:#000!important}::ng-deep .p-tabview .p-tabview-nav-btn.p-link .pi{font-size:16px!important}\n"] }]
|
|
6062
6063
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { headers: [{
|
|
6063
6064
|
type: Input,
|
|
6064
6065
|
args: ['headers']
|
|
@@ -6071,6 +6072,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
6071
6072
|
}], validatedTabs: [{
|
|
6072
6073
|
type: Input,
|
|
6073
6074
|
args: ['validatedTabs']
|
|
6075
|
+
}], applyValidationStyle: [{
|
|
6076
|
+
type: Input,
|
|
6077
|
+
args: ['applyValidationStyle']
|
|
6074
6078
|
}], icons: [{
|
|
6075
6079
|
type: Input,
|
|
6076
6080
|
args: ['icons']
|