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,22 +0,0 @@
|
|
|
1
|
-
import { Pipe } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ShowClearPipe {
|
|
4
|
-
transform(inputConfig) {
|
|
5
|
-
return ((!inputConfig.hideClear &&
|
|
6
|
-
(!inputConfig.isDisabled || inputConfig.removeInput) &&
|
|
7
|
-
!inputConfig.customClass?.includes("details-pages") &&
|
|
8
|
-
!inputConfig.commands?.active &&
|
|
9
|
-
!inputConfig?.loadingSpinner?.isLoading) ||
|
|
10
|
-
inputConfig.incorrectInput);
|
|
11
|
-
}
|
|
12
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowClearPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
13
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ShowClearPipe, isStandalone: true, name: "showClear" }); }
|
|
14
|
-
}
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowClearPipe, decorators: [{
|
|
16
|
-
type: Pipe,
|
|
17
|
-
args: [{
|
|
18
|
-
name: "showClear",
|
|
19
|
-
standalone: true
|
|
20
|
-
}]
|
|
21
|
-
}] });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hvdy1jbGVhci5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtdGVzdC9waXBlcy9zaG93LWNsZWFyLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBT3BELE1BQU0sT0FBTyxhQUFhO0lBQ3hCLFNBQVMsQ0FBQyxXQUFxQjtRQUM3QixPQUFPLENBQ0wsQ0FBQyxDQUFDLFdBQVcsQ0FBQyxTQUFTO1lBQ3JCLENBQUMsQ0FBQyxXQUFXLENBQUMsVUFBVSxJQUFJLFdBQVcsQ0FBQyxXQUFXLENBQUM7WUFDcEQsQ0FBQyxXQUFXLENBQUMsV0FBVyxFQUFFLFFBQVEsQ0FBQyxlQUFlLENBQUM7WUFDbkQsQ0FBQyxXQUFXLENBQUMsUUFBUSxFQUFFLE1BQU07WUFDN0IsQ0FBQyxXQUFXLEVBQUUsY0FBYyxFQUFFLFNBQVMsQ0FBQztZQUMxQyxXQUFXLENBQUMsY0FBYyxDQUMzQixDQUFDO0lBQ0osQ0FBQzsrR0FWVSxhQUFhOzZHQUFiLGFBQWE7OzRGQUFiLGFBQWE7a0JBSnpCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLFdBQVc7b0JBQ2pCLFVBQVUsRUFBRSxJQUFJO2lCQUNqQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBpcGUsIFBpcGVUcmFuc2Zvcm0gfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tIFwiLi4vY29uZmlnL2NhLWlucHV0LmNvbmZpZ1wiO1xuXG5AUGlwZSh7XG4gIG5hbWU6IFwic2hvd0NsZWFyXCIsXG4gIHN0YW5kYWxvbmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgU2hvd0NsZWFyUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm0oaW5wdXRDb25maWc6IElDYUlucHV0KTogYm9vbGVhbiB8IHVuZGVmaW5lZCB7XG4gICAgcmV0dXJuIChcbiAgICAgICghaW5wdXRDb25maWcuaGlkZUNsZWFyICYmXG4gICAgICAgICghaW5wdXRDb25maWcuaXNEaXNhYmxlZCB8fCBpbnB1dENvbmZpZy5yZW1vdmVJbnB1dCkgJiZcbiAgICAgICAgIWlucHV0Q29uZmlnLmN1c3RvbUNsYXNzPy5pbmNsdWRlcyhcImRldGFpbHMtcGFnZXNcIikgJiZcbiAgICAgICAgIWlucHV0Q29uZmlnLmNvbW1hbmRzPy5hY3RpdmUgJiZcbiAgICAgICAgIWlucHV0Q29uZmlnPy5sb2FkaW5nU3Bpbm5lcj8uaXNMb2FkaW5nKSB8fFxuICAgICAgaW5wdXRDb25maWcuaW5jb3JyZWN0SW5wdXRcbiAgICApO1xuICB9XG59XG4iXX0=
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ShowDropdownArrowPipe {
|
|
4
|
-
transform(inputConfig) {
|
|
5
|
-
return ((!inputConfig.hideDropdownArrow &&
|
|
6
|
-
(inputConfig.isDropdown || inputConfig.dropdownLabel) &&
|
|
7
|
-
!inputConfig.multiSelectDropdownActive &&
|
|
8
|
-
!inputConfig.isDisabled) ||
|
|
9
|
-
((inputConfig.name === 'datepicker' ||
|
|
10
|
-
inputConfig.name === 'timepicker' ||
|
|
11
|
-
inputConfig.name == 'datepickerBankCard') &&
|
|
12
|
-
!inputConfig.incorrectInput &&
|
|
13
|
-
!inputConfig.isDisabled &&
|
|
14
|
-
!inputConfig.hideDropdownArrow));
|
|
15
|
-
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowDropdownArrowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
17
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ShowDropdownArrowPipe, isStandalone: true, name: "showDropdownArrow" }); }
|
|
18
|
-
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowDropdownArrowPipe, decorators: [{
|
|
20
|
-
type: Pipe,
|
|
21
|
-
args: [{
|
|
22
|
-
name: 'showDropdownArrow',
|
|
23
|
-
standalone: true,
|
|
24
|
-
}]
|
|
25
|
-
}] });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hvdy1kcm9wZG93bi1hcnJvdy5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtdGVzdC9waXBlcy9zaG93LWRyb3Bkb3duLWFycm93LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBT3BELE1BQU0sT0FBTyxxQkFBcUI7SUFDaEMsU0FBUyxDQUFDLFdBQXFCO1FBQzdCLE9BQU8sQ0FDTCxDQUFDLENBQUMsV0FBVyxDQUFDLGlCQUFpQjtZQUM3QixDQUFDLFdBQVcsQ0FBQyxVQUFVLElBQUksV0FBVyxDQUFDLGFBQWEsQ0FBQztZQUNyRCxDQUFDLFdBQVcsQ0FBQyx5QkFBeUI7WUFDdEMsQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDO1lBQzFCLENBQUMsQ0FBQyxXQUFXLENBQUMsSUFBSSxLQUFLLFlBQVk7Z0JBQ2pDLFdBQVcsQ0FBQyxJQUFJLEtBQUssWUFBWTtnQkFDakMsV0FBVyxDQUFDLElBQUksSUFBSSxvQkFBb0IsQ0FBQztnQkFDekMsQ0FBQyxXQUFXLENBQUMsY0FBYztnQkFDM0IsQ0FBQyxXQUFXLENBQUMsVUFBVTtnQkFDdkIsQ0FBQyxXQUFXLENBQUMsaUJBQWlCLENBQUMsQ0FDbEMsQ0FBQztJQUNKLENBQUM7K0dBZFUscUJBQXFCOzZHQUFyQixxQkFBcUI7OzRGQUFyQixxQkFBcUI7a0JBSmpDLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLG1CQUFtQjtvQkFDekIsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tICcuLi9jb25maWcvY2EtaW5wdXQuY29uZmlnJztcblxuQFBpcGUoe1xuICBuYW1lOiAnc2hvd0Ryb3Bkb3duQXJyb3cnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBTaG93RHJvcGRvd25BcnJvd1BpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKGlucHV0Q29uZmlnOiBJQ2FJbnB1dCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiAoXG4gICAgICAoIWlucHV0Q29uZmlnLmhpZGVEcm9wZG93bkFycm93ICYmXG4gICAgICAgIChpbnB1dENvbmZpZy5pc0Ryb3Bkb3duIHx8IGlucHV0Q29uZmlnLmRyb3Bkb3duTGFiZWwpICYmXG4gICAgICAgICFpbnB1dENvbmZpZy5tdWx0aVNlbGVjdERyb3Bkb3duQWN0aXZlICYmXG4gICAgICAgICFpbnB1dENvbmZpZy5pc0Rpc2FibGVkKSB8fFxuICAgICAgKChpbnB1dENvbmZpZy5uYW1lID09PSAnZGF0ZXBpY2tlcicgfHxcbiAgICAgICAgaW5wdXRDb25maWcubmFtZSA9PT0gJ3RpbWVwaWNrZXInIHx8XG4gICAgICAgIGlucHV0Q29uZmlnLm5hbWUgPT0gJ2RhdGVwaWNrZXJCYW5rQ2FyZCcpICYmXG4gICAgICAgICFpbnB1dENvbmZpZy5pbmNvcnJlY3RJbnB1dCAmJlxuICAgICAgICAhaW5wdXRDb25maWcuaXNEaXNhYmxlZCAmJlxuICAgICAgICAhaW5wdXRDb25maWcuaGlkZURyb3Bkb3duQXJyb3cpXG4gICAgKTtcbiAgfVxufVxuIl19
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Pipe } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ShowInvalidDangerMarkPipe {
|
|
4
|
-
transform(inputConfig, getSuperControl, isFocusInput, isTouchedInput, value) {
|
|
5
|
-
return (((isTouchedInput || getSuperControl?.touched) &&
|
|
6
|
-
getSuperControl?.value &&
|
|
7
|
-
getSuperControl?.invalid &&
|
|
8
|
-
!isFocusInput &&
|
|
9
|
-
!inputConfig.isDisabled &&
|
|
10
|
-
!inputConfig.incorrectInput &&
|
|
11
|
-
!inputConfig.blackInput &&
|
|
12
|
-
!inputConfig.isDropdown &&
|
|
13
|
-
!inputConfig.dropdownLabel &&
|
|
14
|
-
!inputConfig.hideDangerMark) ||
|
|
15
|
-
inputConfig.dangerMark);
|
|
16
|
-
}
|
|
17
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowInvalidDangerMarkPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
18
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ShowInvalidDangerMarkPipe, isStandalone: true, name: "showInvalidDangerMark" }); }
|
|
19
|
-
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowInvalidDangerMarkPipe, decorators: [{
|
|
21
|
-
type: Pipe,
|
|
22
|
-
args: [{
|
|
23
|
-
name: "showInvalidDangerMark",
|
|
24
|
-
standalone: true,
|
|
25
|
-
}]
|
|
26
|
-
}] });
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hvdy1pbnZhbGlkLWRhbmdlci1tYXJrLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L3BpcGVzL3Nob3ctaW52YWxpZC1kYW5nZXItbWFyay5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDOztBQVFwRCxNQUFNLE9BQU8seUJBQXlCO0lBQ3BDLFNBQVMsQ0FDUCxXQUFxQixFQUNyQixlQUFpRCxFQUNqRCxZQUFxQixFQUNyQixjQUF1QixFQUN2QixLQUFhO1FBRWIsT0FBTyxDQUNMLENBQUMsQ0FBQyxjQUFjLElBQUksZUFBZSxFQUFFLE9BQU8sQ0FBQztZQUMzQyxlQUFlLEVBQUUsS0FBSztZQUN0QixlQUFlLEVBQUUsT0FBTztZQUN4QixDQUFDLFlBQVk7WUFDYixDQUFDLFdBQVcsQ0FBQyxVQUFVO1lBQ3ZCLENBQUMsV0FBVyxDQUFDLGNBQWM7WUFDM0IsQ0FBQyxXQUFXLENBQUMsVUFBVTtZQUN2QixDQUFDLFdBQVcsQ0FBQyxVQUFVO1lBQ3ZCLENBQUMsV0FBVyxDQUFDLGFBQWE7WUFDMUIsQ0FBQyxXQUFXLENBQUMsY0FBYyxDQUFDO1lBQzlCLFdBQVcsQ0FBQyxVQUFVLENBQ3ZCLENBQUM7SUFDSixDQUFDOytHQXJCVSx5QkFBeUI7NkdBQXpCLHlCQUF5Qjs7NEZBQXpCLHlCQUF5QjtrQkFKckMsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsdUJBQXVCO29CQUM3QixVQUFVLEVBQUUsSUFBSTtpQkFDakIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IEFic3RyYWN0Q29udHJvbCB9IGZyb20gXCJAYW5ndWxhci9mb3Jtc1wiO1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tIFwiLi4vY29uZmlnL2NhLWlucHV0LmNvbmZpZ1wiO1xuXG5AUGlwZSh7XG4gIG5hbWU6IFwic2hvd0ludmFsaWREYW5nZXJNYXJrXCIsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIFNob3dJbnZhbGlkRGFuZ2VyTWFya1BpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKFxuICAgIGlucHV0Q29uZmlnOiBJQ2FJbnB1dCxcbiAgICBnZXRTdXBlckNvbnRyb2w6IEFic3RyYWN0Q29udHJvbDxhbnksIGFueT4gfCBudWxsLFxuICAgIGlzRm9jdXNJbnB1dDogYm9vbGVhbixcbiAgICBpc1RvdWNoZWRJbnB1dDogYm9vbGVhbixcbiAgICB2YWx1ZTogc3RyaW5nXG4gICk6IGJvb2xlYW4gfCB1bmRlZmluZWQge1xuICAgIHJldHVybiAoXG4gICAgICAoKGlzVG91Y2hlZElucHV0IHx8IGdldFN1cGVyQ29udHJvbD8udG91Y2hlZCkgJiZcbiAgICAgICAgZ2V0U3VwZXJDb250cm9sPy52YWx1ZSAmJlxuICAgICAgICBnZXRTdXBlckNvbnRyb2w/LmludmFsaWQgJiZcbiAgICAgICAgIWlzRm9jdXNJbnB1dCAmJlxuICAgICAgICAhaW5wdXRDb25maWcuaXNEaXNhYmxlZCAmJlxuICAgICAgICAhaW5wdXRDb25maWcuaW5jb3JyZWN0SW5wdXQgJiZcbiAgICAgICAgIWlucHV0Q29uZmlnLmJsYWNrSW5wdXQgJiZcbiAgICAgICAgIWlucHV0Q29uZmlnLmlzRHJvcGRvd24gJiZcbiAgICAgICAgIWlucHV0Q29uZmlnLmRyb3Bkb3duTGFiZWwgJiZcbiAgICAgICAgIWlucHV0Q29uZmlnLmhpZGVEYW5nZXJNYXJrKSB8fFxuICAgICAgaW5wdXRDb25maWcuZGFuZ2VyTWFya1xuICAgICk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import { InputCommandsType } from '../enums';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class ShowPlaceholderTextPipe {
|
|
5
|
-
transform(inputConfig, getSuperControl, isVisibleCommands, value) {
|
|
6
|
-
return ((inputConfig.placeholderText &&
|
|
7
|
-
(getSuperControl?.value || getSuperControl?.value === 0) &&
|
|
8
|
-
!isVisibleCommands &&
|
|
9
|
-
inputConfig?.commands?.type === InputCommandsType.INCREMENT_DECREMENT) ||
|
|
10
|
-
(inputConfig.placeholderText &&
|
|
11
|
-
(getSuperControl?.value || getSuperControl?.value === 0) &&
|
|
12
|
-
inputConfig?.commands?.type !== InputCommandsType.INCREMENT_DECREMENT));
|
|
13
|
-
}
|
|
14
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowPlaceholderTextPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
15
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ShowPlaceholderTextPipe, isStandalone: true, name: "showPlaceholderText" }); }
|
|
16
|
-
}
|
|
17
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowPlaceholderTextPipe, decorators: [{
|
|
18
|
-
type: Pipe,
|
|
19
|
-
args: [{
|
|
20
|
-
name: 'showPlaceholderText',
|
|
21
|
-
standalone: true,
|
|
22
|
-
}]
|
|
23
|
-
}] });
|
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hvdy1wbGFjZWhvbGRlci10ZXh0LnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L3BpcGVzL3Nob3ctcGxhY2Vob2xkZXItdGV4dC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBR3BELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLFVBQVUsQ0FBQzs7QUFNN0MsTUFBTSxPQUFPLHVCQUF1QjtJQUNsQyxTQUFTLENBQ1AsV0FBcUIsRUFDckIsZUFBaUQsRUFDakQsaUJBQTBCLEVBQzFCLEtBQWE7UUFFYixPQUFPLENBQ0wsQ0FBQyxXQUFXLENBQUMsZUFBZTtZQUMxQixDQUFDLGVBQWUsRUFBRSxLQUFLLElBQUksZUFBZSxFQUFFLEtBQUssS0FBSyxDQUFDLENBQUM7WUFDeEQsQ0FBQyxpQkFBaUI7WUFDbEIsV0FBVyxFQUFFLFFBQVEsRUFBRSxJQUFJLEtBQUssaUJBQWlCLENBQUMsbUJBQW1CLENBQUM7WUFDeEUsQ0FBQyxXQUFXLENBQUMsZUFBZTtnQkFDMUIsQ0FBQyxlQUFlLEVBQUUsS0FBSyxJQUFJLGVBQWUsRUFBRSxLQUFLLEtBQUssQ0FBQyxDQUFDO2dCQUN4RCxXQUFXLEVBQUUsUUFBUSxFQUFFLElBQUksS0FBSyxpQkFBaUIsQ0FBQyxtQkFBbUIsQ0FBQyxDQUN6RSxDQUFDO0lBQ0osQ0FBQzsrR0FoQlUsdUJBQXVCOzZHQUF2Qix1QkFBdUI7OzRGQUF2Qix1QkFBdUI7a0JBSm5DLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLHFCQUFxQjtvQkFDM0IsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tICcuLi9jb25maWcvY2EtaW5wdXQuY29uZmlnJztcbmltcG9ydCB7IEFic3RyYWN0Q29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IElucHV0Q29tbWFuZHNUeXBlIH0gZnJvbSAnLi4vZW51bXMnO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdzaG93UGxhY2Vob2xkZXJUZXh0JyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgU2hvd1BsYWNlaG9sZGVyVGV4dFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKFxuICAgIGlucHV0Q29uZmlnOiBJQ2FJbnB1dCxcbiAgICBnZXRTdXBlckNvbnRyb2w6IEFic3RyYWN0Q29udHJvbDxhbnksIGFueT4gfCBudWxsLFxuICAgIGlzVmlzaWJsZUNvbW1hbmRzOiBib29sZWFuLFxuICAgIHZhbHVlOiBzdHJpbmdcbiAgKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIChcbiAgICAgIChpbnB1dENvbmZpZy5wbGFjZWhvbGRlclRleHQgJiZcbiAgICAgICAgKGdldFN1cGVyQ29udHJvbD8udmFsdWUgfHwgZ2V0U3VwZXJDb250cm9sPy52YWx1ZSA9PT0gMCkgJiZcbiAgICAgICAgIWlzVmlzaWJsZUNvbW1hbmRzICYmXG4gICAgICAgIGlucHV0Q29uZmlnPy5jb21tYW5kcz8udHlwZSA9PT0gSW5wdXRDb21tYW5kc1R5cGUuSU5DUkVNRU5UX0RFQ1JFTUVOVCkgfHxcbiAgICAgIChpbnB1dENvbmZpZy5wbGFjZWhvbGRlclRleHQgJiZcbiAgICAgICAgKGdldFN1cGVyQ29udHJvbD8udmFsdWUgfHwgZ2V0U3VwZXJDb250cm9sPy52YWx1ZSA9PT0gMCkgJiZcbiAgICAgICAgaW5wdXRDb25maWc/LmNvbW1hbmRzPy50eXBlICE9PSBJbnB1dENvbW1hbmRzVHlwZS5JTkNSRU1FTlRfREVDUkVNRU5UKVxuICAgICk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Pipe } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ShowValidCheckPipe {
|
|
4
|
-
transform(getSuperControl, isFocusInput, inputConfig, value) {
|
|
5
|
-
return ((getSuperControl?.value || getSuperControl?.value === 0) &&
|
|
6
|
-
getSuperControl?.valid &&
|
|
7
|
-
!isFocusInput &&
|
|
8
|
-
!inputConfig.isDisabled &&
|
|
9
|
-
!inputConfig.placeholderIcon &&
|
|
10
|
-
!inputConfig.isDropdown &&
|
|
11
|
-
!inputConfig.blackInput &&
|
|
12
|
-
!inputConfig.hideRequiredCheck &&
|
|
13
|
-
!inputConfig.incorrectInput &&
|
|
14
|
-
!inputConfig?.loadingSpinner?.isLoading &&
|
|
15
|
-
!inputConfig.dropdownLabel);
|
|
16
|
-
}
|
|
17
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowValidCheckPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
18
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ShowValidCheckPipe, isStandalone: true, name: "showValidCheck" }); }
|
|
19
|
-
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ShowValidCheckPipe, decorators: [{
|
|
21
|
-
type: Pipe,
|
|
22
|
-
args: [{
|
|
23
|
-
name: "showValidCheck",
|
|
24
|
-
standalone: true
|
|
25
|
-
}]
|
|
26
|
-
}] });
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hvdy12YWxpZC1jaGVjay5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtdGVzdC9waXBlcy9zaG93LXZhbGlkLWNoZWNrLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBUXBELE1BQU0sT0FBTyxrQkFBa0I7SUFDN0IsU0FBUyxDQUNQLGVBQWlELEVBQ2pELFlBQXFCLEVBQ3JCLFdBQXFCLEVBQ3JCLEtBQWE7UUFFYixPQUFPLENBQ0wsQ0FBQyxlQUFlLEVBQUUsS0FBSyxJQUFJLGVBQWUsRUFBRSxLQUFLLEtBQUssQ0FBQyxDQUFDO1lBQ3hELGVBQWUsRUFBRSxLQUFLO1lBQ3RCLENBQUMsWUFBWTtZQUNiLENBQUMsV0FBVyxDQUFDLFVBQVU7WUFDdkIsQ0FBQyxXQUFXLENBQUMsZUFBZTtZQUM1QixDQUFDLFdBQVcsQ0FBQyxVQUFVO1lBQ3ZCLENBQUMsV0FBVyxDQUFDLFVBQVU7WUFDdkIsQ0FBQyxXQUFXLENBQUMsaUJBQWlCO1lBQzlCLENBQUMsV0FBVyxDQUFDLGNBQWM7WUFDM0IsQ0FBQyxXQUFXLEVBQUUsY0FBYyxFQUFFLFNBQVM7WUFDdkMsQ0FBQyxXQUFXLENBQUMsYUFBYSxDQUMzQixDQUFDO0lBQ0osQ0FBQzsrR0FwQlUsa0JBQWtCOzZHQUFsQixrQkFBa0I7OzRGQUFsQixrQkFBa0I7a0JBSjlCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLGdCQUFnQjtvQkFDdEIsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5pbXBvcnQgeyBBYnN0cmFjdENvbnRyb2wgfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcbmltcG9ydCB7IElDYUlucHV0IH0gZnJvbSBcIi4uL2NvbmZpZy9jYS1pbnB1dC5jb25maWdcIjtcblxuQFBpcGUoe1xuICBuYW1lOiBcInNob3dWYWxpZENoZWNrXCIsXG4gIHN0YW5kYWxvbmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgU2hvd1ZhbGlkQ2hlY2tQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybShcbiAgICBnZXRTdXBlckNvbnRyb2w6IEFic3RyYWN0Q29udHJvbDxhbnksIGFueT4gfCBudWxsLFxuICAgIGlzRm9jdXNJbnB1dDogYm9vbGVhbixcbiAgICBpbnB1dENvbmZpZzogSUNhSW5wdXQsXG4gICAgdmFsdWU6IHN0cmluZ1xuICApOiBib29sZWFuIHtcbiAgICByZXR1cm4gKFxuICAgICAgKGdldFN1cGVyQ29udHJvbD8udmFsdWUgfHwgZ2V0U3VwZXJDb250cm9sPy52YWx1ZSA9PT0gMCkgJiZcbiAgICAgIGdldFN1cGVyQ29udHJvbD8udmFsaWQgJiZcbiAgICAgICFpc0ZvY3VzSW5wdXQgJiZcbiAgICAgICFpbnB1dENvbmZpZy5pc0Rpc2FibGVkICYmXG4gICAgICAhaW5wdXRDb25maWcucGxhY2Vob2xkZXJJY29uICYmXG4gICAgICAhaW5wdXRDb25maWcuaXNEcm9wZG93biAmJlxuICAgICAgIWlucHV0Q29uZmlnLmJsYWNrSW5wdXQgJiZcbiAgICAgICFpbnB1dENvbmZpZy5oaWRlUmVxdWlyZWRDaGVjayAmJlxuICAgICAgIWlucHV0Q29uZmlnLmluY29ycmVjdElucHV0ICYmXG4gICAgICAhaW5wdXRDb25maWc/LmxvYWRpbmdTcGlubmVyPy5pc0xvYWRpbmcgJiZcbiAgICAgICFpbnB1dENvbmZpZy5kcm9wZG93bkxhYmVsXG4gICAgKTtcbiAgfVxufVxuIl19
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './input-svg-routes';
|
|
2
|
-
export * from './input-change-value.type';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L3V0aWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYywyQkFBMkIsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vaW5wdXQtc3ZnLXJvdXRlcyc7XG5leHBvcnQgKiBmcm9tICcuL2lucHV0LWNoYW5nZS12YWx1ZS50eXBlJyJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtY2hhbmdlLXZhbHVlLnR5cGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L3V0aWxzL2lucHV0LWNoYW5nZS12YWx1ZS50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgdHlwZSBJbnB1dENoYW5nZVZhbHVlID0gc3RyaW5nIHwgbnVtYmVyIHwgRGF0ZTtcbiJdfQ==
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export class InputSvgRoutes {
|
|
2
|
-
static { this.removeInputSvg = 'assets/ca-components/svg/input/ic_remove_input.svg'; }
|
|
3
|
-
static { this.xClearSvg = 'assets/ca-components/svg/input/ic_x.svg'; }
|
|
4
|
-
static { this.xClearCommonSvg = 'assets/ca-components/svg/common/ic_x.svg'; }
|
|
5
|
-
static { this.confirmSvg = 'assets/ca-components/svg/input/ic_confirm.svg'; }
|
|
6
|
-
static { this.dangerSvg = 'assets/ca-components/svg/input/ic_danger.svg'; }
|
|
7
|
-
static { this.eyeVisibleSvg = 'assets/ca-components/svg/input/ic_eye-visible.svg'; }
|
|
8
|
-
static { this.eyeHiddenSvg = 'assets/ca-components/svg/input/ic_eye-hidden.svg'; }
|
|
9
|
-
static { this.decrementSvg = 'assets/ca-components/svg/input/ic_pm_decrement.svg'; }
|
|
10
|
-
static { this.incrementSvg = 'assets/ca-components/svg/input/ic_pm_increment.svg'; }
|
|
11
|
-
static { this.inputPenSvg = 'assets/ca-components/svg/input/ic_spec_input_pen.svg'; }
|
|
12
|
-
static { this.inputDropdownArrowSvg = 'assets/ca-components/svg/input/ic_arrow_input.svg'; }
|
|
13
|
-
static { this.dynamicLabelSvg = 'assets/ca-components/svg/input/ic_dynamic_label.svg'; }
|
|
14
|
-
static { this.dynamicFocusLabelSvg = 'assets/ca-components/svg/input/ic_dynamic_focus_label.svg'; }
|
|
15
|
-
static { this.ownerBadgeBlueSvg = 'assets/ca-components/svg/common/owner-badge-blue.svg'; }
|
|
16
|
-
}
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtc3ZnLXJvdXRlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LXRlc3QvdXRpbHMvaW5wdXQtc3ZnLXJvdXRlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLE9BQU8sY0FBYzthQUNsQixtQkFBYyxHQUNuQixvREFBb0QsQ0FBQzthQUNoRCxjQUFTLEdBQVcseUNBQXlDLENBQUM7YUFDOUQsb0JBQWUsR0FBVywwQ0FBMEMsQ0FBQzthQUNyRSxlQUFVLEdBQVcsK0NBQStDLENBQUM7YUFDckUsY0FBUyxHQUFXLDhDQUE4QyxDQUFDO2FBQ25FLGtCQUFhLEdBQ2xCLG1EQUFtRCxDQUFDO2FBQy9DLGlCQUFZLEdBQ2pCLGtEQUFrRCxDQUFDO2FBQzlDLGlCQUFZLEdBQ2pCLG9EQUFvRCxDQUFDO2FBQ2hELGlCQUFZLEdBQ2pCLG9EQUFvRCxDQUFDO2FBQ2hELGdCQUFXLEdBQ2hCLHNEQUFzRCxDQUFDO2FBQ2xELDBCQUFxQixHQUMxQixtREFBbUQsQ0FBQzthQUMvQyxvQkFBZSxHQUNwQixxREFBcUQsQ0FBQzthQUNqRCx5QkFBb0IsR0FDekIsMkRBQTJELENBQUM7YUFDdkQsc0JBQWlCLEdBQ3RCLHNEQUFzRCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIElucHV0U3ZnUm91dGVzIHtcbiAgc3RhdGljIHJlbW92ZUlucHV0U3ZnOiBzdHJpbmcgPVxuICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvaW5wdXQvaWNfcmVtb3ZlX2lucHV0LnN2Zyc7XG4gIHN0YXRpYyB4Q2xlYXJTdmc6IHN0cmluZyA9ICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvaW5wdXQvaWNfeC5zdmcnO1xuICBzdGF0aWMgeENsZWFyQ29tbW9uU3ZnOiBzdHJpbmcgPSAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2NvbW1vbi9pY194LnN2Zyc7XG4gIHN0YXRpYyBjb25maXJtU3ZnOiBzdHJpbmcgPSAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2lucHV0L2ljX2NvbmZpcm0uc3ZnJztcbiAgc3RhdGljIGRhbmdlclN2Zzogc3RyaW5nID0gJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9pbnB1dC9pY19kYW5nZXIuc3ZnJztcbiAgc3RhdGljIGV5ZVZpc2libGVTdmc6IHN0cmluZyA9XG4gICAgJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9pbnB1dC9pY19leWUtdmlzaWJsZS5zdmcnO1xuICBzdGF0aWMgZXllSGlkZGVuU3ZnOiBzdHJpbmcgPVxuICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvaW5wdXQvaWNfZXllLWhpZGRlbi5zdmcnO1xuICBzdGF0aWMgZGVjcmVtZW50U3ZnOiBzdHJpbmcgPVxuICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvaW5wdXQvaWNfcG1fZGVjcmVtZW50LnN2Zyc7XG4gIHN0YXRpYyBpbmNyZW1lbnRTdmc6IHN0cmluZyA9XG4gICAgJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9pbnB1dC9pY19wbV9pbmNyZW1lbnQuc3ZnJztcbiAgc3RhdGljIGlucHV0UGVuU3ZnOiBzdHJpbmcgPVxuICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvaW5wdXQvaWNfc3BlY19pbnB1dF9wZW4uc3ZnJztcbiAgc3RhdGljIGlucHV0RHJvcGRvd25BcnJvd1N2Zzogc3RyaW5nID1cbiAgICAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2lucHV0L2ljX2Fycm93X2lucHV0LnN2Zyc7XG4gIHN0YXRpYyBkeW5hbWljTGFiZWxTdmc6IHN0cmluZyA9XG4gICAgJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9pbnB1dC9pY19keW5hbWljX2xhYmVsLnN2Zyc7XG4gIHN0YXRpYyBkeW5hbWljRm9jdXNMYWJlbFN2Zzogc3RyaW5nID1cbiAgICAnYXNzZXRzL2NhLWNvbXBvbmVudHMvc3ZnL2lucHV0L2ljX2R5bmFtaWNfZm9jdXNfbGFiZWwuc3ZnJztcbiAgc3RhdGljIG93bmVyQmFkZ2VCbHVlU3ZnOiBzdHJpbmcgPVxuICAgICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvY29tbW9uL293bmVyLWJhZGdlLWJsdWUuc3ZnJztcbn1cbiJdfQ==
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export var DropdownMenuStringEnum;
|
|
2
|
-
(function (DropdownMenuStringEnum) {
|
|
3
|
-
// titles
|
|
4
|
-
DropdownMenuStringEnum["EDIT"] = "Edit";
|
|
5
|
-
DropdownMenuStringEnum["VIEW_DETAILS"] = "View Details";
|
|
6
|
-
DropdownMenuStringEnum["SHARE"] = "Share";
|
|
7
|
-
DropdownMenuStringEnum["PRINT"] = "Print";
|
|
8
|
-
DropdownMenuStringEnum["DELETE"] = "Delete";
|
|
9
|
-
DropdownMenuStringEnum["UNASSIGN"] = "Unassign";
|
|
10
|
-
// types
|
|
11
|
-
DropdownMenuStringEnum["EDIT_TYPE"] = "edit";
|
|
12
|
-
DropdownMenuStringEnum["VIEW_DETAILS_TYPE"] = "view-details";
|
|
13
|
-
DropdownMenuStringEnum["SHARE_TYPE"] = "share";
|
|
14
|
-
DropdownMenuStringEnum["PRINT_TYPE"] = "print";
|
|
15
|
-
DropdownMenuStringEnum["DELETE_TYPE"] = "delete";
|
|
16
|
-
DropdownMenuStringEnum["UNASSIGN_TYPE"] = "unassign";
|
|
17
|
-
// svg classes
|
|
18
|
-
DropdownMenuStringEnum["REGULAR"] = "regular";
|
|
19
|
-
})(DropdownMenuStringEnum || (DropdownMenuStringEnum = {}));
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1zdHJpbmcuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9lbnVtcy9kcm9wZG93bi1tZW51LXN0cmluZy5lbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLHNCQW1CWDtBQW5CRCxXQUFZLHNCQUFzQjtJQUM5QixTQUFTO0lBQ1QsdUNBQWEsQ0FBQTtJQUNiLHVEQUE2QixDQUFBO0lBQzdCLHlDQUFlLENBQUE7SUFDZix5Q0FBZSxDQUFBO0lBQ2YsMkNBQWlCLENBQUE7SUFDakIsK0NBQXFCLENBQUE7SUFFckIsUUFBUTtJQUNSLDRDQUFrQixDQUFBO0lBQ2xCLDREQUFrQyxDQUFBO0lBQ2xDLDhDQUFvQixDQUFBO0lBQ3BCLDhDQUFvQixDQUFBO0lBQ3BCLGdEQUFzQixDQUFBO0lBQ3RCLG9EQUEwQixDQUFBO0lBRTFCLGNBQWM7SUFDZCw2Q0FBbUIsQ0FBQTtBQUN2QixDQUFDLEVBbkJXLHNCQUFzQixLQUF0QixzQkFBc0IsUUFtQmpDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gRHJvcGRvd25NZW51U3RyaW5nRW51bSB7XG4gICAgLy8gdGl0bGVzXG4gICAgRURJVCA9ICdFZGl0JyxcbiAgICBWSUVXX0RFVEFJTFMgPSAnVmlldyBEZXRhaWxzJyxcbiAgICBTSEFSRSA9ICdTaGFyZScsXG4gICAgUFJJTlQgPSAnUHJpbnQnLFxuICAgIERFTEVURSA9ICdEZWxldGUnLFxuICAgIFVOQVNTSUdOID0gJ1VuYXNzaWduJyxcblxuICAgIC8vIHR5cGVzXG4gICAgRURJVF9UWVBFID0gJ2VkaXQnLFxuICAgIFZJRVdfREVUQUlMU19UWVBFID0gJ3ZpZXctZGV0YWlscycsXG4gICAgU0hBUkVfVFlQRSA9ICdzaGFyZScsXG4gICAgUFJJTlRfVFlQRSA9ICdwcmludCcsXG4gICAgREVMRVRFX1RZUEUgPSAnZGVsZXRlJyxcbiAgICBVTkFTU0lHTl9UWVBFID0gJ3VuYXNzaWduJyxcblxuICAgIC8vIHN2ZyBjbGFzc2VzXG4gICAgUkVHVUxBUiA9ICdyZWd1bGFyJyxcbn1cbiJdfQ==
|
package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.d.ts
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import { FormControl } from '@angular/forms';
|
|
2
|
-
import { EventEmitter, OnDestroy, OnInit, ChangeDetectorRef, AfterContentInit } from '@angular/core';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { UntypedFormGroup, NgControl, ControlValueAccessor } from '@angular/forms';
|
|
5
|
-
import { ICaInput } from '../ca-input-test/config';
|
|
6
|
-
import { CaInputDropdownTestComponent } from '../ca-input-dropdown-test/ca-input-dropdown-test.component';
|
|
7
|
-
import { AddressData } from './models/address-data.model';
|
|
8
|
-
import { AddressList } from './models/address-list.model';
|
|
9
|
-
import { CommandsHandler } from './models/commands-handler.model';
|
|
10
|
-
import { InputAddressCommandsString } from './models/input-address-commands-string.model';
|
|
11
|
-
import { SentAddressData } from './models/sent-address-data.model';
|
|
12
|
-
import { AddressListResponse } from '../../models/address-list-response.model';
|
|
13
|
-
import * as i0 from "@angular/core";
|
|
14
|
-
export declare class CaInputAddressDropdownTestComponent implements OnInit, ControlValueAccessor, OnDestroy, AfterContentInit {
|
|
15
|
-
superControl: NgControl;
|
|
16
|
-
private ref;
|
|
17
|
-
inputDropdown: CaInputDropdownTestComponent;
|
|
18
|
-
set placeholderType(value: string);
|
|
19
|
-
set receivedAddressData(value: AddressData | null);
|
|
20
|
-
set receivedAddressList(value: AddressListResponse | null);
|
|
21
|
-
sentAddressValue: EventEmitter<string>;
|
|
22
|
-
inputConfig: ICaInput;
|
|
23
|
-
commandHandler: CommandsHandler;
|
|
24
|
-
isRouting: boolean;
|
|
25
|
-
closedBorder: boolean;
|
|
26
|
-
incorrectValue: boolean;
|
|
27
|
-
hideEmptyLoaded: boolean;
|
|
28
|
-
addresList: AddressList[];
|
|
29
|
-
selectedAddress: EventEmitter<AddressData>;
|
|
30
|
-
sentAddressData: EventEmitter<SentAddressData>;
|
|
31
|
-
closeDropdown: EventEmitter<boolean>;
|
|
32
|
-
commandEvent: EventEmitter<AddressData | {}>;
|
|
33
|
-
changeFlag: EventEmitter<boolean>;
|
|
34
|
-
incorrectEvent: EventEmitter<boolean>;
|
|
35
|
-
handleKeyboardEvent(event: KeyboardEvent): void;
|
|
36
|
-
private searchLayers;
|
|
37
|
-
currentAddressData: AddressData | null;
|
|
38
|
-
addressExpanded: boolean;
|
|
39
|
-
chosenFromDropdown: boolean;
|
|
40
|
-
private allowValidation;
|
|
41
|
-
stopType: string;
|
|
42
|
-
private requestSent;
|
|
43
|
-
_receivedAddressList: AddressListResponse | null;
|
|
44
|
-
private destroy$;
|
|
45
|
-
addressForm: UntypedFormGroup;
|
|
46
|
-
constructor(superControl: NgControl, ref: ChangeDetectorRef);
|
|
47
|
-
ngAfterContentInit(): void;
|
|
48
|
-
writeValue(address: any): void;
|
|
49
|
-
registerOnChange(fn: any): void;
|
|
50
|
-
onChange(_: any): void;
|
|
51
|
-
registerOnTouched(_: any): void;
|
|
52
|
-
ngOnInit(): void;
|
|
53
|
-
attachAddressStreetValidation(): void;
|
|
54
|
-
private observableInputSearch;
|
|
55
|
-
observableInputSearch$: Observable<string>;
|
|
56
|
-
handleSearchInput(text: string): void;
|
|
57
|
-
initChangesListener(): void;
|
|
58
|
-
get getSuperControl(): FormControl;
|
|
59
|
-
onCloseDropdown(event: boolean): void;
|
|
60
|
-
getAddressData(address: string): void;
|
|
61
|
-
onSelectDropdown(event: AddressList | null): void;
|
|
62
|
-
onCommands(event: KeyboardEvent, type: InputAddressCommandsString): void;
|
|
63
|
-
addressExpand(): void;
|
|
64
|
-
closeAddress(): void;
|
|
65
|
-
clearInput(event: KeyboardEvent): void;
|
|
66
|
-
private checkSearchLayers;
|
|
67
|
-
changeStopType(): void;
|
|
68
|
-
onIncorrectInput(event: boolean): void;
|
|
69
|
-
onClearInputEvent(): void;
|
|
70
|
-
private checkAddressValidation;
|
|
71
|
-
ngOnDestroy(): void;
|
|
72
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputAddressDropdownTestComponent, [{ self: true; }, null]>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputAddressDropdownTestComponent, "ca-input-address-dropdown-test", never, { "placeholderType": { "alias": "placeholderType"; "required": false; }; "receivedAddressData": { "alias": "receivedAddressData"; "required": false; }; "receivedAddressList": { "alias": "receivedAddressList"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; "commandHandler": { "alias": "commandHandler"; "required": false; }; "isRouting": { "alias": "isRouting"; "required": false; }; "closedBorder": { "alias": "closedBorder"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "hideEmptyLoaded": { "alias": "hideEmptyLoaded"; "required": false; }; }, { "sentAddressValue": "sentAddressValue"; "selectedAddress": "selectedAddress"; "sentAddressData": "sentAddressData"; "closeDropdown": "closeDropdown"; "commandEvent": "commandEvent"; "changeFlag": "changeFlag"; "incorrectEvent": "incorrectEvent"; }, never, never, true, never>;
|
|
74
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { InputAddressCommandsStringEnum } from '../enums/input-address-commands-string.enum';
|
|
2
|
-
import { AddressEntity } from '../../../models/address-entity.model';
|
|
3
|
-
import { LongLat } from './long-lat.model';
|
|
4
|
-
import { InputAddressCommandsString } from './input-address-commands-string.model';
|
|
5
|
-
export interface AddressData {
|
|
6
|
-
address: AddressEntity;
|
|
7
|
-
longLat?: LongLat;
|
|
8
|
-
valid: boolean;
|
|
9
|
-
type?: InputAddressCommandsStringEnum | InputAddressCommandsString;
|
|
10
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type InputAddressCommandsString = 'confirm' | 'cancel' | 'Enter' | 'Escape';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './input-dropdown.animation';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const inputDropdownAnimation: (type: string) => import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, Renderer2 } from '@angular/core';
|
|
2
|
-
import { AfterViewInit, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
-
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
-
import { ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
|
|
5
|
-
import { CommandsEvent } from '../ca-input/models';
|
|
6
|
-
import { OptionModel } from './models/input-dropdown-option.model';
|
|
7
|
-
import { InputDropdownSvgRoutes } from './utils/svg-routes/input-dropdown-svg-routes';
|
|
8
|
-
import { DropdownTemplateTypeEnum } from './enums';
|
|
9
|
-
import { EventInputManager } from '../ca-input/base-classes/ca-input-event-manager';
|
|
10
|
-
import { InputTestComponent } from '../ca-input-test/input-test.component';
|
|
11
|
-
import { ICaInput } from '../ca-input-test/config';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class CaInputDropdownTestComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor, AfterViewInit {
|
|
14
|
-
superControl: NgControl;
|
|
15
|
-
private cdRef;
|
|
16
|
-
private renderer;
|
|
17
|
-
inputRef: InputTestComponent;
|
|
18
|
-
popoverRef: NgbPopover;
|
|
19
|
-
dropdownComponentRef: any;
|
|
20
|
-
label: keyof OptionModel;
|
|
21
|
-
optionValue: string;
|
|
22
|
-
inputHoveredItem: number;
|
|
23
|
-
dropDownIsOpen: boolean;
|
|
24
|
-
_template: string;
|
|
25
|
-
_canAddNew: boolean;
|
|
26
|
-
set template(value: string);
|
|
27
|
-
multiselectTemplate: string;
|
|
28
|
-
inputConfig: ICaInput;
|
|
29
|
-
set canAddNew(value: boolean);
|
|
30
|
-
get canAddNew(): boolean;
|
|
31
|
-
canOpenModal: boolean;
|
|
32
|
-
_sort: string;
|
|
33
|
-
set sort(value: string);
|
|
34
|
-
get sort(): string;
|
|
35
|
-
_activeItem: OptionModel | null;
|
|
36
|
-
set activeItem(value: OptionModel | null);
|
|
37
|
-
get activeItem(): OptionModel | null;
|
|
38
|
-
activeItemColor: OptionModel | null;
|
|
39
|
-
labelMode: 'Label' | 'Color';
|
|
40
|
-
_options: OptionModel[];
|
|
41
|
-
set options(values: OptionModel[]);
|
|
42
|
-
set preloadMultiselectItems(values: OptionModel[]);
|
|
43
|
-
isDetailsPages: boolean;
|
|
44
|
-
isIncorrectValue: boolean;
|
|
45
|
-
isAddressDropdown: boolean;
|
|
46
|
-
selectedItem: EventEmitter<OptionModel | null>;
|
|
47
|
-
selectedItems: EventEmitter<OptionModel[] | null>;
|
|
48
|
-
selectedItemColor: EventEmitter<OptionModel | null>;
|
|
49
|
-
selectedLabelMode: EventEmitter<string>;
|
|
50
|
-
closeDropdown: EventEmitter<boolean>;
|
|
51
|
-
saveItem: EventEmitter<{
|
|
52
|
-
data: OptionModel | null;
|
|
53
|
-
action: string;
|
|
54
|
-
}>;
|
|
55
|
-
incorrectEvent: EventEmitter<boolean>;
|
|
56
|
-
placeholderIconEvent: EventEmitter<boolean>;
|
|
57
|
-
paginationEvent: EventEmitter<number>;
|
|
58
|
-
activeGroupEvent: EventEmitter<OptionModel>;
|
|
59
|
-
clearInputEvent: EventEmitter<boolean>;
|
|
60
|
-
searchInputEvent: EventEmitter<string>;
|
|
61
|
-
searchInputText: EventInputManager<string>;
|
|
62
|
-
originalOptions: OptionModel[];
|
|
63
|
-
paginationNumber: number;
|
|
64
|
-
multiselectItems: OptionModel[];
|
|
65
|
-
isMultiSelectInputFocus: boolean;
|
|
66
|
-
multiSelectLabel: string | undefined;
|
|
67
|
-
lastActiveMultiselectItem: OptionModel | null;
|
|
68
|
-
isInAddMode: boolean;
|
|
69
|
-
private dropdownPosition;
|
|
70
|
-
clearTimeoutDropdown: string | number | NodeJS.Timeout | undefined;
|
|
71
|
-
hoveringIndex: number;
|
|
72
|
-
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
73
|
-
dropdownTemplateTypeEnum: typeof DropdownTemplateTypeEnum;
|
|
74
|
-
private destroy$;
|
|
75
|
-
constructor(superControl: NgControl, cdRef: ChangeDetectorRef, renderer: Renderer2);
|
|
76
|
-
get getSuperControl(): import("@angular/forms").AbstractControl<any, any> | null;
|
|
77
|
-
inputFormControl: FormControl;
|
|
78
|
-
lastValidOption: OptionModel;
|
|
79
|
-
writeValue(value: any): void;
|
|
80
|
-
onTouched: () => void;
|
|
81
|
-
onChange(_: any): void;
|
|
82
|
-
registerOnChange(fn: any): void;
|
|
83
|
-
registerOnTouched(fn: () => void): void;
|
|
84
|
-
ngOnInit(): void;
|
|
85
|
-
ngAfterViewInit(): void;
|
|
86
|
-
onScrollDropdown(event: EventTarget | null): void;
|
|
87
|
-
onActiveItem(option: OptionModel, group?: any): void;
|
|
88
|
-
onActiveItemGroup(event: {
|
|
89
|
-
option: OptionModel;
|
|
90
|
-
group: any;
|
|
91
|
-
}): void;
|
|
92
|
-
onClearSearch(): void;
|
|
93
|
-
clearDropdownLabel(): void;
|
|
94
|
-
commandEvent(event: CommandsEvent): void;
|
|
95
|
-
addNewItem(): void;
|
|
96
|
-
updateItem(): void;
|
|
97
|
-
addNewConfig(): void;
|
|
98
|
-
onIncorrectInput(event: boolean): void;
|
|
99
|
-
identity(index: number, item: OptionModel): number | undefined;
|
|
100
|
-
toggleNestedList(option: OptionModel): void;
|
|
101
|
-
onBlurInput(event: boolean): void;
|
|
102
|
-
onClearInputEvent(event: boolean): void;
|
|
103
|
-
handleHiddenDropdown(): void;
|
|
104
|
-
handleOpenDropdown(): void;
|
|
105
|
-
showHideDropdown(action: boolean): void;
|
|
106
|
-
getMainGroup(): OptionModel[];
|
|
107
|
-
dropDownKeyNavigation({ keyCode, data, }: {
|
|
108
|
-
keyCode: number;
|
|
109
|
-
data: any;
|
|
110
|
-
}): void;
|
|
111
|
-
setDropdownValue(option: OptionModel, optionValue?: string, label?: string): void;
|
|
112
|
-
onMultiselectSelect(option: OptionModel): void;
|
|
113
|
-
removeMultiSelectItem(index: number): void;
|
|
114
|
-
deleteAllMultiSelectItems(currentLabel?: string): void;
|
|
115
|
-
toggleMultiselectDropdown(): void;
|
|
116
|
-
dropdownValue: string | undefined;
|
|
117
|
-
setControlValue(value?: string, dropdownInputValue?: string): void;
|
|
118
|
-
/**
|
|
119
|
-
* Navigate through dropdown with keyboard arrows
|
|
120
|
-
*/
|
|
121
|
-
private dropdownNavigation;
|
|
122
|
-
ngOnDestroy(): void;
|
|
123
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownTestComponent, [{ self: true; }, null, null]>;
|
|
124
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownTestComponent, "ca-input-dropdown-test", never, { "label": { "alias": "label"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "template": { "alias": "template"; "required": false; }; "multiselectTemplate": { "alias": "multiselectTemplate"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; "canAddNew": { "alias": "canAddNew"; "required": false; }; "canOpenModal": { "alias": "canOpenModal"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "activeItemColor": { "alias": "activeItemColor"; "required": false; }; "labelMode": { "alias": "labelMode"; "required": false; }; "options": { "alias": "options"; "required": false; }; "preloadMultiselectItems": { "alias": "preloadMultiselectItems"; "required": false; }; "isDetailsPages": { "alias": "isDetailsPages"; "required": false; }; "isIncorrectValue": { "alias": "isIncorrectValue"; "required": false; }; "isAddressDropdown": { "alias": "isAddressDropdown"; "required": false; }; }, { "selectedItem": "selectedItem"; "selectedItems": "selectedItems"; "selectedItemColor": "selectedItemColor"; "selectedLabelMode": "selectedLabelMode"; "closeDropdown": "closeDropdown"; "saveItem": "saveItem"; "incorrectEvent": "incorrectEvent"; "placeholderIconEvent": "placeholderIconEvent"; "paginationEvent": "pagination"; "activeGroupEvent": "activeGroup"; "clearInputEvent": "clearInputEvent"; "searchInputEvent": "searchInputEvent"; }, never, never, true, never>;
|
|
125
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
-
import { ICaInput } from '../../../ca-input-test/config';
|
|
3
|
-
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaInputDropdownDefaultTemplateComponent {
|
|
6
|
-
dropdownOption: QueryList<ElementRef>;
|
|
7
|
-
options: OptionModel[];
|
|
8
|
-
activeItem: OptionModel | null;
|
|
9
|
-
searchText: string;
|
|
10
|
-
inputConfig: ICaInput;
|
|
11
|
-
label: keyof OptionModel;
|
|
12
|
-
set inputHoveredItem(val: number);
|
|
13
|
-
_inputHoveredItem: number;
|
|
14
|
-
get inputHoveredItem(): number;
|
|
15
|
-
onActiveItem: EventEmitter<OptionModel>;
|
|
16
|
-
constructor();
|
|
17
|
-
onActiveItemEmit(option: OptionModel): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownDefaultTemplateComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownDefaultTemplateComponent, "app-ca-input-dropdown-default-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "searchText": { "alias": "searchText"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; "label": { "alias": "label"; "required": false; }; "inputHoveredItem": { "alias": "inputHoveredItem"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
20
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
-
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
|
-
import { InputDropdownSvgRoutes } from '../../utils/svg-routes/input-dropdown-svg-routes';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaInputDropdownDetailsTemplateComponent {
|
|
6
|
-
options: OptionModel[];
|
|
7
|
-
activeItem: OptionModel | null;
|
|
8
|
-
searchText: string;
|
|
9
|
-
sort: string;
|
|
10
|
-
label: keyof OptionModel;
|
|
11
|
-
onActiveItem: EventEmitter<OptionModel>;
|
|
12
|
-
dropdownOption: QueryList<ElementRef>;
|
|
13
|
-
set inputHoveredItem(val: number);
|
|
14
|
-
_inputHoveredItem: number;
|
|
15
|
-
get inputHoveredItem(): number;
|
|
16
|
-
hoveringIndex: number;
|
|
17
|
-
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
18
|
-
constructor();
|
|
19
|
-
onActiveItemEmit(option: OptionModel): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownDetailsTemplateComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownDetailsTemplateComponent, "app-ca-input-dropdown-details-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "searchText": { "alias": "searchText"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "label": { "alias": "label"; "required": false; }; "inputHoveredItem": { "alias": "inputHoveredItem"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
22
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
-
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CaInputDropdownDispatchComponent {
|
|
5
|
-
options: OptionModel[];
|
|
6
|
-
activeItem: OptionModel | null;
|
|
7
|
-
searchText: string;
|
|
8
|
-
label: keyof OptionModel;
|
|
9
|
-
dropdownOption: QueryList<ElementRef>;
|
|
10
|
-
set inputHoveredItem(val: number);
|
|
11
|
-
_inputHoveredItem: number;
|
|
12
|
-
get inputHoveredItem(): number;
|
|
13
|
-
onActiveItem: EventEmitter<OptionModel>;
|
|
14
|
-
hoveredOption: number;
|
|
15
|
-
constructor();
|
|
16
|
-
onActiveItemEmit(option: OptionModel): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownDispatchComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownDispatchComponent, "app-ca-input-dropdown-dispatch", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "searchText": { "alias": "searchText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "inputHoveredItem": { "alias": "inputHoveredItem"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
19
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
-
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
3
|
-
import { InputDropdownSvgRoutes } from '../../utils/svg-routes/input-dropdown-svg-routes';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaInputDropdownDoubleTextTemplateComponent {
|
|
6
|
-
options: OptionModel[];
|
|
7
|
-
activeItem: OptionModel | null;
|
|
8
|
-
searchText: string;
|
|
9
|
-
label: keyof OptionModel;
|
|
10
|
-
dropdownOption: QueryList<ElementRef>;
|
|
11
|
-
set inputHoveredItem(val: number);
|
|
12
|
-
_inputHoveredItem: number;
|
|
13
|
-
get inputHoveredItem(): number;
|
|
14
|
-
onActiveItem: EventEmitter<OptionModel>;
|
|
15
|
-
inputDropdownSvgRoutes: typeof InputDropdownSvgRoutes;
|
|
16
|
-
constructor();
|
|
17
|
-
onActiveItemEmit(option: OptionModel): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownDoubleTextTemplateComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownDoubleTextTemplateComponent, "app-ca-input-dropdown-double-text-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "searchText": { "alias": "searchText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "inputHoveredItem": { "alias": "inputHoveredItem"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
20
|
-
}
|