ca-components 0.0.50 → 0.0.52
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/esm2022/lib/animations/area-left-side.animation.mjs +30 -0
- package/esm2022/lib/animations/area-right-side.animation.mjs +29 -0
- package/esm2022/lib/ca-components.module.mjs +13 -3
- package/esm2022/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.mjs +11 -4
- package/esm2022/lib/components/ca-custom-datetime-pickers/utils/constants/custom-datetime-pickers.constants.mjs +15 -1
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +44 -4
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +282 -0
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/config/ca-location-filter.config.mjs +52 -0
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/models/area-box-tab.model.mjs +2 -0
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/utils/constants/location-filter.constants.mjs +14 -0
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +112 -496
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-miles-filter.config.mjs +21 -0
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +3 -3
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/enums/money-filter-string.enum.mjs +3 -1
- package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.mjs +135 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.mjs +17 -3
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-set.pipe.mjs +27 -8
- package/esm2022/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.mjs +11 -3
- package/esm2022/lib/components/ca-filters/utils/constants/filter-config.constants.mjs +40 -0
- package/esm2022/lib/components/ca-filters/utils/helpers/filter.helper.mjs +7 -1
- package/esm2022/lib/components/ca-filters/utils/helpers/index.mjs +2 -0
- package/esm2022/lib/components/ca-filters/validators/range.validator.mjs +13 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +1 -1
- package/esm2022/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +373 -0
- package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-commands-string.enum.mjs +8 -0
- package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-layers-string.enum.mjs +6 -0
- package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-stop-types-string.enum.mjs +6 -0
- package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-type-string.enum.mjs +6 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/address-data.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/address-list.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/command-properties.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/commands-handler.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/input-address-commands-string.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/long-lat.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/models/sent-address-data.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/validators/ca-input-address.regex-validations.mjs +11 -0
- package/esm2022/lib/components/ca-input-dropdown/animations/index.mjs +2 -0
- package/esm2022/lib/components/ca-input-dropdown/animations/input-dropdown.animation.mjs +11 -0
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +877 -0
- package/esm2022/lib/components/ca-input-dropdown/models/input-dropdown-option.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-dropdown/pipes/dropdown-count.pipe.mjs +29 -0
- package/esm2022/lib/components/ca-input-dropdown/pipes/index.mjs +2 -0
- package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +12 -1
- package/esm2022/lib/components/ca-ngx-slider/ca-ngx-slider.component.mjs +87 -0
- package/esm2022/lib/components/ca-ngx-slider/enums/slider-template.enum.mjs +8 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +9 -8
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +15 -9
- package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +2 -2
- package/esm2022/lib/components/ca-rating-review/ca-rating-review.component.mjs +183 -0
- package/esm2022/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.mjs +151 -0
- package/esm2022/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.mjs +108 -0
- package/esm2022/lib/components/ca-rating-review/enums/rating-reviews-type.enums.mjs +17 -0
- package/esm2022/lib/components/ca-rating-review/models/rating-review.model.mjs +2 -0
- package/esm2022/lib/components/ca-rating-review/utils/config/rating-review-search.config.mjs +15 -0
- package/esm2022/lib/components/ca-rating-review/utils/helpers/sort-data.helper.mjs +11 -0
- package/esm2022/lib/components/ca-rating-review/utils/pipe/filter-title.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-rating-review/utils/svg-routes/ratings-reviews.routes.mjs +14 -0
- package/esm2022/lib/components/ca-tab-switch/ca-tab-switch.component.mjs +104 -0
- package/esm2022/lib/components/ca-tab-switch/models/hover-style.model.mjs +2 -0
- package/esm2022/lib/components/ca-tab-switch/utils/constants/tab-switch.constants.mjs +7 -0
- package/esm2022/lib/models/address-entity.model.mjs +2 -0
- package/esm2022/lib/models/address-list-response.model.mjs +2 -0
- package/esm2022/lib/models/autocomplete-search-layer.model.mjs +17 -0
- package/esm2022/lib/models/dashboard/custom-period-range.model.mjs +2 -0
- package/esm2022/lib/models/dashboard/dropdown-list-item.model.mjs +2 -0
- package/esm2022/lib/models/highlight-text.model.mjs +2 -0
- package/esm2022/lib/models/tabs.model.mjs +2 -0
- package/esm2022/lib/pipes/date.pipe.mjs +36 -0
- package/esm2022/lib/pipes/highlight-search.pipe.mjs +47 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +2846 -612
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/animations/area-left-side.animation.d.ts +1 -0
- package/lib/animations/area-right-side.animation.d.ts +1 -0
- package/lib/ca-components.module.d.ts +22 -20
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.d.ts +3 -3
- package/lib/components/ca-custom-datetime-pickers/utils/constants/custom-datetime-pickers.constants.d.ts +1 -0
- package/lib/components/ca-filters/ca-filter.component.d.ts +6 -1
- package/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.d.ts +75 -0
- package/lib/components/ca-filters/components/ca-location-filter/config/ca-location-filter.config.d.ts +6 -0
- package/lib/components/ca-filters/components/ca-location-filter/models/area-box-tab.model.d.ts +5 -0
- package/lib/components/ca-filters/components/ca-location-filter/utils/constants/location-filter.constants.d.ts +11 -0
- package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +23 -17
- package/lib/components/ca-filters/components/ca-money-filter/config/ca-miles-filter.config.d.ts +5 -0
- package/lib/components/ca-filters/components/ca-money-filter/enums/money-filter-string.enum.d.ts +2 -0
- package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.d.ts +39 -0
- package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.d.ts +3 -1
- package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.d.ts +3 -1
- package/lib/components/ca-filters/utils/constants/filter-config.constants.d.ts +7 -0
- package/lib/components/ca-filters/utils/helpers/filter.helper.d.ts +2 -0
- package/lib/components/ca-filters/utils/helpers/index.d.ts +1 -0
- package/lib/components/ca-filters/validators/range.validator.d.ts +2 -0
- package/lib/components/ca-input/ca-input.component.d.ts +1 -1
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +1 -1
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +1 -1
- package/lib/components/ca-input/config/ca-input.config.d.ts +1 -0
- package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +1 -1
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.d.ts +68 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-commands-string.enum.d.ts +6 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-layers-string.enum.d.ts +4 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-stop-types-string.enum.d.ts +4 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-type-string.enum.d.ts +4 -0
- package/lib/components/ca-input-address-dropdown/models/address-data.model.d.ts +10 -0
- package/lib/components/ca-input-address-dropdown/models/address-list.model.d.ts +5 -0
- package/lib/components/ca-input-address-dropdown/models/command-properties.model.d.ts +7 -0
- package/lib/components/ca-input-address-dropdown/models/commands-handler.model.d.ts +7 -0
- package/lib/components/ca-input-address-dropdown/models/input-address-commands-string.model.d.ts +1 -0
- package/lib/components/ca-input-address-dropdown/models/long-lat.model.d.ts +4 -0
- package/lib/components/ca-input-address-dropdown/models/sent-address-data.model.d.ts +6 -0
- package/lib/components/ca-input-address-dropdown/validators/ca-input-address.regex-validations.d.ts +2 -0
- package/lib/components/ca-input-dropdown/animations/index.d.ts +1 -0
- package/lib/components/ca-input-dropdown/animations/input-dropdown.animation.d.ts +1 -0
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.d.ts +89 -0
- package/lib/components/ca-input-dropdown/models/input-dropdown-option.model.d.ts +28 -0
- package/lib/components/ca-input-dropdown/pipes/dropdown-count.pipe.d.ts +7 -0
- package/lib/components/ca-input-dropdown/pipes/index.d.ts +1 -0
- package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +10 -0
- package/lib/components/ca-ngx-slider/ca-ngx-slider.component.d.ts +24 -0
- package/lib/components/ca-ngx-slider/enums/slider-template.enum.d.ts +6 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +4 -5
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +2 -4
- package/lib/components/ca-rating-review/ca-rating-review.component.d.ts +49 -0
- package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.d.ts +37 -0
- package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.d.ts +32 -0
- package/lib/components/ca-rating-review/enums/rating-reviews-type.enums.d.ts +14 -0
- package/lib/components/ca-rating-review/models/rating-review.model.d.ts +12 -0
- package/lib/components/ca-rating-review/utils/config/rating-review-search.config.d.ts +4 -0
- package/lib/components/ca-rating-review/utils/helpers/sort-data.helper.d.ts +4 -0
- package/lib/components/ca-rating-review/utils/pipe/filter-title.pipe.d.ts +8 -0
- package/lib/components/ca-rating-review/utils/svg-routes/ratings-reviews.routes.d.ts +13 -0
- package/lib/components/ca-tab-switch/ca-tab-switch.component.d.ts +37 -0
- package/lib/components/ca-tab-switch/models/hover-style.model.d.ts +4 -0
- package/lib/components/ca-tab-switch/utils/constants/tab-switch.constants.d.ts +6 -0
- package/lib/models/address-entity.model.d.ts +12 -0
- package/lib/models/address-list-response.model.d.ts +3 -0
- package/lib/models/autocomplete-search-layer.model.d.ts +17 -0
- package/lib/models/dashboard/custom-period-range.model.d.ts +5 -0
- package/lib/models/dashboard/dropdown-list-item.model.d.ts +4 -0
- package/lib/models/highlight-text.model.d.ts +4 -0
- package/lib/models/tabs.model.d.ts +6 -0
- package/lib/pipes/date.pipe.d.ts +7 -0
- package/lib/pipes/highlight-search.pipe.d.ts +11 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/assets/ca-components/svg/common/ic_address.svg +6 -0
- package/src/assets/ca-components/svg/input/ic_address.svg +6 -0
- package/src/assets/ca-components/svg/input/ic_miles.svg +3 -0
- package/src/assets/ca-components/svg/rating-reviews/colaps-button.svg +3 -0
- package/src/assets/ca-components/svg/rating-reviews/dislikes.svg +3 -0
- package/src/assets/ca-components/svg/rating-reviews/likes.svg +3 -0
- package/src/assets/ca-components/svg/rating-reviews/pen.svg +4 -0
- package/src/assets/ca-components/svg/rating-reviews/reviews.svg +3 -0
- package/src/assets/ca-components/svg/rating-reviews/sort_icon.svg +3 -0
- package/src/assets/ca-components/svg/rating-reviews/trash.svg +4 -0
- package/src/assets/ca-components/svg/search-multiple-states/new-search-icon.svg +1 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export class CaLocationFilterConfig {
|
|
2
|
+
static originControl() {
|
|
3
|
+
return {
|
|
4
|
+
name: 'Address',
|
|
5
|
+
type: 'text',
|
|
6
|
+
label: 'Origin',
|
|
7
|
+
placeholderIcon: 'address',
|
|
8
|
+
placeholder: 'Origin',
|
|
9
|
+
textTransform: 'capitalize',
|
|
10
|
+
dropdownWidthClass: 'w-col-288',
|
|
11
|
+
customClass: 'location-area-filter',
|
|
12
|
+
minLength: 6,
|
|
13
|
+
maxLength: 256,
|
|
14
|
+
placeholderInsteadOfLabel: true,
|
|
15
|
+
isDisabled: false,
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
static destinationControl() {
|
|
19
|
+
return {
|
|
20
|
+
name: 'Address',
|
|
21
|
+
type: 'text',
|
|
22
|
+
label: 'Destination',
|
|
23
|
+
placeholderIcon: 'address',
|
|
24
|
+
placeholder: 'Destination',
|
|
25
|
+
textTransform: 'capitalize',
|
|
26
|
+
dropdownWidthClass: 'w-col-288',
|
|
27
|
+
customClass: 'location-area-filter',
|
|
28
|
+
minLength: 6,
|
|
29
|
+
maxLength: 256,
|
|
30
|
+
placeholderInsteadOfLabel: true,
|
|
31
|
+
isDisabled: false,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
static addressControl() {
|
|
35
|
+
return {
|
|
36
|
+
name: 'Address',
|
|
37
|
+
type: 'text',
|
|
38
|
+
label: 'Location',
|
|
39
|
+
placeholderIcon: 'address',
|
|
40
|
+
placeholder: 'Location',
|
|
41
|
+
textTransform: 'capitalize',
|
|
42
|
+
dropdownWidthClass: 'w-col-288',
|
|
43
|
+
customClass: 'location-area-filter',
|
|
44
|
+
blueInput: true,
|
|
45
|
+
minLength: 6,
|
|
46
|
+
maxLength: 256,
|
|
47
|
+
placeholderInsteadOfLabel: true,
|
|
48
|
+
isDisabled: false,
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtbG9jYXRpb24tZmlsdGVyLmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWZpbHRlcnMvY29tcG9uZW50cy9jYS1sb2NhdGlvbi1maWx0ZXIvY29uZmlnL2NhLWxvY2F0aW9uLWZpbHRlci5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLHNCQUFzQjtJQUNqQyxNQUFNLENBQUMsYUFBYTtRQUNsQixPQUFPO1lBQ0wsSUFBSSxFQUFFLFNBQVM7WUFDZixJQUFJLEVBQUUsTUFBTTtZQUNaLEtBQUssRUFBRSxRQUFRO1lBQ2YsZUFBZSxFQUFFLFNBQVM7WUFDMUIsV0FBVyxFQUFFLFFBQVE7WUFDckIsYUFBYSxFQUFFLFlBQVk7WUFDM0Isa0JBQWtCLEVBQUUsV0FBVztZQUMvQixXQUFXLEVBQUUsc0JBQXNCO1lBQ25DLFNBQVMsRUFBRSxDQUFDO1lBQ1osU0FBUyxFQUFFLEdBQUc7WUFDZCx5QkFBeUIsRUFBRSxJQUFJO1lBQy9CLFVBQVUsRUFBRSxLQUFLO1NBQ2xCLENBQUM7SUFDSixDQUFDO0lBRUQsTUFBTSxDQUFDLGtCQUFrQjtRQUN2QixPQUFPO1lBQ0wsSUFBSSxFQUFFLFNBQVM7WUFDZixJQUFJLEVBQUUsTUFBTTtZQUNaLEtBQUssRUFBRSxhQUFhO1lBQ3BCLGVBQWUsRUFBRSxTQUFTO1lBQzFCLFdBQVcsRUFBRSxhQUFhO1lBQzFCLGFBQWEsRUFBRSxZQUFZO1lBQzNCLGtCQUFrQixFQUFFLFdBQVc7WUFDL0IsV0FBVyxFQUFFLHNCQUFzQjtZQUNuQyxTQUFTLEVBQUUsQ0FBQztZQUNaLFNBQVMsRUFBRSxHQUFHO1lBQ2QseUJBQXlCLEVBQUUsSUFBSTtZQUMvQixVQUFVLEVBQUUsS0FBSztTQUNsQixDQUFDO0lBQ0osQ0FBQztJQUVELE1BQU0sQ0FBQyxjQUFjO1FBQ25CLE9BQU87WUFDTCxJQUFJLEVBQUUsU0FBUztZQUNmLElBQUksRUFBRSxNQUFNO1lBQ1osS0FBSyxFQUFFLFVBQVU7WUFDakIsZUFBZSxFQUFFLFNBQVM7WUFDMUIsV0FBVyxFQUFFLFVBQVU7WUFDdkIsYUFBYSxFQUFFLFlBQVk7WUFDM0Isa0JBQWtCLEVBQUUsV0FBVztZQUMvQixXQUFXLEVBQUUsc0JBQXNCO1lBQ25DLFNBQVMsRUFBRSxJQUFJO1lBQ2YsU0FBUyxFQUFFLENBQUM7WUFDWixTQUFTLEVBQUUsR0FBRztZQUNkLHlCQUF5QixFQUFFLElBQUk7WUFDL0IsVUFBVSxFQUFFLEtBQUs7U0FDbEIsQ0FBQztJQUNKLENBQUM7Q0FDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElDYUlucHV0IH0gZnJvbSAnLi4vLi4vLi4vLi4vY2EtaW5wdXQvY29uZmlnL2NhLWlucHV0LmNvbmZpZyc7XG5cbmV4cG9ydCBjbGFzcyBDYUxvY2F0aW9uRmlsdGVyQ29uZmlnIHtcbiAgc3RhdGljIG9yaWdpbkNvbnRyb2woKTogSUNhSW5wdXQge1xuICAgIHJldHVybiB7XG4gICAgICBuYW1lOiAnQWRkcmVzcycsXG4gICAgICB0eXBlOiAndGV4dCcsXG4gICAgICBsYWJlbDogJ09yaWdpbicsXG4gICAgICBwbGFjZWhvbGRlckljb246ICdhZGRyZXNzJyxcbiAgICAgIHBsYWNlaG9sZGVyOiAnT3JpZ2luJyxcbiAgICAgIHRleHRUcmFuc2Zvcm06ICdjYXBpdGFsaXplJyxcbiAgICAgIGRyb3Bkb3duV2lkdGhDbGFzczogJ3ctY29sLTI4OCcsXG4gICAgICBjdXN0b21DbGFzczogJ2xvY2F0aW9uLWFyZWEtZmlsdGVyJyxcbiAgICAgIG1pbkxlbmd0aDogNixcbiAgICAgIG1heExlbmd0aDogMjU2LFxuICAgICAgcGxhY2Vob2xkZXJJbnN0ZWFkT2ZMYWJlbDogdHJ1ZSxcbiAgICAgIGlzRGlzYWJsZWQ6IGZhbHNlLFxuICAgIH07XG4gIH1cblxuICBzdGF0aWMgZGVzdGluYXRpb25Db250cm9sKCk6IElDYUlucHV0IHtcbiAgICByZXR1cm4ge1xuICAgICAgbmFtZTogJ0FkZHJlc3MnLFxuICAgICAgdHlwZTogJ3RleHQnLFxuICAgICAgbGFiZWw6ICdEZXN0aW5hdGlvbicsXG4gICAgICBwbGFjZWhvbGRlckljb246ICdhZGRyZXNzJyxcbiAgICAgIHBsYWNlaG9sZGVyOiAnRGVzdGluYXRpb24nLFxuICAgICAgdGV4dFRyYW5zZm9ybTogJ2NhcGl0YWxpemUnLFxuICAgICAgZHJvcGRvd25XaWR0aENsYXNzOiAndy1jb2wtMjg4JyxcbiAgICAgIGN1c3RvbUNsYXNzOiAnbG9jYXRpb24tYXJlYS1maWx0ZXInLFxuICAgICAgbWluTGVuZ3RoOiA2LFxuICAgICAgbWF4TGVuZ3RoOiAyNTYsXG4gICAgICBwbGFjZWhvbGRlckluc3RlYWRPZkxhYmVsOiB0cnVlLFxuICAgICAgaXNEaXNhYmxlZDogZmFsc2UsXG4gICAgfTtcbiAgfVxuXG4gIHN0YXRpYyBhZGRyZXNzQ29udHJvbCgpOiBJQ2FJbnB1dCB7XG4gICAgcmV0dXJuIHtcbiAgICAgIG5hbWU6ICdBZGRyZXNzJyxcbiAgICAgIHR5cGU6ICd0ZXh0JyxcbiAgICAgIGxhYmVsOiAnTG9jYXRpb24nLFxuICAgICAgcGxhY2Vob2xkZXJJY29uOiAnYWRkcmVzcycsXG4gICAgICBwbGFjZWhvbGRlcjogJ0xvY2F0aW9uJyxcbiAgICAgIHRleHRUcmFuc2Zvcm06ICdjYXBpdGFsaXplJyxcbiAgICAgIGRyb3Bkb3duV2lkdGhDbGFzczogJ3ctY29sLTI4OCcsXG4gICAgICBjdXN0b21DbGFzczogJ2xvY2F0aW9uLWFyZWEtZmlsdGVyJyxcbiAgICAgIGJsdWVJbnB1dDogdHJ1ZSxcbiAgICAgIG1pbkxlbmd0aDogNixcbiAgICAgIG1heExlbmd0aDogMjU2LFxuICAgICAgcGxhY2Vob2xkZXJJbnN0ZWFkT2ZMYWJlbDogdHJ1ZSxcbiAgICAgIGlzRGlzYWJsZWQ6IGZhbHNlLFxuICAgIH07XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJlYS1ib3gtdGFiLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtZmlsdGVycy9jb21wb25lbnRzL2NhLWxvY2F0aW9uLWZpbHRlci9tb2RlbHMvYXJlYS1ib3gtdGFiLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEFyZWFCb3hUYWIge1xuICBpZDogbnVtYmVyO1xuICBuYW1lOiBzdHJpbmc7XG4gIGNoZWNrZWQ/OiBib29sZWFuO1xufVxuIl19
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export class LocationFilterConstants {
|
|
2
|
+
static { this.AREA_BOX_TAB = [
|
|
3
|
+
{
|
|
4
|
+
id: 1,
|
|
5
|
+
name: 'Location',
|
|
6
|
+
checked: true,
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
id: 2,
|
|
10
|
+
name: 'Route',
|
|
11
|
+
},
|
|
12
|
+
]; }
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYXRpb24tZmlsdGVyLmNvbnN0YW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWZpbHRlcnMvY29tcG9uZW50cy9jYS1sb2NhdGlvbi1maWx0ZXIvdXRpbHMvY29uc3RhbnRzL2xvY2F0aW9uLWZpbHRlci5jb25zdGFudHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLHVCQUF1QjthQUMzQixpQkFBWSxHQUFHO1FBQ3BCO1lBQ0UsRUFBRSxFQUFFLENBQUM7WUFDTCxJQUFJLEVBQUUsVUFBVTtZQUNoQixPQUFPLEVBQUUsSUFBSTtTQUNkO1FBQ0Q7WUFDRSxFQUFFLEVBQUUsQ0FBQztZQUNMLElBQUksRUFBRSxPQUFPO1NBQ2Q7S0FDRixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIExvY2F0aW9uRmlsdGVyQ29uc3RhbnRzIHtcbiAgc3RhdGljIEFSRUFfQk9YX1RBQiA9IFtcbiAgICB7XG4gICAgICBpZDogMSxcbiAgICAgIG5hbWU6ICdMb2NhdGlvbicsXG4gICAgICBjaGVja2VkOiB0cnVlLFxuICAgIH0sXG4gICAge1xuICAgICAgaWQ6IDIsXG4gICAgICBuYW1lOiAnUm91dGUnLFxuICAgIH0sXG4gIF07XG59XG4iXX0=
|