ca-components 0.0.3 → 0.0.5
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/in-out.animation.mjs +73 -0
- package/esm2022/lib/animations/state-header.animation.mjs +17 -0
- package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +1 -1
- package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +14 -14
- package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +1 -1
- package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +6 -6
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +119 -55
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +127 -111
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +242 -0
- package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +35 -34
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +26 -25
- package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +178 -0
- package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +178 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +247 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.mjs +15 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.mjs +39 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-set.pipe.mjs +47 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-trailer-color.pipe.mjs +45 -0
- package/esm2022/lib/components/ca-filters/utils/constants/directive.constants.mjs +548 -0
- package/esm2022/lib/components/ca-filters/utils/constants/filter-icons-routes.constants.mjs +7 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +59 -45
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.mjs +45 -0
- package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/enums/input-commands-action.enum.mjs +11 -0
- package/esm2022/lib/components/ca-input/enums/input-commands-type.enum.mjs +7 -0
- package/esm2022/lib/components/ca-input/models/command-click.model.mjs +2 -0
- package/esm2022/lib/components/ca-input/models/commands-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +225 -7
- package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +4 -2
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +6 -5
- package/esm2022/lib/components/ca-map/models/map.model.mjs +1 -1
- package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +11 -13
- package/esm2022/lib/components/ca-note/ca-note.component.mjs +34 -32
- package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +17 -17
- package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +25 -25
- package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +12 -12
- package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +7 -7
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +7 -7
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +18 -17
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +24 -19
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +21 -18
- package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +6 -3
- package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +3 -3
- package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +31 -31
- package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +20 -20
- package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +1 -1
- package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +2 -2
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +24 -20
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +1 -1
- package/esm2022/lib/enums/trailer-name-string.enum.mjs +18 -0
- package/esm2022/lib/models/card-models/card-table-data.model.mjs +1 -1
- package/esm2022/lib/models/table-models/all-table-animation.model.mjs +2 -0
- package/esm2022/lib/models/trailer-minimal-response.mjs +1 -1
- package/esm2022/lib/models/truck-minimal-response.mjs +1 -1
- package/esm2022/lib/models/user-selected.model.mjs +2 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +2 -2
- package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +4 -4
- package/esm2022/lib/services/truckassist-table.service.mjs +3 -1
- package/fesm2022/ca-components.mjs +6032 -527
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/animations/state-header.animation.d.ts +1 -0
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +2 -2
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +7 -7
- package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +5 -5
- package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +2 -2
- package/lib/components/ca-filters/ca-filter.component.d.ts +20 -14
- package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +10 -10
- package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +1 -1
- package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.d.ts +52 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +9 -9
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +6 -6
- package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.d.ts +35 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.d.ts +35 -0
- package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.d.ts +46 -0
- package/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.d.ts +4 -0
- package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.d.ts +14 -0
- package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.d.ts +14 -0
- package/lib/components/ca-filters/pipes/filter-trailer-color.pipe.d.ts +7 -0
- package/lib/components/ca-filters/utils/constants/directive.constants.d.ts +8 -0
- package/lib/components/ca-filters/utils/constants/filter-icons-routes.constants.d.ts +6 -0
- package/lib/components/ca-input/ca-input.component.d.ts +16 -8
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +3 -3
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.d.ts +14 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +2 -2
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +2 -2
- package/lib/components/ca-input/enums/input-commands-action.enum.d.ts +9 -0
- package/lib/components/ca-input/enums/input-commands-type.enum.d.ts +5 -0
- package/lib/components/ca-input/models/command-click.model.d.ts +5 -0
- package/lib/components/ca-input/models/commands-event.model.d.ts +5 -0
- package/lib/components/ca-input/pipes/input-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +2 -2
- package/lib/components/ca-input/pipes/label-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +1 -1
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +31 -5
- package/lib/components/ca-input/utils/input-svg-routes.d.ts +2 -0
- package/lib/components/ca-map/ca-map.component.d.ts +1 -1
- package/lib/components/ca-map/models/map.model.d.ts +2 -2
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +4 -29
- package/lib/components/ca-note/ca-note.component.d.ts +5 -5
- package/lib/components/ca-note-container/ca-note-container.component.d.ts +4 -4
- package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +2 -2
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +3 -3
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +5 -5
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +4 -4
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +6 -6
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +5 -5
- package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +3 -3
- package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +2 -2
- package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +3 -3
- package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +3 -3
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +3 -3
- package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +1 -1
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +2 -2
- package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +1 -1
- package/lib/enums/trailer-name-string.enum.d.ts +16 -0
- package/lib/models/card-models/card-table-data.model.d.ts +3 -3
- package/lib/models/table-models/all-table-animation.model.d.ts +10 -0
- package/lib/models/trailer-minimal-response.d.ts +1 -1
- package/lib/models/truck-minimal-response.d.ts +2 -2
- package/lib/models/user-selected.model.d.ts +8 -0
- package/lib/pipes/thousand-to-short-format-pipe.d.ts +1 -1
- package/lib/services/truckassist-table.service.d.ts +2 -0
- package/package.json +1 -1
- package/src/assets/global_style/styles.scss +1 -0
- package/src/assets/scss/input-dropdown.scss +1876 -0
- package/src/assets/scss/popover.scss +89 -89
- package/src/assets/svg/common/trailers/ic_carhauler_stinger.svg +6 -0
- package/src/assets/svg/common/trailers/ic_trailer_carhauler.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_chassis.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_conestoga.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_container.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_dryvan.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_dumper.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_flatbed.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_low-boy.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_reefer.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_side-kit.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_step-deck.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_tanker.svg +6 -0
- package/src/assets/svg/common/trailers/ic_trailer_tanker_pneumatic.svg +6 -0
- package/src/assets/svg/common/trucks/ic_truck_box-truck.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_bus.svg +7 -0
- package/src/assets/svg/common/trucks/ic_truck_car-hauler.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_cargo-van.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_semi-truck.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_semi-wSleeper.svg +9 -0
- package/src/assets/svg/common/trucks/ic_truck_spotter.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_tow-truck.svg +1 -0
- package/src/assets/svg/input/ic_dollar.svg +6 -0
- package/src/assets/svg/input/ic_pm_decrement.svg +4 -0
- package/src/assets/svg/input/ic_pm_increment.svg +4 -0
- package/esm2022/lib/animation/in-out.animation.mjs +0 -73
- /package/lib/{animation → animations}/in-out.animation.d.ts +0 -0
- /package/src/assets/svg/{common → input}/ic_search.svg +0 -0
|
@@ -72,4 +72,4 @@ export class CaMoneyFilterConfig {
|
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
75
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtbW9uZXktZmlsdGVyLmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWZpbHRlcnMvY29tcG9uZW50cy9jYS1tb25leS1maWx0ZXIvY29uZmlnL2NhLW1vbmV5LWZpbHRlci5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLG1CQUFtQjtJQUM1QixNQUFNLENBQUMsaUJBQWlCO1FBQ3BCLE9BQU87WUFDSCxJQUFJLEVBQUUsWUFBWTtZQUNsQixJQUFJLEVBQUUsUUFBUTtZQUNkLEtBQUssRUFBRSxNQUFNO1lBQ2IsZUFBZSxFQUFFLFFBQVE7WUFDekIsVUFBVSxFQUFFLEtBQUs7U0FDcEIsQ0FBQztJQUNOLENBQUM7SUFFRCxNQUFNLENBQUMsZUFBZTtRQUNsQixPQUFPO1lBQ0gsSUFBSSxFQUFFLFVBQVU7WUFDaEIsSUFBSSxFQUFFLFFBQVE7WUFDZCxLQUFLLEVBQUUsSUFBSTtZQUNYLGVBQWUsRUFBRSxRQUFRO1lBQ3pCLFVBQVUsRUFBRSxLQUFLO1NBQ3BCLENBQUM7SUFDTixDQUFDO0lBRUQsTUFBTSxDQUFDLHFCQUFxQjtRQUN4QixPQUFPO1lBQ0gsSUFBSSxFQUFFLG9CQUFvQjtZQUMxQixJQUFJLEVBQUUsUUFBUTtZQUNkLEtBQUssRUFBRSxNQUFNO1lBQ2IsZUFBZSxFQUFFLFFBQVE7WUFDekIsVUFBVSxFQUFFLEtBQUs7U0FDcEIsQ0FBQztJQUNOLENBQUM7SUFFRCxNQUFNLENBQUMsbUJBQW1CO1FBQ3RCLE9BQU87WUFDSCxJQUFJLEVBQUUsa0JBQWtCO1lBQ3hCLElBQUksRUFBRSxRQUFRO1lBQ2QsS0FBSyxFQUFFLElBQUk7WUFDWCxlQUFlLEVBQUUsUUFBUTtZQUN6QixVQUFVLEVBQUUsS0FBSztTQUNwQixDQUFDO0lBQ04sQ0FBQztJQUVELE1BQU0sQ0FBQyxzQkFBc0I7UUFDekIsT0FBTztZQUNILElBQUksRUFBRSxxQkFBcUI7WUFDM0IsSUFBSSxFQUFFLFFBQVE7WUFDZCxLQUFLLEVBQUUsTUFBTTtZQUNiLGVBQWUsRUFBRSxRQUFRO1lBQ3pCLFVBQVUsRUFBRSxLQUFLO1NBQ3BCLENBQUM7SUFDTixDQUFDO0lBRUQsTUFBTSxDQUFDLG9CQUFvQjtRQUN2QixPQUFPO1lBQ0gsSUFBSSxFQUFFLG1CQUFtQjtZQUN6QixJQUFJLEVBQUUsUUFBUTtZQUNkLEtBQUssRUFBRSxJQUFJO1lBQ1gsZUFBZSxFQUFFLFFBQVE7WUFDekIsVUFBVSxFQUFFLEtBQUs7U0FDcEIsQ0FBQztJQUNOLENBQUM7SUFFRCxNQUFNLENBQUMscUJBQXFCO1FBQ3hCLE9BQU87WUFDSCxJQUFJLEVBQUUsb0JBQW9CO1lBQzFCLElBQUksRUFBRSxRQUFRO1lBQ2QsS0FBSyxFQUFFLE1BQU07WUFDYixlQUFlLEVBQUUsUUFBUTtZQUN6QixVQUFVLEVBQUUsS0FBSztTQUNwQixDQUFDO0lBQ04sQ0FBQztJQUVELE1BQU0sQ0FBQyxtQkFBbUI7UUFDdEIsT0FBTztZQUNILElBQUksRUFBRSxrQkFBa0I7WUFDeEIsSUFBSSxFQUFFLFFBQVE7WUFDZCxLQUFLLEVBQUUsSUFBSTtZQUNYLGVBQWUsRUFBRSxRQUFRO1lBQ3pCLFVBQVUsRUFBRSxLQUFLO1NBQ3BCLENBQUM7SUFDTixDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJQ2FJbnB1dCB9IGZyb20gJy4uLy4uLy4uLy4uL2NhLWlucHV0L2NvbmZpZy9jYS1pbnB1dC5jb25maWcnO1xuXG5leHBvcnQgY2xhc3MgQ2FNb25leUZpbHRlckNvbmZpZyB7XG4gICAgc3RhdGljIGdldFNpbmdsZUZvcm1Gcm9tKCk6IElDYUlucHV0IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIG5hbWU6ICdzaW5nbGVGcm9tJyxcbiAgICAgICAgICAgIHR5cGU6ICdzdHJpbmcnLFxuICAgICAgICAgICAgbGFiZWw6ICdGcm9tJyxcbiAgICAgICAgICAgIHBsYWNlaG9sZGVySWNvbjogJ2RvbGxhcicsXG4gICAgICAgICAgICBpc0Rpc2FibGVkOiBmYWxzZSxcbiAgICAgICAgfTtcbiAgICB9XG5cbiAgICBzdGF0aWMgZ2V0U2luZ2xlRm9ybVRvKCk6IElDYUlucHV0IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIG5hbWU6ICdzaW5nbGVUbycsXG4gICAgICAgICAgICB0eXBlOiAnc3RyaW5nJyxcbiAgICAgICAgICAgIGxhYmVsOiAnVG8nLFxuICAgICAgICAgICAgcGxhY2Vob2xkZXJJY29uOiAnZG9sbGFyJyxcbiAgICAgICAgICAgIGlzRGlzYWJsZWQ6IGZhbHNlLFxuICAgICAgICB9O1xuICAgIH1cblxuICAgIHN0YXRpYyBnZXRNdWx0aUZvcm1GaXJzdEZyb20oKTogSUNhSW5wdXQge1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgbmFtZTogJ211bHRpRnJvbUZpcnN0RnJvbScsXG4gICAgICAgICAgICB0eXBlOiAnc3RyaW5nJyxcbiAgICAgICAgICAgIGxhYmVsOiAnRnJvbScsXG4gICAgICAgICAgICBwbGFjZWhvbGRlckljb246ICdkb2xsYXInLFxuICAgICAgICAgICAgaXNEaXNhYmxlZDogZmFsc2UsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgc3RhdGljIGdldE11bHRpRm9ybUZpcnN0VG8oKTogSUNhSW5wdXQge1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgbmFtZTogJ211bHRpRnJvbUZpcnN0VG8nLFxuICAgICAgICAgICAgdHlwZTogJ3N0cmluZycsXG4gICAgICAgICAgICBsYWJlbDogJ1RvJyxcbiAgICAgICAgICAgIHBsYWNlaG9sZGVySWNvbjogJ2RvbGxhcicsXG4gICAgICAgICAgICBpc0Rpc2FibGVkOiBmYWxzZSxcbiAgICAgICAgfTtcbiAgICB9XG5cbiAgICBzdGF0aWMgZ2V0TXVsdGlGb3JtU2Vjb25kRnJvbSgpOiBJQ2FJbnB1dCB7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBuYW1lOiAnbXVsdGlGb3JtU2Vjb25kRnJvbScsXG4gICAgICAgICAgICB0eXBlOiAnbnVtYmVyJyxcbiAgICAgICAgICAgIGxhYmVsOiAnRnJvbScsXG4gICAgICAgICAgICBwbGFjZWhvbGRlckljb246ICdkb2xsYXInLFxuICAgICAgICAgICAgaXNEaXNhYmxlZDogZmFsc2UsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgc3RhdGljIGdldE11bHRpRm9ybVNlY29uZFRvKCk6IElDYUlucHV0IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIG5hbWU6ICdtdWx0aUZvcm1TZWNvbmRUbycsXG4gICAgICAgICAgICB0eXBlOiAnbnVtYmVyJyxcbiAgICAgICAgICAgIGxhYmVsOiAnVG8nLFxuICAgICAgICAgICAgcGxhY2Vob2xkZXJJY29uOiAnZG9sbGFyJyxcbiAgICAgICAgICAgIGlzRGlzYWJsZWQ6IGZhbHNlLFxuICAgICAgICB9O1xuICAgIH1cblxuICAgIHN0YXRpYyBnZXRNdWx0aUZvcm1UaGlyZEZyb20oKTogSUNhSW5wdXQge1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgbmFtZTogJ211bHRpRm9ybVRoaXJkRnJvbScsXG4gICAgICAgICAgICB0eXBlOiAnbnVtYmVyJyxcbiAgICAgICAgICAgIGxhYmVsOiAnRnJvbScsXG4gICAgICAgICAgICBwbGFjZWhvbGRlckljb246ICdkb2xsYXInLFxuICAgICAgICAgICAgaXNEaXNhYmxlZDogZmFsc2UsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgc3RhdGljIGdldE11bHRpRm9ybVRoaXJkVG8oKTogSUNhSW5wdXQge1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgbmFtZTogJ211bHRpRm9ybVRoaXJkVG8nLFxuICAgICAgICAgICAgdHlwZTogJ251bWJlcicsXG4gICAgICAgICAgICBsYWJlbDogJ1RvJyxcbiAgICAgICAgICAgIHBsYWNlaG9sZGVySWNvbjogJ2RvbGxhcicsXG4gICAgICAgICAgICBpc0Rpc2FibGVkOiBmYWxzZSxcbiAgICAgICAgfTtcbiAgICB9XG59XG4iXX0=
|