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
|
@@ -40,7 +40,7 @@ export class CaProfileImageComponent {
|
|
|
40
40
|
this.isHoverEffect = true;
|
|
41
41
|
}
|
|
42
42
|
ngOnChanges(changes) {
|
|
43
|
-
if (changes['indx']
|
|
43
|
+
if (changes['indx']?.currentValue) {
|
|
44
44
|
this.getProfileImageColors();
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -76,4 +76,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
76
76
|
}], isHoverEffect: [{
|
|
77
77
|
type: Input
|
|
78
78
|
}] } });
|
|
79
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
79
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtcHJvZmlsZS1pbWFnZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1wcm9maWxlLWltYWdlL2NhLXByb2ZpbGUtaW1hZ2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtcHJvZmlsZS1pbWFnZS9jYS1wcm9maWxlLWltYWdlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssR0FJTixNQUFNLGVBQWUsQ0FBQzs7O0FBU3ZCLE1BQU0sT0FBTyx1QkFBdUI7SUEyQ2xDO1FBeENTLGdCQUFXLEdBQTRDO1lBQzlELFVBQVUsRUFBRSxTQUFTO1lBQ3JCLEtBQUssRUFBRSxXQUFXO1NBQ25CLENBQUM7UUFFTSxlQUFVLEdBQWE7WUFDN0IsV0FBVztZQUNYLFdBQVc7WUFDWCxXQUFXO1lBQ1gsV0FBVztZQUNYLFdBQVc7WUFDWCxXQUFXO1lBQ1gsV0FBVztZQUNYLFdBQVc7WUFDWCxXQUFXO1lBQ1gsV0FBVztZQUNYLFdBQVc7WUFDWCxXQUFXO1NBQ1osQ0FBQztRQUVNLHFCQUFnQixHQUFhO1lBQ25DLFNBQVM7WUFDVCxTQUFTO1lBQ1QsU0FBUztZQUNULFNBQVM7WUFDVCxTQUFTO1lBQ1QsU0FBUztZQUNULFNBQVM7WUFDVCxTQUFTO1lBQ1QsU0FBUztZQUNULFNBQVM7WUFDVCxTQUFTO1lBQ1QsU0FBUztTQUNWLENBQUM7UUFHTyxZQUFPLEdBQVksSUFBSSxDQUFDO1FBR3hCLGtCQUFhLEdBQVksSUFBSSxDQUFDO0lBQ3hCLENBQUM7SUFFaEIsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLElBQUksT0FBTyxDQUFDLE1BQU0sQ0FBQyxFQUFFLFlBQVksRUFBRTtZQUNqQyxJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQztTQUM5QjtJQUNILENBQUM7SUFFTSxxQkFBcUI7UUFDMUIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUN2RCxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFFbEUsSUFBSSxJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsRUFBRTtZQUNsQixNQUFNLFdBQVcsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsR0FBRyxFQUFFLENBQUMsQ0FBQztZQUVuRCxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDekQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxZQUFZLENBQUMsR0FBRyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsV0FBVyxDQUFDLENBQUM7U0FDckU7SUFDSCxDQUFDOytHQTdEVSx1QkFBdUI7bUdBQXZCLHVCQUF1QiwyU0NoQnBDLHVrQ0EyQ0EsNnN4TkQ3QlksWUFBWTs7NEZBRVgsdUJBQXVCO2tCQVBuQyxTQUFTOytCQUNFLHNCQUFzQixjQUdwQixJQUFJLFdBQ1AsQ0FBQyxZQUFZLENBQUM7MEVBR2QsSUFBSTtzQkFBWixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFtQ0csYUFBYTtzQkFBckIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICBDb21wb25lbnQsXG4gIElucHV0LFxuICBPbkNoYW5nZXMsXG4gIE9uSW5pdCxcbiAgU2ltcGxlQ2hhbmdlcyxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1jYS1wcm9maWxlLWltYWdlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NhLXByb2ZpbGUtaW1hZ2UuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1wcm9maWxlLWltYWdlLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBDYVByb2ZpbGVJbWFnZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIGluZHghOiBudW1iZXI7XG4gIEBJbnB1dCgpIGF2YXRhckltZzogc3RyaW5nIHwgdW5kZWZpbmVkO1xuICBASW5wdXQoKSBhdmF0YXJDb2xvcjogeyBiYWNrZ3JvdW5kPzogc3RyaW5nOyBjb2xvcj86IHN0cmluZyB9ID0ge1xuICAgIGJhY2tncm91bmQ6ICcjREZDMkY5JyxcbiAgICBjb2xvcjogJyM5RTQ3RUM2NicsXG4gIH07XG5cbiAgcHJpdmF0ZSBpbWFnZUNvbG9yOiBzdHJpbmdbXSA9IFtcbiAgICAnIzI3MjRENjY2JyxcbiAgICAnIzFBQjVFNjY2JyxcbiAgICAnIzI1OUY5NDY2JyxcbiAgICAnIzUwQUMyNTY2JyxcbiAgICAnI0RGM0MzQzY2JyxcbiAgICAnI0ZGNzA0MzY2JyxcbiAgICAnIzlFNDdFQzY2JyxcbiAgICAnI0RGM0Q4NTY2JyxcbiAgICAnI0Y4OUIyRTY2JyxcbiAgICAnI0NGOTYxRDY2JyxcbiAgICAnIzg2NUUzQTY2JyxcbiAgICAnIzkxOTE5MTY2JyxcbiAgXTtcblxuICBwcml2YXRlIGJhY2tncm91bmRDb2xvcnM6IHN0cmluZ1tdID0gW1xuICAgICcjQjdCNkYxJyxcbiAgICAnI0IyRTZGNycsXG4gICAgJyNCNkRGREInLFxuICAgICcjQzVFM0I2JyxcbiAgICAnI0Y0QkVCRScsXG4gICAgJyNGRkNGQzAnLFxuICAgICcjREZDMkY5JyxcbiAgICAnI0Y0QkVENicsXG4gICAgJyNGRERFQjknLFxuICAgICcjRUZEQ0I0JyxcbiAgICAnI0Q2QzlCRCcsXG4gICAgJyNEQURBREEnLFxuICBdO1xuXG4gIEBJbnB1dCgpIHRleHRTaG9ydE5hbWUhOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGlzUm91bmQ6IGJvb2xlYW4gPSB0cnVlO1xuICBASW5wdXQoKSBzaXplITogc3RyaW5nIHwgbnVtYmVyO1xuICBASW5wdXQoKSBmb250U2l6ZSE6IHN0cmluZyB8IG51bWJlcjtcbiAgQElucHV0KCkgaXNIb3ZlckVmZmVjdDogYm9vbGVhbiA9IHRydWU7XG4gIGNvbnN0cnVjdG9yKCkge31cblxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gICAgaWYgKGNoYW5nZXNbJ2luZHgnXT8uY3VycmVudFZhbHVlKSB7XG4gICAgICB0aGlzLmdldFByb2ZpbGVJbWFnZUNvbG9ycygpO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBnZXRQcm9maWxlSW1hZ2VDb2xvcnMoKTogdm9pZCB7XG4gICAgdGhpcy5hdmF0YXJDb2xvclsnY29sb3InXSA9IHRoaXMuaW1hZ2VDb2xvclt0aGlzLmluZHhdO1xuICAgIHRoaXMuYXZhdGFyQ29sb3JbJ2JhY2tncm91bmQnXSA9IHRoaXMuYmFja2dyb3VuZENvbG9yc1t0aGlzLmluZHhdO1xuXG4gICAgaWYgKHRoaXMuaW5keCA+IDExKSB7XG4gICAgICBjb25zdCByYW5kb21JbmRleCA9IE1hdGguZmxvb3IoTWF0aC5yYW5kb20oKSAqIDEyKTtcblxuICAgICAgdGhpcy5hdmF0YXJDb2xvclsnY29sb3InXSA9IHRoaXMuaW1hZ2VDb2xvcltyYW5kb21JbmRleF07XG4gICAgICB0aGlzLmF2YXRhckNvbG9yWydiYWNrZ3JvdW5kJ10gPSB0aGlzLmJhY2tncm91bmRDb2xvcnNbcmFuZG9tSW5kZXhdO1xuICAgIH1cbiAgfVxufVxuIiwiPGRpdlxuICBjbGFzcz1cImF2YXRhci1jb250YWluZXIgZC1mbGV4XCJcbiAgW25nQ2xhc3NdPVwie1xuICAgICdhdmF0YXItaG92ZXInOiBpc0hvdmVyRWZmZWN0LFxuICB9XCJcbj5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImF2YXRhckltZzsgZWxzZSBub0ltYWdlXCI+XG4gICAgPGRpdlxuICAgICAgY2xhc3M9XCJhdmF0YXItaW1nXCJcbiAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgJ3JvdW5kLWF2YXRhcic6IGlzUm91bmQsXG4gICAgICAgICdyZWd1bGFyLWF2YXRhcic6ICFpc1JvdW5kLFxuICAgICAgfVwiXG4gICAgICBbbmdTdHlsZV09XCJ7XG4gICAgICAgIHdpZHRoOiBzaXplICsgJ3B4JyxcbiAgICAgICAgaGVpZ2h0OiBzaXplICsgJ3B4JyxcbiAgICAgIH1cIlxuICAgID5cbiAgICAgIDxpbWcgY2xhc3M9XCJkLWZsZXhcIiBhbHQ9XCJhdmF0YXJcIiBbc3JjXT1cImF2YXRhckltZ1wiIC8+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDxuZy10ZW1wbGF0ZSAjbm9JbWFnZT5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImF2YXRhci1uby1pbWcgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgJ3JvdW5kLWF2YXRhcic6IGlzUm91bmQsXG4gICAgICAgICdyZWd1bGFyLWF2YXRhcic6ICFpc1JvdW5kLFxuICAgICAgfVwiXG4gICAgICBbbmdTdHlsZV09XCJ7XG4gICAgICAgICdiYWNrZ3JvdW5kLWNvbG9yJzogYXZhdGFyQ29sb3IuYmFja2dyb3VuZFxuICAgICAgICAgID8gYXZhdGFyQ29sb3IuYmFja2dyb3VuZFxuICAgICAgICAgIDogJ3Vuc2V0JyxcbiAgICAgICAgY29sb3I6IGF2YXRhckNvbG9yLmNvbG9yID8gYXZhdGFyQ29sb3IuY29sb3IgOiAndW5zZXQnLFxuICAgICAgICB3aWR0aDogc2l6ZSArICdweCcsXG4gICAgICAgIGhlaWdodDogc2l6ZSArICdweCcsXG4gICAgICAgICdmb250LXNpemUnOiBmb250U2l6ZSArICdweCcsXG4gICAgICB9XCJcbiAgICA+XG4gICAgICB7eyB0ZXh0U2hvcnROYW1lIH19XG4gICAgPC9kaXY+XG4gIDwvbmctdGVtcGxhdGU+XG48L2Rpdj5cbiJdfQ==
|