ca-components 1.3.34 → 1.3.36
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/input-dropdown-test.scss +2030 -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 +26 -2
- 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-checkbox/ca-checkbox.component.mjs +2 -2
- 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 +2 -2
- 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-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-input-test/base-classes/ca-input-event-manager.mjs +24 -0
- package/esm2022/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.mjs +66 -0
- package/esm2022/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.mjs +48 -0
- package/esm2022/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.mjs +63 -0
- package/esm2022/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +85 -0
- package/esm2022/lib/components/ca-input-test/config/ca-input.config.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/config/index.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/directives/caps-lock.directive.mjs +50 -0
- package/esm2022/lib/components/ca-input-test/directives/command-visible.directive.mjs +48 -0
- package/esm2022/lib/components/ca-input-test/directives/index.mjs +6 -0
- package/esm2022/lib/components/ca-input-test/directives/input-max-value.directive.mjs +53 -0
- package/esm2022/lib/components/ca-input-test/directives/min-max-value.directive.mjs +41 -0
- package/esm2022/lib/components/ca-input-test/directives/price_format.directive.mjs +41 -0
- package/esm2022/lib/components/ca-input-test/directives/restrict-input.directive.mjs +94 -0
- package/esm2022/lib/components/ca-input-test/enums/index.mjs +5 -0
- package/esm2022/lib/components/ca-input-test/enums/input-commands-action.enum.mjs +11 -0
- package/esm2022/lib/components/ca-input-test/enums/input-commands-type.enum.mjs +8 -0
- package/esm2022/lib/components/ca-input-test/enums/input-config-name-string.enum.mjs +9 -0
- package/esm2022/lib/components/ca-input-test/enums/input-string.enum.mjs +114 -0
- package/esm2022/lib/components/ca-input-test/enums/input-text-transform.enum.mjs +9 -0
- package/esm2022/lib/components/ca-input-test/input-test.component.mjs +273 -0
- package/esm2022/lib/components/ca-input-test/mixins/input-command.mixin.mjs +124 -0
- package/esm2022/lib/components/ca-input-test/mixins/input-helper.mixin.mjs +49 -0
- package/esm2022/lib/components/ca-input-test/mixins/restriction-pipe.mixin.mjs +34 -0
- package/esm2022/lib/components/ca-input-test/models/base.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/models/command-click.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/models/commands-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/models/index.mjs +4 -0
- package/esm2022/lib/components/ca-input-test/models/label-color.model.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/pipes/color-finder.pipe.mjs +62 -0
- package/esm2022/lib/components/ca-input-test/pipes/form-control.pipe.mjs +17 -0
- package/esm2022/lib/components/ca-input-test/pipes/index.mjs +20 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-class.pipe.mjs +155 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-clear-class.pipe.mjs +87 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-container-class.pipe.mjs +58 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.mjs +77 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.mjs +61 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-error.pipe.mjs +88 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.mjs +37 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-pattern.pipe.mjs +326 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.mjs +46 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.mjs +58 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.mjs +45 -0
- package/esm2022/lib/components/ca-input-test/pipes/input-type.pipe.mjs +25 -0
- package/esm2022/lib/components/ca-input-test/pipes/label-class.pipe.mjs +38 -0
- package/esm2022/lib/components/ca-input-test/pipes/show-clear.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.mjs +26 -0
- package/esm2022/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
- package/esm2022/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.mjs +24 -0
- package/esm2022/lib/components/ca-input-test/pipes/show-valid-check.pipe.mjs +27 -0
- package/esm2022/lib/components/ca-input-test/utils/index.mjs +3 -0
- package/esm2022/lib/components/ca-input-test/utils/input-change-value.type.mjs +2 -0
- package/esm2022/lib/components/ca-input-test/utils/input-svg-routes.mjs +17 -0
- package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +3 -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 +2 -2
- 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/public-api.mjs +9 -2
- package/fesm2022/ca-components.mjs +3411 -637
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +38 -34
- package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.d.ts +2 -1
- 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/base-classes/ca-input-event-manager.d.ts +16 -0
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.d.ts +20 -0
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts +16 -0
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts +20 -0
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +26 -0
- package/lib/components/ca-input-test/config/ca-input.config.d.ts +168 -0
- package/lib/components/ca-input-test/config/index.d.ts +1 -0
- package/lib/components/ca-input-test/directives/caps-lock.directive.d.ts +14 -0
- package/lib/components/ca-input-test/directives/index.d.ts +5 -0
- package/lib/components/ca-input-test/directives/input-max-value.directive.d.ts +12 -0
- package/lib/components/ca-input-test/directives/min-max-value.directive.d.ts +13 -0
- package/lib/components/ca-input-test/directives/price_format.directive.d.ts +11 -0
- package/lib/components/ca-input-test/directives/restrict-input.directive.d.ts +27 -0
- package/lib/components/ca-input-test/enums/index.d.ts +4 -0
- package/lib/components/ca-input-test/enums/input-commands-action.enum.d.ts +9 -0
- package/lib/components/ca-input-test/enums/input-commands-type.enum.d.ts +6 -0
- package/lib/components/ca-input-test/enums/input-config-name-string.enum.d.ts +7 -0
- package/lib/components/ca-input-test/enums/input-string.enum.d.ts +112 -0
- package/lib/components/ca-input-test/enums/input-text-transform.enum.d.ts +6 -0
- package/lib/components/{ca-input/input-test → ca-input-test}/input-test.component.d.ts +13 -12
- package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.d.ts +12 -0
- package/lib/components/ca-input-test/models/command-click.model.d.ts +5 -0
- package/lib/components/ca-input-test/models/commands-event.model.d.ts +5 -0
- package/lib/components/ca-input-test/models/index.d.ts +3 -0
- package/lib/components/ca-input-test/models/label-color.model.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/color-finder.pipe.d.ts +7 -0
- package/lib/components/ca-input-test/pipes/form-control.pipe.d.ts +8 -0
- package/lib/components/ca-input-test/pipes/index.d.ts +19 -0
- package/lib/components/ca-input-test/pipes/input-class.pipe.d.ts +13 -0
- package/lib/components/ca-input-test/pipes/input-clear-class.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-container-class.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-error.pipe.d.ts +7 -0
- package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-pattern.pipe.d.ts +38 -0
- package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.d.ts +12 -0
- package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.d.ts +11 -0
- package/lib/components/ca-input-test/pipes/input-type.pipe.d.ts +7 -0
- package/lib/components/ca-input-test/pipes/label-class.pipe.d.ts +10 -0
- package/lib/components/ca-input-test/pipes/show-clear.pipe.d.ts +8 -0
- package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.d.ts +8 -0
- package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.d.ts +9 -0
- package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.d.ts +9 -0
- package/lib/components/ca-input-test/pipes/show-valid-check.pipe.d.ts +9 -0
- package/lib/components/ca-input-test/utils/index.d.ts +2 -0
- package/lib/components/ca-input-test/utils/input-change-value.type.d.ts +1 -0
- package/lib/components/ca-input-test/utils/input-svg-routes.d.ts +16 -0
- 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-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/package.json +1 -1
- package/public-api.d.ts +8 -1
- package/src/assets/ca-components/svg/common/ic_arrow_desc.svg +3 -0
- package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +0 -102
- package/esm2022/lib/components/ca-input/directives/command-visible.directive.mjs +0 -48
- package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +0 -266
- package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +0 -127
- package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +0 -49
- package/esm2022/lib/components/ca-input/models/base.model.mjs +0 -2
- /package/lib/components/{ca-input → ca-input-test}/directives/command-visible.directive.d.ts +0 -0
- /package/lib/components/{ca-input → ca-input-test}/mixins/input-command.mixin.d.ts +0 -0
- /package/lib/components/{ca-input → ca-input-test}/mixins/input-helper.mixin.d.ts +0 -0
- /package/lib/components/{ca-input → ca-input-test}/models/base.model.d.ts +0 -0
|
@@ -5,41 +5,45 @@ import * as i3 from "./components/ca-rating-review/ca-rating-review.component";
|
|
|
5
5
|
import * as i4 from "./components/ca-app-tooltip-v2/ca-app-tooltip-v2.component";
|
|
6
6
|
import * as i5 from "./components/ca-details-dropdown/ca-details-dropdown.component";
|
|
7
7
|
import * as i6 from "./components/ca-filters/ca-filter.component";
|
|
8
|
-
import * as i7 from "./components/ca-
|
|
9
|
-
import * as i8 from "./components/ca-
|
|
10
|
-
import * as i9 from "./components/ca-
|
|
11
|
-
import * as i10 from "./components/ca-
|
|
12
|
-
import * as i11 from "./components/ca-
|
|
13
|
-
import * as i12 from "./components/ca-
|
|
14
|
-
import * as i13 from "./components/ca-
|
|
15
|
-
import * as i14 from "./components/ca-
|
|
16
|
-
import * as i15 from "./components/ca-
|
|
17
|
-
import * as i16 from "./components/ca-
|
|
18
|
-
import * as i17 from "./components/ca-
|
|
19
|
-
import * as i18 from "./components/ca-
|
|
20
|
-
import * as i19 from "./components/ca-
|
|
21
|
-
import * as i20 from "./components/ca-
|
|
22
|
-
import * as i21 from "./components/ca-
|
|
23
|
-
import * as i22 from "./components/ca-
|
|
24
|
-
import * as i23 from "./components/ca-
|
|
25
|
-
import * as i24 from "./components/ca-
|
|
26
|
-
import * as i25 from "./components/ca-
|
|
27
|
-
import * as i26 from "./components/ca-
|
|
28
|
-
import * as i27 from "./components/ca-
|
|
29
|
-
import * as i28 from "./components/ca-
|
|
30
|
-
import * as i29 from "./components/ca-
|
|
31
|
-
import * as i30 from "./components/ca-
|
|
32
|
-
import * as i31 from "./components/ca-
|
|
33
|
-
import * as i32 from "./components/ca-
|
|
34
|
-
import * as i33 from "./components/ca-
|
|
35
|
-
import * as i34 from "./components/ca-
|
|
36
|
-
import * as i35 from "./components/ca-
|
|
37
|
-
import * as i36 from "./components/ca-
|
|
38
|
-
import * as i37 from "./components/ca-
|
|
39
|
-
import * as i38 from "./components/ca-
|
|
40
|
-
import * as i39 from "./components/ca-
|
|
8
|
+
import * as i7 from "./components/ca-new-filter/ca-filter-dropdown.component";
|
|
9
|
+
import * as i8 from "./components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component";
|
|
10
|
+
import * as i9 from "./components/ca-new-filter/components/ca-filter-time-dropdown/ca-filter-time-dropdown.component";
|
|
11
|
+
import * as i10 from "./components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component";
|
|
12
|
+
import * as i11 from "./components/ca-input/ca-input.component";
|
|
13
|
+
import * as i12 from "./components/ca-input-datetime-picker/ca-input-datetime-picker.component";
|
|
14
|
+
import * as i13 from "./components/ca-input-radiobuttons/ca-input-radiobuttons.component";
|
|
15
|
+
import * as i14 from "./components/ca-input-dropdown/ca-input-dropdown.component";
|
|
16
|
+
import * as i15 from "./components/ca-map/ca-map.component";
|
|
17
|
+
import * as i16 from "./components/ca-map-dropdown/ca-map-dropdown.component";
|
|
18
|
+
import * as i17 from "./components/ca-note/ca-note.component";
|
|
19
|
+
import * as i18 from "./components/ca-note-container/ca-note-container.component";
|
|
20
|
+
import * as i19 from "./components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component";
|
|
21
|
+
import * as i20 from "./components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component";
|
|
22
|
+
import * as i21 from "./components/ca-pickup-delivery-block/ca-pickup-delivery-block.component";
|
|
23
|
+
import * as i22 from "./components/ca-progress-bar/ca-progress-bar.component";
|
|
24
|
+
import * as i23 from "./components/ca-search-multiple-states/ca-search-multiple-states.component";
|
|
25
|
+
import * as i24 from "./components/ca-spinner/ca-spinner.component";
|
|
26
|
+
import * as i25 from "./components/ca-todo/ca-todo.component";
|
|
27
|
+
import * as i26 from "./components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component";
|
|
28
|
+
import * as i27 from "./components/ca-period-content/ca-period-content.component";
|
|
29
|
+
import * as i28 from "./components/ca-input-note/ca-input-note.component";
|
|
30
|
+
import * as i29 from "./components/ca-input-address-dropdown/ca-input-address-dropdown.component";
|
|
31
|
+
import * as i30 from "./components/ca-main-table/ca-main-table.component";
|
|
32
|
+
import * as i31 from "./components/ca-activity-log-list/ca-activity-log-list.component";
|
|
33
|
+
import * as i32 from "./components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component";
|
|
34
|
+
import * as i33 from "./components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component";
|
|
35
|
+
import * as i34 from "./components/ca-right-side-panel/ca-right-side-panel.component";
|
|
36
|
+
import * as i35 from "./components/ca-chart/ca-chart.component";
|
|
37
|
+
import * as i36 from "./components/ca-chart-manager/ca-chart-manager.component";
|
|
38
|
+
import * as i37 from "./components/ca-dropdown-menu/ca-dropdown-menu.component";
|
|
39
|
+
import * as i38 from "./components/ca-upload-files/ca-upload-files.component";
|
|
40
|
+
import * as i39 from "./components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component";
|
|
41
|
+
import * as i40 from "./components/ca-progress-range/ca-progress-range.component";
|
|
42
|
+
import * as i41 from "./components/ca-tooltip-list/ca-tooltip-list.component";
|
|
43
|
+
import * as i42 from "./components/ca-input-test/input-test.component";
|
|
44
|
+
import * as i43 from "./components/ca-checkbox/ca-checkbox.component";
|
|
41
45
|
export declare class CaComponentsLibModule {
|
|
42
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaComponentsLibModule, never>;
|
|
43
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.
|
|
47
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaFilterDropdownComponent, typeof i8.CaFilterStateDropdownComponent, typeof i9.CaFilterTimeDropdownComponent, typeof i10.CaFilterListDropdownComponent, typeof i11.CaInputComponent, typeof i12.CaInputDatetimePickerComponent, typeof i13.CaInputRadiobuttonsComponent, typeof i14.CaInputDropdownComponent, typeof i15.CaMapComponent, typeof i16.CaMapDropdownComponent, typeof i17.CaNoteComponent, typeof i18.CaNoteContainerComponent, typeof i19.CaPayrollListSummaryOverviewComponent, typeof i20.CaPayrollListSummaryOverviewTableComponent, typeof i21.PickupDeliveryBlockComponent, typeof i22.ProgressBarComponent, typeof i23.CaSearchMultipleStatesComponent, typeof i24.CaSpinnerComponent, typeof i25.CaTodoComponent, typeof i26.CaTruckTrailerProgresBarComponent, typeof i27.CaPeriodContentComponent, typeof i28.CaInputNoteComponent, typeof i29.CaInputAddressDropdownComponent, typeof i30.CaMainTableComponent, typeof i31.CaActivityLogListComponent, typeof i32.CaRightSidePanelMenuComponent, typeof i33.CaRightSidePanelTopBarComponent, typeof i34.CaRightSidePanelComponent, typeof i35.CaChartComponent, typeof i36.CaChartManagerComponent, typeof i37.CaDropdownMenuComponent, typeof i38.CaUploadFilesComponent, typeof i39.CaRightSidePanelCompanyComponent, typeof i40.CaProgressRangeComponent, typeof i41.CaTooltipListComponent, typeof i42.InputTestComponent, typeof i43.CaCheckboxComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaFilterDropdownComponent, typeof i8.CaFilterStateDropdownComponent, typeof i9.CaFilterTimeDropdownComponent, typeof i10.CaFilterListDropdownComponent, typeof i11.CaInputComponent, typeof i12.CaInputDatetimePickerComponent, typeof i13.CaInputRadiobuttonsComponent, typeof i14.CaInputDropdownComponent, typeof i15.CaMapComponent, typeof i16.CaMapDropdownComponent, typeof i17.CaNoteComponent, typeof i18.CaNoteContainerComponent, typeof i19.CaPayrollListSummaryOverviewComponent, typeof i20.CaPayrollListSummaryOverviewTableComponent, typeof i21.PickupDeliveryBlockComponent, typeof i22.ProgressBarComponent, typeof i23.CaSearchMultipleStatesComponent, typeof i24.CaSpinnerComponent, typeof i26.CaTruckTrailerProgresBarComponent, typeof i27.CaPeriodContentComponent, typeof i28.CaInputNoteComponent, typeof i30.CaMainTableComponent, typeof i31.CaActivityLogListComponent, typeof i32.CaRightSidePanelMenuComponent, typeof i33.CaRightSidePanelTopBarComponent, typeof i34.CaRightSidePanelComponent, typeof i35.CaChartComponent, typeof i36.CaChartManagerComponent, typeof i37.CaDropdownMenuComponent, typeof i38.CaUploadFilesComponent, typeof i39.CaRightSidePanelCompanyComponent, typeof i40.CaProgressRangeComponent, typeof i41.CaTooltipListComponent, typeof i29.CaInputAddressDropdownComponent, typeof i42.InputTestComponent, typeof i43.CaCheckboxComponent]>;
|
|
44
48
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaComponentsLibModule>;
|
|
45
49
|
}
|
|
@@ -5,6 +5,7 @@ export declare class CaAutoclosePopoverComponent implements OnInit {
|
|
|
5
5
|
private eRef;
|
|
6
6
|
isDisabled: boolean;
|
|
7
7
|
customClass: string;
|
|
8
|
+
autoClose: string | boolean;
|
|
8
9
|
placement: string;
|
|
9
10
|
closeFilter: EventEmitter<void>;
|
|
10
11
|
openFilter: EventEmitter<void>;
|
|
@@ -16,5 +17,5 @@ export declare class CaAutoclosePopoverComponent implements OnInit {
|
|
|
16
17
|
onFilterShown(): void;
|
|
17
18
|
closeCustomPopover(): void;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaAutoclosePopoverComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaAutoclosePopoverComponent, "[app-ca-autoclose-popover]", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; }, { "closeFilter": "closeFilter"; "openFilter": "openFilter"; }, never, ["[mainContent]", "[popoverContent]"], true, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaAutoclosePopoverComponent, "[app-ca-autoclose-popover]", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; }, { "closeFilter": "closeFilter"; "openFilter": "openFilter"; }, never, ["[mainContent]", "[popoverContent]"], true, never>;
|
|
20
21
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './filter-conditions-clear.pipe';
|
|
2
|
+
export * from './filter-conditions-set.pipe';
|
|
3
|
+
export * from './filter-conditions-user-box.pipe';
|
|
4
|
+
export * from './filter-popover-conditions.pipe';
|
|
5
|
+
export * from './filter-truck-color.pipe';
|
|
6
|
+
export * from './filter-trailer-color.pipe';
|
|
@@ -1,20 +1,32 @@
|
|
|
1
1
|
export declare class TimeFilterConstants {
|
|
2
2
|
static getTimePastOptions(lastYear: string, last2Years: string): {
|
|
3
3
|
label: string;
|
|
4
|
-
items: {
|
|
4
|
+
items: ({
|
|
5
5
|
label: string;
|
|
6
|
-
|
|
6
|
+
id: number;
|
|
7
|
+
value: string;
|
|
8
|
+
year?: undefined;
|
|
9
|
+
} | {
|
|
10
|
+
label: string;
|
|
11
|
+
id: number;
|
|
12
|
+
year: string;
|
|
13
|
+
value: string;
|
|
14
|
+
})[];
|
|
7
15
|
}[];
|
|
8
16
|
static getTimeFutureOptions(): {
|
|
9
17
|
label: string;
|
|
10
18
|
items: {
|
|
11
19
|
label: string;
|
|
20
|
+
id: number;
|
|
21
|
+
value: string;
|
|
12
22
|
}[];
|
|
13
23
|
}[];
|
|
14
24
|
static getTimeShortOptions(): {
|
|
15
25
|
label: string;
|
|
16
26
|
items: {
|
|
17
27
|
label: string;
|
|
28
|
+
id: number;
|
|
29
|
+
value: string;
|
|
18
30
|
}[];
|
|
19
31
|
}[];
|
|
20
32
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ca-filters-svg-routes';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
export declare class EventInputManager<T> {
|
|
4
|
+
private eventEmitter;
|
|
5
|
+
private stateSubject;
|
|
6
|
+
state$: Observable<T | null>;
|
|
7
|
+
constructor(initialValue: T | null, eventEmitter: EventEmitter<T>);
|
|
8
|
+
/**
|
|
9
|
+
* Update the value and emit the event.
|
|
10
|
+
*/
|
|
11
|
+
next(newValue: T): void;
|
|
12
|
+
/**
|
|
13
|
+
* Get the current value.
|
|
14
|
+
*/
|
|
15
|
+
get value(): T | null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
3
|
+
import { ICaInput } from '../../config';
|
|
4
|
+
import { LabelColor } from '../../models';
|
|
5
|
+
import { InputSvgRoutes } from '../../utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CaInputClearComponent {
|
|
8
|
+
inputConfig: ICaInput;
|
|
9
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
10
|
+
isFocusInput: boolean;
|
|
11
|
+
incorrectValue: boolean;
|
|
12
|
+
selectedDropdownLabelColor: LabelColor | null;
|
|
13
|
+
template: string;
|
|
14
|
+
clearInputClick: EventEmitter<Event>;
|
|
15
|
+
constructor();
|
|
16
|
+
clearInput(event: Event): void;
|
|
17
|
+
getSvgPath(propertyName: keyof typeof InputSvgRoutes): string;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputClearComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputClearComponent, "app-ca-input-clear", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "clearInputClick": "clearInputClick"; }, never, never, true, never>;
|
|
20
|
+
}
|
package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { ICaInput } from "../../config";
|
|
3
|
+
import { CommandClick } from "../../models";
|
|
4
|
+
import { InputCommandsType } from "../../enums";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CaInputCommandsComponent {
|
|
7
|
+
inputConfig: ICaInput;
|
|
8
|
+
isFocusInput: boolean;
|
|
9
|
+
isVisibleCommands: boolean;
|
|
10
|
+
onCommandsClick: EventEmitter<CommandClick>;
|
|
11
|
+
inputCommandsType: typeof InputCommandsType;
|
|
12
|
+
constructor();
|
|
13
|
+
onCommands(event: Event, type: string, action: string): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputCommandsComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputCommandsComponent, "app-ca-input-commands", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "isVisibleCommands": { "alias": "isVisibleCommands"; "required": false; }; }, { "onCommandsClick": "onCommandsClick"; }, never, never, true, never>;
|
|
16
|
+
}
|
package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { AbstractControl } from "@angular/forms";
|
|
3
|
+
import { InputSvgRoutes } from "../../utils";
|
|
4
|
+
import { ICaInput } from "../../config";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CaInputPasswordComponent implements OnInit {
|
|
7
|
+
inputConfig: ICaInput;
|
|
8
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
9
|
+
isFocusInput: boolean;
|
|
10
|
+
isTouchedInput: boolean;
|
|
11
|
+
isCapsLockOn: boolean;
|
|
12
|
+
isTogglePassword: boolean;
|
|
13
|
+
onTogglePasswordClick: EventEmitter<Event>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
onTogglePassword(event: Event): void;
|
|
17
|
+
getSvgPath(propertyName: keyof typeof InputSvgRoutes): string;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputPasswordComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputPasswordComponent, "app-ca-input-password", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "isTouchedInput": { "alias": "isTouchedInput"; "required": false; }; "isCapsLockOn": { "alias": "isCapsLockOn"; "required": false; }; "isTogglePassword": { "alias": "isTogglePassword"; "required": false; }; }, { "onTogglePasswordClick": "onTogglePasswordClick"; }, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
3
|
+
import { ICaInput } from '../../config/ca-input.config';
|
|
4
|
+
import { LabelColor } from '../../models/label-color.model';
|
|
5
|
+
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CaInputPlaceholderIconComponent {
|
|
8
|
+
inputConfig: ICaInput;
|
|
9
|
+
getSuperControl: AbstractControl<any, any> | null;
|
|
10
|
+
isFocusInput: boolean;
|
|
11
|
+
isTouchedInput: boolean;
|
|
12
|
+
selectedDropdownLabelColor: LabelColor | null;
|
|
13
|
+
isEditInput: boolean;
|
|
14
|
+
dateTimePopover: TemplateRef<any>;
|
|
15
|
+
onPopoverShownEmitter: EventEmitter<boolean>;
|
|
16
|
+
onPopoverHiddenEmitter: EventEmitter<boolean>;
|
|
17
|
+
onPlaceholderIconEventEmitter: EventEmitter<Event>;
|
|
18
|
+
t2: NgbPopover;
|
|
19
|
+
ngbMainPopover: NgbPopover;
|
|
20
|
+
constructor();
|
|
21
|
+
onPopoverShown(): void;
|
|
22
|
+
onPopoverHidden(): void;
|
|
23
|
+
onPlaceholderIconEvent(event: Event): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputPlaceholderIconComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputPlaceholderIconComponent, "app-ca-input-placeholder-icon", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "isTouchedInput": { "alias": "isTouchedInput"; "required": false; }; "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "isEditInput": { "alias": "isEditInput"; "required": false; }; "dateTimePopover": { "alias": "dateTimePopover"; "required": false; }; }, { "onPopoverShownEmitter": "onPopoverShownEmitter"; "onPopoverHiddenEmitter": "onPopoverHiddenEmitter"; "onPlaceholderIconEventEmitter": "onPlaceholderIconEventEmitter"; }, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
export interface IMultipleInput {
|
|
2
|
+
id?: number;
|
|
3
|
+
value: string | number;
|
|
4
|
+
second_value?: string | number;
|
|
5
|
+
logoName?: string;
|
|
6
|
+
isImg?: boolean;
|
|
7
|
+
isSvg?: boolean;
|
|
8
|
+
folder?: string;
|
|
9
|
+
subFolder?: string;
|
|
10
|
+
logoType?: string;
|
|
11
|
+
isOwner?: boolean;
|
|
12
|
+
isProgressBar?: boolean;
|
|
13
|
+
isCounter?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export interface ICaInputDateTimePicker {
|
|
16
|
+
name: string;
|
|
17
|
+
isIconHidden?: boolean;
|
|
18
|
+
customClass?: string;
|
|
19
|
+
isDisabled?: boolean;
|
|
20
|
+
isFutureDateDisabled?: boolean;
|
|
21
|
+
expiredDateInvalid?: boolean;
|
|
22
|
+
isFromDate?: boolean;
|
|
23
|
+
}
|
|
24
|
+
export interface ICaInputWithDropdown {
|
|
25
|
+
withText: boolean;
|
|
26
|
+
svg: boolean;
|
|
27
|
+
image: boolean;
|
|
28
|
+
iconsPath?: string;
|
|
29
|
+
activeItemIconKey?: string;
|
|
30
|
+
url?: string;
|
|
31
|
+
nameInitialsInsteadUrl?: string;
|
|
32
|
+
template?: string;
|
|
33
|
+
color?: string;
|
|
34
|
+
class?: string;
|
|
35
|
+
remove?: boolean;
|
|
36
|
+
}
|
|
37
|
+
export interface ICaInput {
|
|
38
|
+
id?: number | string;
|
|
39
|
+
name: string;
|
|
40
|
+
type: string;
|
|
41
|
+
label?: string;
|
|
42
|
+
labelInInput?: boolean;
|
|
43
|
+
placeholder?: string;
|
|
44
|
+
placeholderIcon?: string;
|
|
45
|
+
placeholderIconRightSide?: string;
|
|
46
|
+
isPlaceHolderIconRightSideDynamicColor?: boolean;
|
|
47
|
+
placeholderIconFolllowTextOnRightSide?: string;
|
|
48
|
+
placeholderIconColor?: string;
|
|
49
|
+
placeholderText?: string;
|
|
50
|
+
placeholderInsteadOfLabel?: boolean;
|
|
51
|
+
inputCursorOnRightSide?: boolean;
|
|
52
|
+
isRequired?: boolean;
|
|
53
|
+
isDisabled?: boolean;
|
|
54
|
+
pattern?: string;
|
|
55
|
+
autocomplete?: string;
|
|
56
|
+
showCount?: boolean;
|
|
57
|
+
minLength?: number;
|
|
58
|
+
maxLength?: number;
|
|
59
|
+
minValue?: number;
|
|
60
|
+
maxValue?: number;
|
|
61
|
+
min?: number;
|
|
62
|
+
max?: number;
|
|
63
|
+
step?: number;
|
|
64
|
+
mask?: string;
|
|
65
|
+
textTransform?: 'capitalize' | 'uppercase' | 'lowercase' | 'capitalizedcase';
|
|
66
|
+
textAlign?: string | 'center';
|
|
67
|
+
blackInput?: boolean;
|
|
68
|
+
blueInput?: boolean;
|
|
69
|
+
incorrectInput?: boolean;
|
|
70
|
+
dangerMark?: boolean;
|
|
71
|
+
autoFocus?: boolean;
|
|
72
|
+
hideClear?: boolean;
|
|
73
|
+
hideRequiredCheck?: boolean;
|
|
74
|
+
hideErrorMessage?: boolean;
|
|
75
|
+
hideDangerMark?: boolean;
|
|
76
|
+
hideDropdownArrow?: boolean;
|
|
77
|
+
requiredLabel?: boolean;
|
|
78
|
+
errorInsideInput?: boolean;
|
|
79
|
+
removeInput?: boolean;
|
|
80
|
+
readOnly?: boolean;
|
|
81
|
+
thousandSeparator?: boolean;
|
|
82
|
+
priceSeparator?: boolean;
|
|
83
|
+
priceSeparatorLimitation?: number;
|
|
84
|
+
loadingSpinner?: {
|
|
85
|
+
size?: string;
|
|
86
|
+
color?: string;
|
|
87
|
+
isLoading?: boolean;
|
|
88
|
+
};
|
|
89
|
+
addressFlag?: string;
|
|
90
|
+
customClass?: string;
|
|
91
|
+
isIconInput?: boolean;
|
|
92
|
+
isValidIcon?: boolean;
|
|
93
|
+
inputIcon?: string;
|
|
94
|
+
multipleInputValues?: {
|
|
95
|
+
options: IMultipleInput[];
|
|
96
|
+
customClass: string;
|
|
97
|
+
};
|
|
98
|
+
multipleLabel?: {
|
|
99
|
+
labels: string[];
|
|
100
|
+
searchLabels?: string[];
|
|
101
|
+
customClass: string;
|
|
102
|
+
};
|
|
103
|
+
isInputBackgroundRemoved?: boolean;
|
|
104
|
+
isBlueText?: boolean;
|
|
105
|
+
commands?: {
|
|
106
|
+
active?: boolean;
|
|
107
|
+
type?: string;
|
|
108
|
+
firstCommand?: {
|
|
109
|
+
popup?: {
|
|
110
|
+
name?: string;
|
|
111
|
+
backgroundColor?: string;
|
|
112
|
+
};
|
|
113
|
+
name?: string;
|
|
114
|
+
svg?: string;
|
|
115
|
+
};
|
|
116
|
+
secondCommand?: {
|
|
117
|
+
popup?: {
|
|
118
|
+
name?: string;
|
|
119
|
+
backgroundColor?: string;
|
|
120
|
+
};
|
|
121
|
+
name?: string;
|
|
122
|
+
svg?: string;
|
|
123
|
+
};
|
|
124
|
+
thirdCommand?: {
|
|
125
|
+
popup?: {
|
|
126
|
+
name?: string;
|
|
127
|
+
backgroundColor?: string;
|
|
128
|
+
};
|
|
129
|
+
name?: string;
|
|
130
|
+
svg?: string;
|
|
131
|
+
};
|
|
132
|
+
setTimeout?: number;
|
|
133
|
+
blueCommands?: boolean;
|
|
134
|
+
};
|
|
135
|
+
defaultValue?: string;
|
|
136
|
+
isDropdown?: boolean;
|
|
137
|
+
isAddress?: boolean;
|
|
138
|
+
searchinGroupIndex?: string;
|
|
139
|
+
dropdownWidthClass?: string;
|
|
140
|
+
dropdownImageInput?: ICaInputWithDropdown | null;
|
|
141
|
+
isInvalidSearchInDropdown?: boolean;
|
|
142
|
+
selectedDropdown?: boolean;
|
|
143
|
+
mergeDropdownBodyWithInput?: boolean;
|
|
144
|
+
hideAllItemsInInputDropdown?: boolean;
|
|
145
|
+
isBlueDropdown?: boolean;
|
|
146
|
+
isItemSelected?: boolean;
|
|
147
|
+
isDisplayingCustomPeriodRange?: boolean;
|
|
148
|
+
isUsingCustomPeriodRange?: boolean;
|
|
149
|
+
isDispatchLocationDropdown?: boolean;
|
|
150
|
+
dropdownLabel?: boolean;
|
|
151
|
+
dropdownLabelNew?: boolean;
|
|
152
|
+
multiselectDropdown?: boolean;
|
|
153
|
+
multiSelectDropdownActive?: boolean;
|
|
154
|
+
multiSelectItemRange?: boolean;
|
|
155
|
+
isFromDate?: boolean;
|
|
156
|
+
hideColorValidations?: boolean;
|
|
157
|
+
expiredDateInvalid?: boolean;
|
|
158
|
+
isFutureDateDisabled?: boolean;
|
|
159
|
+
fixedPlacholder?: string;
|
|
160
|
+
statusStyle?: boolean;
|
|
161
|
+
isIconHidden?: boolean;
|
|
162
|
+
isRemovedIconMovedOnLeft?: boolean;
|
|
163
|
+
removeLeadingZero?: boolean;
|
|
164
|
+
negativeLeadingZero?: boolean;
|
|
165
|
+
isHoverRow?: boolean;
|
|
166
|
+
minutesGapFive?: boolean;
|
|
167
|
+
updateAsTouchedOnEdit?: boolean;
|
|
168
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ca-input.config';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CapsLockDirective {
|
|
4
|
+
private el;
|
|
5
|
+
capsLockStatus: EventEmitter<boolean>;
|
|
6
|
+
private capsLockDetected;
|
|
7
|
+
constructor(el: ElementRef);
|
|
8
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
9
|
+
onKeyUP(event: KeyboardEvent): void;
|
|
10
|
+
onFocus(): void;
|
|
11
|
+
onBlur(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CapsLockDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CapsLockDirective, "[appCapsLock]", never, {}, { "capsLockStatus": "capsLockStatus"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MaxValueDirective {
|
|
4
|
+
private el;
|
|
5
|
+
appMaxValue?: number;
|
|
6
|
+
constructor(el: ElementRef);
|
|
7
|
+
onInput(event: Event): void;
|
|
8
|
+
onBlur(event: Event): void;
|
|
9
|
+
private formatNumber;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaxValueDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MaxValueDirective, "[appMaxValue]", never, { "appMaxValue": { "alias": "appMaxValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ThousandSeparatorPipe } from '../../../pipes/thousand-separator.pipe';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MinMaxValueDirective {
|
|
5
|
+
private el;
|
|
6
|
+
private thousandSeparatorPipe;
|
|
7
|
+
minValue: number;
|
|
8
|
+
maxValue: number;
|
|
9
|
+
constructor(el: ElementRef, thousandSeparatorPipe: ThousandSeparatorPipe);
|
|
10
|
+
onKeyPress(event: KeyboardEvent): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MinMaxValueDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MinMaxValueDirective, "[appMinMaxValue]", never, { "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PriceFormatDirective {
|
|
4
|
+
private el;
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
priceSeparator?: boolean;
|
|
7
|
+
onInput(event: Event): void;
|
|
8
|
+
private formatWithCommas;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PriceFormatDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PriceFormatDirective, "[priceFormat]", never, { "priceSeparator": { "alias": "priceSeparator"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { ICaInput } from '../config';
|
|
3
|
+
import { InputTransformStringEnum } from '../enums/input-text-transform.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
declare const RestrictInputDirective_base: {
|
|
6
|
+
new (...args: any[]): {
|
|
7
|
+
checkRangeRegex(value: string): boolean;
|
|
8
|
+
getTextTransformation(value: string, textTransform: InputTransformStringEnum | undefined): string | undefined;
|
|
9
|
+
restrictInput: ICaInput;
|
|
10
|
+
};
|
|
11
|
+
} & {
|
|
12
|
+
new (): {
|
|
13
|
+
restrictInput: ICaInput;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export declare class RestrictInputDirective extends RestrictInputDirective_base {
|
|
17
|
+
private el;
|
|
18
|
+
private injector;
|
|
19
|
+
restrictInput: ICaInput;
|
|
20
|
+
private inputPatternPipe;
|
|
21
|
+
private lastValidInputValue;
|
|
22
|
+
constructor(el: ElementRef, injector: Injector);
|
|
23
|
+
onInput(event: InputEvent): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestrictInputDirective, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RestrictInputDirective, "[restrictInput]", never, { "restrictInput": { "alias": "restrictInput"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
27
|
+
export {};
|