ca-components 1.2.26 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/scss/input-dropdown.scss +1528 -1579
- package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +17 -22
- package/esm2022/lib/components/ca-chart/enums/e-chart-types.enum.mjs +2 -0
- package/esm2022/lib/components/ca-chart/enums/index.mjs +2 -2
- package/esm2022/lib/components/ca-chart/utils/guards/chart-type.guard.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +6 -13
- package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +7 -1
- package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +7 -1
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +98 -65
- package/esm2022/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +3 -3
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +683 -185
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.mjs +9 -26
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.mjs +9 -26
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.mjs +14 -28
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.mjs +10 -31
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.mjs +11 -30
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.mjs +18 -31
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.mjs +13 -27
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.mjs +10 -31
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.mjs +15 -30
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.mjs +19 -32
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.mjs +9 -26
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.mjs +8 -25
- package/esm2022/lib/components/ca-input-dropdown/models/input-dropdown-option.model.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/pipes/index.mjs +1 -2
- package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-default-template-class.pipe.mjs +2 -4
- package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-label-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-multiselect-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-svgtext-template-icon.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +3 -3
- package/esm2022/lib/services/image-base64.service.mjs +23 -0
- package/fesm2022/ca-components.mjs +3021 -3085
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-chart/enums/{chart-types.enum.d.ts → e-chart-types.enum.d.ts} +1 -1
- package/lib/components/ca-chart/enums/index.d.ts +1 -1
- package/lib/components/ca-input/config/ca-input.config.d.ts +1 -3
- package/lib/components/ca-input/input-test/input-test.component.d.ts +3 -4
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.d.ts +6 -10
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.d.ts +16 -33
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.d.ts +5 -10
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.d.ts +5 -10
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.d.ts +8 -9
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.d.ts +8 -9
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.d.ts +5 -8
- package/lib/components/ca-input-dropdown/models/input-dropdown-option.model.d.ts +0 -1
- package/lib/components/ca-input-dropdown/pipes/index.d.ts +0 -1
- package/lib/services/image-base64.service.d.ts +10 -0
- package/package.json +1 -1
- package/esm2022/lib/components/ca-chart/enums/chart-types.enum.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown/validators/ca-input-address-value.validations.mjs +0 -11
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.mjs +0 -41
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.mjs +0 -38
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.mjs +0 -37
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.mjs +0 -49
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.mjs +0 -49
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.mjs +0 -56
- package/esm2022/lib/components/ca-input-dropdown/pipes/dropdown-options.pipe.mjs +0 -73
- package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-get-icon.pipe.mjs +0 -18
- package/esm2022/lib/components/ca-input-dropdown/utils/svg-routes/index.mjs +0 -2
- package/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown/validators/ca-input-address-value.validations.d.ts +0 -2
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.d.ts +0 -10
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.d.ts +0 -11
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.d.ts +0 -11
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.d.ts +0 -14
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.d.ts +0 -14
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.d.ts +0 -15
- package/lib/components/ca-input-dropdown/pipes/dropdown-options.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-get-icon.pipe.d.ts +0 -9
- package/lib/components/ca-input-dropdown/utils/svg-routes/index.d.ts +0 -1
- /package/src/assets/ca-components/svg/common/trailermake/{ic_trailer_de_lucio.svg → ic_trailer_de_lucio.svg.svg} +0 -0
|
@@ -1,18 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CaInputDropdownMultiselectComponent {
|
|
5
6
|
options: OptionModel[];
|
|
6
7
|
lastActiveMultiselectItem: OptionModel | null;
|
|
7
|
-
|
|
8
|
-
label: keyof OptionModel;
|
|
9
|
-
dropdownOption: QueryList<ElementRef>;
|
|
10
|
-
set inputHoveredItem(val: number);
|
|
11
|
-
_inputHoveredItem: number;
|
|
12
|
-
get inputHoveredItem(): number;
|
|
8
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
13
9
|
onMultiselectSelect: EventEmitter<OptionModel>;
|
|
14
10
|
constructor();
|
|
11
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
15
12
|
onMultiselectSelectEmit(option: OptionModel): void;
|
|
16
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownMultiselectComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownMultiselectComponent, "app-ca-input-dropdown-multiselect", never, { "options": { "alias": "options"; "required": false; }; "lastActiveMultiselectItem": { "alias": "lastActiveMultiselectItem"; "required": false; }; "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownMultiselectComponent, "app-ca-input-dropdown-multiselect", never, { "options": { "alias": "options"; "required": false; }; "lastActiveMultiselectItem": { "alias": "lastActiveMultiselectItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; }, { "onMultiselectSelect": "onMultiselectSelect"; }, never, never, true, never>;
|
|
18
15
|
}
|
|
@@ -1,20 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
4
|
import { InputDropdownSvgRoutes } from '../../utils/svg-routes/input-dropdown-svg-routes';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CaInputDropdownPayrollTrucksComponent {
|
|
6
7
|
options: OptionModel[];
|
|
7
8
|
activeItem: OptionModel | null;
|
|
8
|
-
|
|
9
|
-
label: keyof OptionModel;
|
|
10
|
-
dropdownOption: QueryList<ElementRef>;
|
|
11
|
-
set inputHoveredItem(val: number);
|
|
12
|
-
_inputHoveredItem: number;
|
|
13
|
-
get inputHoveredItem(): number;
|
|
9
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
14
10
|
onActiveItem: EventEmitter<OptionModel>;
|
|
15
11
|
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
16
12
|
constructor();
|
|
13
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
17
14
|
onActiveItemEmit(option: OptionModel): void;
|
|
18
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownPayrollTrucksComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownPayrollTrucksComponent, "app-ca-input-dropdown-payroll-trucks", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownPayrollTrucksComponent, "app-ca-input-dropdown-payroll-trucks", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
20
17
|
}
|
|
@@ -1,20 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
|
-
import { ICaInputWithDropdown } from '../../../ca-input/config';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CaInputDropdownSvgTemplateComponent {
|
|
6
|
-
dropdownWithImage?: ICaInputWithDropdown | null;
|
|
7
6
|
options: OptionModel[];
|
|
8
7
|
activeItem: OptionModel | null;
|
|
9
|
-
|
|
10
|
-
label: keyof OptionModel;
|
|
11
|
-
dropdownOption: QueryList<ElementRef>;
|
|
12
|
-
set inputHoveredItem(val: number);
|
|
13
|
-
_inputHoveredItem: number;
|
|
14
|
-
get inputHoveredItem(): number;
|
|
8
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
15
9
|
onActiveItem: EventEmitter<OptionModel>;
|
|
16
10
|
constructor();
|
|
11
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
17
12
|
onActiveItemEmit(option: OptionModel): void;
|
|
18
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownSvgTemplateComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgTemplateComponent, "app-ca-input-dropdown-svg-template", never, { "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgTemplateComponent, "app-ca-input-dropdown-svg-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
20
15
|
}
|
|
@@ -1,22 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
4
|
import { ICaInput } from '../../../ca-input/config';
|
|
4
5
|
import { InputDropdownSvgRoutes } from '../../utils/svg-routes/input-dropdown-svg-routes';
|
|
6
|
+
import { ImageBase64Service } from '../../../../services/image-base64.service';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class CaInputDropdownSvgtextDispatchTemplateComponent {
|
|
9
|
+
imageBase64Service: ImageBase64Service;
|
|
7
10
|
options: OptionModel[];
|
|
8
11
|
activeItem: OptionModel | null;
|
|
9
|
-
|
|
12
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
10
13
|
inputConfig: ICaInput;
|
|
11
|
-
label: keyof OptionModel;
|
|
12
|
-
dropdownOption: QueryList<ElementRef>;
|
|
13
|
-
set inputHoveredItem(val: number);
|
|
14
|
-
_inputHoveredItem: number;
|
|
15
|
-
get inputHoveredItem(): number;
|
|
16
14
|
onActiveItem: EventEmitter<OptionModel>;
|
|
17
15
|
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
18
|
-
constructor();
|
|
16
|
+
constructor(imageBase64Service: ImageBase64Service);
|
|
17
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
19
18
|
onActiveItemEmit(option: OptionModel): void;
|
|
20
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownSvgtextDispatchTemplateComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgtextDispatchTemplateComponent, "app-ca-input-dropdown-svgtext-dispatch-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgtextDispatchTemplateComponent, "app-ca-input-dropdown-svgtext-dispatch-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
22
21
|
}
|
|
@@ -1,22 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
4
|
import { ICaInput } from '../../../ca-input/config';
|
|
4
5
|
import { InputDropdownSvgRoutes } from '../../utils/svg-routes/input-dropdown-svg-routes';
|
|
6
|
+
import { ImageBase64Service } from '../../../../services/image-base64.service';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class CaInputDropdownSvgtextTemplateComponent {
|
|
9
|
+
imageBase64Service: ImageBase64Service;
|
|
7
10
|
options: OptionModel[];
|
|
8
11
|
activeItem: OptionModel | null;
|
|
9
|
-
|
|
12
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
10
13
|
inputConfig: ICaInput;
|
|
11
|
-
label: keyof OptionModel;
|
|
12
|
-
dropdownOption: QueryList<ElementRef>;
|
|
13
|
-
set inputHoveredItem(val: number);
|
|
14
|
-
_inputHoveredItem: number;
|
|
15
|
-
get inputHoveredItem(): number;
|
|
16
14
|
onActiveItem: EventEmitter<OptionModel>;
|
|
17
15
|
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
18
|
-
constructor();
|
|
16
|
+
constructor(imageBase64Service: ImageBase64Service);
|
|
17
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
19
18
|
onActiveItemEmit(option: OptionModel): void;
|
|
20
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownSvgtextTemplateComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgtextTemplateComponent, "app-ca-input-dropdown-svgtext-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgtextTemplateComponent, "app-ca-input-dropdown-svgtext-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
22
21
|
}
|
|
@@ -1,18 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CaInputDropdownTextCounterComponent {
|
|
5
6
|
options: OptionModel[];
|
|
6
7
|
activeItem: OptionModel | null;
|
|
7
|
-
|
|
8
|
-
label: keyof OptionModel;
|
|
9
|
-
dropdownOption: QueryList<ElementRef>;
|
|
10
|
-
set inputHoveredItem(val: number);
|
|
11
|
-
_inputHoveredItem: number;
|
|
12
|
-
get inputHoveredItem(): number;
|
|
8
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
13
9
|
onActiveItem: EventEmitter<OptionModel>;
|
|
14
10
|
constructor();
|
|
11
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
15
12
|
onActiveItemEmit(option: OptionModel): void;
|
|
16
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownTextCounterComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownTextCounterComponent, "app-ca-input-dropdown-text-counter", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownTextCounterComponent, "app-ca-input-dropdown-text-counter", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
18
15
|
}
|
|
@@ -1,20 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
4
|
import { InputDropdownSvgRoutes } from '../../utils/svg-routes/input-dropdown-svg-routes';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CaInputDropdownTripleTextTemplateComponent {
|
|
6
7
|
options: OptionModel[];
|
|
7
8
|
activeItem: OptionModel | null;
|
|
8
|
-
|
|
9
|
-
label: keyof OptionModel;
|
|
10
|
-
dropdownOption: QueryList<ElementRef>;
|
|
11
|
-
set inputHoveredItem(val: number);
|
|
12
|
-
_inputHoveredItem: number;
|
|
13
|
-
get inputHoveredItem(): number;
|
|
9
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
14
10
|
onActiveItem: EventEmitter<OptionModel>;
|
|
15
11
|
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
16
12
|
constructor();
|
|
13
|
+
identity(index: number, item: OptionModel): number | undefined;
|
|
17
14
|
onActiveItemEmit(option: OptionModel): void;
|
|
18
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownTripleTextTemplateComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownTripleTextTemplateComponent, "app-ca-input-dropdown-triple-text-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownTripleTextTemplateComponent, "app-ca-input-dropdown-triple-text-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
20
17
|
}
|
|
@@ -6,4 +6,3 @@ export * from './input-dropdown-multiselect-class.pipe';
|
|
|
6
6
|
export * from './input-dropdown-default-template-class.pipe';
|
|
7
7
|
export * from './input-dropdown-label-class.pipe';
|
|
8
8
|
export * from './input-dropdown-fuel-franchise-class.pipe';
|
|
9
|
-
export * from './input-dropdown-get-icon.pipe';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ImageBase64Service {
|
|
4
|
+
private domSanitizer;
|
|
5
|
+
constructor(domSanitizer: DomSanitizer);
|
|
6
|
+
sanitizer(url: string): SafeResourceUrl;
|
|
7
|
+
getStringFromBase64(url: string): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageBase64Service, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ImageBase64Service>;
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnQtdHlwZXMuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWNoYXJ0L2VudW1zL2NoYXJ0LXR5cGVzLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBlbnVtIENoYXJ0VHlwZXNTdHJpbmdFbnVtIHtcbiAgTElORSA9ICdsaW5lJyxcbiAgQkFSID0gJ2JhcicsXG4gIERPVUdITlVUID0gJ2RvdWdobnV0Jyxcbn1cbiJdfQ==
|
package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.mjs
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export var eInputBasicString;
|
|
2
|
-
(function (eInputBasicString) {
|
|
3
|
-
eInputBasicString["SMALL"] = "small";
|
|
4
|
-
eInputBasicString["WHITE"] = "white";
|
|
5
|
-
})(eInputBasicString || (eInputBasicString = {}));
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtYWRkcmVzcy1iYXNpYy1zdHJpbmcuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24vZW51bXMvaW5wdXQtYWRkcmVzcy1iYXNpYy1zdHJpbmcuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxpQkFHWDtBQUhELFdBQVksaUJBQWlCO0lBQ3pCLG9DQUFlLENBQUE7SUFDZixvQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFIVyxpQkFBaUIsS0FBakIsaUJBQWlCLFFBRzVCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gZUlucHV0QmFzaWNTdHJpbmcge1xuICAgIFNNQUxMID0gJ3NtYWxsJyxcbiAgICBXSElURSA9ICd3aGl0ZScsXG59XG4iXX0=
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export function addressNameWithDotValidator() {
|
|
2
|
-
return (control) => {
|
|
3
|
-
const controlValue = control.value?.address || control.value;
|
|
4
|
-
if (controlValue) {
|
|
5
|
-
const forbidden = /\d.*\d/.test(controlValue);
|
|
6
|
-
return !forbidden ? { error: true } : null;
|
|
7
|
-
}
|
|
8
|
-
return null;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtYWRkcmVzcy12YWx1ZS52YWxpZGF0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24vdmFsaWRhdG9ycy9jYS1pbnB1dC1hZGRyZXNzLXZhbHVlLnZhbGlkYXRpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sVUFBVSwyQkFBMkI7SUFDdkMsT0FBTyxDQUFDLE9BQXdCLEVBQTJCLEVBQUU7UUFDekQsTUFBTSxZQUFZLEdBQUcsT0FBTyxDQUFDLEtBQUssRUFBRSxPQUFPLElBQUksT0FBTyxDQUFDLEtBQUssQ0FBQztRQUU3RCxJQUFJLFlBQVksRUFBRSxDQUFDO1lBQ2YsTUFBTSxTQUFTLEdBQUcsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztZQUM5QyxPQUFPLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1FBQy9DLENBQUM7UUFFRCxPQUFPLElBQUksQ0FBQztJQUNoQixDQUFDLENBQUM7QUFDTixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWJzdHJhY3RDb250cm9sLCBWYWxpZGF0aW9uRXJyb3JzLCBWYWxpZGF0b3JGbiB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuZXhwb3J0IGZ1bmN0aW9uIGFkZHJlc3NOYW1lV2l0aERvdFZhbGlkYXRvcigpOiBWYWxpZGF0b3JGbiB7XG4gICAgcmV0dXJuIChjb250cm9sOiBBYnN0cmFjdENvbnRyb2wpOiBWYWxpZGF0aW9uRXJyb3JzIHwgbnVsbCA9PiB7XG4gICAgICAgIGNvbnN0IGNvbnRyb2xWYWx1ZSA9IGNvbnRyb2wudmFsdWU/LmFkZHJlc3MgfHwgY29udHJvbC52YWx1ZTtcblxuICAgICAgICBpZiAoY29udHJvbFZhbHVlKSB7XG4gICAgICAgICAgICBjb25zdCBmb3JiaWRkZW4gPSAvXFxkLipcXGQvLnRlc3QoY29udHJvbFZhbHVlKTtcbiAgICAgICAgICAgIHJldHVybiAhZm9yYmlkZGVuID8geyBlcnJvcjogdHJ1ZSB9IDogbnVsbDtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBudWxsO1xuICAgIH07XG59Il19
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { Component, Input } from '@angular/core';
|
|
3
|
-
import { AngularSvgIconModule } from 'angular-svg-icon';
|
|
4
|
-
// components
|
|
5
|
-
import { CaLoadModalProgressBarComponent } from '../../../../ca-load-modal-progress-bar/ca-load-modal-progress-bar.component';
|
|
6
|
-
// pipes
|
|
7
|
-
import { HighlightSearchPipe } from '../../../../../pipes/highlight-search.pipe';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "@angular/common";
|
|
10
|
-
import * as i2 from "angular-svg-icon";
|
|
11
|
-
export class CaInputDropdownLoadBrokerComponentItem {
|
|
12
|
-
constructor() {
|
|
13
|
-
this.isInOption = false;
|
|
14
|
-
}
|
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadBrokerComponentItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CaInputDropdownLoadBrokerComponentItem, isStandalone: true, selector: "app-ca-input-dropdown-load-broker-item", inputs: { option: "option", searchText: "searchText", isInOption: "isInOption", label: "label" }, ngImport: i0, template: "<div class=\"load-broker-template\" [class.in-option]=\"isInOption\">\n <div class=\"load-broker-status-text\">\n <ng-container *ngIf=\"option.name !== 'ADD NEW' && option.logoName\">\n <svg-icon\n [ngClass]=\"{\n 'dnu-status': option.dnu,\n }\"\n [src]=\"option.logoName\"\n class=\"load-broker-status\"\n ></svg-icon>\n </ng-container>\n <div\n [innerHtml]=\"\n option.name\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngStyle]=\"{\n overflow: 'hidden',\n 'text-overflow': 'ellipsis',\n 'white-space': 'nowrap',\n }\"\n class=\"load-broker-text\"\n ></div>\n </div>\n <div\n class=\"load-broker-progress-status\"\n [ngStyle]=\"{\n visibility:\n (!['ADD NEW', 'No Results'].includes(option.name!) &&\n option.availableCreditType?.name !== 'Unlimited') ||\n option.dnu ||\n option.ban\n ? 'visible'\n : 'hidden',\n }\"\n >\n <ca-load-modal-progress-bar\n [availableCredit]=\"option.availableCredit ?? 0\"\n [disable]=\"option.dnu || option.ban || option.status === 0\"\n [totalAmount]=\"option.creditLimit!\"\n ></ca-load-modal-progress-bar>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "component", type:
|
|
17
|
-
// Component
|
|
18
|
-
CaLoadModalProgressBarComponent, selector: "ca-load-modal-progress-bar", inputs: ["totalAmount", "availableCredit", "inputFocus", "disable"] }, { kind: "pipe", type:
|
|
19
|
-
// Pipe
|
|
20
|
-
HighlightSearchPipe, name: "caHighlight" }] }); }
|
|
21
|
-
}
|
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadBrokerComponentItem, decorators: [{
|
|
23
|
-
type: Component,
|
|
24
|
-
args: [{ selector: 'app-ca-input-dropdown-load-broker-item', standalone: true, imports: [
|
|
25
|
-
CommonModule,
|
|
26
|
-
AngularSvgIconModule,
|
|
27
|
-
// Component
|
|
28
|
-
CaLoadModalProgressBarComponent,
|
|
29
|
-
// Pipe
|
|
30
|
-
HighlightSearchPipe,
|
|
31
|
-
], template: "<div class=\"load-broker-template\" [class.in-option]=\"isInOption\">\n <div class=\"load-broker-status-text\">\n <ng-container *ngIf=\"option.name !== 'ADD NEW' && option.logoName\">\n <svg-icon\n [ngClass]=\"{\n 'dnu-status': option.dnu,\n }\"\n [src]=\"option.logoName\"\n class=\"load-broker-status\"\n ></svg-icon>\n </ng-container>\n <div\n [innerHtml]=\"\n option.name\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngStyle]=\"{\n overflow: 'hidden',\n 'text-overflow': 'ellipsis',\n 'white-space': 'nowrap',\n }\"\n class=\"load-broker-text\"\n ></div>\n </div>\n <div\n class=\"load-broker-progress-status\"\n [ngStyle]=\"{\n visibility:\n (!['ADD NEW', 'No Results'].includes(option.name!) &&\n option.availableCreditType?.name !== 'Unlimited') ||\n option.dnu ||\n option.ban\n ? 'visible'\n : 'hidden',\n }\"\n >\n <ca-load-modal-progress-bar\n [availableCredit]=\"option.availableCredit ?? 0\"\n [disable]=\"option.dnu || option.ban || option.status === 0\"\n [totalAmount]=\"option.creditLimit!\"\n ></ca-load-modal-progress-bar>\n </div>\n</div>\n" }]
|
|
32
|
-
}], propDecorators: { option: [{
|
|
33
|
-
type: Input
|
|
34
|
-
}], searchText: [{
|
|
35
|
-
type: Input
|
|
36
|
-
}], isInOption: [{
|
|
37
|
-
type: Input
|
|
38
|
-
}], label: [{
|
|
39
|
-
type: Input
|
|
40
|
-
}] } });
|
|
41
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItaXRlbS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC1kcm9wZG93bi9jb21wb25lbnRzL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItaXRlbS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC1kcm9wZG93bi9jb21wb25lbnRzL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItaXRlbS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFFeEQsYUFBYTtBQUNiLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLDZFQUE2RSxDQUFDO0FBRTlILFFBQVE7QUFDUixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQzs7OztBQXFCakYsTUFBTSxPQUFPLHNDQUFzQztJQWhCbkQ7UUFtQmEsZUFBVSxHQUFZLEtBQUssQ0FBQztLQUV4QzsrR0FMWSxzQ0FBc0M7bUdBQXRDLHNDQUFzQyxvTUM3Qm5ELCtyREFpREEseUREOUJRLFlBQVkscVRBQ1osb0JBQW9CO2dCQUVwQixZQUFZO2dCQUNaLCtCQUErQjtnQkFFL0IsT0FBTztnQkFDUCxtQkFBbUI7OzRGQUdkLHNDQUFzQztrQkFoQmxELFNBQVM7K0JBQ0ksd0NBQXdDLGNBR3RDLElBQUksV0FDUDt3QkFDTCxZQUFZO3dCQUNaLG9CQUFvQjt3QkFFcEIsWUFBWTt3QkFDWiwrQkFBK0I7d0JBRS9CLE9BQU87d0JBQ1AsbUJBQW1CO3FCQUN0Qjs4QkFHUSxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBbmd1bGFyU3ZnSWNvbk1vZHVsZSB9IGZyb20gJ2FuZ3VsYXItc3ZnLWljb24nO1xuXG4vLyBjb21wb25lbnRzXG5pbXBvcnQgeyBDYUxvYWRNb2RhbFByb2dyZXNzQmFyQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXIvY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXIuY29tcG9uZW50JztcblxuLy8gcGlwZXNcbmltcG9ydCB7IEhpZ2hsaWdodFNlYXJjaFBpcGUgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9waXBlcy9oaWdobGlnaHQtc2VhcmNoLnBpcGUnO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IE9wdGlvbk1vZGVsIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdhcHAtY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItaXRlbScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLWl0ZW0uY29tcG9uZW50LnNjc3MnXSxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIGltcG9ydHM6IFtcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcblxuICAgICAgICAvLyBDb21wb25lbnRcbiAgICAgICAgQ2FMb2FkTW9kYWxQcm9ncmVzc0JhckNvbXBvbmVudCxcblxuICAgICAgICAvLyBQaXBlXG4gICAgICAgIEhpZ2hsaWdodFNlYXJjaFBpcGUsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FJbnB1dERyb3Bkb3duTG9hZEJyb2tlckNvbXBvbmVudEl0ZW0ge1xuICAgIEBJbnB1dCgpIG9wdGlvbiE6IE9wdGlvbk1vZGVsO1xuICAgIEBJbnB1dCgpIHNlYXJjaFRleHQhOiBzdHJpbmc7XG4gICAgQElucHV0KCkgaXNJbk9wdGlvbjogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIGxhYmVsIToga2V5b2YgT3B0aW9uTW9kZWw7XG59XG4iLCI8ZGl2IGNsYXNzPVwibG9hZC1icm9rZXItdGVtcGxhdGVcIiBbY2xhc3MuaW4tb3B0aW9uXT1cImlzSW5PcHRpb25cIj5cbiAgICA8ZGl2IGNsYXNzPVwibG9hZC1icm9rZXItc3RhdHVzLXRleHRcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIm9wdGlvbi5uYW1lICE9PSAnQUREIE5FVycgJiYgb3B0aW9uLmxvZ29OYW1lXCI+XG4gICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgICAgICdkbnUtc3RhdHVzJzogb3B0aW9uLmRudSxcbiAgICAgICAgICAgICAgICB9XCJcbiAgICAgICAgICAgICAgICBbc3JjXT1cIm9wdGlvbi5sb2dvTmFtZVwiXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJsb2FkLWJyb2tlci1zdGF0dXNcIlxuICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8ZGl2XG4gICAgICAgICAgICBbaW5uZXJIdG1sXT1cIlxuICAgICAgICAgICAgICAgIG9wdGlvbi5uYW1lXG4gICAgICAgICAgICAgICAgICAgIHwgY2FIaWdobGlnaHRcbiAgICAgICAgICAgICAgICAgICAgICAgIDogW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGluZGV4OiA0NTYzMixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0ZXh0OiBzZWFyY2hUZXh0LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgXCJcbiAgICAgICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgICAgICBvdmVyZmxvdzogJ2hpZGRlbicsXG4gICAgICAgICAgICAgICAgJ3RleHQtb3ZlcmZsb3cnOiAnZWxsaXBzaXMnLFxuICAgICAgICAgICAgICAgICd3aGl0ZS1zcGFjZSc6ICdub3dyYXAnLFxuICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICBjbGFzcz1cImxvYWQtYnJva2VyLXRleHRcIlxuICAgICAgICA+PC9kaXY+XG4gICAgPC9kaXY+XG4gICAgPGRpdlxuICAgICAgICBjbGFzcz1cImxvYWQtYnJva2VyLXByb2dyZXNzLXN0YXR1c1wiXG4gICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgIHZpc2liaWxpdHk6XG4gICAgICAgICAgICAgICAgKCFbJ0FERCBORVcnLCAnTm8gUmVzdWx0cyddLmluY2x1ZGVzKG9wdGlvbi5uYW1lISkgJiZcbiAgICAgICAgICAgICAgICAgICAgb3B0aW9uLmF2YWlsYWJsZUNyZWRpdFR5cGU/Lm5hbWUgIT09ICdVbmxpbWl0ZWQnKSB8fFxuICAgICAgICAgICAgICAgIG9wdGlvbi5kbnUgfHxcbiAgICAgICAgICAgICAgICBvcHRpb24uYmFuXG4gICAgICAgICAgICAgICAgICAgID8gJ3Zpc2libGUnXG4gICAgICAgICAgICAgICAgICAgIDogJ2hpZGRlbicsXG4gICAgICAgIH1cIlxuICAgID5cbiAgICAgICAgPGNhLWxvYWQtbW9kYWwtcHJvZ3Jlc3MtYmFyXG4gICAgICAgICAgICBbYXZhaWxhYmxlQ3JlZGl0XT1cIm9wdGlvbi5hdmFpbGFibGVDcmVkaXQgPz8gMFwiXG4gICAgICAgICAgICBbZGlzYWJsZV09XCJvcHRpb24uZG51IHx8IG9wdGlvbi5iYW4gfHwgb3B0aW9uLnN0YXR1cyA9PT0gMFwiXG4gICAgICAgICAgICBbdG90YWxBbW91bnRdPVwib3B0aW9uLmNyZWRpdExpbWl0IVwiXG4gICAgICAgID48L2NhLWxvYWQtbW9kYWwtcHJvZ3Jlc3MtYmFyPlxuICAgIDwvZGl2PlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
// pipes
|
|
4
|
-
import { HighlightSearchPipe } from '../../../../../pipes/highlight-search.pipe';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "@angular/common";
|
|
7
|
-
export class CaInputDropdownLoadBrokerContactItemComponent {
|
|
8
|
-
constructor() {
|
|
9
|
-
this.isShowNoresult = false;
|
|
10
|
-
this.isInOption = false;
|
|
11
|
-
}
|
|
12
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadBrokerContactItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CaInputDropdownLoadBrokerContactItemComponent, isStandalone: true, selector: "ca-input-dropdown-load-broker-contact-item", inputs: { item: "item", activeItem: "activeItem", searchText: "searchText", isShowNoresult: "isShowNoresult", isInOption: "isInOption" }, ngImport: i0, template: "<div class=\"dropdown-subgroup-options\" [class.selected-option]=\"isInOption\">\n <!-- Left Side -->\n <div\n [innerHtml]=\"\n item?.name\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"{\n 'no-result': isShowNoresult,\n active: item.id === activeItem?.id,\n }\"\n class=\"dropdown-subgroup-text\"\n ></div>\n <!-- Right Side -->\n <div\n [innerHtml]=\"\n item.phone\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"{\n active: item.id === activeItem?.id,\n }\"\n class=\"dropdown-subgroup-text dropdown-subgroup-additional-text\"\n ></div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type:
|
|
14
|
-
// Module
|
|
15
|
-
CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type:
|
|
16
|
-
// Pipe
|
|
17
|
-
HighlightSearchPipe, name: "caHighlight" }] }); }
|
|
18
|
-
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadBrokerContactItemComponent, decorators: [{
|
|
20
|
-
type: Component,
|
|
21
|
-
args: [{ selector: 'ca-input-dropdown-load-broker-contact-item', standalone: true, imports: [
|
|
22
|
-
// Module
|
|
23
|
-
CommonModule,
|
|
24
|
-
// Pipe
|
|
25
|
-
HighlightSearchPipe,
|
|
26
|
-
], template: "<div class=\"dropdown-subgroup-options\" [class.selected-option]=\"isInOption\">\n <!-- Left Side -->\n <div\n [innerHtml]=\"\n item?.name\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"{\n 'no-result': isShowNoresult,\n active: item.id === activeItem?.id,\n }\"\n class=\"dropdown-subgroup-text\"\n ></div>\n <!-- Right Side -->\n <div\n [innerHtml]=\"\n item.phone\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"{\n active: item.id === activeItem?.id,\n }\"\n class=\"dropdown-subgroup-text dropdown-subgroup-additional-text\"\n ></div>\n</div>\n" }]
|
|
27
|
-
}], propDecorators: { item: [{
|
|
28
|
-
type: Input
|
|
29
|
-
}], activeItem: [{
|
|
30
|
-
type: Input
|
|
31
|
-
}], searchText: [{
|
|
32
|
-
type: Input
|
|
33
|
-
}], isShowNoresult: [{
|
|
34
|
-
type: Input
|
|
35
|
-
}], isInOption: [{
|
|
36
|
-
type: Input
|
|
37
|
-
}] } });
|
|
38
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItY29udGFjdC1pdGVtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWRyb3Bkb3duL2NvbXBvbmVudHMvY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItY29udGFjdC9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWJyb2tlci1jb250YWN0LWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItY29udGFjdC1pdGVtLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWRyb3Bkb3duL2NvbXBvbmVudHMvY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItY29udGFjdC9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWJyb2tlci1jb250YWN0LWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItY29udGFjdC1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQU0vQyxRQUFRO0FBQ1IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sNENBQTRDLENBQUM7OztBQWFqRixNQUFNLE9BQU8sNkNBQTZDO0lBWjFEO1FBZ0JhLG1CQUFjLEdBQVksS0FBSyxDQUFDO1FBQ2hDLGVBQVUsR0FBWSxLQUFLLENBQUM7S0FDeEM7K0dBTlksNkNBQTZDO21HQUE3Qyw2Q0FBNkMsZ1BDckIxRCxpbENBcUNBO2dCRHhCUSxTQUFTO2dCQUNULFlBQVk7Z0JBQ1osT0FBTztnQkFDUCxtQkFBbUI7OzRGQUtkLDZDQUE2QztrQkFaekQsU0FBUzsrQkFDSSw0Q0FBNEMsY0FDMUMsSUFBSSxXQUNQO3dCQUNMLFNBQVM7d0JBQ1QsWUFBWTt3QkFDWixPQUFPO3dCQUNQLG1CQUFtQjtxQkFDdEI7OEJBS1EsSUFBSTtzQkFBWixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuXG4vLyBtb2RlbHNcblxuaW1wb3J0IHsgT3B0aW9uTW9kZWwgfSBmcm9tICcuLi8uLi8uLi9tb2RlbHMnO1xuXG4vLyBwaXBlc1xuaW1wb3J0IHsgSGlnaGxpZ2h0U2VhcmNoUGlwZSB9IGZyb20gJy4uLy4uLy4uLy4uLy4uL3BpcGVzL2hpZ2hsaWdodC1zZWFyY2gucGlwZSc7XG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLWNvbnRhY3QtaXRlbScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIC8vIE1vZHVsZVxuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIC8vIFBpcGVcbiAgICAgICAgSGlnaGxpZ2h0U2VhcmNoUGlwZSxcbiAgICBdLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWJyb2tlci1jb250YWN0LWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsOiAnLi9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWJyb2tlci1jb250YWN0LWl0ZW0uY29tcG9uZW50LmNzcycsXG59KVxuZXhwb3J0IGNsYXNzIENhSW5wdXREcm9wZG93bkxvYWRCcm9rZXJDb250YWN0SXRlbUNvbXBvbmVudCB7XG4gICAgQElucHV0KCkgaXRlbSE6IE9wdGlvbk1vZGVsO1xuICAgIEBJbnB1dCgpIGFjdGl2ZUl0ZW0hOiBPcHRpb25Nb2RlbCB8IG51bGw7XG4gICAgQElucHV0KCkgc2VhcmNoVGV4dCE6IHN0cmluZztcbiAgICBASW5wdXQoKSBpc1Nob3dOb3Jlc3VsdDogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIGlzSW5PcHRpb246IGJvb2xlYW4gPSBmYWxzZTtcbn1cbiIsIjxkaXYgY2xhc3M9XCJkcm9wZG93bi1zdWJncm91cC1vcHRpb25zXCIgW2NsYXNzLnNlbGVjdGVkLW9wdGlvbl09XCJpc0luT3B0aW9uXCI+XG4gICAgPCEtLSBMZWZ0IFNpZGUgLS0+XG4gICAgPGRpdlxuICAgICAgICBbaW5uZXJIdG1sXT1cIlxuICAgICAgICAgICAgaXRlbT8ubmFtZVxuICAgICAgICAgICAgICAgIHwgY2FIaWdobGlnaHRcbiAgICAgICAgICAgICAgICAgICAgOiBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGluZGV4OiA0NTYzMixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6IHNlYXJjaFRleHQsXG4gICAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICBcIlxuICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAnbm8tcmVzdWx0JzogaXNTaG93Tm9yZXN1bHQsXG4gICAgICAgICAgICBhY3RpdmU6IGl0ZW0uaWQgPT09IGFjdGl2ZUl0ZW0/LmlkLFxuICAgICAgICB9XCJcbiAgICAgICAgY2xhc3M9XCJkcm9wZG93bi1zdWJncm91cC10ZXh0XCJcbiAgICA+PC9kaXY+XG4gICAgPCEtLSBSaWdodCBTaWRlIC0tPlxuICAgIDxkaXZcbiAgICAgICAgW2lubmVySHRtbF09XCJcbiAgICAgICAgICAgIGl0ZW0ucGhvbmVcbiAgICAgICAgICAgICAgICB8IGNhSGlnaGxpZ2h0XG4gICAgICAgICAgICAgICAgICAgIDogW1xuICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpbmRleDogNDU2MzIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0ZXh0OiBzZWFyY2hUZXh0LFxuICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgIF1cbiAgICAgICAgXCJcbiAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgYWN0aXZlOiBpdGVtLmlkID09PSBhY3RpdmVJdGVtPy5pZCxcbiAgICAgICAgfVwiXG4gICAgICAgIGNsYXNzPVwiZHJvcGRvd24tc3ViZ3JvdXAtdGV4dCBkcm9wZG93bi1zdWJncm91cC1hZGRpdGlvbmFsLXRleHRcIlxuICAgID48L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { AngularSvgIconModule } from 'angular-svg-icon';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { Component, Input } from '@angular/core';
|
|
4
|
-
// pipes
|
|
5
|
-
import { HighlightSearchPipe } from '../../../../../pipes/highlight-search.pipe';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/common";
|
|
8
|
-
import * as i2 from "angular-svg-icon";
|
|
9
|
-
export class CaInputDropdownLoadBrokerShipperItemComponent {
|
|
10
|
-
constructor() {
|
|
11
|
-
this.isInOption = false;
|
|
12
|
-
}
|
|
13
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadBrokerShipperItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownLoadBrokerShipperItemComponent, isStandalone: true, selector: "app-ca-input-dropdown-load-shipper-item", inputs: { option: "option", searchText: "searchText", activeItem: "activeItem", isInOption: "isInOption", label: "label" }, ngImport: i0, template: "<div class=\"load-shipper-template\">\n <div class=\"load-shipper-status-text\" [class.dropdown-option]=\"isInOption\">\n @if (option?.[label] !== 'ADD NEW' && option.logoName) {\n <svg-icon\n [src]=\"option.logoName\"\n class=\"load-shipper-status\"\n ></svg-icon>\n }\n <div\n [innerHtml]=\"\n option?.[label]\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngStyle]=\"{\n overflow: 'hidden',\n 'text-overflow': 'ellipsis',\n 'white-space': 'nowrap',\n }\"\n class=\"load-shipper-text\"\n ></div>\n\n @if (\n !['ADD NEW', 'No Results'].includes(option?.[label]!) &&\n option.loadsCount\n ) {\n <div\n [ngClass]=\"{ active: option.id === activeItem?.id }\"\n class=\"load-shipper-load-counter\"\n >\n {{ option.loadsCount }}\n </div>\n }\n </div>\n\n @if (!['ADD NEW', 'No Results'].includes(option?.[label]!)) {\n <div\n [innerHtml]=\"\n option.address\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"{ active: option.id === activeItem?.id }\"\n ></div>\n }\n</div>\n", styles: [""], 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: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "pipe", type:
|
|
15
|
-
// Pipe
|
|
16
|
-
HighlightSearchPipe, name: "caHighlight" }] }); }
|
|
17
|
-
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadBrokerShipperItemComponent, decorators: [{
|
|
19
|
-
type: Component,
|
|
20
|
-
args: [{ selector: 'app-ca-input-dropdown-load-shipper-item', standalone: true, imports: [
|
|
21
|
-
CommonModule,
|
|
22
|
-
AngularSvgIconModule,
|
|
23
|
-
// Pipe
|
|
24
|
-
HighlightSearchPipe,
|
|
25
|
-
], template: "<div class=\"load-shipper-template\">\n <div class=\"load-shipper-status-text\" [class.dropdown-option]=\"isInOption\">\n @if (option?.[label] !== 'ADD NEW' && option.logoName) {\n <svg-icon\n [src]=\"option.logoName\"\n class=\"load-shipper-status\"\n ></svg-icon>\n }\n <div\n [innerHtml]=\"\n option?.[label]\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngStyle]=\"{\n overflow: 'hidden',\n 'text-overflow': 'ellipsis',\n 'white-space': 'nowrap',\n }\"\n class=\"load-shipper-text\"\n ></div>\n\n @if (\n !['ADD NEW', 'No Results'].includes(option?.[label]!) &&\n option.loadsCount\n ) {\n <div\n [ngClass]=\"{ active: option.id === activeItem?.id }\"\n class=\"load-shipper-load-counter\"\n >\n {{ option.loadsCount }}\n </div>\n }\n </div>\n\n @if (!['ADD NEW', 'No Results'].includes(option?.[label]!)) {\n <div\n [innerHtml]=\"\n option.address\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"{ active: option.id === activeItem?.id }\"\n ></div>\n }\n</div>\n" }]
|
|
26
|
-
}], propDecorators: { option: [{
|
|
27
|
-
type: Input
|
|
28
|
-
}], searchText: [{
|
|
29
|
-
type: Input
|
|
30
|
-
}], activeItem: [{
|
|
31
|
-
type: Input
|
|
32
|
-
}], isInOption: [{
|
|
33
|
-
type: Input
|
|
34
|
-
}], label: [{
|
|
35
|
-
type: Input
|
|
36
|
-
}] } });
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItc2hpcHBlci1pdGVtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWRyb3Bkb3duL2NvbXBvbmVudHMvY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItc2hpcHBlci9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWJyb2tlci1zaGlwcGVyLWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItc2hpcHBlci1pdGVtLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWRyb3Bkb3duL2NvbXBvbmVudHMvY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItc2hpcHBlci9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWJyb2tlci1zaGlwcGVyLWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1icm9rZXItc2hpcHBlci1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVqRCxRQUFRO0FBQ1IsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sNENBQTRDLENBQUM7Ozs7QUFnQmpGLE1BQU0sT0FBTyw2Q0FBNkM7SUFiMUQ7UUFpQlcsZUFBVSxHQUFZLEtBQUssQ0FBQztLQUV0QzsrR0FOWSw2Q0FBNkM7bUdBQTdDLDZDQUE2QywrTkNyQjFELHd4REF3REEseUREMUNJLFlBQVksaU5BQ1osb0JBQW9CO2dCQUVwQixPQUFPO2dCQUNQLG1CQUFtQjs7NEZBR1YsNkNBQTZDO2tCQWJ6RCxTQUFTOytCQUNFLHlDQUF5QyxjQUd2QyxJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixvQkFBb0I7d0JBRXBCLE9BQU87d0JBQ1AsbUJBQW1CO3FCQUNwQjs4QkFHUSxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8vIHBpcGVzXG5pbXBvcnQgeyBIaWdobGlnaHRTZWFyY2hQaXBlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vcGlwZXMvaGlnaGxpZ2h0LXNlYXJjaC5waXBlJztcbi8vIG1vZGVsc1xuaW1wb3J0IHsgT3B0aW9uTW9kZWwgfSBmcm9tICcuLi8uLi8uLi9tb2RlbHMnO1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWNhLWlucHV0LWRyb3Bkb3duLWxvYWQtc2hpcHBlci1pdGVtJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLXNoaXBwZXItaXRlbS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NhLWlucHV0LWRyb3Bkb3duLWxvYWQtYnJva2VyLXNoaXBwZXItaXRlbS5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEFuZ3VsYXJTdmdJY29uTW9kdWxlLFxuXG4gICAgLy8gUGlwZVxuICAgIEhpZ2hsaWdodFNlYXJjaFBpcGUsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIENhSW5wdXREcm9wZG93bkxvYWRCcm9rZXJTaGlwcGVySXRlbUNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIG9wdGlvbiE6IE9wdGlvbk1vZGVsO1xuICBASW5wdXQoKSBzZWFyY2hUZXh0ITogc3RyaW5nO1xuICBASW5wdXQoKSBhY3RpdmVJdGVtITogT3B0aW9uTW9kZWwgfCBudWxsO1xuICBASW5wdXQoKSBpc0luT3B0aW9uOiBib29sZWFuID0gZmFsc2U7XG4gIEBJbnB1dCgpIGxhYmVsIToga2V5b2YgT3B0aW9uTW9kZWw7XG59IiwiPGRpdiBjbGFzcz1cImxvYWQtc2hpcHBlci10ZW1wbGF0ZVwiPlxuICAgIDxkaXYgY2xhc3M9XCJsb2FkLXNoaXBwZXItc3RhdHVzLXRleHRcIiBbY2xhc3MuZHJvcGRvd24tb3B0aW9uXT1cImlzSW5PcHRpb25cIj5cbiAgICAgICAgQGlmIChvcHRpb24/LltsYWJlbF0gIT09ICdBREQgTkVXJyAmJiBvcHRpb24ubG9nb05hbWUpIHtcbiAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgIFtzcmNdPVwib3B0aW9uLmxvZ29OYW1lXCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cImxvYWQtc2hpcHBlci1zdGF0dXNcIlxuICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgIH1cbiAgICAgICAgPGRpdlxuICAgICAgICAgICAgW2lubmVySHRtbF09XCJcbiAgICAgICAgICAgICAgICBvcHRpb24/LltsYWJlbF1cbiAgICAgICAgICAgICAgICAgICAgfCBjYUhpZ2hsaWdodFxuICAgICAgICAgICAgICAgICAgICAgICAgOiBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaW5kZXg6IDQ1NjMyLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6IHNlYXJjaFRleHQsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICBdXG4gICAgICAgICAgICBcIlxuICAgICAgICAgICAgW25nU3R5bGVdPVwie1xuICAgICAgICAgICAgICAgIG92ZXJmbG93OiAnaGlkZGVuJyxcbiAgICAgICAgICAgICAgICAndGV4dC1vdmVyZmxvdyc6ICdlbGxpcHNpcycsXG4gICAgICAgICAgICAgICAgJ3doaXRlLXNwYWNlJzogJ25vd3JhcCcsXG4gICAgICAgICAgICB9XCJcbiAgICAgICAgICAgIGNsYXNzPVwibG9hZC1zaGlwcGVyLXRleHRcIlxuICAgICAgICA+PC9kaXY+XG5cbiAgICAgICAgQGlmIChcbiAgICAgICAgICAgICFbJ0FERCBORVcnLCAnTm8gUmVzdWx0cyddLmluY2x1ZGVzKG9wdGlvbj8uW2xhYmVsXSEpICYmXG4gICAgICAgICAgICBvcHRpb24ubG9hZHNDb3VudFxuICAgICAgICApIHtcbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7IGFjdGl2ZTogb3B0aW9uLmlkID09PSBhY3RpdmVJdGVtPy5pZCB9XCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cImxvYWQtc2hpcHBlci1sb2FkLWNvdW50ZXJcIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIHt7IG9wdGlvbi5sb2Fkc0NvdW50IH19XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgfVxuICAgIDwvZGl2PlxuXG4gICAgQGlmICghWydBREQgTkVXJywgJ05vIFJlc3VsdHMnXS5pbmNsdWRlcyhvcHRpb24/LltsYWJlbF0hKSkge1xuICAgICAgICA8ZGl2XG4gICAgICAgICAgICBbaW5uZXJIdG1sXT1cIlxuICAgICAgICAgICAgICAgIG9wdGlvbi5hZGRyZXNzXG4gICAgICAgICAgICAgICAgICAgIHwgY2FIaWdobGlnaHRcbiAgICAgICAgICAgICAgICAgICAgICAgIDogW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGluZGV4OiA0NTYzMixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0ZXh0OiBzZWFyY2hUZXh0LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgXCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgYWN0aXZlOiBvcHRpb24uaWQgPT09IGFjdGl2ZUl0ZW0/LmlkIH1cIlxuICAgICAgICA+PC9kaXY+XG4gICAgfVxuPC9kaXY+XG4iXX0=
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { AngularSvgIconModule } from 'angular-svg-icon';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { Component, Input } from '@angular/core';
|
|
4
|
-
// components
|
|
5
|
-
import { CaProfileImageComponent } from '../../../../ca-profile-image/ca-profile-image.component';
|
|
6
|
-
// pipies
|
|
7
|
-
import { InputDropdownGetIconsPipe } from '../../../pipes';
|
|
8
|
-
import { HighlightSearchPipe } from '../../../../../pipes/highlight-search.pipe';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
import * as i1 from "@angular/common";
|
|
11
|
-
export class CaInputDropdownLoadDispatcherItemComponent {
|
|
12
|
-
constructor() {
|
|
13
|
-
this.hasNoResult = false;
|
|
14
|
-
this.isInOption = false;
|
|
15
|
-
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadDispatcherItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownLoadDispatcherItemComponent, isStandalone: true, selector: "app-ca-input-dropdown-load-dispatcher-item", inputs: { option: "option", hasNoResult: "hasNoResult", activeItem: "activeItem", searchText: "searchText", label: "label", dropdownWithImage: "dropdownWithImage", isInOption: "isInOption" }, ngImport: i0, template: "<div class=\"load-dispatcher-template\" [class.dropdown-option]=\"isInOption\">\n @if (option.logoName && !hasNoResult) {\n <img\n [alt]=\"option?.[label]\"\n [ngClass]=\"{\n active: option.id === activeItem?.id,\n }\"\n [src]=\"dropdownWithImage! | inputDropdownGetIcons: option\"\n class=\"svg-template-logo\"\n />\n }\n\n @if (!option.logoName && !hasNoResult) {\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [name]=\"option?.[label]!\"\n [size]=\"'small'\"\n >\n </app-ca-profile-image>\n </div>\n }\n <div\n [innerHtml]=\"\n option?.[label]\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n ></div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type:
|
|
18
|
-
// Component
|
|
19
|
-
CaProfileImageComponent, selector: "app-ca-profile-image", inputs: ["indx", "avatarImg", "avatarColor", "textShortName", "name", "isRound", "size", "height", "fontSize", "isHoverEffect"] }, { kind: "pipe", type:
|
|
20
|
-
// Pipe
|
|
21
|
-
HighlightSearchPipe, name: "caHighlight" }, { kind: "pipe", type: InputDropdownGetIconsPipe, name: "inputDropdownGetIcons" }] }); }
|
|
22
|
-
}
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownLoadDispatcherItemComponent, decorators: [{
|
|
24
|
-
type: Component,
|
|
25
|
-
args: [{ selector: 'app-ca-input-dropdown-load-dispatcher-item', standalone: true, imports: [
|
|
26
|
-
CommonModule,
|
|
27
|
-
AngularSvgIconModule,
|
|
28
|
-
// Component
|
|
29
|
-
CaProfileImageComponent,
|
|
30
|
-
// Pipe
|
|
31
|
-
HighlightSearchPipe,
|
|
32
|
-
InputDropdownGetIconsPipe,
|
|
33
|
-
], template: "<div class=\"load-dispatcher-template\" [class.dropdown-option]=\"isInOption\">\n @if (option.logoName && !hasNoResult) {\n <img\n [alt]=\"option?.[label]\"\n [ngClass]=\"{\n active: option.id === activeItem?.id,\n }\"\n [src]=\"dropdownWithImage! | inputDropdownGetIcons: option\"\n class=\"svg-template-logo\"\n />\n }\n\n @if (!option.logoName && !hasNoResult) {\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [name]=\"option?.[label]!\"\n [size]=\"'small'\"\n >\n </app-ca-profile-image>\n </div>\n }\n <div\n [innerHtml]=\"\n option?.[label]\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n ></div>\n</div>\n" }]
|
|
34
|
-
}], propDecorators: { option: [{
|
|
35
|
-
type: Input
|
|
36
|
-
}], hasNoResult: [{
|
|
37
|
-
type: Input
|
|
38
|
-
}], activeItem: [{
|
|
39
|
-
type: Input
|
|
40
|
-
}], searchText: [{
|
|
41
|
-
type: Input
|
|
42
|
-
}], label: [{
|
|
43
|
-
type: Input
|
|
44
|
-
}], dropdownWithImage: [{
|
|
45
|
-
type: Input
|
|
46
|
-
}], isInOption: [{
|
|
47
|
-
type: Input
|
|
48
|
-
}] } });
|
|
49
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtZHJvcGRvd24vY29tcG9uZW50cy9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWRpc3BhdGNoZXIvY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtZHJvcGRvd24vY29tcG9uZW50cy9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWRpc3BhdGNoZXIvY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDeEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWpELGFBQWE7QUFDYixPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx5REFBeUQsQ0FBQztBQVFsRyxTQUFTO0FBQ1QsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDM0QsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sNENBQTRDLENBQUM7OztBQWtCakYsTUFBTSxPQUFPLDBDQUEwQztJQWpCdkQ7UUFtQmEsZ0JBQVcsR0FBWSxLQUFLLENBQUM7UUFLN0IsZUFBVSxHQUFZLEtBQUssQ0FBQztLQUN4QzsrR0FSWSwwQ0FBMEM7bUdBQTFDLDBDQUEwQyxzU0NqQ3ZELCtoQ0FtQ0EseUREYlEsWUFBWSw0SEFDWixvQkFBb0I7Z0JBRXBCLFlBQVk7Z0JBQ1osdUJBQXVCO2dCQUV2QixPQUFPO2dCQUNQLG1CQUFtQiwrQ0FDbkIseUJBQXlCOzs0RkFHcEIsMENBQTBDO2tCQWpCdEQsU0FBUzsrQkFDSSw0Q0FBNEMsY0FHMUMsSUFBSSxXQUNQO3dCQUNMLFlBQVk7d0JBQ1osb0JBQW9CO3dCQUVwQixZQUFZO3dCQUNaLHVCQUF1Qjt3QkFFdkIsT0FBTzt3QkFDUCxtQkFBbUI7d0JBQ25CLHlCQUF5QjtxQkFDNUI7OEJBR1EsTUFBTTtzQkFBZCxLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxpQkFBaUI7c0JBQXpCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFuZ3VsYXJTdmdJY29uTW9kdWxlIH0gZnJvbSAnYW5ndWxhci1zdmctaWNvbic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vLyBjb21wb25lbnRzXG5pbXBvcnQgeyBDYVByb2ZpbGVJbWFnZUNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uL2NhLXByb2ZpbGUtaW1hZ2UvY2EtcHJvZmlsZS1pbWFnZS5jb21wb25lbnQnO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IE9wdGlvbk1vZGVsIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzJztcblxuLy8gY29uZmlnXG5pbXBvcnQgeyBJQ2FJbnB1dFdpdGhEcm9wZG93biB9IGZyb20gJy4uLy4uLy4uLy4uL2NhLWlucHV0L2NvbmZpZyc7XG5cbi8vIHBpcGllc1xuaW1wb3J0IHsgSW5wdXREcm9wZG93bkdldEljb25zUGlwZSB9IGZyb20gJy4uLy4uLy4uL3BpcGVzJztcbmltcG9ydCB7IEhpZ2hsaWdodFNlYXJjaFBpcGUgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9waXBlcy9oaWdobGlnaHQtc2VhcmNoLnBpcGUnO1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdhcHAtY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0nLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9jYS1pbnB1dC1kcm9wZG93bi1sb2FkLWRpc3BhdGNoZXItaXRlbS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vY2EtaW5wdXQtZHJvcGRvd24tbG9hZC1kaXNwYXRjaGVyLWl0ZW0uY29tcG9uZW50LnNjc3MnXSxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIGltcG9ydHM6IFtcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcblxuICAgICAgICAvLyBDb21wb25lbnRcbiAgICAgICAgQ2FQcm9maWxlSW1hZ2VDb21wb25lbnQsXG5cbiAgICAgICAgLy8gUGlwZVxuICAgICAgICBIaWdobGlnaHRTZWFyY2hQaXBlLFxuICAgICAgICBJbnB1dERyb3Bkb3duR2V0SWNvbnNQaXBlLFxuICAgIF0sXG59KVxuZXhwb3J0IGNsYXNzIENhSW5wdXREcm9wZG93bkxvYWREaXNwYXRjaGVySXRlbUNvbXBvbmVudCB7XG4gICAgQElucHV0KCkgb3B0aW9uITogT3B0aW9uTW9kZWw7XG4gICAgQElucHV0KCkgaGFzTm9SZXN1bHQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBhY3RpdmVJdGVtITogT3B0aW9uTW9kZWwgfCBudWxsO1xuICAgIEBJbnB1dCgpIHNlYXJjaFRleHQhOiBzdHJpbmc7XG4gICAgQElucHV0KCkgbGFiZWwhOiBrZXlvZiBPcHRpb25Nb2RlbDtcbiAgICBASW5wdXQoKSBkcm9wZG93bldpdGhJbWFnZT86IElDYUlucHV0V2l0aERyb3Bkb3duIHwgbnVsbDtcbiAgICBASW5wdXQoKSBpc0luT3B0aW9uOiBib29sZWFuID0gZmFsc2U7XG59XG4iLCI8ZGl2IGNsYXNzPVwibG9hZC1kaXNwYXRjaGVyLXRlbXBsYXRlXCIgW2NsYXNzLmRyb3Bkb3duLW9wdGlvbl09XCJpc0luT3B0aW9uXCI+XG4gICAgQGlmIChvcHRpb24ubG9nb05hbWUgJiYgIWhhc05vUmVzdWx0KSB7XG4gICAgICAgIDxpbWdcbiAgICAgICAgICAgIFthbHRdPVwib3B0aW9uPy5bbGFiZWxdXCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICAgICBhY3RpdmU6IG9wdGlvbi5pZCA9PT0gYWN0aXZlSXRlbT8uaWQsXG4gICAgICAgICAgICB9XCJcbiAgICAgICAgICAgIFtzcmNdPVwiZHJvcGRvd25XaXRoSW1hZ2UhIHwgaW5wdXREcm9wZG93bkdldEljb25zOiBvcHRpb25cIlxuICAgICAgICAgICAgY2xhc3M9XCJzdmctdGVtcGxhdGUtbG9nb1wiXG4gICAgICAgIC8+XG4gICAgfVxuXG4gICAgQGlmICghb3B0aW9uLmxvZ29OYW1lICYmICFoYXNOb1Jlc3VsdCkge1xuICAgICAgICA8ZGl2IGNsYXNzPVwibm8tcHJvZmlsZS1pbWFnZVwiPlxuICAgICAgICAgICAgPGFwcC1jYS1wcm9maWxlLWltYWdlXG4gICAgICAgICAgICAgICAgW2luZHhdPVwiMFwiXG4gICAgICAgICAgICAgICAgW25hbWVdPVwib3B0aW9uPy5bbGFiZWxdIVwiXG4gICAgICAgICAgICAgICAgW3NpemVdPVwiJ3NtYWxsJ1wiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICA8L2FwcC1jYS1wcm9maWxlLWltYWdlPlxuICAgICAgICA8L2Rpdj5cbiAgICB9XG4gICAgPGRpdlxuICAgICAgICBbaW5uZXJIdG1sXT1cIlxuICAgICAgICAgICAgb3B0aW9uPy5bbGFiZWxdXG4gICAgICAgICAgICAgICAgfCBjYUhpZ2hsaWdodFxuICAgICAgICAgICAgICAgICAgICA6IFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaW5kZXg6IDQ1NjMyLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdGV4dDogc2VhcmNoVGV4dCxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICBdXG4gICAgICAgIFwiXG4gICAgPjwvZGl2PlxuPC9kaXY+XG4iXX0=
|