ca-components 1.3.33 → 1.3.35
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/background.scss +44 -0
- package/assets/scss/border-radius.scss +17 -0
- package/assets/scss/filters.scss +151 -0
- package/assets/scss/icons.scss +39 -0
- package/assets/scss/spacing.scss +59 -0
- package/assets/scss/styles.scss +22 -1
- package/assets/scss/text-selection.scss +15 -0
- package/assets/theme/variables.scss +1 -1
- package/esm2022/lib/ca-components.module.mjs +35 -5
- package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +3 -3
- package/esm2022/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.mjs +6 -3
- package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +12 -11
- package/esm2022/lib/components/ca-checkbox/ca-checkbox.component.mjs +134 -0
- package/esm2022/lib/components/ca-checkbox/interfaces/column-check-action.interface.mjs +2 -0
- package/esm2022/lib/components/ca-checkbox/interfaces/index.mjs +2 -0
- package/esm2022/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.mjs +7 -0
- package/esm2022/lib/components/ca-checkbox/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-comment/ca-comment.component.mjs +2 -2
- package/esm2022/lib/components/ca-comment/modals/comment-modal/comment-modal.component.mjs +3 -3
- package/esm2022/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.mjs +3 -3
- package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +95 -24
- package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu.enum.mjs +19 -0
- package/esm2022/lib/components/ca-dropdown-menu/enums/index.mjs +2 -2
- package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-item.interface.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-option-emit.interface.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/interfaces/index.mjs +3 -0
- package/esm2022/lib/components/ca-dropdown-menu/pipes/dropdown-menu-placement-class.pipe.mjs +4 -4
- package/esm2022/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.mjs +21 -0
- package/esm2022/lib/components/ca-dropdown-menu/pipes/index.mjs +2 -1
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +4 -4
- package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +3 -3
- package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +4 -4
- package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/pipes/index.mjs +7 -0
- package/esm2022/lib/components/ca-filters/utils/helpers/index.mjs +2 -1
- package/esm2022/lib/components/ca-filters/utils/helpers/time-filter.helper.mjs +117 -0
- package/esm2022/lib/components/ca-filters/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +2 -2
- 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/directives/command-visible.directive.mjs +48 -0
- package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +266 -0
- package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +127 -0
- package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +49 -0
- package/esm2022/lib/components/ca-input/models/base.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-note/ca-input-note.component.mjs +2 -2
- package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +3 -3
- package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +5 -3
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +2 -2
- package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-modal/ca-modal.component.mjs +2 -2
- package/esm2022/lib/components/ca-modal-button/ca-modal-button.component.mjs +3 -3
- package/esm2022/lib/components/ca-new-filter/ca-filter-dropdown.component.mjs +98 -0
- package/esm2022/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.mjs +142 -0
- package/esm2022/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.mjs +131 -0
- package/esm2022/lib/components/ca-new-filter/components/ca-filter-time-dropdown/ca-filter-time-dropdown.component.mjs +131 -0
- package/esm2022/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.mjs +87 -0
- package/esm2022/lib/components/ca-new-filter/constant/index.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/enums/filter-dropdown-types.enum.mjs +15 -0
- package/esm2022/lib/components/ca-new-filter/enums/filter-sorting-key.enum.mjs +6 -0
- package/esm2022/lib/components/ca-new-filter/enums/filter-time.enum.mjs +37 -0
- package/esm2022/lib/components/ca-new-filter/enums/index.mjs +4 -0
- package/esm2022/lib/components/ca-new-filter/interface/country.interface.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/interface/filter-action.interface.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/interface/filter-dropdown-configuration.interface.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/interface/filter-dropdown-list.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/interface/index.mjs +7 -0
- package/esm2022/lib/components/ca-new-filter/interface/sorting-emmiter.interface.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/interface/time-options.interface.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/pipes/filter-search.pipe.mjs +31 -0
- package/esm2022/lib/components/ca-new-filter/types/filter-dropdown.types.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/types/filter-sorting-key.type.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/types/filter-time.types.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/types/index.mjs +4 -0
- package/esm2022/lib/components/ca-new-filter/utils/configs/filter-dropdown-fields.config.mjs +37 -0
- package/esm2022/lib/components/ca-new-filter/utils/configs/index.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/utils/helpers/index.mjs +2 -0
- package/esm2022/lib/components/ca-new-filter/utils/helpers/time-filter.helper.mjs +133 -0
- package/esm2022/lib/components/ca-ngx-slider/ca-ngx-slider.component.mjs +2 -2
- package/esm2022/lib/components/ca-note/ca-note.component.mjs +2 -2
- package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +2 -2
- package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +2 -2
- package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +2 -2
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.mjs +3 -3
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +3 -3
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +3 -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 +2 -2
- package/esm2022/lib/components/ca-progress-expiration/ca-progress-expiration.component.mjs +2 -2
- package/esm2022/lib/components/ca-rating-review/ca-rating-review.component.mjs +2 -2
- package/esm2022/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.mjs +2 -2
- package/esm2022/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.mjs +2 -2
- package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.mjs +3 -3
- package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +3 -3
- package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.mjs +3 -3
- package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +3 -3
- package/esm2022/lib/components/ca-search-multiple-states/models/tab-data.model.mjs +1 -1
- package/esm2022/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.mjs +21 -8
- package/esm2022/lib/components/ca-sort-dropdown/types/index.mjs +2 -0
- package/esm2022/lib/components/ca-sort-dropdown/types/sort-directions.type.mjs +2 -0
- package/esm2022/lib/components/ca-sort-dropdown/utils/svg-routes/ca-sort-dropdown-svg-routes.mjs +3 -2
- package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +2 -2
- package/esm2022/lib/components/ca-tab-switch/ca-tab-switch.component.mjs +3 -3
- package/esm2022/lib/components/ca-todo/ca-todo.component.mjs +3 -3
- package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +3 -3
- package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +3 -3
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +2 -2
- package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +3 -3
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +3 -3
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +2 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +3 -3
- package/esm2022/lib/enums/dropdown-menu.enum.mjs +20 -0
- package/esm2022/lib/pipes/row-class.pipe.mjs +26 -0
- package/esm2022/lib/utils/constants/dropdown-menu-content.constants.mjs +26 -26
- package/esm2022/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.mjs +4 -4
- package/esm2022/lib/utils/helpers/dropdown-menu-content.helper.mjs +6 -6
- package/esm2022/public-api.mjs +10 -4
- package/fesm2022/ca-components.mjs +2725 -6173
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +38 -33
- package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.d.ts +2 -1
- package/lib/components/ca-checkbox/ca-checkbox.component.d.ts +39 -0
- package/lib/components/ca-checkbox/interfaces/column-check-action.interface.d.ts +6 -0
- package/lib/components/ca-checkbox/interfaces/index.d.ts +1 -0
- package/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.d.ts +6 -0
- package/lib/components/ca-checkbox/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.d.ts +16 -7
- package/lib/components/ca-dropdown-menu/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +5 -2
- package/lib/components/ca-dropdown-menu/enums/index.d.ts +1 -1
- package/lib/components/ca-dropdown-menu/{models/dropdown-menu-item.model.d.ts → interfaces/dropdown-menu-item.interface.d.ts} +7 -1
- package/lib/components/ca-dropdown-menu/{models/dropdown-menu-option-emit.model.d.ts → interfaces/dropdown-menu-option-emit.interface.d.ts} +1 -1
- package/lib/components/ca-dropdown-menu/interfaces/index.d.ts +2 -0
- package/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.d.ts +8 -0
- package/lib/components/ca-dropdown-menu/pipes/index.d.ts +1 -0
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-filters/pipes/index.d.ts +6 -0
- package/lib/components/ca-filters/utils/helpers/index.d.ts +1 -0
- package/lib/components/ca-filters/utils/{constants/time-filter.constants.d.ts → helpers/time-filter.helper.d.ts} +14 -2
- package/lib/components/ca-filters/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/{ca-input-test → ca-input/input-test}/input-test.component.d.ts +12 -13
- package/lib/components/ca-new-filter/ca-filter-dropdown.component.d.ts +35 -0
- package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.d.ts +43 -0
- package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.d.ts +35 -0
- package/lib/components/ca-new-filter/components/ca-filter-time-dropdown/ca-filter-time-dropdown.component.d.ts +43 -0
- package/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.d.ts +3 -0
- package/lib/components/ca-new-filter/constant/index.d.ts +1 -0
- package/lib/components/ca-new-filter/enums/filter-dropdown-types.enum.d.ts +13 -0
- package/lib/components/ca-new-filter/enums/filter-sorting-key.enum.d.ts +4 -0
- package/lib/components/ca-new-filter/enums/filter-time.enum.d.ts +35 -0
- package/lib/components/ca-new-filter/enums/index.d.ts +3 -0
- package/lib/components/ca-new-filter/interface/country.interface.d.ts +13 -0
- package/lib/components/ca-new-filter/interface/filter-action.interface.d.ts +18 -0
- package/lib/components/ca-new-filter/interface/filter-dropdown-configuration.interface.d.ts +13 -0
- package/lib/components/ca-new-filter/interface/filter-dropdown-list.d.ts +17 -0
- package/lib/components/ca-new-filter/interface/index.d.ts +6 -0
- package/lib/components/ca-new-filter/interface/sorting-emmiter.interface.d.ts +5 -0
- package/lib/components/ca-new-filter/interface/time-options.interface.d.ts +9 -0
- package/lib/components/ca-new-filter/pipes/filter-search.pipe.d.ts +8 -0
- package/lib/components/ca-new-filter/types/filter-dropdown.types.d.ts +2 -0
- package/lib/components/ca-new-filter/types/filter-sorting-key.type.d.ts +2 -0
- package/lib/components/ca-new-filter/types/filter-time.types.d.ts +2 -0
- package/lib/components/ca-new-filter/types/index.d.ts +3 -0
- package/lib/components/ca-new-filter/utils/configs/filter-dropdown-fields.config.d.ts +7 -0
- package/lib/components/ca-new-filter/utils/configs/index.d.ts +1 -0
- package/lib/components/ca-new-filter/utils/helpers/index.d.ts +1 -0
- package/lib/components/ca-new-filter/utils/helpers/time-filter.helper.d.ts +6 -0
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +4 -4
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +3 -3
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +2 -2
- package/lib/components/ca-search-multiple-states/models/tab-data.model.d.ts +11 -11
- package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.d.ts +12 -5
- package/lib/components/ca-sort-dropdown/types/index.d.ts +1 -0
- package/lib/components/ca-sort-dropdown/types/sort-directions.type.d.ts +5 -0
- package/lib/components/ca-sort-dropdown/utils/svg-routes/ca-sort-dropdown-svg-routes.d.ts +2 -1
- package/lib/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +1 -1
- package/lib/pipes/row-class.pipe.d.ts +7 -0
- package/lib/utils/constants/dropdown-menu-content.constants.d.ts +3 -3
- package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.d.ts +3 -3
- package/lib/utils/helpers/dropdown-menu-content.helper.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +9 -3
- package/src/assets/ca-components/svg/common/ic_arrow_desc.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_carriera-logo-active.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_carriera-logo-inactive.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_columns.svg +8 -0
- package/src/assets/ca-components/svg/common/ic_disable.svg +3 -0
- package/assets/scss/input-dropdown-test.scss +0 -2030
- package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu-string.enum.mjs +0 -14
- package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-item.model.mjs +0 -2
- package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-option-emit.model.mjs +0 -2
- package/esm2022/lib/components/ca-dropdown-menu/models/index.mjs +0 -3
- package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +0 -102
- package/esm2022/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.mjs +0 -351
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.mjs +0 -8
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.mjs +0 -7
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/address-data.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/address-list.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/command-properties.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/long-lat.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.mjs +0 -11
- package/esm2022/lib/components/ca-input-dropdown-test/animations/index.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.mjs +0 -11
- package/esm2022/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.mjs +0 -692
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.mjs +0 -72
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.mjs +0 -60
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.mjs +0 -76
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.mjs +0 -58
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.mjs +0 -76
- package/esm2022/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.mjs +0 -64
- package/esm2022/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.mjs +0 -61
- package/esm2022/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.mjs +0 -60
- package/esm2022/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.mjs +0 -65
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.mjs +0 -58
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.mjs +0 -63
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.mjs +0 -72
- package/esm2022/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.mjs +0 -77
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.mjs +0 -58
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.mjs +0 -23
- package/esm2022/lib/components/ca-input-dropdown-test/enums/index.mjs +0 -3
- package/esm2022/lib/components/ca-input-dropdown-test/models/index.mjs +0 -4
- package/esm2022/lib/components/ca-input-dropdown-test/models/input-dropdown-option.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/models/load-modal-status.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/models/status-order.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.mjs +0 -29
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.mjs +0 -73
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/index.mjs +0 -10
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.mjs +0 -22
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.mjs +0 -18
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.mjs +0 -25
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.mjs +0 -23
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.mjs +0 -25
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.mjs +0 -23
- package/esm2022/lib/components/ca-input-dropdown-test/utils/svg-routes/index.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.mjs +0 -13
- package/esm2022/lib/components/ca-input-test/base-classes/ca-input-event-manager.mjs +0 -24
- package/esm2022/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.mjs +0 -66
- package/esm2022/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.mjs +0 -48
- package/esm2022/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.mjs +0 -63
- package/esm2022/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +0 -85
- package/esm2022/lib/components/ca-input-test/config/ca-input.config.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/config/index.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/directives/caps-lock.directive.mjs +0 -50
- package/esm2022/lib/components/ca-input-test/directives/command-visible.directive.mjs +0 -48
- package/esm2022/lib/components/ca-input-test/directives/index.mjs +0 -6
- package/esm2022/lib/components/ca-input-test/directives/input-max-value.directive.mjs +0 -53
- package/esm2022/lib/components/ca-input-test/directives/min-max-value.directive.mjs +0 -41
- package/esm2022/lib/components/ca-input-test/directives/price_format.directive.mjs +0 -41
- package/esm2022/lib/components/ca-input-test/directives/restrict-input.directive.mjs +0 -94
- package/esm2022/lib/components/ca-input-test/enums/index.mjs +0 -5
- package/esm2022/lib/components/ca-input-test/enums/input-commands-action.enum.mjs +0 -11
- package/esm2022/lib/components/ca-input-test/enums/input-commands-type.enum.mjs +0 -8
- package/esm2022/lib/components/ca-input-test/enums/input-config-name-string.enum.mjs +0 -9
- package/esm2022/lib/components/ca-input-test/enums/input-string.enum.mjs +0 -114
- package/esm2022/lib/components/ca-input-test/enums/input-text-transform.enum.mjs +0 -9
- package/esm2022/lib/components/ca-input-test/input-test.component.mjs +0 -273
- package/esm2022/lib/components/ca-input-test/mixins/input-command.mixin.mjs +0 -127
- package/esm2022/lib/components/ca-input-test/mixins/input-helper.mixin.mjs +0 -49
- package/esm2022/lib/components/ca-input-test/mixins/restriction-pipe.mixin.mjs +0 -34
- package/esm2022/lib/components/ca-input-test/models/base.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/models/command-click.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/models/commands-event.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/models/index.mjs +0 -4
- package/esm2022/lib/components/ca-input-test/models/label-color.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/pipes/color-finder.pipe.mjs +0 -62
- package/esm2022/lib/components/ca-input-test/pipes/form-control.pipe.mjs +0 -17
- package/esm2022/lib/components/ca-input-test/pipes/index.mjs +0 -20
- package/esm2022/lib/components/ca-input-test/pipes/input-class.pipe.mjs +0 -155
- package/esm2022/lib/components/ca-input-test/pipes/input-clear-class.pipe.mjs +0 -87
- package/esm2022/lib/components/ca-input-test/pipes/input-container-class.pipe.mjs +0 -58
- package/esm2022/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.mjs +0 -77
- package/esm2022/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.mjs +0 -61
- package/esm2022/lib/components/ca-input-test/pipes/input-error.pipe.mjs +0 -88
- package/esm2022/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.mjs +0 -37
- package/esm2022/lib/components/ca-input-test/pipes/input-pattern.pipe.mjs +0 -326
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.mjs +0 -46
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.mjs +0 -58
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.mjs +0 -45
- package/esm2022/lib/components/ca-input-test/pipes/input-type.pipe.mjs +0 -25
- package/esm2022/lib/components/ca-input-test/pipes/label-class.pipe.mjs +0 -38
- package/esm2022/lib/components/ca-input-test/pipes/show-clear.pipe.mjs +0 -22
- package/esm2022/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.mjs +0 -26
- package/esm2022/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.mjs +0 -24
- package/esm2022/lib/components/ca-input-test/pipes/show-valid-check.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-test/utils/index.mjs +0 -3
- package/esm2022/lib/components/ca-input-test/utils/input-change-value.type.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/utils/input-svg-routes.mjs +0 -17
- package/esm2022/lib/enums/dropdown-menu-string.enum.mjs +0 -20
- package/lib/components/ca-dropdown-menu/models/index.d.ts +0 -2
- package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.d.ts +0 -74
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.d.ts +0 -6
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.d.ts +0 -5
- package/lib/components/ca-input-address-dropdown-test/models/address-data.model.d.ts +0 -10
- package/lib/components/ca-input-address-dropdown-test/models/address-list.model.d.ts +0 -5
- package/lib/components/ca-input-address-dropdown-test/models/command-properties.model.d.ts +0 -7
- package/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.d.ts +0 -7
- package/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.d.ts +0 -1
- package/lib/components/ca-input-address-dropdown-test/models/long-lat.model.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.d.ts +0 -6
- package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.d.ts +0 -2
- package/lib/components/ca-input-dropdown-test/animations/index.d.ts +0 -1
- package/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.d.ts +0 -1
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.d.ts +0 -125
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.d.ts +0 -22
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.d.ts +0 -19
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.d.ts +0 -27
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.d.ts +0 -24
- package/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.d.ts +0 -22
- package/lib/components/ca-input-dropdown-test/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-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.d.ts +0 -22
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.d.ts +0 -4
- package/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.d.ts +0 -21
- package/lib/components/ca-input-dropdown-test/enums/index.d.ts +0 -2
- package/lib/components/ca-input-dropdown-test/models/index.d.ts +0 -3
- package/lib/components/ca-input-dropdown-test/models/input-dropdown-option.model.d.ts +0 -95
- package/lib/components/ca-input-dropdown-test/models/load-modal-status.model.d.ts +0 -5
- package/lib/components/ca-input-dropdown-test/models/status-order.model.d.ts +0 -4
- package/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.d.ts +0 -7
- package/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/index.d.ts +0 -9
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.d.ts +0 -9
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/utils/svg-routes/index.d.ts +0 -1
- package/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.d.ts +0 -12
- package/lib/components/ca-input-test/base-classes/ca-input-event-manager.d.ts +0 -16
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.d.ts +0 -20
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts +0 -16
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts +0 -20
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +0 -26
- package/lib/components/ca-input-test/config/ca-input.config.d.ts +0 -168
- package/lib/components/ca-input-test/config/index.d.ts +0 -1
- package/lib/components/ca-input-test/directives/caps-lock.directive.d.ts +0 -14
- package/lib/components/ca-input-test/directives/index.d.ts +0 -5
- package/lib/components/ca-input-test/directives/input-max-value.directive.d.ts +0 -12
- package/lib/components/ca-input-test/directives/min-max-value.directive.d.ts +0 -13
- package/lib/components/ca-input-test/directives/price_format.directive.d.ts +0 -11
- package/lib/components/ca-input-test/directives/restrict-input.directive.d.ts +0 -27
- package/lib/components/ca-input-test/enums/index.d.ts +0 -4
- package/lib/components/ca-input-test/enums/input-commands-action.enum.d.ts +0 -9
- package/lib/components/ca-input-test/enums/input-commands-type.enum.d.ts +0 -6
- package/lib/components/ca-input-test/enums/input-config-name-string.enum.d.ts +0 -7
- package/lib/components/ca-input-test/enums/input-string.enum.d.ts +0 -112
- package/lib/components/ca-input-test/enums/input-text-transform.enum.d.ts +0 -6
- package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.d.ts +0 -12
- package/lib/components/ca-input-test/models/command-click.model.d.ts +0 -5
- package/lib/components/ca-input-test/models/commands-event.model.d.ts +0 -5
- package/lib/components/ca-input-test/models/index.d.ts +0 -3
- package/lib/components/ca-input-test/models/label-color.model.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/color-finder.pipe.d.ts +0 -7
- package/lib/components/ca-input-test/pipes/form-control.pipe.d.ts +0 -8
- package/lib/components/ca-input-test/pipes/index.d.ts +0 -19
- package/lib/components/ca-input-test/pipes/input-class.pipe.d.ts +0 -13
- package/lib/components/ca-input-test/pipes/input-clear-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-container-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-error.pipe.d.ts +0 -7
- package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-pattern.pipe.d.ts +0 -38
- package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.d.ts +0 -12
- package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-type.pipe.d.ts +0 -7
- package/lib/components/ca-input-test/pipes/label-class.pipe.d.ts +0 -10
- package/lib/components/ca-input-test/pipes/show-clear.pipe.d.ts +0 -8
- package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.d.ts +0 -8
- package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.d.ts +0 -9
- package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.d.ts +0 -9
- package/lib/components/ca-input-test/pipes/show-valid-check.pipe.d.ts +0 -9
- package/lib/components/ca-input-test/utils/index.d.ts +0 -2
- package/lib/components/ca-input-test/utils/input-change-value.type.d.ts +0 -1
- package/lib/components/ca-input-test/utils/input-svg-routes.d.ts +0 -16
- /package/lib/components/{ca-input-test → ca-input}/directives/command-visible.directive.d.ts +0 -0
- /package/lib/components/{ca-input-test → ca-input}/mixins/input-command.mixin.d.ts +0 -0
- /package/lib/components/{ca-input-test → ca-input}/mixins/input-helper.mixin.d.ts +0 -0
- /package/lib/components/{ca-input-test → ca-input}/models/base.model.d.ts +0 -0
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export var DropdownMenuStringEnum;
|
|
2
|
-
(function (DropdownMenuStringEnum) {
|
|
3
|
-
// actions
|
|
4
|
-
DropdownMenuStringEnum["CLOSE"] = "Close";
|
|
5
|
-
DropdownMenuStringEnum["OPEN"] = "Open";
|
|
6
|
-
// positions
|
|
7
|
-
DropdownMenuStringEnum["RIGHT_TOP"] = "right-top";
|
|
8
|
-
DropdownMenuStringEnum["BOTTOM_RIGHT"] = "bottom-right";
|
|
9
|
-
// types
|
|
10
|
-
DropdownMenuStringEnum["DOTS_MENU_TYPE"] = "dots-menu-type";
|
|
11
|
-
DropdownMenuStringEnum["HAMBURGER_MENU_TYPE"] = "hamburger-menu-type";
|
|
12
|
-
DropdownMenuStringEnum["SELECT_MENU_TYPE"] = "select-menu-type";
|
|
13
|
-
})(DropdownMenuStringEnum || (DropdownMenuStringEnum = {}));
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1zdHJpbmcuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWRyb3Bkb3duLW1lbnUvZW51bXMvZHJvcGRvd24tbWVudS1zdHJpbmcuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxzQkFhWDtBQWJELFdBQVksc0JBQXNCO0lBQzlCLFVBQVU7SUFDVix5Q0FBZSxDQUFBO0lBQ2YsdUNBQWEsQ0FBQTtJQUViLFlBQVk7SUFDWixpREFBdUIsQ0FBQTtJQUN2Qix1REFBNkIsQ0FBQTtJQUU3QixRQUFRO0lBQ1IsMkRBQWlDLENBQUE7SUFDakMscUVBQTJDLENBQUE7SUFDM0MsK0RBQXFDLENBQUE7QUFDekMsQ0FBQyxFQWJXLHNCQUFzQixLQUF0QixzQkFBc0IsUUFhakMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBEcm9wZG93bk1lbnVTdHJpbmdFbnVtIHtcbiAgICAvLyBhY3Rpb25zXG4gICAgQ0xPU0UgPSAnQ2xvc2UnLFxuICAgIE9QRU4gPSAnT3BlbicsXG5cbiAgICAvLyBwb3NpdGlvbnNcbiAgICBSSUdIVF9UT1AgPSAncmlnaHQtdG9wJyxcbiAgICBCT1RUT01fUklHSFQgPSAnYm90dG9tLXJpZ2h0JyxcblxuICAgIC8vIHR5cGVzXG4gICAgRE9UU19NRU5VX1RZUEUgPSAnZG90cy1tZW51LXR5cGUnLFxuICAgIEhBTUJVUkdFUl9NRU5VX1RZUEUgPSAnaGFtYnVyZ2VyLW1lbnUtdHlwZScsXG4gICAgU0VMRUNUX01FTlVfVFlQRSA9ICdzZWxlY3QtbWVudS10eXBlJyxcbn1cbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1pdGVtLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtZHJvcGRvd24tbWVudS9tb2RlbHMvZHJvcGRvd24tbWVudS1pdGVtLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIERyb3Bkb3duTWVudUl0ZW0ge1xuICAgIGlkPzogbnVtYmVyO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgdGl0bGVPcHRpb25hbENsYXNzPzogc3RyaW5nO1xuICAgIHR5cGU/OiBzdHJpbmc7XG4gICAgc3ZnVXJsPzogc3RyaW5nO1xuICAgIHN2Z0NsYXNzPzogc3RyaW5nO1xuICAgIGhhc0JvcmRlcj86IGJvb2xlYW47XG4gICAgaXNEaXNhYmxlZD86IGJvb2xlYW47XG4gICAgaW5uZXJEcm9wZG93bkNvbnRlbnQ/OiB7IHRpdGxlOiBzdHJpbmc7IHR5cGU6IHN0cmluZyB9W107XG4gICAgaXNTZWxlY3RNZW51VHlwZUFjdGlvbkl0ZW0/OiBib29sZWFuO1xufVxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1vcHRpb24tZW1pdC5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWRyb3Bkb3duLW1lbnUvbW9kZWxzL2Ryb3Bkb3duLW1lbnUtb3B0aW9uLWVtaXQubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRHJvcGRvd25NZW51T3B0aW9uRW1pdCB7XG4gICAgaWQ/OiBudW1iZXI7XG4gICAgdHlwZT86IHN0cmluZztcbiAgICBpc0FjdGl2ZT86IGJvb2xlYW47XG59XG4iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './dropdown-menu-item.model';
|
|
2
|
-
export * from './dropdown-menu-option-emit.model';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1kcm9wZG93bi1tZW51L21vZGVscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsbUNBQW1DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Ryb3Bkb3duLW1lbnUtaXRlbS5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Ryb3Bkb3duLW1lbnUtb3B0aW9uLWVtaXQubW9kZWwnO1xuIl19
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
export class TimeFilterConstants {
|
|
2
|
-
static getTimePastOptions(lastYear, last2Years) {
|
|
3
|
-
return [
|
|
4
|
-
{
|
|
5
|
-
label: 'Time Filter',
|
|
6
|
-
items: [{ label: 'Today' }, { label: 'Yesterday' }],
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
label: '',
|
|
10
|
-
items: [
|
|
11
|
-
{ label: 'This Week' },
|
|
12
|
-
{ label: 'Last Week' },
|
|
13
|
-
{ label: '1 Week' },
|
|
14
|
-
],
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
label: '',
|
|
18
|
-
items: [
|
|
19
|
-
{ label: 'This Month' },
|
|
20
|
-
{ label: 'Last Month' },
|
|
21
|
-
{ label: '1 Month' },
|
|
22
|
-
{ label: '3 Months' },
|
|
23
|
-
],
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
label: '',
|
|
27
|
-
items: [{ label: 'This Quarter' }, { label: 'Last Quarter' }],
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
label: '',
|
|
31
|
-
items: [
|
|
32
|
-
{ label: 'This Year' },
|
|
33
|
-
{ label: '1 Year' },
|
|
34
|
-
{ label: lastYear },
|
|
35
|
-
{ label: last2Years },
|
|
36
|
-
],
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
label: '',
|
|
40
|
-
items: [{ label: 'Custom' }],
|
|
41
|
-
},
|
|
42
|
-
];
|
|
43
|
-
}
|
|
44
|
-
static getTimeFutureOptions() {
|
|
45
|
-
return [
|
|
46
|
-
{
|
|
47
|
-
label: 'Time Filter',
|
|
48
|
-
items: [{ label: 'Today' }, { label: 'Tomorrow' }],
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
label: '',
|
|
52
|
-
items: [
|
|
53
|
-
{ label: 'This Week' },
|
|
54
|
-
{ label: 'Next Week' },
|
|
55
|
-
{ label: '1 Week' },
|
|
56
|
-
],
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
label: '',
|
|
60
|
-
items: [
|
|
61
|
-
{ label: 'This Month' },
|
|
62
|
-
{ label: 'Next Month' },
|
|
63
|
-
{ label: '1 Month' },
|
|
64
|
-
{ label: '3 Months' },
|
|
65
|
-
],
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
label: '',
|
|
69
|
-
items: [{ label: 'This Quarter' }, { label: 'Next Quarter' }],
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
label: '',
|
|
73
|
-
items: [{ label: 'This Year' }, { label: '1 Year' }],
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
label: '',
|
|
77
|
-
items: [{ label: 'Custom' }],
|
|
78
|
-
},
|
|
79
|
-
];
|
|
80
|
-
}
|
|
81
|
-
static getTimeShortOptions() {
|
|
82
|
-
return [
|
|
83
|
-
{
|
|
84
|
-
label: 'Time Filter',
|
|
85
|
-
items: [{ label: 'Today' }, { label: 'Yesterday' }],
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
label: '',
|
|
89
|
-
items: [{ label: 'This Week' }, { label: 'Last Week' }],
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
label: '',
|
|
93
|
-
items: [{ label: 'This Month' }, { label: 'Last Month' }],
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
label: '',
|
|
97
|
-
items: [{ label: 'Custom' }],
|
|
98
|
-
},
|
|
99
|
-
];
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGltZS1maWx0ZXIuY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtZmlsdGVycy91dGlscy9jb25zdGFudHMvdGltZS1maWx0ZXIuY29uc3RhbnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxtQkFBbUI7SUFDOUIsTUFBTSxDQUFDLGtCQUFrQixDQUFDLFFBQWdCLEVBQUUsVUFBa0I7UUFDNUQsT0FBTztZQUNMO2dCQUNFLEtBQUssRUFBRSxhQUFhO2dCQUNwQixLQUFLLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxPQUFPLEVBQUUsRUFBRSxFQUFFLEtBQUssRUFBRSxXQUFXLEVBQUUsQ0FBQzthQUNwRDtZQUNEO2dCQUNFLEtBQUssRUFBRSxFQUFFO2dCQUNULEtBQUssRUFBRTtvQkFDTCxFQUFFLEtBQUssRUFBRSxXQUFXLEVBQUU7b0JBQ3RCLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRTtvQkFDdEIsRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFO2lCQUNwQjthQUNGO1lBQ0Q7Z0JBQ0UsS0FBSyxFQUFFLEVBQUU7Z0JBQ1QsS0FBSyxFQUFFO29CQUNMLEVBQUUsS0FBSyxFQUFFLFlBQVksRUFBRTtvQkFDdkIsRUFBRSxLQUFLLEVBQUUsWUFBWSxFQUFFO29CQUN2QixFQUFFLEtBQUssRUFBRSxTQUFTLEVBQUU7b0JBQ3BCLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRTtpQkFDdEI7YUFDRjtZQUNEO2dCQUNFLEtBQUssRUFBRSxFQUFFO2dCQUNULEtBQUssRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLGNBQWMsRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLGNBQWMsRUFBRSxDQUFDO2FBQzlEO1lBQ0Q7Z0JBQ0UsS0FBSyxFQUFFLEVBQUU7Z0JBQ1QsS0FBSyxFQUFFO29CQUNMLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRTtvQkFDdEIsRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFO29CQUNuQixFQUFFLEtBQUssRUFBRSxRQUFRLEVBQUU7b0JBQ25CLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRTtpQkFDdEI7YUFDRjtZQUNEO2dCQUNFLEtBQUssRUFBRSxFQUFFO2dCQUNULEtBQUssRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLFFBQVEsRUFBRSxDQUFDO2FBQzdCO1NBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRCxNQUFNLENBQUMsb0JBQW9CO1FBQ3pCLE9BQU87WUFDTDtnQkFDRSxLQUFLLEVBQUUsYUFBYTtnQkFDcEIsS0FBSyxFQUFFLENBQUMsRUFBRSxLQUFLLEVBQUUsT0FBTyxFQUFFLEVBQUUsRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLENBQUM7YUFDbkQ7WUFDRDtnQkFDRSxLQUFLLEVBQUUsRUFBRTtnQkFDVCxLQUFLLEVBQUU7b0JBQ0wsRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFO29CQUN0QixFQUFFLEtBQUssRUFBRSxXQUFXLEVBQUU7b0JBQ3RCLEVBQUUsS0FBSyxFQUFFLFFBQVEsRUFBRTtpQkFDcEI7YUFDRjtZQUNEO2dCQUNFLEtBQUssRUFBRSxFQUFFO2dCQUNULEtBQUssRUFBRTtvQkFDTCxFQUFFLEtBQUssRUFBRSxZQUFZLEVBQUU7b0JBQ3ZCLEVBQUUsS0FBSyxFQUFFLFlBQVksRUFBRTtvQkFDdkIsRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFO29CQUNwQixFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUU7aUJBQ3RCO2FBQ0Y7WUFDRDtnQkFDRSxLQUFLLEVBQUUsRUFBRTtnQkFDVCxLQUFLLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxjQUFjLEVBQUUsRUFBRSxFQUFFLEtBQUssRUFBRSxjQUFjLEVBQUUsQ0FBQzthQUM5RDtZQUNEO2dCQUNFLEtBQUssRUFBRSxFQUFFO2dCQUNULEtBQUssRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLFFBQVEsRUFBRSxDQUFDO2FBQ3JEO1lBQ0Q7Z0JBQ0UsS0FBSyxFQUFFLEVBQUU7Z0JBQ1QsS0FBSyxFQUFFLENBQUMsRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFLENBQUM7YUFDN0I7U0FDRixDQUFDO0lBQ0osQ0FBQztJQUVELE1BQU0sQ0FBQyxtQkFBbUI7UUFDeEIsT0FBTztZQUNMO2dCQUNFLEtBQUssRUFBRSxhQUFhO2dCQUNwQixLQUFLLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxPQUFPLEVBQUUsRUFBRSxFQUFFLEtBQUssRUFBRSxXQUFXLEVBQUUsQ0FBQzthQUNwRDtZQUNEO2dCQUNFLEtBQUssRUFBRSxFQUFFO2dCQUNULEtBQUssRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxDQUFDO2FBQ3hEO1lBQ0Q7Z0JBQ0UsS0FBSyxFQUFFLEVBQUU7Z0JBQ1QsS0FBSyxFQUFFLENBQUMsRUFBRSxLQUFLLEVBQUUsWUFBWSxFQUFFLEVBQUUsRUFBRSxLQUFLLEVBQUUsWUFBWSxFQUFFLENBQUM7YUFDMUQ7WUFDRDtnQkFDRSxLQUFLLEVBQUUsRUFBRTtnQkFDVCxLQUFLLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxRQUFRLEVBQUUsQ0FBQzthQUM3QjtTQUNGLENBQUM7SUFDSixDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgVGltZUZpbHRlckNvbnN0YW50cyB7XG4gIHN0YXRpYyBnZXRUaW1lUGFzdE9wdGlvbnMobGFzdFllYXI6IHN0cmluZywgbGFzdDJZZWFyczogc3RyaW5nKSB7XG4gICAgcmV0dXJuIFtcbiAgICAgIHtcbiAgICAgICAgbGFiZWw6ICdUaW1lIEZpbHRlcicsXG4gICAgICAgIGl0ZW1zOiBbeyBsYWJlbDogJ1RvZGF5JyB9LCB7IGxhYmVsOiAnWWVzdGVyZGF5JyB9XSxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIGxhYmVsOiAnJyxcbiAgICAgICAgaXRlbXM6IFtcbiAgICAgICAgICB7IGxhYmVsOiAnVGhpcyBXZWVrJyB9LFxuICAgICAgICAgIHsgbGFiZWw6ICdMYXN0IFdlZWsnIH0sXG4gICAgICAgICAgeyBsYWJlbDogJzEgV2VlaycgfSxcbiAgICAgICAgXSxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIGxhYmVsOiAnJyxcbiAgICAgICAgaXRlbXM6IFtcbiAgICAgICAgICB7IGxhYmVsOiAnVGhpcyBNb250aCcgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnTGFzdCBNb250aCcgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnMSBNb250aCcgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnMyBNb250aHMnIH0sXG4gICAgICAgIF0sXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBsYWJlbDogJycsXG4gICAgICAgIGl0ZW1zOiBbeyBsYWJlbDogJ1RoaXMgUXVhcnRlcicgfSwgeyBsYWJlbDogJ0xhc3QgUXVhcnRlcicgfV0sXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBsYWJlbDogJycsXG4gICAgICAgIGl0ZW1zOiBbXG4gICAgICAgICAgeyBsYWJlbDogJ1RoaXMgWWVhcicgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnMSBZZWFyJyB9LFxuICAgICAgICAgIHsgbGFiZWw6IGxhc3RZZWFyIH0sXG4gICAgICAgICAgeyBsYWJlbDogbGFzdDJZZWFycyB9LFxuICAgICAgICBdLFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgbGFiZWw6ICcnLFxuICAgICAgICBpdGVtczogW3sgbGFiZWw6ICdDdXN0b20nIH1dLFxuICAgICAgfSxcbiAgICBdO1xuICB9XG5cbiAgc3RhdGljIGdldFRpbWVGdXR1cmVPcHRpb25zKCkge1xuICAgIHJldHVybiBbXG4gICAgICB7XG4gICAgICAgIGxhYmVsOiAnVGltZSBGaWx0ZXInLFxuICAgICAgICBpdGVtczogW3sgbGFiZWw6ICdUb2RheScgfSwgeyBsYWJlbDogJ1RvbW9ycm93JyB9XSxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIGxhYmVsOiAnJyxcbiAgICAgICAgaXRlbXM6IFtcbiAgICAgICAgICB7IGxhYmVsOiAnVGhpcyBXZWVrJyB9LFxuICAgICAgICAgIHsgbGFiZWw6ICdOZXh0IFdlZWsnIH0sXG4gICAgICAgICAgeyBsYWJlbDogJzEgV2VlaycgfSxcbiAgICAgICAgXSxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIGxhYmVsOiAnJyxcbiAgICAgICAgaXRlbXM6IFtcbiAgICAgICAgICB7IGxhYmVsOiAnVGhpcyBNb250aCcgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnTmV4dCBNb250aCcgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnMSBNb250aCcgfSxcbiAgICAgICAgICB7IGxhYmVsOiAnMyBNb250aHMnIH0sXG4gICAgICAgIF0sXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBsYWJlbDogJycsXG4gICAgICAgIGl0ZW1zOiBbeyBsYWJlbDogJ1RoaXMgUXVhcnRlcicgfSwgeyBsYWJlbDogJ05leHQgUXVhcnRlcicgfV0sXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBsYWJlbDogJycsXG4gICAgICAgIGl0ZW1zOiBbeyBsYWJlbDogJ1RoaXMgWWVhcicgfSwgeyBsYWJlbDogJzEgWWVhcicgfV0sXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBsYWJlbDogJycsXG4gICAgICAgIGl0ZW1zOiBbeyBsYWJlbDogJ0N1c3RvbScgfV0sXG4gICAgICB9LFxuICAgIF07XG4gIH1cblxuICBzdGF0aWMgZ2V0VGltZVNob3J0T3B0aW9ucygpIHtcbiAgICByZXR1cm4gW1xuICAgICAge1xuICAgICAgICBsYWJlbDogJ1RpbWUgRmlsdGVyJyxcbiAgICAgICAgaXRlbXM6IFt7IGxhYmVsOiAnVG9kYXknIH0sIHsgbGFiZWw6ICdZZXN0ZXJkYXknIH1dLFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgbGFiZWw6ICcnLFxuICAgICAgICBpdGVtczogW3sgbGFiZWw6ICdUaGlzIFdlZWsnIH0sIHsgbGFiZWw6ICdMYXN0IFdlZWsnIH1dLFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgbGFiZWw6ICcnLFxuICAgICAgICBpdGVtczogW3sgbGFiZWw6ICdUaGlzIE1vbnRoJyB9LCB7IGxhYmVsOiAnTGFzdCBNb250aCcgfV0sXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBsYWJlbDogJycsXG4gICAgICAgIGl0ZW1zOiBbeyBsYWJlbDogJ0N1c3RvbScgfV0sXG4gICAgICB9LFxuICAgIF07XG4gIH1cbn1cbiJdfQ==
|