ca-components 1.6.1 → 1.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/theme/variables.scss +1 -0
- package/esm2022/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.mjs +3 -3
- package/esm2022/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +4 -3
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/utils/constants/location-filter.constants.mjs +2 -2
- package/esm2022/lib/components/ca-input/base-classes/ca-input-base-helpres.mjs +1 -1
- package/esm2022/lib/components/ca-input/base-classes/ca-input-base.mjs +1 -1
- package/esm2022/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.mjs +24 -20
- package/esm2022/lib/components/ca-input-note/ca-input-note.component.mjs +1 -1
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +1 -1
- package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +1 -1
- package/esm2022/lib/components/ca-tab-switch/ca-tab-switch.component.mjs +72 -26
- package/esm2022/lib/utils/svg-routes/index.mjs +2 -2
- package/esm2022/lib/utils/svg-routes/shared-svg.routes.mjs +4 -1
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +110 -66
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.d.ts +1 -1
- package/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.d.ts +2 -1
- package/lib/components/ca-input/base-classes/ca-input-base-helpres.d.ts +1 -1
- package/lib/components/ca-input/base-classes/ca-input-base.d.ts +2 -2
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.d.ts +1 -1
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.d.ts +2 -1
- package/lib/components/ca-map/ca-map.component.d.ts +1 -1
- package/lib/components/ca-tab-switch/ca-tab-switch.component.d.ts +14 -11
- package/lib/utils/svg-routes/index.d.ts +1 -1
- package/lib/utils/svg-routes/shared-svg.routes.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2022/lib/components/ca-tab-switch/models/hover-style.model.mjs +0 -2
- package/esm2022/lib/components/ca-tab-switch/utils/constants/tab-switch.constants.mjs +0 -7
- package/esm2022/lib/utils/svg-routes/shared-svg-routes.mjs +0 -5
- package/lib/components/ca-tab-switch/models/hover-style.model.d.ts +0 -4
- package/lib/components/ca-tab-switch/utils/constants/tab-switch.constants.d.ts +0 -6
- package/lib/utils/svg-routes/shared-svg-routes.d.ts +0 -4
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import { Component, Input, EventEmitter, Output, } from '@angular/core';
|
|
1
|
+
import { Component, Input, EventEmitter, Output, ViewEncapsulation, } from '@angular/core';
|
|
2
2
|
// modules
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
4
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
5
|
-
// constants
|
|
6
|
-
import { TabSwitchConstants } from './utils/constants/tab-switch.constants';
|
|
7
5
|
import * as i0 from "@angular/core";
|
|
8
6
|
import * as i1 from "@angular/common";
|
|
9
7
|
export class CaTabSwitchComponent {
|
|
8
|
+
set tabs(tabs) {
|
|
9
|
+
this._tabs = tabs;
|
|
10
|
+
this.setSwitchActive(tabs);
|
|
11
|
+
}
|
|
12
|
+
get tabs() {
|
|
13
|
+
return this._tabs;
|
|
14
|
+
}
|
|
10
15
|
constructor(elem, det) {
|
|
11
16
|
this.elem = elem;
|
|
12
17
|
this.det = det;
|
|
@@ -15,17 +20,15 @@ export class CaTabSwitchComponent {
|
|
|
15
20
|
this.isClearCustomPeriodRangeValue = false;
|
|
16
21
|
this.isDisabled = false;
|
|
17
22
|
this.isBold = false;
|
|
23
|
+
this.isMarginTopDisabled = false;
|
|
18
24
|
this.switchClicked = new EventEmitter();
|
|
19
25
|
this.customPeriodRangeEmitter = new EventEmitter();
|
|
20
26
|
this.customPeriodRangeSubperiodEmitter = new EventEmitter();
|
|
21
27
|
this.popoverClosedEmitter = new EventEmitter();
|
|
22
|
-
this.hoverStyle = TabSwitchConstants.INITIAL_HOVER_STYLE;
|
|
23
28
|
this.indexSwitch = -1;
|
|
29
|
+
this.selectedItem = null;
|
|
24
30
|
}
|
|
25
|
-
|
|
26
|
-
this.setSwitchActive(this.tabs);
|
|
27
|
-
}
|
|
28
|
-
ngAfterViewChecked() {
|
|
31
|
+
ngAfterViewInit() {
|
|
29
32
|
this.setSwitchActive(this.tabs);
|
|
30
33
|
this.det.detectChanges();
|
|
31
34
|
}
|
|
@@ -34,11 +37,65 @@ export class CaTabSwitchComponent {
|
|
|
34
37
|
this.indexSwitch = selectedIndex;
|
|
35
38
|
if (selectedIndex === -1)
|
|
36
39
|
return;
|
|
37
|
-
|
|
38
|
-
|
|
40
|
+
const shadowRoot = this.elem.nativeElement.shadowRoot;
|
|
41
|
+
// Remove class from previously saved element
|
|
42
|
+
this.selectedItem?.classList.remove('active');
|
|
43
|
+
if (shadowRoot) {
|
|
44
|
+
const tab_swith_holder = Array.from(shadowRoot.children).find((el) => el.tagName === 'DIV');
|
|
45
|
+
if (tab_swith_holder) {
|
|
46
|
+
const tab_swith_item = tab_swith_holder.children[this.indexSwitch];
|
|
47
|
+
if (tab_swith_item) {
|
|
48
|
+
this.selectedItem = tab_swith_item;
|
|
49
|
+
tab_swith_item.classList.add('active');
|
|
50
|
+
}
|
|
51
|
+
this.det.detectChanges();
|
|
52
|
+
}
|
|
53
|
+
}
|
|
39
54
|
}
|
|
40
55
|
switchTab(e, indx, item) {
|
|
41
56
|
e.stopPropagation();
|
|
57
|
+
const clickedElement = e.target;
|
|
58
|
+
if (this.selectedItem) {
|
|
59
|
+
// Store previously clicked element in to variable
|
|
60
|
+
const oldSelectedItem = this.selectedItem;
|
|
61
|
+
// Add class to clicked element
|
|
62
|
+
clickedElement.classList.add('to_active');
|
|
63
|
+
// Remove class from previously saved element
|
|
64
|
+
oldSelectedItem?.classList.remove('to_active');
|
|
65
|
+
// Get first child element, in this case it is tab indicator
|
|
66
|
+
const childElement = this.selectedItem.children[0];
|
|
67
|
+
// Get dimensions for tab indicator
|
|
68
|
+
const childElementBounding = childElement.getBoundingClientRect();
|
|
69
|
+
// Get tab indicator for current clicked element
|
|
70
|
+
const clickedElementChild = clickedElement
|
|
71
|
+
.children[0];
|
|
72
|
+
// GEt dimensions for current clicked element
|
|
73
|
+
const { right: clickedElementOffsetRight } = clickedElement.getBoundingClientRect();
|
|
74
|
+
// Calculation when we click on element, active tab indicator will move to calculated possition
|
|
75
|
+
const calculatedChildElementWidth = clickedElementOffsetRight -
|
|
76
|
+
childElementBounding.right +
|
|
77
|
+
(childElementBounding.width - clickedElementChild.offsetWidth) /
|
|
78
|
+
2;
|
|
79
|
+
// Set active tab indicator width of new clicked element
|
|
80
|
+
childElement.style.width = `${clickedElementChild.offsetWidth}px`;
|
|
81
|
+
// Translate active tab indicator
|
|
82
|
+
childElement.style.transform = `translateX(${calculatedChildElementWidth}px)`;
|
|
83
|
+
// Listen for the transition to finish
|
|
84
|
+
childElement.addEventListener('transitionend', () => {
|
|
85
|
+
// Clear the transform after the transition ends
|
|
86
|
+
childElement.style.transform = '';
|
|
87
|
+
childElement.style.width = '';
|
|
88
|
+
// Remove class from previous clicked element
|
|
89
|
+
oldSelectedItem?.classList.remove('active');
|
|
90
|
+
// Store new value of clicked element
|
|
91
|
+
this.selectedItem = clickedElement;
|
|
92
|
+
// Add active class
|
|
93
|
+
clickedElement.classList.add('active');
|
|
94
|
+
// Clear all transforms on clicked element
|
|
95
|
+
clickedElement.children[0].style.transform = '';
|
|
96
|
+
}, { once: true } // This ensures that this event listener will be triggered only once
|
|
97
|
+
);
|
|
98
|
+
}
|
|
42
99
|
this.indexSwitch = indx;
|
|
43
100
|
this.tabs.map((tab) => {
|
|
44
101
|
if (tab.id === item.id)
|
|
@@ -46,20 +103,7 @@ export class CaTabSwitchComponent {
|
|
|
46
103
|
else
|
|
47
104
|
tab.checked = false;
|
|
48
105
|
});
|
|
49
|
-
const target = e.target;
|
|
50
|
-
this.hoverStyle = this.getElementOffset(target);
|
|
51
106
|
this.switchClicked.emit(item);
|
|
52
|
-
this.det.detectChanges();
|
|
53
|
-
}
|
|
54
|
-
getElementOffset(item) {
|
|
55
|
-
const parentElement = item?.closest('.tab-switch-holder');
|
|
56
|
-
const selectedElement = item?.closest('.tab-switch-items-holder');
|
|
57
|
-
const parentItem = parentElement?.getBoundingClientRect();
|
|
58
|
-
const elementItem = selectedElement?.getBoundingClientRect();
|
|
59
|
-
return {
|
|
60
|
-
x: elementItem?.x - parentItem?.x,
|
|
61
|
-
width: elementItem?.width,
|
|
62
|
-
};
|
|
63
107
|
}
|
|
64
108
|
handleSetCustomPeriodRangeClick(customPeriodRange) {
|
|
65
109
|
this.customPeriodRangeEmitter.emit(customPeriodRange);
|
|
@@ -71,11 +115,11 @@ export class CaTabSwitchComponent {
|
|
|
71
115
|
this.popoverClosedEmitter.emit();
|
|
72
116
|
}
|
|
73
117
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaTabSwitchComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaTabSwitchComponent, isStandalone: true, selector: "app-ca-tab-switch", inputs: { tabs: "tabs", type: "type", hasDashboardHeight: "hasDashboardHeight", subPeriodDropdownList: "subPeriodDropdownList", selectedSubPeriod: "selectedSubPeriod", isClearCustomPeriodRangeValue: "isClearCustomPeriodRangeValue", isDisabled: "isDisabled", isBold: "isBold" }, outputs: { switchClicked: "switchClicked", customPeriodRangeEmitter: "customPeriodRangeEmitter", customPeriodRangeSubperiodEmitter: "customPeriodRangeSubperiodEmitter", popoverClosedEmitter: "popoverClosedEmitter" }, usesOnChanges: true, ngImport: i0, template: "<div\n class=\"tab-switch-holder d-flex justify-content-start align-items-center {{\n type\n }}\"\n [ngClass]=\"{ 'dashboard-height': hasDashboardHeight, disabled: isDisabled }\"\n>\n @for (item of tabs; let indx = $index; track indx) {\n <div\n class=\"tab-switch-items-holder d-flex justify-content-center align-items-center flex-grow-1 flex-shrink-1 flex-basis-auto\"\n [class.active]=\"indx === indexSwitch\"\n (click)=\"switchTab($event, indx, item)\"\n (closeFilter)=\"handlePopoverClose()\"\n >\n <div class=\"d-flex align-items-center tab-switch-text\" mainContent>\n <div\n class=\"tab-switch-name\"\n [ngClass]=\"{ 'ta-font-bold tab-switch-name-big': isBold }\"\n >\n {{ item.name }}\n </div>\n </div>\n </div>\n }\n\n <div\n class=\"slide-active-holder {{ type }}\"\n [ngStyle]=\"{\n width: hoverStyle.width + 'px',\n left: hoverStyle.x + 'px',\n }\"\n ></div>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-light-gray-6{background-color:#ccc}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-4{padding:4px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-14{width:14px}.h-14{height:14px}.w-18{width:18px}.h-18{height:18px}.w-31{width:31px}.h-31{height:31px}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.tab-switch-holder{position:relative;width:100%;height:32px;border-radius:3px;background-color:#fff;padding:4px;box-sizing:border-box;-webkit-user-select:none;user-select:none;line-height:32px}.tab-switch-holder.type2-modal-popup{background-color:#1d1d1d}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active div{color:#fff!important}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#aaa}.tab-switch-holder.type2-modal-popup .slide-active-holder{background-color:#424242!important}.tab-switch-holder.dashboard-height{height:38px}.tab-switch-holder.disabled{background:#f7f7f7!important}.tab-switch-holder.disabled .tab-switch-items-holder{pointer-events:none!important}.tab-switch-holder.disabled .tab-switch-items-holder .tab-switch-text{color:#ccc!important}.tab-switch-holder .tab-switch-items-holder .tab-switch-text{pointer-events:none}.tab-switch-holder.dark .tab-switch-items-holder .tab-switch-text .tab-switch-name{text-transform:uppercase!important;font-weight:700;font-size:11px;line-height:13px}.tab-switch-holder .tab-switch-items-holder{position:relative;height:32px;padding:3px 8px;box-sizing:border-box;border-radius:2px;background-color:#eee0;font-size:14px;font-weight:800;color:#b7b7b7;z-index:1;cursor:pointer}.tab-switch-holder .tab-switch-items-holder.active{color:#424242}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter{background-color:#fff!important}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter .counter-number{color:#424242!important}.tab-switch-holder .tab-switch-items-holder:hover:not(.active){color:#919191}.tab-switch-holder .tab-switch-items-holder:hover:not(.active) .tab-switch-text .tab-counter{background-color:#919191!important}.tab-switch-holder .tab-switch-items-holder.disabled{cursor:auto!important;pointer-events:none!important}.tab-switch-holder .tab-switch-items-holder.disabled .tab-switch-text{color:#ccc!important}.tab-switch-holder .slide-active-holder{position:absolute;background-color:#eee;color:#fff;border-radius:2px;height:calc(100% - 8px);transition:all .25s ease-out;pointer-events:none}.tab-switch-holder .slide-active-holder.dark{background-color:#424242}.tab-switch-holder.type1-modal-popup{margin-top:12px;height:34px;background-color:#eee;line-height:34px;padding:4px}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder{height:30px;font-weight:700}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type1-modal-popup .slide-active-holder{background-color:#fff;box-shadow:0 0 2px #ffffff1a;height:calc(100% - 8px)}.tab-switch-holder.type2-modal-popup{height:26px;background-color:#1d1d1d;line-height:26px;padding:4px}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name{font-size:11px;font-weight:700;text-transform:uppercase}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name-big{line-height:18px;text-transform:none;font-size:14px}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder{height:26px;font-size:12px;font-weight:700}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type2-modal-popup .slide-active-holder{background-color:#fff;box-shadow:0 0 2px #ffffff1a;height:calc(100% - 8px)}.tab-switch-holder.type2-modal-popup-header{margin-top:12px}.tab-switch-holder.type3-modal-popup{height:26px;background-color:#f7f7f7;line-height:26px;padding:2px}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder{height:26px;font-size:16px;font-weight:800}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder:hover:not(.active){background-color:#f3f3f3;color:#6c6c6c}.tab-switch-holder.type3-modal-popup .slide-active-holder{background-color:#fff;box-shadow:0 0 2px #ffffff1a;height:calc(100% - 4px)}.tab-switch-holder.dark{background-color:#1d1d1d;border-radius:2px}.tab-switch-holder.dark .tab-switch-items-holder{color:#aaa}.tab-switch-holder.dark .tab-switch-items-holder.active{color:#fff}.custom-popover-holder{width:300px;margin-top:-4px}.rating-review{width:252px;height:26px;background:#1d1d1d;border-radius:1px}.rating-review .tab-switch-items-holder{width:33.33%}.rating-review .tab-switch-items-holder .tab-switch-name{font-size:11px;font-weight:700;color:#919191}.rating-review .slide-active-holder{background:#424242;border-radius:1px}.rating-review .tab-switch-items-holder.active .tab-switch-name{color:#fff}.tab-switch-26A690.active .tab-switch-text .tab-switch-name{color:#26a690!important}.tab-switch-26A690.active .tab-switch-text .tab-counter{background-color:#26a690!important}.tab-switch-EF5350.active .tab-switch-text .tab-switch-name{color:#ef5350!important}.tab-switch-EF5350.active .tab-switch-text .tab-counter{background-color:#ef5350!important}.tab-switch-3074D3.active .tab-switch-text .tab-switch-name{color:#3074d3!important}.tab-switch-3074D3.active .tab-switch-text .tab-counter{background-color:#3074d3!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: NgbModule }] }); }
|
|
118
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaTabSwitchComponent, isStandalone: true, selector: "app-ca-tab-switch", inputs: { tabs: "tabs", type: "type", hasDashboardHeight: "hasDashboardHeight", subPeriodDropdownList: "subPeriodDropdownList", selectedSubPeriod: "selectedSubPeriod", isClearCustomPeriodRangeValue: "isClearCustomPeriodRangeValue", isDisabled: "isDisabled", isBold: "isBold", isMarginTopDisabled: "isMarginTopDisabled" }, outputs: { switchClicked: "switchClicked", customPeriodRangeEmitter: "customPeriodRangeEmitter", customPeriodRangeSubperiodEmitter: "customPeriodRangeSubperiodEmitter", popoverClosedEmitter: "popoverClosedEmitter" }, ngImport: i0, template: "<div\n class=\"tab-switch-holder d-flex justify-content-start align-items-center {{\n type\n }}\"\n [ngClass]=\"{ 'dashboard-height': hasDashboardHeight, disabled: isDisabled }\"\n [ngStyle]=\"{ 'margin-top': isMarginTopDisabled ? 0 : '' }\"\n>\n @for (item of tabs; let indx = $index; track indx) {\n <div\n class=\"tab-switch-items-holder d-flex justify-content-center align-items-center flex-grow-1 flex-shrink-1 flex-basis-auto\"\n (click)=\"switchTab($event, indx, item)\"\n (closeFilter)=\"handlePopoverClose()\"\n [class.disabled]=\"item.disabled\"\n >\n <div class=\"switch-tab-indicator {{ type }}\"></div>\n <div class=\"d-flex align-items-center tab-switch-text\" mainContent>\n <div\n class=\"tab-switch-name\"\n [ngClass]=\"{ 'ta-font-bold tab-switch-name-big': isBold }\"\n >\n {{ item.name }}\n </div>\n </div>\n </div>\n }\n</div>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-light-gray-6{background-color:#ccc}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-4{padding:4px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-14{width:14px}.h-14{height:14px}.w-18{width:18px}.h-18{height:18px}.w-31{width:31px}.h-31{height:31px}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.tab-switch-holder{position:relative;width:100%;height:32px;border-radius:3px;background-color:#fff;padding:4px;box-sizing:border-box;-webkit-user-select:none;user-select:none;line-height:32px}.tab-switch-holder.type2-modal-popup{background-color:#1d1d1d}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#aaa}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active .switch-tab-indicator{opacity:1}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active div{color:#fff!important}.tab-switch-holder.type2-modal-popup .switch-tab-indicator{background-color:#424242!important}.tab-switch-holder.dashboard-height{height:38px}.tab-switch-holder.disabled{background:#f7f7f7!important}.tab-switch-holder.disabled .tab-switch-items-holder{pointer-events:none!important}.tab-switch-holder.disabled .tab-switch-items-holder .tab-switch-text{color:#ccc!important}.tab-switch-holder .tab-switch-items-holder .tab-switch-text{pointer-events:none}.tab-switch-holder.dark .tab-switch-items-holder .tab-switch-text .tab-switch-name{text-transform:uppercase!important;font-weight:700;font-size:11px;line-height:13px}.tab-switch-holder .switch-tab-indicator{position:absolute;background-color:#424242!important;color:#fff;border-radius:2px;width:100%;height:calc(100% - 8px);transition:all .25s ease-out;pointer-events:none;z-index:-1;opacity:0;transition:.25s transform cubic-bezier(.4,0,.2,1);transform-origin:left}.tab-switch-holder .switch-tab-indicator.dark{background-color:#424242}.tab-switch-holder .tab-switch-items-holder{position:relative;height:32px;padding:3px 8px;box-sizing:border-box;border-radius:2px;background-color:#eee0;font-size:14px;font-weight:800;color:#b7b7b7;z-index:1;cursor:pointer}.tab-switch-holder .tab-switch-items-holder.active{color:#424242}.tab-switch-holder .tab-switch-items-holder.active .switch-tab-indicator{opacity:1}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter{background-color:#fff!important}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter .counter-number{color:#424242!important}.tab-switch-holder .tab-switch-items-holder.to_active{z-index:10}.tab-switch-holder .tab-switch-items-holder:hover:not(.active){color:#919191}.tab-switch-holder .tab-switch-items-holder:hover:not(.active) .tab-switch-text .tab-counter{background-color:#919191!important}.tab-switch-holder .tab-switch-items-holder.disabled{cursor:auto!important;pointer-events:none!important}.tab-switch-holder .tab-switch-items-holder.disabled .tab-switch-text{color:#ccc!important}.tab-switch-holder.type1-modal-popup{margin-top:12px;height:34px;background-color:#eee;line-height:34px;padding:4px}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder{height:30px;font-weight:700}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder.active,.tab-switch-holder.type1-modal-popup .tab-switch-items-holder.to_active{color:#6692f1!important}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type1-modal-popup .switch-tab-indicator{background-color:#fff!important;box-shadow:0 0 2px #0000001a;height:calc(100% - 4px)}.tab-switch-holder.type2-modal-popup{height:26px;background-color:#1d1d1d;line-height:26px;padding:4px}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name{font-size:11px;font-weight:700;text-transform:uppercase}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name-big{line-height:18px;text-transform:none;font-size:14px}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder{height:26px;font-size:12px;font-weight:700}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type2-modal-popup .switch-tab-indicator{background-color:#fff;box-shadow:0 0 2px #0000001a;height:calc(100% - 8px)}.tab-switch-holder.type2-modal-popup-header{margin-top:12px}.tab-switch-holder.type4-modal-popup{height:26px;background-color:#eee;line-height:26px;padding:4px}.tab-switch-holder.type4-modal-popup .tab-switch-text .tab-switch-name{font-size:11px;font-weight:700;text-transform:uppercase}.tab-switch-holder.type4-modal-popup .tab-switch-text .tab-switch-name-big{line-height:18px;text-transform:none;font-size:14px}.tab-switch-holder.type4-modal-popup .tab-switch-items-holder{height:26px;font-size:12px;font-weight:700}.tab-switch-holder.type4-modal-popup .tab-switch-items-holder.active{color:#3b73ed!important}.tab-switch-holder.type4-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type4-modal-popup .switch-tab-indicator{background-color:#fff!important;box-shadow:0 0 2px #00000026;height:calc(100% - 8px)}.tab-switch-holder.type4-modal-popup-header{margin-top:12px}.tab-switch-holder.type3-modal-popup{height:26px;background-color:#f7f7f7;line-height:26px;padding:2px}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder{height:26px;font-size:16px;font-weight:800}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder:hover:not(.active){background-color:#f3f3f3;color:#6c6c6c}.tab-switch-holder.type3-modal-popup .switch-tab-indicator{background-color:#fff;box-shadow:0 0 2px #0000001a;height:calc(100% - 4px)}.tab-switch-holder.dark{background-color:#1d1d1d;border-radius:2px}.tab-switch-holder.dark .tab-switch-items-holder{color:#aaa}.tab-switch-holder.dark .tab-switch-items-holder.active{color:#fff}.custom-popover-holder{width:300px;margin-top:-4px}.rating-review{width:252px;height:26px;background:#1d1d1d;border-radius:1px}.rating-review .tab-switch-items-holder{width:33.33%}.rating-review .tab-switch-items-holder .tab-switch-name{font-size:11px;font-weight:700;color:#919191}.rating-review .switch-tab-indicator{background:#424242;border-radius:1px}.rating-review .tab-switch-items-holder.active .tab-switch-name{color:#fff}.tab-switch-26A690.active .tab-switch-text .tab-switch-name{color:#26a690!important}.tab-switch-26A690.active .tab-switch-text .tab-counter{background-color:#26a690!important}.tab-switch-EF5350.active .tab-switch-text .tab-switch-name{color:#ef5350!important}.tab-switch-EF5350.active .tab-switch-text .tab-counter{background-color:#ef5350!important}.tab-switch-3074D3.active .tab-switch-text .tab-switch-name{color:#3074d3!important}.tab-switch-3074D3.active .tab-switch-text .tab-counter{background-color:#3074d3!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: NgbModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
75
119
|
}
|
|
76
120
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaTabSwitchComponent, decorators: [{
|
|
77
121
|
type: Component,
|
|
78
|
-
args: [{ selector: 'app-ca-tab-switch', standalone: true, imports: [CommonModule, NgbModule], template: "<div\n class=\"tab-switch-holder d-flex justify-content-start align-items-center {{\n type\n }}\"\n [ngClass]=\"{ 'dashboard-height': hasDashboardHeight, disabled: isDisabled }\"\n>\n @for (item of tabs; let indx = $index; track indx) {\n <div\n class=\"tab-switch-items-holder d-flex justify-content-center align-items-center flex-grow-1 flex-shrink-1 flex-basis-auto\"\n [class.active]=\"indx === indexSwitch\"\n (click)=\"switchTab($event, indx, item)\"\n (closeFilter)=\"handlePopoverClose()\"\n >\n <div class=\"d-flex align-items-center tab-switch-text\" mainContent>\n <div\n class=\"tab-switch-name\"\n [ngClass]=\"{ 'ta-font-bold tab-switch-name-big': isBold }\"\n >\n {{ item.name }}\n </div>\n </div>\n </div>\n }\n\n <div\n class=\"slide-active-holder {{ type }}\"\n [ngStyle]=\"{\n width: hoverStyle.width + 'px',\n left: hoverStyle.x + 'px',\n }\"\n ></div>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-light-gray-6{background-color:#ccc}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-4{padding:4px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-14{width:14px}.h-14{height:14px}.w-18{width:18px}.h-18{height:18px}.w-31{width:31px}.h-31{height:31px}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.tab-switch-holder{position:relative;width:100%;height:32px;border-radius:3px;background-color:#fff;padding:4px;box-sizing:border-box;-webkit-user-select:none;user-select:none;line-height:32px}.tab-switch-holder.type2-modal-popup{background-color:#1d1d1d}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active div{color:#fff!important}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#aaa}.tab-switch-holder.type2-modal-popup .slide-active-holder{background-color:#424242!important}.tab-switch-holder.dashboard-height{height:38px}.tab-switch-holder.disabled{background:#f7f7f7!important}.tab-switch-holder.disabled .tab-switch-items-holder{pointer-events:none!important}.tab-switch-holder.disabled .tab-switch-items-holder .tab-switch-text{color:#ccc!important}.tab-switch-holder .tab-switch-items-holder .tab-switch-text{pointer-events:none}.tab-switch-holder.dark .tab-switch-items-holder .tab-switch-text .tab-switch-name{text-transform:uppercase!important;font-weight:700;font-size:11px;line-height:13px}.tab-switch-holder .tab-switch-items-holder{position:relative;height:32px;padding:3px 8px;box-sizing:border-box;border-radius:2px;background-color:#eee0;font-size:14px;font-weight:800;color:#b7b7b7;z-index:1;cursor:pointer}.tab-switch-holder .tab-switch-items-holder.active{color:#424242}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter{background-color:#fff!important}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter .counter-number{color:#424242!important}.tab-switch-holder .tab-switch-items-holder:hover:not(.active){color:#919191}.tab-switch-holder .tab-switch-items-holder:hover:not(.active) .tab-switch-text .tab-counter{background-color:#919191!important}.tab-switch-holder .tab-switch-items-holder.disabled{cursor:auto!important;pointer-events:none!important}.tab-switch-holder .tab-switch-items-holder.disabled .tab-switch-text{color:#ccc!important}.tab-switch-holder .slide-active-holder{position:absolute;background-color:#eee;color:#fff;border-radius:2px;height:calc(100% - 8px);transition:all .25s ease-out;pointer-events:none}.tab-switch-holder .slide-active-holder.dark{background-color:#424242}.tab-switch-holder.type1-modal-popup{margin-top:12px;height:34px;background-color:#eee;line-height:34px;padding:4px}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder{height:30px;font-weight:700}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type1-modal-popup .slide-active-holder{background-color:#fff;box-shadow:0 0 2px #ffffff1a;height:calc(100% - 8px)}.tab-switch-holder.type2-modal-popup{height:26px;background-color:#1d1d1d;line-height:26px;padding:4px}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name{font-size:11px;font-weight:700;text-transform:uppercase}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name-big{line-height:18px;text-transform:none;font-size:14px}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder{height:26px;font-size:12px;font-weight:700}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type2-modal-popup .slide-active-holder{background-color:#fff;box-shadow:0 0 2px #ffffff1a;height:calc(100% - 8px)}.tab-switch-holder.type2-modal-popup-header{margin-top:12px}.tab-switch-holder.type3-modal-popup{height:26px;background-color:#f7f7f7;line-height:26px;padding:2px}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder{height:26px;font-size:16px;font-weight:800}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder:hover:not(.active){background-color:#f3f3f3;color:#6c6c6c}.tab-switch-holder.type3-modal-popup .slide-active-holder{background-color:#fff;box-shadow:0 0 2px #ffffff1a;height:calc(100% - 4px)}.tab-switch-holder.dark{background-color:#1d1d1d;border-radius:2px}.tab-switch-holder.dark .tab-switch-items-holder{color:#aaa}.tab-switch-holder.dark .tab-switch-items-holder.active{color:#fff}.custom-popover-holder{width:300px;margin-top:-4px}.rating-review{width:252px;height:26px;background:#1d1d1d;border-radius:1px}.rating-review .tab-switch-items-holder{width:33.33%}.rating-review .tab-switch-items-holder .tab-switch-name{font-size:11px;font-weight:700;color:#919191}.rating-review .slide-active-holder{background:#424242;border-radius:1px}.rating-review .tab-switch-items-holder.active .tab-switch-name{color:#fff}.tab-switch-26A690.active .tab-switch-text .tab-switch-name{color:#26a690!important}.tab-switch-26A690.active .tab-switch-text .tab-counter{background-color:#26a690!important}.tab-switch-EF5350.active .tab-switch-text .tab-switch-name{color:#ef5350!important}.tab-switch-EF5350.active .tab-switch-text .tab-counter{background-color:#ef5350!important}.tab-switch-3074D3.active .tab-switch-text .tab-switch-name{color:#3074d3!important}.tab-switch-3074D3.active .tab-switch-text .tab-counter{background-color:#3074d3!important}\n"] }]
|
|
122
|
+
args: [{ selector: 'app-ca-tab-switch', standalone: true, imports: [CommonModule, NgbModule], encapsulation: ViewEncapsulation.ShadowDom, template: "<div\n class=\"tab-switch-holder d-flex justify-content-start align-items-center {{\n type\n }}\"\n [ngClass]=\"{ 'dashboard-height': hasDashboardHeight, disabled: isDisabled }\"\n [ngStyle]=\"{ 'margin-top': isMarginTopDisabled ? 0 : '' }\"\n>\n @for (item of tabs; let indx = $index; track indx) {\n <div\n class=\"tab-switch-items-holder d-flex justify-content-center align-items-center flex-grow-1 flex-shrink-1 flex-basis-auto\"\n (click)=\"switchTab($event, indx, item)\"\n (closeFilter)=\"handlePopoverClose()\"\n [class.disabled]=\"item.disabled\"\n >\n <div class=\"switch-tab-indicator {{ type }}\"></div>\n <div class=\"d-flex align-items-center tab-switch-text\" mainContent>\n <div\n class=\"tab-switch-name\"\n [ngClass]=\"{ 'ta-font-bold tab-switch-name-big': isBold }\"\n >\n {{ item.name }}\n </div>\n </div>\n </div>\n }\n</div>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-light-gray-6{background-color:#ccc}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-4{padding:4px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-14{width:14px}.h-14{height:14px}.w-18{width:18px}.h-18{height:18px}.w-31{width:31px}.h-31{height:31px}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.tab-switch-holder{position:relative;width:100%;height:32px;border-radius:3px;background-color:#fff;padding:4px;box-sizing:border-box;-webkit-user-select:none;user-select:none;line-height:32px}.tab-switch-holder.type2-modal-popup{background-color:#1d1d1d}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#aaa}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active .switch-tab-indicator{opacity:1}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active div{color:#fff!important}.tab-switch-holder.type2-modal-popup .switch-tab-indicator{background-color:#424242!important}.tab-switch-holder.dashboard-height{height:38px}.tab-switch-holder.disabled{background:#f7f7f7!important}.tab-switch-holder.disabled .tab-switch-items-holder{pointer-events:none!important}.tab-switch-holder.disabled .tab-switch-items-holder .tab-switch-text{color:#ccc!important}.tab-switch-holder .tab-switch-items-holder .tab-switch-text{pointer-events:none}.tab-switch-holder.dark .tab-switch-items-holder .tab-switch-text .tab-switch-name{text-transform:uppercase!important;font-weight:700;font-size:11px;line-height:13px}.tab-switch-holder .switch-tab-indicator{position:absolute;background-color:#424242!important;color:#fff;border-radius:2px;width:100%;height:calc(100% - 8px);transition:all .25s ease-out;pointer-events:none;z-index:-1;opacity:0;transition:.25s transform cubic-bezier(.4,0,.2,1);transform-origin:left}.tab-switch-holder .switch-tab-indicator.dark{background-color:#424242}.tab-switch-holder .tab-switch-items-holder{position:relative;height:32px;padding:3px 8px;box-sizing:border-box;border-radius:2px;background-color:#eee0;font-size:14px;font-weight:800;color:#b7b7b7;z-index:1;cursor:pointer}.tab-switch-holder .tab-switch-items-holder.active{color:#424242}.tab-switch-holder .tab-switch-items-holder.active .switch-tab-indicator{opacity:1}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter{background-color:#fff!important}.tab-switch-holder .tab-switch-items-holder.active .tab-switch-text .tab-counter .counter-number{color:#424242!important}.tab-switch-holder .tab-switch-items-holder.to_active{z-index:10}.tab-switch-holder .tab-switch-items-holder:hover:not(.active){color:#919191}.tab-switch-holder .tab-switch-items-holder:hover:not(.active) .tab-switch-text .tab-counter{background-color:#919191!important}.tab-switch-holder .tab-switch-items-holder.disabled{cursor:auto!important;pointer-events:none!important}.tab-switch-holder .tab-switch-items-holder.disabled .tab-switch-text{color:#ccc!important}.tab-switch-holder.type1-modal-popup{margin-top:12px;height:34px;background-color:#eee;line-height:34px;padding:4px}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder{height:30px;font-weight:700}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder.active,.tab-switch-holder.type1-modal-popup .tab-switch-items-holder.to_active{color:#6692f1!important}.tab-switch-holder.type1-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type1-modal-popup .switch-tab-indicator{background-color:#fff!important;box-shadow:0 0 2px #0000001a;height:calc(100% - 4px)}.tab-switch-holder.type2-modal-popup{height:26px;background-color:#1d1d1d;line-height:26px;padding:4px}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name{font-size:11px;font-weight:700;text-transform:uppercase}.tab-switch-holder.type2-modal-popup .tab-switch-text .tab-switch-name-big{line-height:18px;text-transform:none;font-size:14px}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder{height:26px;font-size:12px;font-weight:700}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type2-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type2-modal-popup .switch-tab-indicator{background-color:#fff;box-shadow:0 0 2px #0000001a;height:calc(100% - 8px)}.tab-switch-holder.type2-modal-popup-header{margin-top:12px}.tab-switch-holder.type4-modal-popup{height:26px;background-color:#eee;line-height:26px;padding:4px}.tab-switch-holder.type4-modal-popup .tab-switch-text .tab-switch-name{font-size:11px;font-weight:700;text-transform:uppercase}.tab-switch-holder.type4-modal-popup .tab-switch-text .tab-switch-name-big{line-height:18px;text-transform:none;font-size:14px}.tab-switch-holder.type4-modal-popup .tab-switch-items-holder{height:26px;font-size:12px;font-weight:700}.tab-switch-holder.type4-modal-popup .tab-switch-items-holder.active{color:#3b73ed!important}.tab-switch-holder.type4-modal-popup .tab-switch-items-holder:hover:not(.active){color:#6c6c6c}.tab-switch-holder.type4-modal-popup .switch-tab-indicator{background-color:#fff!important;box-shadow:0 0 2px #00000026;height:calc(100% - 8px)}.tab-switch-holder.type4-modal-popup-header{margin-top:12px}.tab-switch-holder.type3-modal-popup{height:26px;background-color:#f7f7f7;line-height:26px;padding:2px}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder{height:26px;font-size:16px;font-weight:800}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder.active{color:#6692f1!important}.tab-switch-holder.type3-modal-popup .tab-switch-items-holder:hover:not(.active){background-color:#f3f3f3;color:#6c6c6c}.tab-switch-holder.type3-modal-popup .switch-tab-indicator{background-color:#fff;box-shadow:0 0 2px #0000001a;height:calc(100% - 4px)}.tab-switch-holder.dark{background-color:#1d1d1d;border-radius:2px}.tab-switch-holder.dark .tab-switch-items-holder{color:#aaa}.tab-switch-holder.dark .tab-switch-items-holder.active{color:#fff}.custom-popover-holder{width:300px;margin-top:-4px}.rating-review{width:252px;height:26px;background:#1d1d1d;border-radius:1px}.rating-review .tab-switch-items-holder{width:33.33%}.rating-review .tab-switch-items-holder .tab-switch-name{font-size:11px;font-weight:700;color:#919191}.rating-review .switch-tab-indicator{background:#424242;border-radius:1px}.rating-review .tab-switch-items-holder.active .tab-switch-name{color:#fff}.tab-switch-26A690.active .tab-switch-text .tab-switch-name{color:#26a690!important}.tab-switch-26A690.active .tab-switch-text .tab-counter{background-color:#26a690!important}.tab-switch-EF5350.active .tab-switch-text .tab-switch-name{color:#ef5350!important}.tab-switch-EF5350.active .tab-switch-text .tab-counter{background-color:#ef5350!important}.tab-switch-3074D3.active .tab-switch-text .tab-switch-name{color:#3074d3!important}.tab-switch-3074D3.active .tab-switch-text .tab-counter{background-color:#3074d3!important}\n"] }]
|
|
79
123
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { tabs: [{
|
|
80
124
|
type: Input
|
|
81
125
|
}], type: [{
|
|
@@ -92,6 +136,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
92
136
|
type: Input
|
|
93
137
|
}], isBold: [{
|
|
94
138
|
type: Input
|
|
139
|
+
}], isMarginTopDisabled: [{
|
|
140
|
+
type: Input
|
|
95
141
|
}], switchClicked: [{
|
|
96
142
|
type: Output
|
|
97
143
|
}], customPeriodRangeEmitter: [{
|
|
@@ -101,4 +147,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
101
147
|
}], popoverClosedEmitter: [{
|
|
102
148
|
type: Output
|
|
103
149
|
}] } });
|
|
104
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtdGFiLXN3aXRjaC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS10YWItc3dpdGNoL2NhLXRhYi1zd2l0Y2guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdGFiLXN3aXRjaC9jYS10YWItc3dpdGNoLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxTQUFTLEVBQ1QsS0FBSyxFQUNMLFlBQVksRUFDWixNQUFNLEdBS1AsTUFBTSxlQUFlLENBQUM7QUFFdkIsVUFBVTtBQUNWLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFRdkQsWUFBWTtBQUNaLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHdDQUF3QyxDQUFDOzs7QUFTNUUsTUFBTSxPQUFPLG9CQUFvQjtJQWtCL0IsWUFDUyxJQUFnQixFQUNoQixHQUFzQjtRQUR0QixTQUFJLEdBQUosSUFBSSxDQUFZO1FBQ2hCLFFBQUcsR0FBSCxHQUFHLENBQW1CO1FBakJ0Qix1QkFBa0IsR0FBYSxLQUFLLENBQUM7UUFDckMsMEJBQXFCLEdBQXdCLEVBQUUsQ0FBQztRQUVoRCxrQ0FBNkIsR0FBYSxLQUFLLENBQUM7UUFDaEQsZUFBVSxHQUFhLEtBQUssQ0FBQztRQUM3QixXQUFNLEdBQVksS0FBSyxDQUFDO1FBRXZCLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUN4Qyw2QkFBd0IsR0FBRyxJQUFJLFlBQVksRUFBcUIsQ0FBQztRQUNqRSxzQ0FBaUMsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBQy9ELHlCQUFv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QztJQUNuQyxDQUFDOytHQTFGVSxvQkFBb0I7bUdBQXBCLG9CQUFvQixpbEJDL0JqQyx1bkNBZ0NBLGcxK0JESFksWUFBWSxpTkFBRSxTQUFTOzs0RkFFdEIsb0JBQW9CO2tCQVBoQyxTQUFTOytCQUNFLG1CQUFtQixjQUdqQixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsU0FBUyxDQUFDOytHQUd6QixJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLGtCQUFrQjtzQkFBMUIsS0FBSztnQkFDRyxxQkFBcUI7c0JBQTdCLEtBQUs7Z0JBQ0csaUJBQWlCO3NCQUF6QixLQUFLO2dCQUNHLDZCQUE2QjtzQkFBckMsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFFSSxhQUFhO3NCQUF0QixNQUFNO2dCQUNHLHdCQUF3QjtzQkFBakMsTUFBTTtnQkFDRyxpQ0FBaUM7c0JBQTFDLE1BQU07Z0JBQ0csb0JBQW9CO3NCQUE3QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29tcG9uZW50LFxuICBJbnB1dCxcbiAgRXZlbnRFbWl0dGVyLFxuICBPdXRwdXQsXG4gIEVsZW1lbnRSZWYsXG4gIE9uQ2hhbmdlcyxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIEFmdGVyVmlld0NoZWNrZWQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vLyBtb2R1bGVzXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdiTW9kdWxlIH0gZnJvbSAnQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXAnO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IFRhYnMgfSBmcm9tICcuLi8uLi9tb2RlbHMvdGFicy5tb2RlbCc7XG5pbXBvcnQgeyBDdXN0b21QZXJpb2RSYW5nZSB9IGZyb20gJy4uLy4uL21vZGVscy9kYXNoYm9hcmQvY3VzdG9tLXBlcmlvZC1yYW5nZS5tb2RlbCc7XG5pbXBvcnQgeyBEcm9wZG93bkxpc3RJdGVtIH0gZnJvbSAnLi4vLi4vbW9kZWxzL2Rhc2hib2FyZC9kcm9wZG93bi1saXN0LWl0ZW0ubW9kZWwnO1xuaW1wb3J0IHsgSG92ZXJTdHlsZSB9IGZyb20gJy4vbW9kZWxzL2hvdmVyLXN0eWxlLm1vZGVsJztcblxuLy8gY29uc3RhbnRzXG5pbXBvcnQgeyBUYWJTd2l0Y2hDb25zdGFudHMgfSBmcm9tICcuL3V0aWxzL2NvbnN0YW50cy90YWItc3dpdGNoLmNvbnN0YW50cyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1jYS10YWItc3dpdGNoJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NhLXRhYi1zd2l0Y2guY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS10YWItc3dpdGNoLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIE5nYk1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIENhVGFiU3dpdGNoQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJWaWV3Q2hlY2tlZCwgT25DaGFuZ2VzIHtcbiAgQElucHV0KCkgdGFicyE6IFRhYnNbXTtcbiAgQElucHV0KCkgdHlwZSE6IHN0cmluZztcbiAgQElucHV0KCkgaGFzRGFzaGJvYXJkSGVpZ2h0PzogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSBzdWJQZXJpb2REcm9wZG93bkxpc3Q/OiBEcm9wZG93bkxpc3RJdGVtW10gPSBbXTtcbiAgQElucHV0KCkgc2VsZWN0ZWRTdWJQZXJpb2Q/OiBEcm9wZG93bkxpc3RJdGVtO1xuICBASW5wdXQoKSBpc0NsZWFyQ3VzdG9tUGVyaW9kUmFuZ2VWYWx1ZT86IGJvb2xlYW4gPSBmYWxzZTtcbiAgQElucHV0KCkgaXNEaXNhYmxlZD86IGJvb2xlYW4gPSBmYWxzZTtcbiAgQElucHV0KCkgaXNCb2xkOiBib29sZWFuID0gZmFsc2U7XG5cbiAgQE91dHB1dCgpIHN3aXRjaENsaWNrZWQgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcbiAgQE91dHB1dCgpIGN1c3RvbVBlcmlvZFJhbmdlRW1pdHRlciA9IG5ldyBFdmVudEVtaXR0ZXI8Q3VzdG9tUGVyaW9kUmFuZ2U+KCk7XG4gIEBPdXRwdXQoKSBjdXN0b21QZXJpb2RSYW5nZVN1YnBlcmlvZEVtaXR0ZXIgPSBuZXcgRXZlbnRFbWl0dGVyPG51bWJlcj4oKTtcbiAgQE91dHB1dCgpIHBvcG92ZXJDbG9zZWRFbWl0dGVyID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gIHB1YmxpYyBob3ZlclN0eWxlOiBIb3ZlclN0eWxlID0gVGFiU3dpdGNoQ29uc3RhbnRzLklOSVRJQUxfSE9WRVJfU1RZTEU7XG4gIHB1YmxpYyBpbmRleFN3aXRjaDogbnVtYmVyID0gLTE7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHVibGljIGVsZW06IEVsZW1lbnRSZWYsXG4gICAgcHVibGljIGRldDogQ2hhbmdlRGV0ZWN0b3JSZWZcbiAgKSB7fVxuXG4gIG5nT25DaGFuZ2VzKCkge1xuICAgIHRoaXMuc2V0U3dpdGNoQWN0aXZlKHRoaXMudGFicyk7XG4gIH1cblxuICBuZ0FmdGVyVmlld0NoZWNrZWQoKSB7XG4gICAgdGhpcy5zZXRTd2l0Y2hBY3RpdmUodGhpcy50YWJzKTtcbiAgICB0aGlzLmRldC5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cblxuICBwdWJsaWMgc2V0U3dpdGNoQWN0aXZlKHRhYnM6IFRhYnNbXSk6IHZvaWQge1xuICAgIGNvbnN0IHNlbGVjdGVkSW5kZXggPSB0YWJzPy5maW5kSW5kZXgoXG4gICAgICAoaXRlbTogVGFicykgPT4gaXRlbS5jaGVja2VkICYmICFpdGVtLmRpc2FibGVkXG4gICAgKTtcbiAgICB0aGlzLmluZGV4U3dpdGNoID0gc2VsZWN0ZWRJbmRleDtcbiAgICBpZiAoc2VsZWN0ZWRJbmRleCA9PT0gLTEpIHJldHVybjtcblxuICAgIHRoaXMuaG92ZXJTdHlsZSA9IHRoaXMuZ2V0RWxlbWVudE9mZnNldChcbiAgICAgIHRoaXMuZWxlbS5uYXRpdmVFbGVtZW50LmNoaWxkcmVuWzBdLmNoaWxkcmVuW3RoaXMuaW5kZXhTd2l0Y2hdXG4gICAgKTtcblxuICAgIHRoaXMuZGV0LmRldGVjdENoYW5nZXMoKTtcbiAgfVxuXG4gIHB1YmxpYyBzd2l0Y2hUYWIoZTogRXZlbnQsIGluZHg6IG51bWJlciwgaXRlbTogeyBpZDogbnVtYmVyIH0pOiB2b2lkIHtcbiAgICBlLnN0b3BQcm9wYWdhdGlvbigpO1xuICAgIHRoaXMuaW5kZXhTd2l0Y2ggPSBpbmR4O1xuXG4gICAgdGhpcy50YWJzLm1hcCgodGFiKSA9PiB7XG4gICAgICBpZiAodGFiLmlkID09PSBpdGVtLmlkKSB0YWIuY2hlY2tlZCA9IHRydWU7XG4gICAgICBlbHNlIHRhYi5jaGVja2VkID0gZmFsc2U7XG4gICAgfSk7XG5cbiAgICBjb25zdCB0YXJnZXQgPSBlLnRhcmdldCBhcyBFbGVtZW50O1xuICAgIHRoaXMuaG92ZXJTdHlsZSA9IHRoaXMuZ2V0RWxlbWVudE9mZnNldCh0YXJnZXQpO1xuXG4gICAgdGhpcy5zd2l0Y2hDbGlja2VkLmVtaXQoaXRlbSk7XG4gICAgdGhpcy5kZXQuZGV0ZWN0Q2hhbmdlcygpO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRFbGVtZW50T2Zmc2V0KGl0ZW06IEVsZW1lbnQgfCBudWxsKToge1xuICAgIHg6IG51bWJlcjtcbiAgICB3aWR0aDogbnVtYmVyIHwgdW5kZWZpbmVkO1xuICB9IHtcbiAgICBjb25zdCBwYXJlbnRFbGVtZW50ID0gaXRlbT8uY2xvc2VzdCgnLnRhYi1zd2l0Y2gtaG9sZGVyJyk7XG4gICAgY29uc3Qgc2VsZWN0ZWRFbGVtZW50ID0gaXRlbT8uY2xvc2VzdCgnLnRhYi1zd2l0Y2gtaXRlbXMtaG9sZGVyJyk7XG5cbiAgICBjb25zdCBwYXJlbnRJdGVtID0gcGFyZW50RWxlbWVudD8uZ2V0Qm91bmRpbmdDbGllbnRSZWN0KCk7XG4gICAgY29uc3QgZWxlbWVudEl0ZW0gPSBzZWxlY3RlZEVsZW1lbnQ/LmdldEJvdW5kaW5nQ2xpZW50UmVjdCgpO1xuXG4gICAgcmV0dXJuIHtcbiAgICAgIHg6IGVsZW1lbnRJdGVtPy54ISAtIHBhcmVudEl0ZW0/LnghLFxuICAgICAgd2lkdGg6IGVsZW1lbnRJdGVtPy53aWR0aCxcbiAgICB9O1xuICB9XG5cbiAgcHVibGljIGhhbmRsZVNldEN1c3RvbVBlcmlvZFJhbmdlQ2xpY2soXG4gICAgY3VzdG9tUGVyaW9kUmFuZ2U6IEN1c3RvbVBlcmlvZFJhbmdlXG4gICk6IHZvaWQge1xuICAgIHRoaXMuY3VzdG9tUGVyaW9kUmFuZ2VFbWl0dGVyLmVtaXQoY3VzdG9tUGVyaW9kUmFuZ2UpO1xuICB9XG5cbiAgcHVibGljIGhhbmRsZUN1c3RvbVBlcmlvZFJhbmdlU3VicGVyaW9kRW1pdChzZWxlY3RlZERheXNSYW5nZTogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5jdXN0b21QZXJpb2RSYW5nZVN1YnBlcmlvZEVtaXR0ZXIuZW1pdChzZWxlY3RlZERheXNSYW5nZSk7XG4gIH1cblxuICBwdWJsaWMgaGFuZGxlUG9wb3ZlckNsb3NlKCk6IHZvaWQge1xuICAgIHRoaXMucG9wb3ZlckNsb3NlZEVtaXR0ZXIuZW1pdCgpO1xuICB9XG59XG4iLCI8ZGl2XG4gICAgY2xhc3M9XCJ0YWItc3dpdGNoLWhvbGRlciBkLWZsZXgganVzdGlmeS1jb250ZW50LXN0YXJ0IGFsaWduLWl0ZW1zLWNlbnRlciB7e1xuICAgICAgICB0eXBlXG4gICAgfX1cIlxuICAgIFtuZ0NsYXNzXT1cInsgJ2Rhc2hib2FyZC1oZWlnaHQnOiBoYXNEYXNoYm9hcmRIZWlnaHQsIGRpc2FibGVkOiBpc0Rpc2FibGVkIH1cIlxuPlxuICAgIEBmb3IgKGl0ZW0gb2YgdGFiczsgbGV0IGluZHggPSAkaW5kZXg7IHRyYWNrIGluZHgpIHtcbiAgICAgICAgPGRpdlxuICAgICAgICAgICAgY2xhc3M9XCJ0YWItc3dpdGNoLWl0ZW1zLWhvbGRlciBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXIgZmxleC1ncm93LTEgZmxleC1zaHJpbmstMSBmbGV4LWJhc2lzLWF1dG9cIlxuICAgICAgICAgICAgW2NsYXNzLmFjdGl2ZV09XCJpbmR4ID09PSBpbmRleFN3aXRjaFwiXG4gICAgICAgICAgICAoY2xpY2spPVwic3dpdGNoVGFiKCRldmVudCwgaW5keCwgaXRlbSlcIlxuICAgICAgICAgICAgKGNsb3NlRmlsdGVyKT1cImhhbmRsZVBvcG92ZXJDbG9zZSgpXCJcbiAgICAgICAgPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIgdGFiLXN3aXRjaC10ZXh0XCIgbWFpbkNvbnRlbnQ+XG4gICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhYi1zd2l0Y2gtbmFtZVwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ3RhLWZvbnQtYm9sZCB0YWItc3dpdGNoLW5hbWUtYmlnJzogaXNCb2xkIH1cIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAge3sgaXRlbS5uYW1lIH19XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuXG4gICAgPGRpdlxuICAgICAgICBjbGFzcz1cInNsaWRlLWFjdGl2ZS1ob2xkZXIge3sgdHlwZSB9fVwiXG4gICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgIHdpZHRoOiBob3ZlclN0eWxlLndpZHRoICsgJ3B4JyxcbiAgICAgICAgICAgIGxlZnQ6IGhvdmVyU3R5bGUueCArICdweCcsXG4gICAgICAgIH1cIlxuICAgID48L2Rpdj5cbjwvZGl2PlxuIl19
|
|
150
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtdGFiLXN3aXRjaC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS10YWItc3dpdGNoL2NhLXRhYi1zd2l0Y2guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdGFiLXN3aXRjaC9jYS10YWItc3dpdGNoLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBQ1QsS0FBSyxFQUNMLFlBQVksRUFDWixNQUFNLEVBSU4saUJBQWlCLEdBQ3BCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLFVBQVU7QUFDVixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLDRCQUE0QixDQUFDOzs7QUFldkQsTUFBTSxPQUFPLG9CQUFvQjtJQUM3QixJQUFhLElBQUksQ0FBQyxJQUFZO1FBQzFCLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQW9CRCxJQUFJLElBQUk7UUFDSixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUVELFlBQ1csSUFBZ0IsRUFDaEIsR0FBc0I7UUFEdEIsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUNoQixRQUFHLEdBQUgsR0FBRyxDQUFtQjtRQXhCeEIsdUJBQWtCLEdBQWEsS0FBSyxDQUFDO1FBQ3JDLDBCQUFxQixHQUF3QixFQUFFLENBQUM7UUFFaEQsa0NBQTZCLEdBQWEsS0FBSyxDQUFDO1FBQ2hELGVBQVUsR0FBYSxLQUFLLENBQUM7UUFDN0IsV0FBTSxHQUFZLEtBQUssQ0FBQztRQUN4Qix3QkFBbUIsR0FBWSxLQUFLLENBQUM7UUFFcEMsa0JBQWEsR0FBRyxJQUFJLFlBQVksRUFBaUMsQ0FBQztRQUNsRSw2QkFBd0IsR0FBRyxJQUFJLFlBQVksRUFBcUIsQ0FBQztRQUNqRSxzQ0FBaUMsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBQy9ELHlCQUFvQixHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7UUFFN0MsZ0JBQVcsR0FBVyxDQUFDLENBQUMsQ0FBQztRQUN6QixpQkFBWSxHQUF1QixJQUFJLENBQUM7SUFXNUMsQ0FBQztJQUVKLGVBQWU7UUFDWCxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNoQyxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFTSxlQUFlLENBQUMsSUFBWTtRQUMvQixNQUFNLGFBQWEsR0FBRyxJQUFJLEVBQUUsU0FBUyxDQUNqQyxDQUFDLElBQVUsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQ2pELENBQUM7UUFDRixJQUFJLENBQUMsV0FBVyxHQUFHLGFBQWEsQ0FBQztRQUNqQyxJQUFJLGFBQWEsS0FBSyxDQUFDLENBQUM7WUFBRSxPQUFPO1FBRWpDLE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQztRQUN0RCw2Q0FBNkM7UUFDN0MsSUFBSSxDQUFDLFlBQVksRUFBRSxTQUFTLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzlDLElBQUksVUFBVSxFQUFFLENBQUM7WUFDYixNQUFNLGdCQUFnQixHQUFHLEtBQUssQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLElBQUksQ0FDekQsQ0FBQyxFQUFPLEVBQUUsRUFBRSxDQUFDLEVBQUUsQ0FBQyxPQUFPLEtBQUssS0FBSyxDQUNyQixDQUFDO1lBQ2pCLElBQUksZ0JBQWdCLEVBQUUsQ0FBQztnQkFDbkIsTUFBTSxjQUFjLEdBQUcsZ0JBQWdCLENBQUMsUUFBUSxDQUM1QyxJQUFJLENBQUMsV0FBVyxDQUNKLENBQUM7Z0JBRWpCLElBQUksY0FBYyxFQUFFLENBQUM7b0JBQ2pCLElBQUksQ0FBQyxZQUFZLEdBQUcsY0FBYyxDQUFDO29CQUNuQyxjQUFjLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsQ0FBQztnQkFDM0MsQ0FBQztnQkFFRCxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO1lBQzdCLENBQUM7UUFDTCxDQUFDO0lBQ0wsQ0FBQztJQUVNLFNBQVMsQ0FBQyxDQUFhLEVBQUUsSUFBWSxFQUFFLElBQW9CO1FBQzlELENBQUMsQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUVwQixNQUFNLGNBQWMsR0FBRyxDQUFDLENBQUMsTUFBcUIsQ0FBQztRQUMvQyxJQUFJLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUNwQixrREFBa0Q7WUFDbEQsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQztZQUUxQywrQkFBK0I7WUFDL0IsY0FBYyxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsV0FBVyxDQUFDLENBQUM7WUFFMUMsNkNBQTZDO1lBQzdDLGVBQWUsRUFBRSxTQUFTLENBQUMsTUFBTSxDQUFDLFdBQVcsQ0FBQyxDQUFDO1lBRS9DLDREQUE0RDtZQUM1RCxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQWdCLENBQUM7WUFDbEUsbUNBQW1DO1lBQ25DLE1BQU0sb0JBQW9CLEdBQUcsWUFBWSxDQUFDLHFCQUFxQixFQUFFLENBQUM7WUFFbEUsZ0RBQWdEO1lBQ2hELE1BQU0sbUJBQW1CLEdBQUcsY0FBYztpQkFDckMsUUFBUSxDQUFDLENBQUMsQ0FBZ0IsQ0FBQztZQUVoQyw2Q0FBNkM7WUFDN0MsTUFBTSxFQUFFLEtBQUssRUFBRSx5QkFBeUIsRUFBRSxHQUN0QyxjQUFjLENBQUMscUJBQXFCLEVBQUUsQ0FBQztZQUUzQywrRkFBK0Y7WUFDL0YsTUFBTSwyQkFBMkIsR0FDN0IseUJBQXlCO2dCQUN6QixvQkFBb0IsQ0FBQyxLQUFLO2dCQUMxQixDQUFDLG9CQUFvQixDQUFDLEtBQUssR0FBRyxtQkFBbUIsQ0FBQyxXQUFXLENBQUM7b0JBQzFELENBQUMsQ0FBQztZQUVWLHdEQUF3RDtZQUN4RCxZQUFZLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxHQUFHLG1CQUFtQixDQUFDLFdBQVcsSUFBSSxDQUFDO1lBRWxFLGlDQUFpQztZQUNqQyxZQUFZLENBQUMsS0FBSyxDQUFDLFNBQVMsR0FBRyxjQUFjLDJCQUEyQixLQUFLLENBQUM7WUFDOUUsc0NBQXNDO1lBQ3RDLFlBQVksQ0FBQyxnQkFBZ0IsQ0FDekIsZUFBZSxFQUNmLEdBQUcsRUFBRTtnQkFDRCxnREFBZ0Q7Z0JBQ2hELFlBQVksQ0FBQyxLQUFLLENBQUMsU0FBUyxHQUFHLEVBQUUsQ0FBQztnQkFDbEMsWUFBWSxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsRUFBRSxDQUFDO2dCQUU5Qiw2Q0FBNkM7Z0JBQzdDLGVBQWUsRUFBRSxTQUFTLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO2dCQUU1QyxxQ0FBcUM7Z0JBQ3JDLElBQUksQ0FBQyxZQUFZLEdBQUcsY0FBYyxDQUFDO2dCQUVuQyxtQkFBbUI7Z0JBQ25CLGNBQWMsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2dCQUV2QywwQ0FBMEM7Z0JBRXRDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUM1QixDQUFDLEtBQUssQ0FBQyxTQUFTLEdBQUcsRUFBRSxDQUFDO1lBQzNCLENBQUMsRUFDRCxFQUFFLElBQUksRUFBRSxJQUFJLEVBQUUsQ0FBQyxvRUFBb0U7YUFDdEYsQ0FBQztRQUNOLENBQUM7UUFFRCxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztRQUN4QixJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFO1lBQ2xCLElBQUksR0FBRyxDQUFDLEVBQUUsS0FBSyxJQUFJLENBQUMsRUFBRTtnQkFBRSxHQUFHLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQzs7Z0JBQ3RDLEdBQUcsQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1FBQzdCLENBQUMsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDbEMsQ0FBQztJQUVNLCtCQUErQixDQUNsQyxpQkFBb0M7UUFFcEMsSUFBSSxDQUFDLHdCQUF3QixDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0lBQzFELENBQUM7SUFFTSxvQ0FBb0MsQ0FDdkMsaUJBQXlCO1FBRXpCLElBQUksQ0FBQyxpQ0FBaUMsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQztJQUNuRSxDQUFDO0lBRU0sa0JBQWtCO1FBQ3JCLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUNyQyxDQUFDOytHQTNKUSxvQkFBb0I7bUdBQXBCLG9CQUFvQix3bUJDNUJqQyxpakNBeUJNLDBtaENEQVEsWUFBWSxpTkFBRSxTQUFTOzs0RkFHeEIsb0JBQW9CO2tCQVJoQyxTQUFTOytCQUNJLG1CQUFtQixjQUdqQixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsU0FBUyxDQUFDLGlCQUNuQixpQkFBaUIsQ0FBQyxTQUFTOytHQUc3QixJQUFJO3NCQUFoQixLQUFLO2dCQUlHLElBQUk7c0JBQVosS0FBSztnQkFDRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBQ0cscUJBQXFCO3NCQUE3QixLQUFLO2dCQUNHLGlCQUFpQjtzQkFBekIsS0FBSztnQkFDRyw2QkFBNkI7c0JBQXJDLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csbUJBQW1CO3NCQUEzQixLQUFLO2dCQUVJLGFBQWE7c0JBQXRCLE1BQU07Z0JBQ0csd0JBQXdCO3NCQUFqQyxNQUFNO2dCQUNHLGlDQUFpQztzQkFBMUMsTUFBTTtnQkFDRyxvQkFBb0I7c0JBQTdCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENvbXBvbmVudCxcbiAgICBJbnB1dCxcbiAgICBFdmVudEVtaXR0ZXIsXG4gICAgT3V0cHV0LFxuICAgIEVsZW1lbnRSZWYsXG4gICAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgQWZ0ZXJWaWV3SW5pdCxcbiAgICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8vIG1vZHVsZXNcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ2JNb2R1bGUgfSBmcm9tICdAbmctYm9vdHN0cmFwL25nLWJvb3RzdHJhcCc7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgVGFicyB9IGZyb20gJy4uLy4uL21vZGVscy90YWJzLm1vZGVsJztcbmltcG9ydCB7IEN1c3RvbVBlcmlvZFJhbmdlIH0gZnJvbSAnLi4vLi4vbW9kZWxzL2Rhc2hib2FyZC9jdXN0b20tcGVyaW9kLXJhbmdlLm1vZGVsJztcbmltcG9ydCB7IERyb3Bkb3duTGlzdEl0ZW0gfSBmcm9tICcuLi8uLi9tb2RlbHMvZGFzaGJvYXJkL2Ryb3Bkb3duLWxpc3QtaXRlbS5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnYXBwLWNhLXRhYi1zd2l0Y2gnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9jYS10YWItc3dpdGNoLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9jYS10YWItc3dpdGNoLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBOZ2JNb2R1bGVdLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLlNoYWRvd0RvbSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FUYWJTd2l0Y2hDb21wb25lbnQgaW1wbGVtZW50cyBBZnRlclZpZXdJbml0IHtcbiAgICBASW5wdXQoKSBzZXQgdGFicyh0YWJzOiBUYWJzW10pIHtcbiAgICAgICAgdGhpcy5fdGFicyA9IHRhYnM7XG4gICAgICAgIHRoaXMuc2V0U3dpdGNoQWN0aXZlKHRhYnMpO1xuICAgIH1cbiAgICBASW5wdXQoKSB0eXBlITogc3RyaW5nO1xuICAgIEBJbnB1dCgpIGhhc0Rhc2hib2FyZEhlaWdodD86IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBzdWJQZXJpb2REcm9wZG93bkxpc3Q/OiBEcm9wZG93bkxpc3RJdGVtW10gPSBbXTtcbiAgICBASW5wdXQoKSBzZWxlY3RlZFN1YlBlcmlvZD86IERyb3Bkb3duTGlzdEl0ZW07XG4gICAgQElucHV0KCkgaXNDbGVhckN1c3RvbVBlcmlvZFJhbmdlVmFsdWU/OiBib29sZWFuID0gZmFsc2U7XG4gICAgQElucHV0KCkgaXNEaXNhYmxlZD86IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBpc0JvbGQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBpc01hcmdpblRvcERpc2FibGVkOiBib29sZWFuID0gZmFsc2U7XG5cbiAgICBAT3V0cHV0KCkgc3dpdGNoQ2xpY2tlZCA9IG5ldyBFdmVudEVtaXR0ZXI8eyBpZDogbnVtYmVyLCBuYW1lPzogc3RyaW5nIH0+KCk7XG4gICAgQE91dHB1dCgpIGN1c3RvbVBlcmlvZFJhbmdlRW1pdHRlciA9IG5ldyBFdmVudEVtaXR0ZXI8Q3VzdG9tUGVyaW9kUmFuZ2U+KCk7XG4gICAgQE91dHB1dCgpIGN1c3RvbVBlcmlvZFJhbmdlU3VicGVyaW9kRW1pdHRlciA9IG5ldyBFdmVudEVtaXR0ZXI8bnVtYmVyPigpO1xuICAgIEBPdXRwdXQoKSBwb3BvdmVyQ2xvc2VkRW1pdHRlciA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICAgIHB1YmxpYyBpbmRleFN3aXRjaDogbnVtYmVyID0gLTE7XG4gICAgcHVibGljIHNlbGVjdGVkSXRlbTogSFRNTEVsZW1lbnQgfCBudWxsID0gbnVsbDtcblxuICAgIHB1YmxpYyBfdGFicyE6IFRhYnNbXTtcblxuICAgIGdldCB0YWJzKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fdGFicztcbiAgICB9XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHVibGljIGVsZW06IEVsZW1lbnRSZWYsXG4gICAgICAgIHB1YmxpYyBkZXQ6IENoYW5nZURldGVjdG9yUmVmXG4gICAgKSB7fVxuXG4gICAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgICAgICB0aGlzLnNldFN3aXRjaEFjdGl2ZSh0aGlzLnRhYnMpO1xuICAgICAgICB0aGlzLmRldC5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgfVxuXG4gICAgcHVibGljIHNldFN3aXRjaEFjdGl2ZSh0YWJzOiBUYWJzW10pOiB2b2lkIHtcbiAgICAgICAgY29uc3Qgc2VsZWN0ZWRJbmRleCA9IHRhYnM/LmZpbmRJbmRleChcbiAgICAgICAgICAgIChpdGVtOiBUYWJzKSA9PiBpdGVtLmNoZWNrZWQgJiYgIWl0ZW0uZGlzYWJsZWRcbiAgICAgICAgKTtcbiAgICAgICAgdGhpcy5pbmRleFN3aXRjaCA9IHNlbGVjdGVkSW5kZXg7XG4gICAgICAgIGlmIChzZWxlY3RlZEluZGV4ID09PSAtMSkgcmV0dXJuO1xuXG4gICAgICAgIGNvbnN0IHNoYWRvd1Jvb3QgPSB0aGlzLmVsZW0ubmF0aXZlRWxlbWVudC5zaGFkb3dSb290O1xuICAgICAgICAvLyBSZW1vdmUgY2xhc3MgZnJvbSBwcmV2aW91c2x5IHNhdmVkIGVsZW1lbnRcbiAgICAgICAgdGhpcy5zZWxlY3RlZEl0ZW0/LmNsYXNzTGlzdC5yZW1vdmUoJ2FjdGl2ZScpO1xuICAgICAgICBpZiAoc2hhZG93Um9vdCkge1xuICAgICAgICAgICAgY29uc3QgdGFiX3N3aXRoX2hvbGRlciA9IEFycmF5LmZyb20oc2hhZG93Um9vdC5jaGlsZHJlbikuZmluZChcbiAgICAgICAgICAgICAgICAoZWw6IGFueSkgPT4gZWwudGFnTmFtZSA9PT0gJ0RJVidcbiAgICAgICAgICAgICkgYXMgSFRNTEVsZW1lbnQ7XG4gICAgICAgICAgICBpZiAodGFiX3N3aXRoX2hvbGRlcikge1xuICAgICAgICAgICAgICAgIGNvbnN0IHRhYl9zd2l0aF9pdGVtID0gdGFiX3N3aXRoX2hvbGRlci5jaGlsZHJlbltcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5pbmRleFN3aXRjaFxuICAgICAgICAgICAgICAgIF0gYXMgSFRNTEVsZW1lbnQ7XG5cbiAgICAgICAgICAgICAgICBpZiAodGFiX3N3aXRoX2l0ZW0pIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5zZWxlY3RlZEl0ZW0gPSB0YWJfc3dpdGhfaXRlbTtcbiAgICAgICAgICAgICAgICAgICAgdGFiX3N3aXRoX2l0ZW0uY2xhc3NMaXN0LmFkZCgnYWN0aXZlJyk7XG4gICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgdGhpcy5kZXQuZGV0ZWN0Q2hhbmdlcygpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIHN3aXRjaFRhYihlOiBNb3VzZUV2ZW50LCBpbmR4OiBudW1iZXIsIGl0ZW06IHsgaWQ6IG51bWJlciB9KTogdm9pZCB7XG4gICAgICAgIGUuc3RvcFByb3BhZ2F0aW9uKCk7XG5cbiAgICAgICAgY29uc3QgY2xpY2tlZEVsZW1lbnQgPSBlLnRhcmdldCBhcyBIVE1MRWxlbWVudDtcbiAgICAgICAgaWYgKHRoaXMuc2VsZWN0ZWRJdGVtKSB7XG4gICAgICAgICAgICAvLyBTdG9yZSBwcmV2aW91c2x5IGNsaWNrZWQgZWxlbWVudCBpbiB0byB2YXJpYWJsZVxuICAgICAgICAgICAgY29uc3Qgb2xkU2VsZWN0ZWRJdGVtID0gdGhpcy5zZWxlY3RlZEl0ZW07XG5cbiAgICAgICAgICAgIC8vIEFkZCBjbGFzcyB0byBjbGlja2VkIGVsZW1lbnRcbiAgICAgICAgICAgIGNsaWNrZWRFbGVtZW50LmNsYXNzTGlzdC5hZGQoJ3RvX2FjdGl2ZScpO1xuXG4gICAgICAgICAgICAvLyBSZW1vdmUgY2xhc3MgZnJvbSBwcmV2aW91c2x5IHNhdmVkIGVsZW1lbnRcbiAgICAgICAgICAgIG9sZFNlbGVjdGVkSXRlbT8uY2xhc3NMaXN0LnJlbW92ZSgndG9fYWN0aXZlJyk7XG5cbiAgICAgICAgICAgIC8vIEdldCBmaXJzdCBjaGlsZCBlbGVtZW50LCBpbiB0aGlzIGNhc2UgaXQgaXMgdGFiIGluZGljYXRvclxuICAgICAgICAgICAgY29uc3QgY2hpbGRFbGVtZW50ID0gdGhpcy5zZWxlY3RlZEl0ZW0uY2hpbGRyZW5bMF0gYXMgSFRNTEVsZW1lbnQ7XG4gICAgICAgICAgICAvLyBHZXQgZGltZW5zaW9ucyBmb3IgdGFiIGluZGljYXRvclxuICAgICAgICAgICAgY29uc3QgY2hpbGRFbGVtZW50Qm91bmRpbmcgPSBjaGlsZEVsZW1lbnQuZ2V0Qm91bmRpbmdDbGllbnRSZWN0KCk7XG5cbiAgICAgICAgICAgIC8vIEdldCB0YWIgaW5kaWNhdG9yIGZvciBjdXJyZW50IGNsaWNrZWQgZWxlbWVudFxuICAgICAgICAgICAgY29uc3QgY2xpY2tlZEVsZW1lbnRDaGlsZCA9IGNsaWNrZWRFbGVtZW50XG4gICAgICAgICAgICAgICAgLmNoaWxkcmVuWzBdIGFzIEhUTUxFbGVtZW50O1xuXG4gICAgICAgICAgICAvLyBHRXQgZGltZW5zaW9ucyBmb3IgY3VycmVudCBjbGlja2VkIGVsZW1lbnRcbiAgICAgICAgICAgIGNvbnN0IHsgcmlnaHQ6IGNsaWNrZWRFbGVtZW50T2Zmc2V0UmlnaHQgfSA9XG4gICAgICAgICAgICAgICAgY2xpY2tlZEVsZW1lbnQuZ2V0Qm91bmRpbmdDbGllbnRSZWN0KCk7XG5cbiAgICAgICAgICAgIC8vIENhbGN1bGF0aW9uIHdoZW4gd2UgY2xpY2sgb24gZWxlbWVudCwgYWN0aXZlIHRhYiBpbmRpY2F0b3Igd2lsbCBtb3ZlIHRvIGNhbGN1bGF0ZWQgcG9zc2l0aW9uXG4gICAgICAgICAgICBjb25zdCBjYWxjdWxhdGVkQ2hpbGRFbGVtZW50V2lkdGggPVxuICAgICAgICAgICAgICAgIGNsaWNrZWRFbGVtZW50T2Zmc2V0UmlnaHQgLVxuICAgICAgICAgICAgICAgIGNoaWxkRWxlbWVudEJvdW5kaW5nLnJpZ2h0ICtcbiAgICAgICAgICAgICAgICAoY2hpbGRFbGVtZW50Qm91bmRpbmcud2lkdGggLSBjbGlja2VkRWxlbWVudENoaWxkLm9mZnNldFdpZHRoKSAvXG4gICAgICAgICAgICAgICAgICAgIDI7XG5cbiAgICAgICAgICAgIC8vIFNldCBhY3RpdmUgdGFiIGluZGljYXRvciB3aWR0aCBvZiBuZXcgY2xpY2tlZCBlbGVtZW50XG4gICAgICAgICAgICBjaGlsZEVsZW1lbnQuc3R5bGUud2lkdGggPSBgJHtjbGlja2VkRWxlbWVudENoaWxkLm9mZnNldFdpZHRofXB4YDtcblxuICAgICAgICAgICAgLy8gVHJhbnNsYXRlIGFjdGl2ZSB0YWIgaW5kaWNhdG9yXG4gICAgICAgICAgICBjaGlsZEVsZW1lbnQuc3R5bGUudHJhbnNmb3JtID0gYHRyYW5zbGF0ZVgoJHtjYWxjdWxhdGVkQ2hpbGRFbGVtZW50V2lkdGh9cHgpYDtcbiAgICAgICAgICAgIC8vIExpc3RlbiBmb3IgdGhlIHRyYW5zaXRpb24gdG8gZmluaXNoXG4gICAgICAgICAgICBjaGlsZEVsZW1lbnQuYWRkRXZlbnRMaXN0ZW5lcihcbiAgICAgICAgICAgICAgICAndHJhbnNpdGlvbmVuZCcsXG4gICAgICAgICAgICAgICAgKCkgPT4ge1xuICAgICAgICAgICAgICAgICAgICAvLyBDbGVhciB0aGUgdHJhbnNmb3JtIGFmdGVyIHRoZSB0cmFuc2l0aW9uIGVuZHNcbiAgICAgICAgICAgICAgICAgICAgY2hpbGRFbGVtZW50LnN0eWxlLnRyYW5zZm9ybSA9ICcnO1xuICAgICAgICAgICAgICAgICAgICBjaGlsZEVsZW1lbnQuc3R5bGUud2lkdGggPSAnJztcblxuICAgICAgICAgICAgICAgICAgICAvLyBSZW1vdmUgY2xhc3MgZnJvbSBwcmV2aW91cyBjbGlja2VkIGVsZW1lbnRcbiAgICAgICAgICAgICAgICAgICAgb2xkU2VsZWN0ZWRJdGVtPy5jbGFzc0xpc3QucmVtb3ZlKCdhY3RpdmUnKTtcblxuICAgICAgICAgICAgICAgICAgICAvLyBTdG9yZSBuZXcgdmFsdWUgb2YgY2xpY2tlZCBlbGVtZW50XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc2VsZWN0ZWRJdGVtID0gY2xpY2tlZEVsZW1lbnQ7XG5cbiAgICAgICAgICAgICAgICAgICAgLy8gQWRkIGFjdGl2ZSBjbGFzc1xuICAgICAgICAgICAgICAgICAgICBjbGlja2VkRWxlbWVudC5jbGFzc0xpc3QuYWRkKCdhY3RpdmUnKTtcblxuICAgICAgICAgICAgICAgICAgICAvLyBDbGVhciBhbGwgdHJhbnNmb3JtcyBvbiBjbGlja2VkIGVsZW1lbnRcbiAgICAgICAgICAgICAgICAgICAgKFxuICAgICAgICAgICAgICAgICAgICAgICAgY2xpY2tlZEVsZW1lbnQuY2hpbGRyZW5bMF0gYXMgSFRNTEVsZW1lbnRcbiAgICAgICAgICAgICAgICAgICAgKS5zdHlsZS50cmFuc2Zvcm0gPSAnJztcbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHsgb25jZTogdHJ1ZSB9IC8vIFRoaXMgZW5zdXJlcyB0aGF0IHRoaXMgZXZlbnQgbGlzdGVuZXIgd2lsbCBiZSB0cmlnZ2VyZWQgb25seSBvbmNlXG4gICAgICAgICAgICApO1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5pbmRleFN3aXRjaCA9IGluZHg7XG4gICAgICAgIHRoaXMudGFicy5tYXAoKHRhYikgPT4ge1xuICAgICAgICAgICAgaWYgKHRhYi5pZCA9PT0gaXRlbS5pZCkgdGFiLmNoZWNrZWQgPSB0cnVlO1xuICAgICAgICAgICAgZWxzZSB0YWIuY2hlY2tlZCA9IGZhbHNlO1xuICAgICAgICB9KTtcblxuICAgICAgICB0aGlzLnN3aXRjaENsaWNrZWQuZW1pdChpdGVtKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgaGFuZGxlU2V0Q3VzdG9tUGVyaW9kUmFuZ2VDbGljayhcbiAgICAgICAgY3VzdG9tUGVyaW9kUmFuZ2U6IEN1c3RvbVBlcmlvZFJhbmdlXG4gICAgKTogdm9pZCB7XG4gICAgICAgIHRoaXMuY3VzdG9tUGVyaW9kUmFuZ2VFbWl0dGVyLmVtaXQoY3VzdG9tUGVyaW9kUmFuZ2UpO1xuICAgIH1cblxuICAgIHB1YmxpYyBoYW5kbGVDdXN0b21QZXJpb2RSYW5nZVN1YnBlcmlvZEVtaXQoXG4gICAgICAgIHNlbGVjdGVkRGF5c1JhbmdlOiBudW1iZXJcbiAgICApOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jdXN0b21QZXJpb2RSYW5nZVN1YnBlcmlvZEVtaXR0ZXIuZW1pdChzZWxlY3RlZERheXNSYW5nZSk7XG4gICAgfVxuXG4gICAgcHVibGljIGhhbmRsZVBvcG92ZXJDbG9zZSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5wb3BvdmVyQ2xvc2VkRW1pdHRlci5lbWl0KCk7XG4gICAgfVxufVxuIiwiPGRpdlxuICAgIGNsYXNzPVwidGFiLXN3aXRjaC1ob2xkZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1zdGFydCBhbGlnbi1pdGVtcy1jZW50ZXIge3tcbiAgICAgICAgdHlwZVxuICAgIH19XCJcbiAgICBbbmdDbGFzc109XCJ7ICdkYXNoYm9hcmQtaGVpZ2h0JzogaGFzRGFzaGJvYXJkSGVpZ2h0LCBkaXNhYmxlZDogaXNEaXNhYmxlZCB9XCJcbiAgICBbbmdTdHlsZV09XCJ7ICdtYXJnaW4tdG9wJzogaXNNYXJnaW5Ub3BEaXNhYmxlZCA/IDAgOiAnJyB9XCJcbj5cbiAgICBAZm9yIChpdGVtIG9mIHRhYnM7IGxldCBpbmR4ID0gJGluZGV4OyB0cmFjayBpbmR4KSB7XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIGNsYXNzPVwidGFiLXN3aXRjaC1pdGVtcy1ob2xkZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyIGZsZXgtZ3Jvdy0xIGZsZXgtc2hyaW5rLTEgZmxleC1iYXNpcy1hdXRvXCJcbiAgICAgICAgICAgIChjbGljayk9XCJzd2l0Y2hUYWIoJGV2ZW50LCBpbmR4LCBpdGVtKVwiXG4gICAgICAgICAgICAoY2xvc2VGaWx0ZXIpPVwiaGFuZGxlUG9wb3ZlckNsb3NlKClcIlxuICAgICAgICAgICAgW2NsYXNzLmRpc2FibGVkXT1cIml0ZW0uZGlzYWJsZWRcIlxuICAgICAgICA+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic3dpdGNoLXRhYi1pbmRpY2F0b3Ige3sgdHlwZSB9fVwiPjwvZGl2PlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIgdGFiLXN3aXRjaC10ZXh0XCIgbWFpbkNvbnRlbnQ+XG4gICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhYi1zd2l0Y2gtbmFtZVwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ3RhLWZvbnQtYm9sZCB0YWItc3dpdGNoLW5hbWUtYmlnJzogaXNCb2xkIH1cIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAge3sgaXRlbS5uYW1lIH19XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuPC9kaXY+Il19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './shared-svg
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
export * from './shared-svg.routes';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvdXRpbHMvc3ZnLXJvdXRlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zaGFyZWQtc3ZnLnJvdXRlcyc7XG4iXX0=
|
|
@@ -3,5 +3,8 @@ export class SharedSvgRoutes {
|
|
|
3
3
|
static { this.ARROW_UP_SORT = 'assets/ca-components/svg/common/ic_arrow_desc.svg'; }
|
|
4
4
|
static { this.DROPDOWN_ARROW = 'assets/ca-components/svg/input/ic_arrow_input.svg'; }
|
|
5
5
|
static { this.ARROW_LEFT = 'assets/ca-components/svg/common/arrow-left.svg'; }
|
|
6
|
+
static { this.ARROW_DOWN = 'assets/ca-components/svg/input/ic_arrow_down_updated.svg'; }
|
|
7
|
+
static { this.SELECT_REMAINING_ICON = 'assets/ca-components/svg/common/ic_zoom_minus.svg'; }
|
|
8
|
+
static { this.CLEAR_SELECTED_ICON = 'assets/ca-components/svg/common/ic_x.svg'; }
|
|
6
9
|
}
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hhcmVkLXN2Zy5yb3V0ZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvdXRpbHMvc3ZnLXJvdXRlcy9zaGFyZWQtc3ZnLnJvdXRlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLE9BQU8sZUFBZTthQUNqQixvQkFBZSxHQUNsQixtREFBbUQsQ0FBQzthQUNqRCxrQkFBYSxHQUNoQixtREFBbUQsQ0FBQzthQUNqRCxtQkFBYyxHQUNqQixtREFBbUQsQ0FBQzthQUNqRCxlQUFVLEdBQ2IsZ0RBQWdELENBQUM7YUFDOUMsZUFBVSxHQUNiLDBEQUEwRCxDQUFDO2FBQ3hELDBCQUFxQixHQUN4QixtREFBbUQsQ0FBQzthQUNqRCx3QkFBbUIsR0FDdEIsMENBQTBDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgU2hhcmVkU3ZnUm91dGVzIHtcbiAgICBzdGF0aWMgQVJST1dfRE9XTl9TT1JUOiBzdHJpbmcgPVxuICAgICAgICAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2NvbW1vbi9pY19hcnJvd19zb3J0LnN2Zyc7XG4gICAgc3RhdGljIEFSUk9XX1VQX1NPUlQ6IHN0cmluZyA9XG4gICAgICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvY29tbW9uL2ljX2Fycm93X2Rlc2Muc3ZnJztcbiAgICBzdGF0aWMgRFJPUERPV05fQVJST1c6IHN0cmluZyA9XG4gICAgICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvaW5wdXQvaWNfYXJyb3dfaW5wdXQuc3ZnJztcbiAgICBzdGF0aWMgQVJST1dfTEVGVDogc3RyaW5nID1cbiAgICAgICAgJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9jb21tb24vYXJyb3ctbGVmdC5zdmcnO1xuICAgIHN0YXRpYyBBUlJPV19ET1dOOiBzdHJpbmcgPVxuICAgICAgICAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2lucHV0L2ljX2Fycm93X2Rvd25fdXBkYXRlZC5zdmcnO1xuICAgIHN0YXRpYyBTRUxFQ1RfUkVNQUlOSU5HX0lDT046IHN0cmluZyA9XG4gICAgICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvY29tbW9uL2ljX3pvb21fbWludXMuc3ZnJztcbiAgICBzdGF0aWMgQ0xFQVJfU0VMRUNURURfSUNPTjogc3RyaW5nID1cbiAgICAgICAgJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9jb21tb24vaWNfeC5zdmcnO1xufVxuIl19
|