ca-components 2.1.13 → 2.1.15
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/fesm2022/ca-components.mjs +38 -20
- package/fesm2022/ca-components.mjs.map +1 -1
- package/index.d.ts +7 -6
- package/lib/animations/accordion-animation.ts +41 -0
- package/lib/animations/animation.ts +33 -0
- package/lib/animations/area-left-side.animation.ts +44 -0
- package/lib/animations/area-right-side.animation.ts +43 -0
- package/lib/animations/card-component.animation.ts +78 -0
- package/lib/animations/close-form.animation.ts +34 -0
- package/lib/animations/expand-search-button.animation.ts +17 -0
- package/lib/animations/fade-in.animation.ts +15 -0
- package/lib/animations/in-out.animation.ts +87 -0
- package/lib/animations/index.ts +14 -0
- package/lib/animations/puff-in-out.animation.ts +40 -0
- package/lib/animations/search-bar-button-opacity.animation.ts +18 -0
- package/lib/animations/search-input-expand.animation.ts +18 -0
- package/lib/animations/show.animation.ts +36 -0
- package/lib/animations/slide-in-out.animation.ts +36 -0
- package/lib/animations/state-header.animation.ts +31 -0
- package/lib/animations/tabs-modal.animation.ts +121 -0
- package/lib/ca-components.module.ts +222 -0
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.html +227 -0
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.scss +398 -0
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.spec.ts +21 -0
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.ts +174 -0
- package/lib/components/ca-activity-log-list/ca-activity-log-list.stories.ts +29 -0
- package/lib/components/ca-activity-log-list/config/activity-log-search-filter.config.ts +18 -0
- package/lib/components/ca-activity-log-list/config/index.ts +1 -0
- package/lib/components/ca-activity-log-list/enums/action-log-type-title-text.enum.ts +5 -0
- package/lib/components/ca-activity-log-list/enums/action-log-type.enum.ts +7 -0
- package/lib/components/ca-activity-log-list/enums/activity-entity-type.enum.ts +4 -0
- package/lib/components/ca-activity-log-list/enums/activity-log-utils.enum.ts +4 -0
- package/lib/components/ca-activity-log-list/enums/index.ts +4 -0
- package/lib/components/ca-activity-log-list/models/action-log.model.ts +7 -0
- package/lib/components/ca-activity-log-list/models/activity-log-item-description.model.ts +5 -0
- package/lib/components/ca-activity-log-list/models/activity-log-item.model.ts +18 -0
- package/lib/components/ca-activity-log-list/models/activity-log-list-data.model.ts +7 -0
- package/lib/components/ca-activity-log-list/models/company-user-avatar-file.model.ts +9 -0
- package/lib/components/ca-activity-log-list/models/company-user.model.ts +10 -0
- package/lib/components/ca-activity-log-list/models/entity-type-activity.model.ts +4 -0
- package/lib/components/ca-activity-log-list/models/index.ts +7 -0
- package/lib/components/ca-activity-log-list/utils/constants/activity-log-list-data.constants.ts +537 -0
- package/lib/components/ca-activity-log-list/utils/constants/index.ts +1 -0
- package/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.ts +11 -0
- package/lib/components/ca-activity-log-list/utils/pipes/activity-log-date-transform.pipe.ts +14 -0
- package/lib/components/ca-activity-log-list/utils/pipes/company-user-name-transform.pipe.ts +13 -0
- package/lib/components/ca-activity-log-list/utils/pipes/index.ts +4 -0
- package/lib/components/ca-activity-log-list/utils/pipes/tab-title-transform.pipe.ts +13 -0
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.html +20 -0
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.scss +0 -0
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.ts +74 -0
- package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.html +18 -0
- package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.scss +0 -0
- package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.ts +56 -0
- package/lib/components/ca-autoclose-popover/enums/autoclose-string.enum.ts +3 -0
- package/lib/components/ca-chart/ca-chart.component.html +76 -0
- package/lib/components/ca-chart/ca-chart.component.scss +39 -0
- package/lib/components/ca-chart/ca-chart.component.spec.ts +21 -0
- package/lib/components/ca-chart/ca-chart.component.ts +912 -0
- package/lib/components/ca-chart/ca-chart.stories.ts +121 -0
- package/lib/components/ca-chart/config/ca-base-chart-dataset.config.ts +12 -0
- package/lib/components/ca-chart/config/index.ts +1 -0
- package/lib/components/ca-chart/enums/chart-annotation-type.enum.ts +8 -0
- package/lib/components/ca-chart/enums/chart-annotation.enum.ts +15 -0
- package/lib/components/ca-chart/enums/chart-colors.enum.ts +7 -0
- package/lib/components/ca-chart/enums/chart-event-properties.enum.ts +5 -0
- package/lib/components/ca-chart/enums/chart-event-types.enum.ts +3 -0
- package/lib/components/ca-chart/enums/chart-font-properties.enum.ts +4 -0
- package/lib/components/ca-chart/enums/chart-images.enum.ts +7 -0
- package/lib/components/ca-chart/enums/chart-plugin-ids.enum.ts +6 -0
- package/lib/components/ca-chart/enums/cubic-interpolation-mode.enum.ts +4 -0
- package/lib/components/ca-chart/enums/e-chart-types.enum.ts +5 -0
- package/lib/components/ca-chart/enums/index.ts +10 -0
- package/lib/components/ca-chart/models/chart-annotation.model.ts +15 -0
- package/lib/components/ca-chart/models/chart-base-dataset.model.ts +20 -0
- package/lib/components/ca-chart/models/chart-boundaries.model.ts +4 -0
- package/lib/components/ca-chart/models/chart-center-label.model.ts +11 -0
- package/lib/components/ca-chart/models/chart-config.model.ts +29 -0
- package/lib/components/ca-chart/models/chart-data.model.ts +6 -0
- package/lib/components/ca-chart/models/chart-dataset-hover.model.ts +5 -0
- package/lib/components/ca-chart/models/chart-legend-config.model.ts +7 -0
- package/lib/components/ca-chart/models/chart-legend-property.model.ts +10 -0
- package/lib/components/ca-chart/models/chart-line-dataset.model.ts +16 -0
- package/lib/components/ca-chart/models/index.ts +10 -0
- package/lib/components/ca-chart/utils/constants/chart.constants.ts +3 -0
- package/lib/components/ca-chart/utils/constants/index.ts +1 -0
- package/lib/components/ca-chart/utils/guards/chart-type.guard.ts +10 -0
- package/lib/components/ca-chart/utils/guards/index.ts +1 -0
- package/lib/components/ca-chart/utils/helpers/chart.helper.ts +294 -0
- package/lib/components/ca-chart/utils/helpers/index.ts +1 -0
- package/lib/components/ca-chart/utils/svg-routes/chart-svg-routes.ts +12 -0
- package/lib/components/ca-chart/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-chart-manager/ca-chart-manager.component.html +27 -0
- package/lib/components/ca-chart-manager/ca-chart-manager.component.scss +13 -0
- package/lib/components/ca-chart-manager/ca-chart-manager.component.spec.ts +21 -0
- package/lib/components/ca-chart-manager/ca-chart-manager.component.ts +131 -0
- package/lib/components/ca-chart-manager/models/hover-state.model.ts +7 -0
- package/lib/components/ca-chart-manager/models/index.ts +1 -0
- package/lib/components/ca-chart-manager/services/chart-manager.service.ts +21 -0
- package/lib/components/ca-chart-manager/services/index.ts +1 -0
- package/lib/components/ca-checkbox/ca-checkbox.component.html +207 -0
- package/lib/components/ca-checkbox/ca-checkbox.component.scss +417 -0
- package/lib/components/ca-checkbox/ca-checkbox.component.spec.ts +23 -0
- package/lib/components/ca-checkbox/ca-checkbox.component.ts +190 -0
- package/lib/components/ca-checkbox/ca-checkbox.stories.ts +87 -0
- package/lib/components/ca-checkbox/interfaces/column-check-action.interface.ts +6 -0
- package/lib/components/ca-checkbox/interfaces/index.ts +1 -0
- package/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.ts +9 -0
- package/lib/components/ca-checkbox/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.html +83 -0
- package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.scss +17 -0
- package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.spec.ts +23 -0
- package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.ts +70 -0
- package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-cpunt.component.stories.ts +90 -0
- package/lib/components/ca-checkbox-selected-count/pipes/checkbox-selected-count-class.pipe.ts +27 -0
- package/lib/components/ca-checkbox-selected-count/pipes/index.ts +1 -0
- package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.html +41 -0
- package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.scss +64 -0
- package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.stories.ts +79 -0
- package/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.ts +81 -0
- package/lib/components/ca-comment/ca-comment.component.html +124 -0
- package/lib/components/ca-comment/ca-comment.component.scss +174 -0
- package/lib/components/ca-comment/ca-comment.component.ts +144 -0
- package/lib/components/ca-comment/ca-comment.stories.ts +133 -0
- package/lib/components/ca-comment/directives/auto-resize.directive.ts +41 -0
- package/lib/components/ca-comment/directives/index.ts +1 -0
- package/lib/components/ca-comment/enums/index.ts +1 -0
- package/lib/components/ca-comment/enums/svg-icon.enum.ts +6 -0
- package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.html +52 -0
- package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.scss +232 -0
- package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.spec.ts +21 -0
- package/lib/components/ca-comment/modals/comment-modal/comment-modal.component.ts +46 -0
- package/lib/components/ca-comment/modals/comment-modal/svg-routes/index.ts +1 -0
- package/lib/components/ca-comment/modals/comment-modal/svg-routes/modal.routes.ts +4 -0
- package/lib/components/ca-comment/models/ca-comment-config.model.ts +11 -0
- package/lib/components/ca-comment/models/ca-delete-comment.model.ts +1 -0
- package/lib/components/ca-comment/models/ca-save-comment.model.ts +3 -0
- package/lib/components/ca-comment/models/ca-update-comment.model.ts +5 -0
- package/lib/components/ca-comment/models/index.ts +4 -0
- package/lib/components/ca-comment/pipes/icon.pipe.ts +18 -0
- package/lib/components/ca-comment/pipes/index.ts +1 -0
- package/lib/components/ca-comment/services/index.ts +1 -0
- package/lib/components/ca-comment/services/modal.service.ts +31 -0
- package/lib/components/ca-comment/utils/constants/comment.constant.ts +10 -0
- package/lib/components/ca-comment/utils/constants/index.ts +1 -0
- package/lib/components/ca-comment/utils/index.ts +1 -0
- package/lib/components/ca-comments/ca-comments.component.html +695 -0
- package/lib/components/ca-comments/ca-comments.component.scss +135 -0
- package/lib/components/ca-comments/ca-comments.component.spec.ts +23 -0
- package/lib/components/ca-comments/ca-comments.component.ts +257 -0
- package/lib/components/ca-comments/ca-comments.stories.ts +150 -0
- package/lib/components/ca-comments/models/comment.interface.ts +18 -0
- package/lib/components/ca-comments/models/index.ts +1 -0
- package/lib/components/ca-comments/pipes/highlight-comment.pipe.ts +51 -0
- package/lib/components/ca-comments/pipes/highlight-single-string.pipe.ts +26 -0
- package/lib/components/ca-comments/pipes/index.ts +4 -0
- package/lib/components/ca-comments/pipes/is-current-user.pipe.ts +24 -0
- package/lib/components/ca-comments/pipes/sort-comments.pipe.ts +35 -0
- package/lib/components/ca-comments/utils/helpers/index.ts +0 -0
- package/lib/components/ca-confirmation-modals/components/ca-activate-modal/ca-active-modal.component.html +78 -0
- package/lib/components/ca-confirmation-modals/components/ca-activate-modal/ca-active-modal.component.scss +0 -0
- package/lib/components/ca-confirmation-modals/components/ca-activate-modal/ca-active-modal.component.ts +49 -0
- package/lib/components/ca-confirmation-modals/components/ca-deactive-modal/ca-deactive-modal.component.html +76 -0
- package/lib/components/ca-confirmation-modals/components/ca-deactive-modal/ca-deactive-modal.component.scss +0 -0
- package/lib/components/ca-confirmation-modals/components/ca-deactive-modal/ca-deactive-modal.component.ts +58 -0
- package/lib/components/ca-confirmation-modals/components/ca-delete-modal/ca-delete-modal.component.html +74 -0
- package/lib/components/ca-confirmation-modals/components/ca-delete-modal/ca-delete-modal.component.scss +0 -0
- package/lib/components/ca-confirmation-modals/components/ca-delete-modal/ca-delete-modal.component.ts +48 -0
- package/lib/components/ca-confirmation-modals/components/ca-move-modal/ca-move-modal.component.html +78 -0
- package/lib/components/ca-confirmation-modals/components/ca-move-modal/ca-move-modal.component.scss +3 -0
- package/lib/components/ca-confirmation-modals/components/ca-move-modal/ca-move-modal.component.ts +49 -0
- package/lib/components/ca-confirmation-modals/components/ca-reset-table-modal/ca-reset-table-modal.component.html +74 -0
- package/lib/components/ca-confirmation-modals/components/ca-reset-table-modal/ca-reset-table-modal.component.scss +0 -0
- package/lib/components/ca-confirmation-modals/components/ca-reset-table-modal/ca-reset-table-modal.component.ts +48 -0
- package/lib/components/ca-confirmation-modals/components/ca-void-modal/ca-void-modal.component.html +74 -0
- package/lib/components/ca-confirmation-modals/components/ca-void-modal/ca-void-modal.component.scss +0 -0
- package/lib/components/ca-confirmation-modals/components/ca-void-modal/ca-void-modal.component.ts +48 -0
- package/lib/components/ca-confirmation-modals/components/interfaces/file.interface.ts +11 -0
- package/lib/components/ca-confirmation-modals/components/interfaces/modal-data.interface.ts +11 -0
- package/lib/components/ca-confirmation-modals/interfaces/confirmation-modal-buttons.interface.ts +7 -0
- package/lib/components/ca-confirmation-modals/interfaces/index.ts +1 -0
- package/lib/components/ca-confirmation-modals/utils/constants/confirmation-modal-buttons.constants.ts +28 -0
- package/lib/components/ca-confirmation-modals/utils/constants/index.ts +1 -0
- package/lib/components/ca-contacts-card/ca-contacts-card.component.html +200 -0
- package/lib/components/ca-contacts-card/ca-contacts-card.component.scss +0 -0
- package/lib/components/ca-contacts-card/ca-contacts-card.component.spec.ts +23 -0
- package/lib/components/ca-contacts-card/ca-contacts-card.component.stories.ts +84 -0
- package/lib/components/ca-contacts-card/ca-contacts-card.component.ts +86 -0
- package/lib/components/ca-contacts-card/interfaces/contact-department.interface.ts +7 -0
- package/lib/components/ca-contacts-card/interfaces/contact.interface.ts +7 -0
- package/lib/components/ca-contacts-card/interfaces/index.ts +2 -0
- package/lib/components/ca-custom-card/ca-custom-card.component.html +164 -0
- package/lib/components/ca-custom-card/ca-custom-card.component.scss +187 -0
- package/lib/components/ca-custom-card/ca-custom-card.component.stories.ts +97 -0
- package/lib/components/ca-custom-card/ca-custom-card.component.ts +181 -0
- package/lib/components/ca-custom-card/utils/animations/card-modal.animation.ts +80 -0
- package/lib/components/ca-custom-card/utils/animations/index.ts +1 -0
- package/lib/components/ca-custom-card/utils/enums/custom-card.enum.ts +4 -0
- package/lib/components/ca-custom-card/utils/enums/index.ts +1 -0
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.html +158 -0
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.spec.ts +24 -0
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.ts +298 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.html +190 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.ts +241 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.html +23 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.ts +61 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.html +26 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.ts +194 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.html +66 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.ts +158 -0
- package/lib/components/ca-custom-datetime-pickers/enums/calendar-left-string.enum.ts +5 -0
- package/lib/components/ca-custom-datetime-pickers/enums/calendar-list-preview-string.enum.ts +4 -0
- package/lib/components/ca-custom-datetime-pickers/enums/calendar-main-string.enum.ts +5 -0
- package/lib/components/ca-custom-datetime-pickers/enums/calendar-scroll-type-string.enum.ts +4 -0
- package/lib/components/ca-custom-datetime-pickers/enums/calendar-string.enum.ts +6 -0
- package/lib/components/ca-custom-datetime-pickers/enums/calendar-type-string.enum.ts +3 -0
- package/lib/components/ca-custom-datetime-pickers/models/scroll-change.model.ts +6 -0
- package/lib/components/ca-custom-datetime-pickers/models/scroll-type.model.ts +8 -0
- package/lib/components/ca-custom-datetime-pickers/pipes/calendar-months.pipe.ts +23 -0
- package/lib/components/ca-custom-datetime-pickers/services/calendar-datetime-picker.service.ts +35 -0
- package/lib/components/ca-custom-datetime-pickers/strategy/calendar-strategy.ts +120 -0
- package/lib/components/ca-custom-datetime-pickers/utils/constants/custom-datetime-pickers.constants.ts +48 -0
- package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.html +158 -0
- package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.spec.ts +24 -0
- package/lib/components/ca-custom-datetime-pickers-test/ca-custom-datetime-pickers-test.component.ts +298 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.html +186 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-dates-main/ca-custom-datetime-pickers-calendar-dates-main.component.ts +226 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.html +22 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-days/ca-custom-datetime-pickers-calendar-days.component.ts +61 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.html +26 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-calendar-left/ca-custom-datetime-pickers-calendar-left.component.ts +194 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.html +66 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.scss +0 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.spec.ts +26 -0
- package/lib/components/ca-custom-datetime-pickers-test/components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component.ts +158 -0
- package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-left-string.enum.ts +5 -0
- package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-list-preview-string.enum.ts +4 -0
- package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-main-string.enum.ts +5 -0
- package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-scroll-type-string.enum.ts +4 -0
- package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-string.enum.ts +6 -0
- package/lib/components/ca-custom-datetime-pickers-test/enums/calendar-type-string.enum.ts +3 -0
- package/lib/components/ca-custom-datetime-pickers-test/models/scroll-change.model.ts +6 -0
- package/lib/components/ca-custom-datetime-pickers-test/models/scroll-type.model.ts +8 -0
- package/lib/components/ca-custom-datetime-pickers-test/pipes/calendar-months.pipe.ts +23 -0
- package/lib/components/ca-custom-datetime-pickers-test/services/calendar-datetime-picker.service.ts +35 -0
- package/lib/components/ca-custom-datetime-pickers-test/strategy/calendar-strategy.ts +120 -0
- package/lib/components/ca-custom-datetime-pickers-test/utils/constants/custom-datetime-pickers.constants.ts +48 -0
- package/lib/components/ca-custom-horizontal-scrollbar/ca-custom-horizontal-scrollbar.component.html +20 -0
- package/lib/components/ca-custom-horizontal-scrollbar/ca-custom-horizontal-scrollbar.component.scss +11 -0
- package/lib/components/ca-custom-horizontal-scrollbar/ca-custom-horizontal-scrollbar.component.ts +23 -0
- package/lib/components/ca-custom-horizontal-scrollbar/directives/scrollbar-sync.directive.ts +200 -0
- package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.html +72 -0
- package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.scss +78 -0
- package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.spec.ts +23 -0
- package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.ts +278 -0
- package/lib/components/ca-custom-scrollbar/enums/event-type.enum.ts +6 -0
- package/lib/components/ca-custom-scrollbar/enums/index.ts +2 -0
- package/lib/components/ca-custom-scrollbar/enums/scroll-event-action.enum.ts +4 -0
- package/lib/components/ca-custom-scrollbar/models/index.ts +2 -0
- package/lib/components/ca-custom-scrollbar/models/scroll-bar-options.model.ts +6 -0
- package/lib/components/ca-custom-scrollbar/models/scroll-event.model.ts +8 -0
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.html +77 -0
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.scss +357 -0
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.ts +132 -0
- package/lib/components/ca-details-dropdown/models/detail-dropdown.model.ts +17 -0
- package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.ts +3 -0
- package/lib/components/ca-details-title-card/ca-details-title-card.component.html +98 -0
- package/lib/components/ca-details-title-card/ca-details-title-card.component.scss +153 -0
- package/lib/components/ca-details-title-card/ca-details-title-card.component.stories.ts +100 -0
- package/lib/components/ca-details-title-card/ca-details-title-card.component.ts +140 -0
- package/lib/components/ca-details-title-card/interfaces/ca-details-title-card-config.interface.ts +11 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.html +289 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.scss +334 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.spec.ts +21 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.stories.ts +162 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.ts +287 -0
- package/lib/components/ca-dropdown-menu/enums/dropdown-menu-item-type.enum.ts +11 -0
- package/lib/components/ca-dropdown-menu/enums/dropdown-menu.enum.ts +25 -0
- package/lib/components/ca-dropdown-menu/enums/index.ts +2 -0
- package/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-item.interface.ts +22 -0
- package/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-option-emit.interface.ts +5 -0
- package/lib/components/ca-dropdown-menu/interfaces/index.ts +2 -0
- package/lib/components/ca-dropdown-menu/pipes/dropdown-menu-placement-class.pipe.ts +18 -0
- package/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.ts +20 -0
- package/lib/components/ca-dropdown-menu/pipes/index.ts +2 -0
- package/lib/components/ca-dropdown-menu/types/dropdown-menu-type.type.ts +4 -0
- package/lib/components/ca-dropdown-menu/types/index.ts +1 -0
- package/lib/components/ca-dropdown-menu/utils/constants/dropdown-menu.constants.ts +228 -0
- package/lib/components/ca-dropdown-menu/utils/constants/index.ts +1 -0
- package/lib/components/ca-dropdown-menu/utils/helpers/dropdown-menu.helper.ts +16 -0
- package/lib/components/ca-dropdown-menu/utils/helpers/index.ts +1 -0
- package/lib/components/ca-dropdown-menu/utils/svg-routes/dropdown-menu-svg-routes.ts +10 -0
- package/lib/components/ca-dropdown-menu/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.html +365 -0
- package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.scss +36 -0
- package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.ts +236 -0
- package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.stories.ts +41 -0
- package/lib/components/ca-factoring-dropdown/enums/factoring-form-control.enum.ts +6 -0
- package/lib/components/ca-factoring-dropdown/enums/factoring-pdf-format.enum.ts +4 -0
- package/lib/components/ca-factoring-dropdown/enums/factoring-pdf-organize.enum.ts +4 -0
- package/lib/components/ca-factoring-dropdown/enums/index.ts +3 -0
- package/lib/components/ca-factoring-dropdown/interfaces/factoring-checkbox-item.interface.ts +5 -0
- package/lib/components/ca-factoring-dropdown/interfaces/factoring-export-item.interface.ts +14 -0
- package/lib/components/ca-factoring-dropdown/interfaces/index.ts +2 -0
- package/lib/components/ca-factoring-dropdown/utils/constants/factoring-dropdown.constants.ts +57 -0
- package/lib/components/ca-factoring-dropdown/utils/constants/index.ts +1 -0
- package/lib/components/ca-files-count/ca-files-count.component.html +38 -0
- package/lib/components/ca-files-count/ca-files-count.component.scss +1 -0
- package/lib/components/ca-files-count/ca-files-count.component.spec.ts +23 -0
- package/lib/components/ca-files-count/ca-files-count.component.stories.ts +37 -0
- package/lib/components/ca-files-count/ca-files-count.component.ts +50 -0
- package/lib/components/ca-filters/ca-filter.component.html +557 -0
- package/lib/components/ca-filters/ca-filter.component.scss +316 -0
- package/lib/components/ca-filters/ca-filter.component.stories.ts +420 -0
- package/lib/components/ca-filters/ca-filter.component.ts +572 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.html +162 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.scss +394 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.ts +299 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-broker-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-dispatcher-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-driver-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-fuel-stop-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-dispatcher-filter/config/index.ts +4 -0
- package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.html +126 -0
- package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.scss +371 -0
- package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.ts +171 -0
- package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.html +184 -0
- package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.scss +397 -0
- package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.ts +348 -0
- package/lib/components/ca-filters/components/ca-state-filter/config/ca-state-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-state-filter/config/index.ts +1 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.html +137 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.scss +212 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.ts +225 -0
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.html +37 -0
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.scss +122 -0
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.ts +171 -0
- package/lib/components/ca-filters/components/ca-time-filter-dropdown/ca-time-filter-dropdown.component.html +33 -0
- package/lib/components/ca-filters/components/ca-time-filter-dropdown/ca-time-filter-dropdown.component.scss +114 -0
- package/lib/components/ca-filters/components/ca-time-filter-dropdown/ca-time-filter-dropdown.component.ts +198 -0
- package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.html +127 -0
- package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.scss +372 -0
- package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.ts +242 -0
- package/lib/components/ca-filters/components/ca-trailer-type-filter/config/ca-trailer-type-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-trailer-type-filter/config/index.ts +1 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.html +125 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.scss +378 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.ts +236 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/config/ca-truck-type-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/config/index.ts +1 -0
- package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.html +220 -0
- package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.scss +597 -0
- package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.ts +324 -0
- package/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.ts +16 -0
- package/lib/components/ca-filters/components/ca-user-filter/config/index.ts +1 -0
- package/lib/components/ca-filters/components/ca-user-filter/models/ca-user-data.model.ts +10 -0
- package/lib/components/ca-filters/components/ca-user-filter/models/ca-user-group.model.ts +7 -0
- package/lib/components/ca-filters/components/ca-user-filter/models/index.ts +2 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/filter-selected-items.pipe.ts +15 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/group-selection-state.pipe.ts +19 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/index.ts +3 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/selected-users.pipe.ts +16 -0
- package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.html +22 -0
- package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.scss +355 -0
- package/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.ts +181 -0
- package/lib/components/ca-filters/enums/filter-actions-string.enum.ts +6 -0
- package/lib/components/ca-filters/enums/index.ts +1 -0
- package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.ts +81 -0
- package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.ts +106 -0
- package/lib/components/ca-filters/pipes/filter-conditions-user-box.pipe.ts +39 -0
- package/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.ts +146 -0
- package/lib/components/ca-filters/pipes/filter-trailer-color.pipe.ts +37 -0
- package/lib/components/ca-filters/pipes/filter-truck-color.pipe.ts +32 -0
- package/lib/components/ca-filters/pipes/index.ts +6 -0
- package/lib/components/ca-filters/utils/constants/directive.constants.ts +1342 -0
- package/lib/components/ca-filters/utils/constants/filter-config.constants.ts +44 -0
- package/lib/components/ca-filters/utils/constants/index.ts +2 -0
- package/lib/components/ca-filters/utils/constants/status-filter.constants.ts +258 -0
- package/lib/components/ca-filters/utils/helpers/filter.helper.ts +277 -0
- package/lib/components/ca-filters/utils/helpers/index.ts +2 -0
- package/lib/components/ca-filters/utils/helpers/time-filter.helper.ts +118 -0
- package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.ts +15 -0
- package/lib/components/ca-filters/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-filters/validators/range.validator.ts +23 -0
- package/lib/components/ca-fleet-filter/ca-fleet-filter.component.html +271 -0
- package/lib/components/ca-fleet-filter/ca-fleet-filter.component.scss +271 -0
- package/lib/components/ca-fleet-filter/ca-fleet-filter.component.spec.ts +23 -0
- package/lib/components/ca-fleet-filter/ca-fleet-filter.component.ts +248 -0
- package/lib/components/ca-fleet-filter/ca-fleet-filter.stories.ts +42 -0
- package/lib/components/ca-fleet-filter/enums/fleet-filter-item-type.enum.ts +4 -0
- package/lib/components/ca-fleet-filter/enums/index.ts +1 -0
- package/lib/components/ca-fleet-filter/interfaces/fleet-filter-data.interface.ts +10 -0
- package/lib/components/ca-fleet-filter/interfaces/fleet-filter-item-emit.interface.ts +6 -0
- package/lib/components/ca-fleet-filter/interfaces/fleet-filter-trailer-type.interface.ts +7 -0
- package/lib/components/ca-fleet-filter/interfaces/fleet-filter-trailer.interface.ts +8 -0
- package/lib/components/ca-fleet-filter/interfaces/fleet-filter-truck-type.interface.ts +6 -0
- package/lib/components/ca-fleet-filter/interfaces/fleet-filter-truck.interface.ts +8 -0
- package/lib/components/ca-fleet-filter/interfaces/index.ts +6 -0
- package/lib/components/ca-fleet-filter/utils/constants/fleet-filter.constants.ts +204 -0
- package/lib/components/ca-fleet-filter/utils/constants/index.ts +1 -0
- package/lib/components/ca-fleet-filter/utils/helpers/fleet-filter.helper.ts +56 -0
- package/lib/components/ca-fleet-filter/utils/helpers/index.ts +1 -0
- package/lib/components/ca-fleet-filter/utils/pipes/index.ts +1 -0
- package/lib/components/ca-fleet-filter/utils/pipes/remove-svg-extension.pipe.ts +11 -0
- package/lib/components/ca-fleet-filter/utils/svg-routes/fleet-filter-svg-routes.ts +7 -0
- package/lib/components/ca-fleet-filter/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.html +116 -0
- package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.scss +28 -0
- package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.spec.ts +23 -0
- package/lib/components/ca-fuel-prices-range/ca-fuel-prices-range.component.ts +62 -0
- package/lib/components/ca-fuel-prices-range/interfaces/fuel-prices-range-config.interface.ts +6 -0
- package/lib/components/ca-fuel-prices-range/interfaces/index.ts +1 -0
- package/lib/components/ca-fuel-prices-range/pipes/fuel-prices-range.pipe.ts +29 -0
- package/lib/components/ca-fuel-prices-range/pipes/index.ts +1 -0
- package/lib/components/ca-fuel-prices-range/utils/constants/fuel-prices-range.constants.ts +28 -0
- package/lib/components/ca-fuel-prices-range/utils/constants/index.ts +1 -0
- package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.html +2454 -0
- package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.scss +25 -0
- package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.spec.ts +21 -0
- package/lib/components/ca-heatmap-usa/ca-heatmap-usa.component.ts +184 -0
- package/lib/components/ca-heatmap-usa/ca-heatmap-usa.stories.ts +45 -0
- package/lib/components/ca-heatmap-usa/constants/heatmap-usa.constants.ts +721 -0
- package/lib/components/ca-heatmap-usa/constants/index.ts +1 -0
- package/lib/components/ca-heatmap-usa/interfaces/index.ts +3 -0
- package/lib/components/ca-heatmap-usa/interfaces/map-list-item.interface.ts +6 -0
- package/lib/components/ca-heatmap-usa/interfaces/map-states.interface.ts +10 -0
- package/lib/components/ca-heatmap-usa/interfaces/top-list-by-state-item.interface.ts +11 -0
- package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.html +59 -0
- package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.scss +84 -0
- package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-icon-dropdown/ca-icon-dropdown.component.ts +118 -0
- package/lib/components/ca-icon-dropdown/ca-icon-dropdown.stories.ts +107 -0
- package/lib/components/ca-icon-dropdown/enums/index.ts +1 -0
- package/lib/components/ca-icon-dropdown/enums/placement.enum.ts +25 -0
- package/lib/components/ca-icon-dropdown/interfaces/icon-drop-down-item.interface.ts +5 -0
- package/lib/components/ca-icon-dropdown/interfaces/icon-dropdown-config.interface.ts +19 -0
- package/lib/components/ca-icon-dropdown/interfaces/index.ts +2 -0
- package/lib/components/ca-icon-dropdown/utils/svg-routes/icon-dropdown-svg-routes.ts +3 -0
- package/lib/components/ca-icon-dropdown/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-input/base-classes/ca-input-base-helpres.ts +343 -0
- package/lib/components/ca-input/base-classes/ca-input-base.ts +1394 -0
- package/lib/components/ca-input/base-classes/ca-input-event-manager.ts +32 -0
- package/lib/components/ca-input/ca-input.component.html +640 -0
- package/lib/components/ca-input/ca-input.component.scss +413 -0
- package/lib/components/ca-input/ca-input.component.ts +311 -0
- package/lib/components/ca-input/ca-input.stories.ts +416 -0
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.html +33 -0
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.scss +0 -0
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.spec.ts +26 -0
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.ts +75 -0
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.html +85 -0
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.scss +0 -0
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.spec.ts +26 -0
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.ts +46 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.html +38 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.scss +0 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.spec.ts +25 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.ts +58 -0
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.html +50 -0
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.scss +0 -0
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.spec.ts +25 -0
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.ts +79 -0
- package/lib/components/ca-input/config/ca-input.config.ts +192 -0
- package/lib/components/ca-input/config/index.ts +1 -0
- package/lib/components/ca-input/custom-validators/email-custom.validator.ts +9 -0
- package/lib/components/ca-input/custom-validators/url-custom.validator.ts +9 -0
- package/lib/components/ca-input/directives/caps-lock.directive.ts +44 -0
- package/lib/components/ca-input/directives/command-visible.directive.ts +44 -0
- package/lib/components/ca-input/directives/index.ts +5 -0
- package/lib/components/ca-input/directives/input-max-value.directive.ts +48 -0
- package/lib/components/ca-input/directives/min-max-value.directive.ts +37 -0
- package/lib/components/ca-input/directives/price_format.directive.ts +35 -0
- package/lib/components/ca-input/directives/restrict-input.directive.ts +129 -0
- package/lib/components/ca-input/enums/index.ts +4 -0
- package/lib/components/ca-input/enums/input-commands-action.enum.ts +9 -0
- package/lib/components/ca-input/enums/input-commands-type.enum.ts +7 -0
- package/lib/components/ca-input/enums/input-config-name-string.enum.ts +7 -0
- package/lib/components/ca-input/enums/input-string.enum.ts +115 -0
- package/lib/components/ca-input/enums/input-text-transform.enum.ts +6 -0
- package/lib/components/ca-input/mixins/input-command.mixin.ts +158 -0
- package/lib/components/ca-input/mixins/input-helper.mixin.ts +61 -0
- package/lib/components/ca-input/mixins/input.mixin.ts +19 -0
- package/lib/components/ca-input/mixins/restriction-pipe.mixin.ts +54 -0
- package/lib/components/ca-input/models/base.model.ts +24 -0
- package/lib/components/ca-input/models/command-click.model.ts +5 -0
- package/lib/components/ca-input/models/commands-event.model.ts +5 -0
- package/lib/components/ca-input/models/index.ts +3 -0
- package/lib/components/ca-input/models/label-color.model.ts +11 -0
- package/lib/components/ca-input/pipes/color-finder.pipe.ts +55 -0
- package/lib/components/ca-input/pipes/form-control.pipe.ts +12 -0
- package/lib/components/ca-input/pipes/index.ts +19 -0
- package/lib/components/ca-input/pipes/input-class.pipe.ts +197 -0
- package/lib/components/ca-input/pipes/input-clear-class.pipe.ts +104 -0
- package/lib/components/ca-input/pipes/input-container-class.pipe.ts +70 -0
- package/lib/components/ca-input/pipes/input-datetime-picker-class.pipe.ts +98 -0
- package/lib/components/ca-input/pipes/input-dropdown-arrow-class.pipe.ts +68 -0
- package/lib/components/ca-input/pipes/input-error.pipe.ts +78 -0
- package/lib/components/ca-input/pipes/input-password-eye-class.pipe.ts +43 -0
- package/lib/components/ca-input/pipes/input-pattern.pipe.ts +308 -0
- package/lib/components/ca-input/pipes/input-placeholder-icon-right.pipe.ts +54 -0
- package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.ts +69 -0
- package/lib/components/ca-input/pipes/input-placeholder-text-class.pipe.ts +52 -0
- package/lib/components/ca-input/pipes/input-type.pipe.ts +18 -0
- package/lib/components/ca-input/pipes/label-class.pipe.ts +46 -0
- package/lib/components/ca-input/pipes/show-clear.pipe.ts +19 -0
- package/lib/components/ca-input/pipes/show-dropdown-arrow.pipe.ts +23 -0
- package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.ts +31 -0
- package/lib/components/ca-input/pipes/show-placeholder-text.pipe.ts +27 -0
- package/lib/components/ca-input/pipes/show-valid-check.pipe.ts +30 -0
- package/lib/components/ca-input/scss/ca-dropdown-input-image.scss +109 -0
- package/lib/components/ca-input/scss/ca-input.clear.scss +360 -0
- package/lib/components/ca-input/scss/ca-input.colors.scss +287 -0
- package/lib/components/ca-input/scss/ca-input.commands.scss +187 -0
- package/lib/components/ca-input/scss/ca-input.dangermark.scss +17 -0
- package/lib/components/ca-input/scss/ca-input.datepicker.scss +153 -0
- package/lib/components/ca-input/scss/ca-input.dropdown.scss +124 -0
- package/lib/components/ca-input/scss/ca-input.editlabel.scss +42 -0
- package/lib/components/ca-input/scss/ca-input.error.scss +34 -0
- package/lib/components/ca-input/scss/ca-input.input.scss +838 -0
- package/lib/components/ca-input/scss/ca-input.label.scss +281 -0
- package/lib/components/ca-input/scss/ca-input.labelcounter.scss +21 -0
- package/lib/components/ca-input/scss/ca-input.passwordcapslock.scss +17 -0
- package/lib/components/ca-input/scss/ca-input.passwordeye.scss +138 -0
- package/lib/components/ca-input/scss/ca-input.placeholderText.scss +82 -0
- package/lib/components/ca-input/scss/ca-input.placeholdericon-rightside.scss +90 -0
- package/lib/components/ca-input/scss/ca-input.placeholdericon.scss +188 -0
- package/lib/components/ca-input/scss/ca-input.requiredcheck.scss +19 -0
- package/lib/components/ca-input/scss/ca-input.spinner.scss +5 -0
- package/lib/components/ca-input/services/ca-input-validation.service.ts +246 -0
- package/lib/components/ca-input/services/index.ts +1 -0
- package/lib/components/ca-input/utils/constants/index.ts +1 -0
- package/lib/components/ca-input/utils/constants/input-constants.ts +129 -0
- package/lib/components/ca-input/utils/index.ts +2 -0
- package/lib/components/ca-input/utils/input-change-value.type.ts +1 -0
- package/lib/components/ca-input/utils/input-svg-routes.ts +26 -0
- package/lib/components/ca-input/versions/datetime/datetimepicker.directive.spec.ts +8 -0
- package/lib/components/ca-input/versions/datetime/datetimepicker.directive.ts +9 -0
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.html +77 -0
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.scss +134 -0
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.ts +517 -0
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.stories.ts +290 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.ts +4 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-commands-string.enum.ts +6 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-layers-string.enum.ts +4 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-stop-types-string.enum.ts +4 -0
- package/lib/components/ca-input-address-dropdown/enums/input-address-type-string.enum.ts +5 -0
- package/lib/components/ca-input-address-dropdown/models/address-data.model.ts +14 -0
- package/lib/components/ca-input-address-dropdown/models/address-list.model.ts +6 -0
- package/lib/components/ca-input-address-dropdown/models/command-properties.model.ts +7 -0
- package/lib/components/ca-input-address-dropdown/models/commands-handler.model.ts +8 -0
- package/lib/components/ca-input-address-dropdown/models/index.ts +7 -0
- package/lib/components/ca-input-address-dropdown/models/input-address-commands-string.model.ts +5 -0
- package/lib/components/ca-input-address-dropdown/models/long-lat.model.ts +4 -0
- package/lib/components/ca-input-address-dropdown/models/sent-address-data.model.ts +7 -0
- package/lib/components/ca-input-address-dropdown/validators/ca-input-address.regex-validations.ts +12 -0
- package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.html +79 -0
- package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.scss +134 -0
- package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.ts +447 -0
- package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.stories.ts +183 -0
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.ts +4 -0
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.ts +6 -0
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.ts +4 -0
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.ts +4 -0
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.ts +5 -0
- package/lib/components/ca-input-address-dropdown-test/models/address-data.model.ts +13 -0
- package/lib/components/ca-input-address-dropdown-test/models/address-list.model.ts +5 -0
- package/lib/components/ca-input-address-dropdown-test/models/command-properties.model.ts +7 -0
- package/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.ts +8 -0
- package/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.ts +5 -0
- package/lib/components/ca-input-address-dropdown-test/models/long-lat.model.ts +4 -0
- package/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.ts +7 -0
- package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.ts +14 -0
- package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address.regex-validations.ts +12 -0
- package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.html +106 -0
- package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.scss +138 -0
- package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.ts +1193 -0
- package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.stories.ts +231 -0
- package/lib/components/ca-input-dropdown/animations/index.ts +1 -0
- package/lib/components/ca-input-dropdown/animations/input-dropdown.animation.ts +24 -0
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.html +397 -0
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.scss +240 -0
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.ts +1468 -0
- package/lib/components/ca-input-dropdown/ca-input-dropdown.stories.ts +150 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.html +23 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.ts +45 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.html +119 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.ts +56 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.html +31 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.ts +44 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.html +56 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.ts +46 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.html +86 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.ts +61 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.html +41 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.ts +41 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.html +65 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.ts +57 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.html +58 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.ts +48 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.html +69 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.ts +41 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.html +53 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.ts +41 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.html +54 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.ts +46 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.html +178 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.ts +51 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.html +23 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.ts +41 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.html +40 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.ts +58 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.html +84 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.ts +48 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.html +36 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.ts +41 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.html +113 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.ts +58 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.html +103 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.ts +68 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.html +34 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.ts +40 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.html +60 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.ts +46 -0
- package/lib/components/ca-input-dropdown/enums/dropdown-string.enum.ts +4 -0
- package/lib/components/ca-input-dropdown/enums/dropdown-template-type.enum.ts +22 -0
- package/lib/components/ca-input-dropdown/enums/index.ts +2 -0
- package/lib/components/ca-input-dropdown/models/index.ts +3 -0
- package/lib/components/ca-input-dropdown/models/input-dropdown-option.model.ts +98 -0
- package/lib/components/ca-input-dropdown/models/load-modal-status.model.ts +5 -0
- package/lib/components/ca-input-dropdown/models/status-order.model.ts +4 -0
- package/lib/components/ca-input-dropdown/pipes/dropdown-count.pipe.ts +22 -0
- package/lib/components/ca-input-dropdown/pipes/index.ts +8 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-default-template-class.pipe.ts +30 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-fuel-franchise-class.pipe.ts +20 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-label-class.pipe.ts +32 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-load-broker-container.pipe.ts +27 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-multiselect-class.pipe.ts +26 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-svgtext-template-container.pipe.ts +27 -0
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-svgtext-template-icon.pipe.ts +24 -0
- package/lib/components/ca-input-dropdown/utils/constants/index.ts +1 -0
- package/lib/components/ca-input-dropdown/utils/constants/input-dropdown.constants.ts +206 -0
- package/lib/components/ca-input-dropdown/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-input-dropdown/utils/svg-routes/input-dropdown-svg-routes.ts +13 -0
- package/lib/components/ca-input-dropdown-test/animations/index.ts +1 -0
- package/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.ts +24 -0
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.html +835 -0
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.scss +276 -0
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.ts +897 -0
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.stories.ts +837 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.html +26 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.ts +66 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.html +136 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.ts +77 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.html +32 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.ts +67 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.html +58 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.ts +69 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.html +77 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.ts +83 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.html +42 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.ts +64 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.html +63 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.ts +73 -0
- 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.html +49 -0
- 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.scss +0 -0
- 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.ts +33 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.html +17 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.ts +74 -0
- 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.html +37 -0
- 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.scss +5 -0
- 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.spec.ts +23 -0
- 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.ts +26 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.html +47 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.ts +68 -0
- 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.html +56 -0
- 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.scss +0 -0
- 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.ts +27 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.html +22 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.scss +3 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.ts +66 -0
- 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.html +40 -0
- 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.scss +0 -0
- 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.ts +39 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.html +32 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.ts +68 -0
- 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.html +166 -0
- 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.scss +0 -0
- 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.ts +38 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.html +24 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.ts +73 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.html +24 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.ts +64 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.html +87 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.ts +68 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.html +38 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.ts +68 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.html +123 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.ts +80 -0
- 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.css +0 -0
- 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.html +105 -0
- 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.spec.ts +23 -0
- 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.ts +55 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.html +19 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.ts +91 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.html +38 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.ts +63 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.html +63 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.scss +0 -0
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.ts +61 -0
- package/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.ts +4 -0
- package/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.ts +21 -0
- package/lib/components/ca-input-dropdown-test/enums/index.ts +2 -0
- package/lib/components/ca-input-dropdown-test/interfaces/index.ts +1 -0
- package/lib/components/ca-input-dropdown-test/interfaces/input-dropdown-option.interface.ts +103 -0
- package/lib/components/ca-input-dropdown-test/interfaces/selected-status.interface.ts +5 -0
- package/lib/components/ca-input-dropdown-test/interfaces/status-order.interface.ts +4 -0
- package/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.ts +25 -0
- package/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.ts +107 -0
- package/lib/components/ca-input-dropdown-test/pipes/index.ts +9 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.ts +38 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.ts +22 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.ts +28 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.ts +37 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.ts +28 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.ts +31 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.ts +29 -0
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.ts +28 -0
- package/lib/components/ca-input-dropdown-test/types/index.ts +1 -0
- package/lib/components/ca-input-dropdown-test/types/input-dropdown-forms.type.ts +9 -0
- package/lib/components/ca-input-dropdown-test/types/select-dropdown-value.type.ts +8 -0
- package/lib/components/ca-input-dropdown-test/utils/constants/index.ts +1 -0
- package/lib/components/ca-input-dropdown-test/utils/constants/input-dropdown.constants.ts +2948 -0
- package/lib/components/ca-input-dropdown-test/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.ts +13 -0
- package/lib/components/ca-input-dropdown-test/validators/dropdown-empty-value.validator.ts +11 -0
- package/lib/components/ca-input-dropdown-test/validators/index.ts +1 -0
- package/lib/components/ca-input-note/ca-input-note.component.html +91 -0
- package/lib/components/ca-input-note/ca-input-note.component.scss +171 -0
- package/lib/components/ca-input-note/ca-input-note.component.spec.ts +24 -0
- package/lib/components/ca-input-note/ca-input-note.component.ts +229 -0
- package/lib/components/ca-input-note/ca-input-note.stories.ts +64 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.html +28 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.scss +97 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.spec.ts +24 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.ts +43 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.stories.ts +84 -0
- package/lib/components/ca-input-test/base-classes/ca-input-base-helpres.ts +343 -0
- package/lib/components/ca-input-test/base-classes/ca-input-base.ts +1394 -0
- package/lib/components/ca-input-test/base-classes/ca-input-event-manager.ts +32 -0
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.html +33 -0
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.scss +0 -0
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.spec.ts +26 -0
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.ts +75 -0
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.html +85 -0
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.scss +0 -0
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.spec.ts +26 -0
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.ts +46 -0
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.html +38 -0
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.scss +0 -0
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.spec.ts +25 -0
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.ts +58 -0
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.html +56 -0
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.scss +0 -0
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.spec.ts +25 -0
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.ts +79 -0
- package/lib/components/ca-input-test/config/ca-input.config.ts +196 -0
- package/lib/components/ca-input-test/config/index.ts +1 -0
- package/lib/components/ca-input-test/custom-validators/email-custom.validator.ts +9 -0
- package/lib/components/ca-input-test/custom-validators/url-custom.validator.ts +9 -0
- package/lib/components/ca-input-test/directives/caps-lock.directive.ts +44 -0
- package/lib/components/ca-input-test/directives/command-visible.directive.ts +44 -0
- package/lib/components/ca-input-test/directives/index.ts +5 -0
- package/lib/components/ca-input-test/directives/input-max-value.directive.ts +48 -0
- package/lib/components/ca-input-test/directives/min-max-value.directive.ts +37 -0
- package/lib/components/ca-input-test/directives/price_format.directive.ts +35 -0
- package/lib/components/ca-input-test/directives/restrict-input.directive.ts +134 -0
- package/lib/components/ca-input-test/enums/index.ts +4 -0
- package/lib/components/ca-input-test/enums/input-commands-action.enum.ts +9 -0
- package/lib/components/ca-input-test/enums/input-commands-type.enum.ts +7 -0
- package/lib/components/ca-input-test/enums/input-config-name-string.enum.ts +7 -0
- package/lib/components/ca-input-test/enums/input-string.enum.ts +115 -0
- package/lib/components/ca-input-test/enums/input-text-transform.enum.ts +6 -0
- package/lib/components/ca-input-test/input-test.component.html +352 -0
- package/lib/components/ca-input-test/input-test.component.scss +413 -0
- package/lib/components/ca-input-test/input-test.component.spec.ts +23 -0
- package/lib/components/ca-input-test/input-test.component.ts +401 -0
- package/lib/components/ca-input-test/input-test.stories.ts +838 -0
- package/lib/components/ca-input-test/mixins/input-command.mixin.ts +159 -0
- package/lib/components/ca-input-test/mixins/input-helper.mixin.ts +61 -0
- package/lib/components/ca-input-test/mixins/input.mixin.ts +19 -0
- package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.ts +54 -0
- package/lib/components/ca-input-test/models/base.model.ts +24 -0
- package/lib/components/ca-input-test/models/command-click.model.ts +5 -0
- package/lib/components/ca-input-test/models/commands-event.model.ts +5 -0
- package/lib/components/ca-input-test/models/index.ts +3 -0
- package/lib/components/ca-input-test/models/label-color.model.ts +11 -0
- package/lib/components/ca-input-test/pipes/color-finder.pipe.ts +55 -0
- package/lib/components/ca-input-test/pipes/form-control.pipe.ts +12 -0
- package/lib/components/ca-input-test/pipes/index.ts +19 -0
- package/lib/components/ca-input-test/pipes/input-class.pipe.ts +195 -0
- package/lib/components/ca-input-test/pipes/input-clear-class.pipe.ts +104 -0
- package/lib/components/ca-input-test/pipes/input-container-class.pipe.ts +68 -0
- package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.ts +90 -0
- package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.ts +68 -0
- package/lib/components/ca-input-test/pipes/input-error.pipe.ts +72 -0
- package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.ts +43 -0
- package/lib/components/ca-input-test/pipes/input-pattern.pipe.ts +308 -0
- package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.ts +56 -0
- package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.ts +69 -0
- package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.ts +53 -0
- package/lib/components/ca-input-test/pipes/input-type.pipe.ts +18 -0
- package/lib/components/ca-input-test/pipes/label-class.pipe.ts +54 -0
- package/lib/components/ca-input-test/pipes/show-clear.pipe.ts +20 -0
- package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.ts +24 -0
- package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.ts +31 -0
- package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.ts +27 -0
- package/lib/components/ca-input-test/pipes/show-valid-check.pipe.ts +31 -0
- package/lib/components/ca-input-test/scss/ca-dropdown-input-image.scss +109 -0
- package/lib/components/ca-input-test/scss/ca-input.clear.scss +360 -0
- package/lib/components/ca-input-test/scss/ca-input.colors.scss +287 -0
- package/lib/components/ca-input-test/scss/ca-input.commands.scss +187 -0
- package/lib/components/ca-input-test/scss/ca-input.dangermark.scss +17 -0
- package/lib/components/ca-input-test/scss/ca-input.datepicker.scss +153 -0
- package/lib/components/ca-input-test/scss/ca-input.dropdown.scss +124 -0
- package/lib/components/ca-input-test/scss/ca-input.editlabel.scss +42 -0
- package/lib/components/ca-input-test/scss/ca-input.error.scss +34 -0
- package/lib/components/ca-input-test/scss/ca-input.input.scss +837 -0
- package/lib/components/ca-input-test/scss/ca-input.label.scss +281 -0
- package/lib/components/ca-input-test/scss/ca-input.labelcounter.scss +21 -0
- package/lib/components/ca-input-test/scss/ca-input.passwordcapslock.scss +17 -0
- package/lib/components/ca-input-test/scss/ca-input.passwordeye.scss +138 -0
- package/lib/components/ca-input-test/scss/ca-input.placeholderText.scss +82 -0
- package/lib/components/ca-input-test/scss/ca-input.placeholdericon-rightside.scss +89 -0
- package/lib/components/ca-input-test/scss/ca-input.placeholdericon.scss +195 -0
- package/lib/components/ca-input-test/scss/ca-input.requiredcheck.scss +19 -0
- package/lib/components/ca-input-test/scss/ca-input.spinner.scss +5 -0
- package/lib/components/ca-input-test/services/ca-input-validation.service.ts +246 -0
- package/lib/components/ca-input-test/services/index.ts +1 -0
- package/lib/components/ca-input-test/utils/constants/index.ts +1 -0
- package/lib/components/ca-input-test/utils/constants/input-constants.ts +129 -0
- package/lib/components/ca-input-test/utils/index.ts +2 -0
- package/lib/components/ca-input-test/utils/input-change-value.type.ts +1 -0
- package/lib/components/ca-input-test/utils/input-svg-routes.ts +26 -0
- package/lib/components/ca-input-test/versions/datetime/datetimepicker.directive.spec.ts +8 -0
- package/lib/components/ca-input-test/versions/datetime/datetimepicker.directive.ts +9 -0
- package/lib/components/ca-items-dropdown/ca-items-dropdown.component.html +202 -0
- package/lib/components/ca-items-dropdown/ca-items-dropdown.component.scss +27 -0
- package/lib/components/ca-items-dropdown/ca-items-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-items-dropdown/ca-items-dropdown.component.ts +102 -0
- package/lib/components/ca-items-dropdown/interfaces/index.ts +2 -0
- package/lib/components/ca-items-dropdown/interfaces/items-dropdown-config.interface.ts +7 -0
- package/lib/components/ca-items-dropdown/interfaces/items-dropdown-list.interface.ts +11 -0
- package/lib/components/ca-items-dropdown/pipes/dropdown-width.pipe.ts +13 -0
- package/lib/components/ca-items-dropdown/pipes/index.ts +2 -0
- package/lib/components/ca-items-dropdown/pipes/pm-item.pipe.ts +22 -0
- package/lib/components/ca-items-dropdown/utils/helpers/index.ts +1 -0
- package/lib/components/ca-items-dropdown/utils/helpers/items-dropdown.helper.ts +10 -0
- package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.html +111 -0
- package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.scss +127 -0
- package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.spec.ts +23 -0
- package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.stories.ts +71 -0
- package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.ts +123 -0
- package/lib/components/ca-last-fuel-price-progress/enums/index.ts +1 -0
- package/lib/components/ca-last-fuel-price-progress/enums/last-fuel-price-progress.enum.ts +4 -0
- package/lib/components/ca-last-fuel-price-progress/interfaces/index.ts +2 -0
- package/lib/components/ca-last-fuel-price-progress/interfaces/last-fuel-price-progress-config.interface.ts +10 -0
- package/lib/components/ca-last-fuel-price-progress/interfaces/last-fuel-price-progress-data.interface.ts +12 -0
- package/lib/components/ca-last-fuel-price-progress/utils/constants/index.ts +1 -0
- package/lib/components/ca-last-fuel-price-progress/utils/constants/last-fuel-price-progress.constants.ts +9 -0
- package/lib/components/ca-last-fuel-price-progress/utils/helpers/index.ts +1 -0
- package/lib/components/ca-last-fuel-price-progress/utils/helpers/last-fuel-price-progress.helper.ts +100 -0
- package/lib/components/ca-last-fuel-price-progress/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-last-fuel-price-progress/utils/svg-routes/last-fuel-price-progress-svg-routes.ts +4 -0
- package/lib/components/ca-load-modal-progress-bar/ca-load-modal-progress-bar.component.html +14 -0
- package/lib/components/ca-load-modal-progress-bar/ca-load-modal-progress-bar.component.scss +39 -0
- package/lib/components/ca-load-modal-progress-bar/ca-load-modal-progress-bar.component.ts +79 -0
- package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.html +383 -0
- package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.scss +60 -0
- package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.spec.ts +21 -0
- package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.ts +163 -0
- package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.stories.ts +740 -0
- package/lib/components/ca-load-pickup-delivery/interfaces/index.ts +1 -0
- package/lib/components/ca-load-pickup-delivery/interfaces/load-pickup-delivery.interface.ts +74 -0
- package/lib/components/ca-load-pickup-delivery/types/index.ts +1 -0
- package/lib/components/ca-load-pickup-delivery/types/load-type.type.ts +7 -0
- package/lib/components/ca-load-status/ca-load-status.component.html +90 -0
- package/lib/components/ca-load-status/ca-load-status.component.scss +323 -0
- package/lib/components/ca-load-status/ca-load-status.component.ts +92 -0
- package/lib/components/ca-load-status/ca-load-status.stories.ts +318 -0
- package/lib/components/ca-load-status/constants/load-status.constants.ts +18 -0
- package/lib/components/ca-load-status/enums/load-status-background-colors.enum.ts +17 -0
- package/lib/components/ca-load-status/enums/load-status-icon-colors.enum.ts +13 -0
- package/lib/components/ca-load-status/enums/load-status-svg-colors.enum.ts +13 -0
- package/lib/components/ca-load-status/pipes/status-text.pipe.ts +73 -0
- package/lib/components/ca-load-status-log/ca-load-status-log.component.html +100 -0
- package/lib/components/ca-load-status-log/ca-load-status-log.component.scss +20 -0
- package/lib/components/ca-load-status-log/ca-load-status-log.component.stories.ts +71 -0
- package/lib/components/ca-load-status-log/ca-load-status-log.component.ts +60 -0
- package/lib/components/ca-load-status-string/ca-load-status-string.component.html +62 -0
- package/lib/components/ca-load-status-string/ca-load-status-string.component.scss +97 -0
- package/lib/components/ca-load-status-string/ca-load-status-string.component.ts +53 -0
- package/lib/components/ca-load-status-string/pipes/index.ts +1 -0
- package/lib/components/ca-load-status-string/pipes/load-status-string-class.pipe.ts +31 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.html +71 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.scss +182 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.stories.ts +59 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.ts +150 -0
- package/lib/components/ca-logo-change/enums/index.ts +1 -0
- package/lib/components/ca-logo-change/enums/logo-change.enum.ts +8 -0
- package/lib/components/ca-logo-change/pipes/index.ts +1 -0
- package/lib/components/ca-logo-change/pipes/logo-slider.pipe.ts +11 -0
- package/lib/components/ca-logo-change/utils/constants/index.ts +1 -0
- package/lib/components/ca-logo-change/utils/constants/logo-change.constants.ts +20 -0
- package/lib/components/ca-main-table/ca-main-table.component.html +220 -0
- package/lib/components/ca-main-table/ca-main-table.component.scss +298 -0
- package/lib/components/ca-main-table/ca-main-table.component.spec.ts +23 -0
- package/lib/components/ca-main-table/ca-main-table.component.ts +131 -0
- package/lib/components/ca-main-table/ca-main-table.stories.ts +187 -0
- package/lib/components/ca-main-table/models/main-table.model.ts +24 -0
- package/lib/components/ca-main-table/pipes/ca-main-table-hidden-rows/ca-main-table-hidden-rows.pipe.spec.ts +8 -0
- package/lib/components/ca-main-table/pipes/ca-main-table-hidden-rows/ca-main-table-hidden-rows.pipe.ts +18 -0
- package/lib/components/ca-map/ca-map.component.html +190 -0
- package/lib/components/ca-map/ca-map.component.scss +451 -0
- package/lib/components/ca-map/ca-map.component.ts +825 -0
- package/lib/components/ca-map/ca-map.stories.ts +1594 -0
- package/lib/components/ca-map/enums/google-map.enum.ts +6 -0
- package/lib/components/ca-map/enums/index.ts +4 -0
- package/lib/components/ca-map/enums/map-marker-stop-type.enum.ts +13 -0
- package/lib/components/ca-map/enums/map-marker-string.enum.ts +27 -0
- package/lib/components/ca-map/enums/toolbar-filter-string.enum.ts +129 -0
- package/lib/components/ca-map/models/index.ts +1 -0
- package/lib/components/ca-map/models/map.model.ts +166 -0
- package/lib/components/ca-map/utils/constants/index.ts +4 -0
- package/lib/components/ca-map/utils/constants/map-info-window-options.constants.ts +6 -0
- package/lib/components/ca-map/utils/constants/map-marker-icons.constants.ts +121 -0
- package/lib/components/ca-map/utils/constants/map-options.constants.ts +178 -0
- package/lib/components/ca-map/utils/constants/map.constants.ts +437 -0
- package/lib/components/ca-map/utils/helpers/index.ts +2 -0
- package/lib/components/ca-map/utils/helpers/map-marker-icon.helper.ts +776 -0
- package/lib/components/ca-map/utils/helpers/map.helper.ts +192 -0
- package/lib/components/ca-map/utils/services/index.ts +1 -0
- package/lib/components/ca-map/utils/services/map-marker-icon.service.ts +312 -0
- package/lib/components/ca-map/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-map/utils/svg-routes/map-svg-routes.ts +19 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.html +702 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.scss +541 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.spec.ts +21 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.ts +178 -0
- package/lib/components/ca-map-dropdown/enums/index.ts +1 -0
- package/lib/components/ca-map-dropdown/enums/map-dropdown-string.enum.ts +20 -0
- package/lib/components/ca-map-dropdown/models/index.ts +1 -0
- package/lib/components/ca-map-dropdown/models/map-dropdown-content.model.ts +57 -0
- package/lib/components/ca-map-dropdown/pipes/index.ts +3 -0
- package/lib/components/ca-map-dropdown/pipes/map-dropdown-cluster-content-type.pipe.ts +16 -0
- package/lib/components/ca-map-dropdown/pipes/map-dropdown-content-type.pipe.ts +16 -0
- package/lib/components/ca-map-dropdown/pipes/map-dropdown-value.pipe.ts +33 -0
- package/lib/components/ca-map-dropdown/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.ts +22 -0
- package/lib/components/ca-map-list/ca-map-list.component.html +74 -0
- package/lib/components/ca-map-list/ca-map-list.component.scss +34 -0
- package/lib/components/ca-map-list/ca-map-list.component.spec.ts +23 -0
- package/lib/components/ca-map-list/ca-map-list.component.ts +192 -0
- package/lib/components/ca-map-list/utils/constants/index.ts +1 -0
- package/lib/components/ca-map-list/utils/constants/map-list.constants.ts +11 -0
- package/lib/components/ca-map-list-card/ca-map-list-card.component.html +41 -0
- package/lib/components/ca-map-list-card/ca-map-list-card.component.scss +0 -0
- package/lib/components/ca-map-list-card/ca-map-list-card.component.spec.ts +23 -0
- package/lib/components/ca-map-list-card/ca-map-list-card.component.ts +28 -0
- package/lib/components/ca-modal/ca-modal.component.html +59 -0
- package/lib/components/ca-modal/ca-modal.component.scss +345 -0
- package/lib/components/ca-modal/ca-modal.component.spec.ts +21 -0
- package/lib/components/ca-modal/ca-modal.component.ts +60 -0
- package/lib/components/ca-modal-button/ca-modal-button.component.html +68 -0
- package/lib/components/ca-modal-button/ca-modal-button.component.scss +396 -0
- package/lib/components/ca-modal-button/ca-modal-button.component.spec.ts +23 -0
- package/lib/components/ca-modal-button/ca-modal-button.component.ts +35 -0
- package/lib/components/ca-modal-button/ca-modal-button.stories.ts +255 -0
- package/lib/components/ca-modal-button/enums/index.ts +2 -0
- package/lib/components/ca-modal-button/enums/modal-button-class-type.enum.ts +15 -0
- package/lib/components/ca-modal-button/enums/modal-button-size.enum.ts +10 -0
- package/lib/components/ca-modal-button/pipes/index.ts +1 -0
- package/lib/components/ca-modal-button/pipes/modal-button-class.pipe.ts +22 -0
- package/lib/components/ca-modal-items/ca-modal-items.component.html +436 -0
- package/lib/components/ca-modal-items/ca-modal-items.component.scss +63 -0
- package/lib/components/ca-modal-items/ca-modal-items.component.spec.ts +23 -0
- package/lib/components/ca-modal-items/ca-modal-items.component.ts +137 -0
- package/lib/components/ca-modal-items/directives/index.ts +1 -0
- package/lib/components/ca-modal-items/directives/scroll-shadow-border.directive.ts +199 -0
- package/lib/components/ca-modal-items/enums/index.ts +1 -0
- package/lib/components/ca-modal-items/enums/modal-items.enum.ts +4 -0
- package/lib/components/ca-modal-items/interfaces/index.ts +2 -0
- package/lib/components/ca-modal-items/interfaces/items-row-template.interface.ts +8 -0
- package/lib/components/ca-modal-items/interfaces/modal-items-config.interface.ts +29 -0
- package/lib/components/ca-modal-items/pipes/index.ts +1 -0
- package/lib/components/ca-modal-items/pipes/modal-items-header-class.pipe.ts +34 -0
- package/lib/components/ca-modal-spinner/ca-modal-spinner.component.html +7 -0
- package/lib/components/ca-modal-spinner/ca-modal-spinner.component.scss +10 -0
- package/lib/components/ca-modal-spinner/ca-modal-spinner.component.spec.ts +23 -0
- package/lib/components/ca-modal-spinner/ca-modal-spinner.component.ts +10 -0
- package/lib/components/ca-new-filter/ca-filter-dropdown.component.html +142 -0
- package/lib/components/ca-new-filter/ca-filter-dropdown.component.scss +1 -0
- package/lib/components/ca-new-filter/ca-filter-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-new-filter/ca-filter-dropdown.component.ts +138 -0
- package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.html +232 -0
- package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.scss +9 -0
- package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.ts +215 -0
- package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.html +159 -0
- package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.scss +8 -0
- package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.ts +172 -0
- package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.css +0 -0
- package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.html +1 -0
- package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.spec.ts +23 -0
- package/lib/components/ca-new-filter/components/new-filter-base/new-filter-base.component.ts +40 -0
- package/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.ts +141 -0
- package/lib/components/ca-new-filter/constant/index.ts +1 -0
- package/lib/components/ca-new-filter/enums/filter-dropdown-types.enum.ts +18 -0
- package/lib/components/ca-new-filter/enums/filter-sorting-key.enum.ts +4 -0
- package/lib/components/ca-new-filter/enums/filter-time.enum.ts +35 -0
- package/lib/components/ca-new-filter/enums/index.ts +3 -0
- package/lib/components/ca-new-filter/interface/country.interface.ts +15 -0
- package/lib/components/ca-new-filter/interface/filter-action.interface.ts +27 -0
- package/lib/components/ca-new-filter/interface/filter-dropdown-configuration.interface.ts +15 -0
- package/lib/components/ca-new-filter/interface/filter-dropdown-list.ts +21 -0
- package/lib/components/ca-new-filter/interface/index.ts +6 -0
- package/lib/components/ca-new-filter/interface/sorting-emmiter.interface.ts +6 -0
- package/lib/components/ca-new-filter/interface/time-options.interface.ts +4 -0
- package/lib/components/ca-new-filter/pipes/filter-search.pipe.spec.ts +8 -0
- package/lib/components/ca-new-filter/pipes/filter-search.pipe.ts +30 -0
- package/lib/components/ca-new-filter/types/filter-dropdown.types.ts +15 -0
- package/lib/components/ca-new-filter/types/filter-sorting-key.type.ts +3 -0
- package/lib/components/ca-new-filter/types/filter-time.types.ts +3 -0
- package/lib/components/ca-new-filter/types/index.ts +3 -0
- package/lib/components/ca-new-filter/utils/configs/filter-dropdown-fields.config.ts +41 -0
- package/lib/components/ca-new-filter/utils/configs/index.ts +1 -0
- package/lib/components/ca-new-filter/utils/helpers/index.ts +1 -0
- package/lib/components/ca-new-filter/utils/helpers/time-filter.helper.ts +142 -0
- package/lib/components/ca-ngx-slider/ca-ngx-slider.component.html +54 -0
- package/lib/components/ca-ngx-slider/ca-ngx-slider.component.scss +188 -0
- package/lib/components/ca-ngx-slider/ca-ngx-slider.component.ts +84 -0
- package/lib/components/ca-ngx-slider/enums/slider-template.enum.ts +6 -0
- package/lib/components/ca-note/ca-note.component.html +138 -0
- package/lib/components/ca-note/ca-note.component.scss +445 -0
- package/lib/components/ca-note/ca-note.component.stories.ts +43 -0
- package/lib/components/ca-note/ca-note.component.ts +289 -0
- package/lib/components/ca-note/utils/helper/copy-paste.helper.ts +8 -0
- package/lib/components/ca-note/utils/svg-routes/note-svg-routes.ts +5 -0
- package/lib/components/ca-note-container/ca-note-container.component.html +137 -0
- package/lib/components/ca-note-container/ca-note-container.component.scss +333 -0
- package/lib/components/ca-note-container/ca-note-container.component.spec.ts +21 -0
- package/lib/components/ca-note-container/ca-note-container.component.ts +226 -0
- package/lib/components/ca-note-container/enums/note-default-string.enum.ts +9 -0
- package/lib/components/ca-note-container/enums/note-selected-color.enum.ts +4 -0
- package/lib/components/ca-note-container/models/note-colors.model.ts +4 -0
- package/lib/components/ca-note-container/utils/constants/note-config.constant.ts +65 -0
- package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.ts +8 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.html +105 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.scss +234 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.spec.ts +26 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.ts +70 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.stories.ts +87 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.html +18 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.scss +24 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.spec.ts +22 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.ts +27 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.stories.ts +47 -0
- package/lib/components/ca-period-content/ca-period-content.component.html +221 -0
- package/lib/components/ca-period-content/ca-period-content.component.scss +160 -0
- package/lib/components/ca-period-content/ca-period-content.component.spec.ts +21 -0
- package/lib/components/ca-period-content/ca-period-content.component.ts +90 -0
- package/lib/components/ca-period-content/ca-period-content.stories.ts +68 -0
- package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.html +19 -0
- package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.scss +30 -0
- package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.spec.ts +20 -0
- package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.ts +14 -0
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.html +335 -0
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.scss +339 -0
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.spec.ts +21 -0
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.ts +194 -0
- package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.html +60 -0
- package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.scss +152 -0
- package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.spec.ts +21 -0
- package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.ts +54 -0
- package/lib/components/ca-period-content/components/index.ts +3 -0
- package/lib/components/ca-period-content/enums/index.ts +2 -0
- package/lib/components/ca-period-content/enums/payroll-type.enum.ts +15 -0
- package/lib/components/ca-period-content/enums/period-title-type.enum.ts +7 -0
- package/lib/components/ca-period-content/models/component-data.type.ts +26 -0
- package/lib/components/ca-period-content/models/driver-info.ts +5 -0
- package/lib/components/ca-period-content/models/driver-minimal-response.ts +19 -0
- package/lib/components/ca-period-content/models/driver-short-response.ts +57 -0
- package/lib/components/ca-period-content/models/extra-payments.ts +28 -0
- package/lib/components/ca-period-content/models/formatted-component-data.type.ts +7 -0
- package/lib/components/ca-period-content/models/formatted-period-data.ts +16 -0
- package/lib/components/ca-period-content/models/index.ts +32 -0
- package/lib/components/ca-period-content/models/miles-stop-payroll-response.ts +23 -0
- package/lib/components/ca-period-content/models/notification-model.ts +5 -0
- package/lib/components/ca-period-content/models/payment-sum.model.ts +4 -0
- package/lib/components/ca-period-content/models/payroll-bonus-minimal-response.ts +6 -0
- package/lib/components/ca-period-content/models/payroll-bonus-response.ts +12 -0
- package/lib/components/ca-period-content/models/payroll-commission-total-sum.ts +7 -0
- package/lib/components/ca-period-content/models/payroll-credit-minimal-response.ts +6 -0
- package/lib/components/ca-period-content/models/payroll-credit-response.ts +18 -0
- package/lib/components/ca-period-content/models/payroll-deadline-period.ts +6 -0
- package/lib/components/ca-period-content/models/payroll-deadline-short-response.ts +6 -0
- package/lib/components/ca-period-content/models/payroll-deduction-minimal-response.ts +8 -0
- package/lib/components/ca-period-content/models/payroll-deduction-response.ts +22 -0
- package/lib/components/ca-period-content/models/payroll-driver-commission-by-id-response.ts +65 -0
- package/lib/components/ca-period-content/models/payroll-driver-flat-rate-closed-by-id-response.ts +34 -0
- package/lib/components/ca-period-content/models/payroll-driver-mileage-response.ts +43 -0
- package/lib/components/ca-period-content/models/payroll-flat-rate-total-sum.ts +7 -0
- package/lib/components/ca-period-content/models/payroll-fuel-minimal-response.ts +8 -0
- package/lib/components/ca-period-content/models/payroll-load-minimal-response.ts +18 -0
- package/lib/components/ca-period-content/models/payroll-load-stop-minimal-response.ts +6 -0
- package/lib/components/ca-period-content/models/payroll-map-location.ts +9 -0
- package/lib/components/ca-period-content/models/payroll-owner-closed-response.ts +35 -0
- package/lib/components/ca-period-content/models/payroll-owner-response.ts +34 -0
- package/lib/components/ca-period-content/models/payroll-payment-response.ts +10 -0
- package/lib/components/ca-period-content/models/payroll-payments-minimal-response.ts +6 -0
- package/lib/components/ca-period-content/models/payroll-period-input.type.ts +40 -0
- package/lib/components/ca-period-content/models/payroll-report-tables.type.ts +9 -0
- package/lib/components/ca-period-content/models/payroll-report.type.ts +55 -0
- package/lib/components/ca-period-content/models/per-mile-model.ts +5 -0
- package/lib/components/ca-period-content/pipes/included_count.pipe.ts +22 -0
- package/lib/components/ca-period-content/pipes/payroll-status-class.pipe.ts +27 -0
- package/lib/components/ca-period-content/pipes/period_status.pipe.ts +51 -0
- package/lib/components/ca-period-content/utils/constants/color-map.ts +9 -0
- package/lib/components/ca-period-content/utils/constants/index.ts +2 -0
- package/lib/components/ca-period-content/utils/constants/payroll-period-dropdown.constant.ts +15 -0
- package/lib/components/ca-period-content/utils/helpers/index.ts +1 -0
- package/lib/components/ca-period-content/utils/helpers/payroll-period-content.helper.ts +35 -0
- package/lib/components/ca-period-content/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-period-content/utils/svg-routes/period-content.routes.ts +20 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.html +159 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.scss +119 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.spec.ts +21 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.ts +101 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.stories.ts +756 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.html +129 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.scss +110 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.spec.ts +24 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.ts +141 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.html +184 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.scss +135 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.spec.ts +24 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.ts +130 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.html +372 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.scss +264 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.spec.ts +24 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.ts +120 -0
- package/lib/components/ca-pickup-delivery-block/models/adress-model.ts +12 -0
- package/lib/components/ca-pickup-delivery-block/models/animation-model.ts +6 -0
- package/lib/components/ca-pickup-delivery-block/models/broker-short-response.ts +14 -0
- package/lib/components/ca-pickup-delivery-block/models/companyUserShortResponse.model.ts +9 -0
- package/lib/components/ca-pickup-delivery-block/models/dispatch-grouped-load-response.mode.ts +7 -0
- package/lib/components/ca-pickup-delivery-block/models/dispatch-hos-response.model.ts +10 -0
- package/lib/components/ca-pickup-delivery-block/models/dispatch-response.model.ts +37 -0
- package/lib/components/ca-pickup-delivery-block/models/dispatch-status-response.model.ts +7 -0
- package/lib/components/ca-pickup-delivery-block/models/driver-dispatch.model.ts +12 -0
- package/lib/components/ca-pickup-delivery-block/models/enum-value.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/models/index.ts +15 -0
- package/lib/components/ca-pickup-delivery-block/models/load-short-response.ts +22 -0
- package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.ts +10 -0
- package/lib/components/ca-pickup-delivery-block/models/parking-slot-short-response.model.ts +13 -0
- package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.ts +9 -0
- package/lib/components/ca-pickup-delivery-block/models/status-types.enum.ts +5 -0
- package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.ts +8 -0
- package/lib/components/ca-pickup-delivery-block/utils/constants/index.ts +1 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/index.ts +2 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.ts +36 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.ts +4 -0
- package/lib/components/ca-profile-image/ca-profile-image.component.html +42 -0
- package/lib/components/ca-profile-image/ca-profile-image.component.scss +51 -0
- package/lib/components/ca-profile-image/ca-profile-image.component.spec.ts +24 -0
- package/lib/components/ca-profile-image/ca-profile-image.component.ts +89 -0
- package/lib/components/ca-profile-image/ca-profile-image.stories.ts +69 -0
- package/lib/components/ca-progress-bar/ca-progress-bar.component.html +404 -0
- package/lib/components/ca-progress-bar/ca-progress-bar.component.scss +202 -0
- package/lib/components/ca-progress-bar/ca-progress-bar.component.stories.ts +1539 -0
- package/lib/components/ca-progress-bar/ca-progress-bar.component.ts +242 -0
- package/lib/components/ca-progress-bar/enums/index.ts +1 -0
- package/lib/components/ca-progress-bar/enums/progress-bar-string.enum.ts +6 -0
- package/lib/components/ca-progress-bar/interfaces/gps-heading-info.interface.ts +6 -0
- package/lib/components/ca-progress-bar/interfaces/gps-progress.interface.ts +21 -0
- package/lib/components/ca-progress-bar/interfaces/index.ts +3 -0
- package/lib/components/ca-progress-bar/interfaces/progress-bar-data.interface.ts +19 -0
- package/lib/components/ca-progress-bar/pipes/convert-minutes-to-hours.pipe.ts +14 -0
- package/lib/components/ca-progress-bar/pipes/index.ts +1 -0
- package/lib/components/ca-progress-bar/utils/constants/index.ts +1 -0
- package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.ts +8 -0
- package/lib/components/ca-progress-bar/utils/helpers/convert-minutes-to-hours.helper.ts +9 -0
- package/lib/components/ca-progress-bar/utils/helpers/index.ts +1 -0
- package/lib/components/ca-progress-bar/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.ts +3 -0
- package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.html +90 -0
- package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.scss +72 -0
- package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.spec.ts +23 -0
- package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.stories.ts +131 -0
- package/lib/components/ca-progress-bar-v2/ca-progress-bar-v2.component.ts +49 -0
- package/lib/components/ca-progress-bar-v2/interfaces/index.ts +1 -0
- package/lib/components/ca-progress-bar-v2/interfaces/progress-bar-color-config.interface.ts +4 -0
- package/lib/components/ca-progress-expiration/ca-progress-expiration.component.html +103 -0
- package/lib/components/ca-progress-expiration/ca-progress-expiration.component.scss +65 -0
- package/lib/components/ca-progress-expiration/ca-progress-expiration.component.stories.ts +157 -0
- package/lib/components/ca-progress-expiration/ca-progress-expiration.component.ts +259 -0
- package/lib/components/ca-progress-expiration/enums/index.ts +1 -0
- package/lib/components/ca-progress-expiration/enums/time-units.enum.ts +6 -0
- package/lib/components/ca-progress-expiration/helpers/hex-to-rgba.helper.ts +18 -0
- package/lib/components/ca-progress-expiration/helpers/index.ts +2 -0
- package/lib/components/ca-progress-expiration/helpers/progress-expiration.helper.ts +64 -0
- package/lib/components/ca-progress-expiration/models/index.ts +7 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-color-type.model.ts +6 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-color.model.ts +4 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-template.model.ts +6 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-theme.model.ts +1 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-title.model.ts +5 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration-type.model.ts +1 -0
- package/lib/components/ca-progress-expiration/models/progress-expiration.model.ts +14 -0
- package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-abs.pipe.ts +12 -0
- package/lib/components/ca-progress-expiration/pipes/ca-progress-expiration-width.pipe.ts +59 -0
- package/lib/components/ca-progress-expiration/pipes/currency-format.pipe.ts +14 -0
- package/lib/components/ca-progress-expiration/pipes/index.ts +4 -0
- package/lib/components/ca-progress-expiration/pipes/time.pipe.ts +33 -0
- package/lib/components/ca-progress-expiration/utils/constants/index.ts +1 -0
- package/lib/components/ca-progress-expiration/utils/constants/progress-expiration.constant.ts +54 -0
- package/lib/components/ca-progress-expiration/utils/index.ts +1 -0
- package/lib/components/ca-range-slider/ca-range-slider.component.html +46 -0
- package/lib/components/ca-range-slider/ca-range-slider.component.scss +28 -0
- package/lib/components/ca-range-slider/ca-range-slider.component.spec.ts +23 -0
- package/lib/components/ca-range-slider/ca-range-slider.component.ts +75 -0
- package/lib/components/ca-range-slider/directives/index.ts +1 -0
- package/lib/components/ca-range-slider/directives/range-slider.directive.ts +88 -0
- package/lib/components/ca-range-slider/interfaces/index.ts +1 -0
- package/lib/components/ca-range-slider/interfaces/range-slider-config.interface.ts +7 -0
- package/lib/components/ca-rating-review/ca-rating-review.component.html +271 -0
- package/lib/components/ca-rating-review/ca-rating-review.component.scss +279 -0
- package/lib/components/ca-rating-review/ca-rating-review.component.spec.ts +21 -0
- package/lib/components/ca-rating-review/ca-rating-review.component.ts +209 -0
- package/lib/components/ca-rating-review/ca-rating-review.stories.ts +224 -0
- package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.html +201 -0
- package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.scss +359 -0
- package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.spec.ts +21 -0
- package/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.ts +175 -0
- package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.html +141 -0
- package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.scss +160 -0
- package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.spec.ts +21 -0
- package/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.ts +126 -0
- package/lib/components/ca-rating-review/enums/rating-reviews-type.enums.ts +16 -0
- package/lib/components/ca-rating-review/models/rating-review.model.ts +12 -0
- package/lib/components/ca-rating-review/utils/config/rating-review-search.config.ts +16 -0
- package/lib/components/ca-rating-review/utils/helpers/sort-data.helper.ts +13 -0
- package/lib/components/ca-rating-review/utils/pipe/filter-title.pipe.ts +21 -0
- package/lib/components/ca-rating-review/utils/svg-routes/ratings-reviews.routes.ts +16 -0
- package/lib/components/ca-right-side-panel/ca-right-side-panel.component.html +46 -0
- package/lib/components/ca-right-side-panel/ca-right-side-panel.component.scss +10 -0
- package/lib/components/ca-right-side-panel/ca-right-side-panel.component.spec.ts +21 -0
- package/lib/components/ca-right-side-panel/ca-right-side-panel.component.ts +161 -0
- package/lib/components/ca-right-side-panel/ca-right-side-panel.stories.ts +47 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.html +1214 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.scss +307 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.spec.ts +21 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.ts +147 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.html +180 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.scss +282 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.spec.ts +21 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.ts +195 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.html +238 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.scss +143 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.spec.ts +21 -0
- package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.ts +394 -0
- package/lib/components/ca-right-side-panel/config/ca-right-side-panel.config.ts +66 -0
- package/lib/components/ca-right-side-panel/enums/activity-log-sort-type.enum.ts +4 -0
- package/lib/components/ca-right-side-panel/enums/company/bank-account-status.enum.ts +6 -0
- package/lib/components/ca-right-side-panel/enums/company/bank-card-types-string.enum.ts +6 -0
- package/lib/components/ca-right-side-panel/enums/company/fleet-type.enum.ts +5 -0
- package/lib/components/ca-right-side-panel/enums/company/preferred-load-type.enum.ts +4 -0
- package/lib/components/ca-right-side-panel/enums/company-font-size.enum.ts +5 -0
- package/lib/components/ca-right-side-panel/enums/company-info-title.enum.ts +16 -0
- package/lib/components/ca-right-side-panel/enums/filter-type.enum.ts +6 -0
- package/lib/components/ca-right-side-panel/enums/index.ts +12 -0
- package/lib/components/ca-right-side-panel/enums/modules-filter-item-label.enum.ts +4 -0
- package/lib/components/ca-right-side-panel/enums/right-side-panel-current-tab.enum.ts +4 -0
- package/lib/components/ca-right-side-panel/enums/selected-module.enum.ts +13 -0
- package/lib/components/ca-right-side-panel/enums/time-filter-type.enum.ts +9 -0
- package/lib/components/ca-right-side-panel/models/action-filter/action-filter-input-data.model.ts +9 -0
- package/lib/components/ca-right-side-panel/models/activity-log-filter-params.model.ts +14 -0
- package/lib/components/ca-right-side-panel/models/activity-log-filter.model.ts +6 -0
- package/lib/components/ca-right-side-panel/models/company/bank-account.model.ts +15 -0
- package/lib/components/ca-right-side-panel/models/company/bank-card.model.ts +10 -0
- package/lib/components/ca-right-side-panel/models/company/bank.model.ts +7 -0
- package/lib/components/ca-right-side-panel/models/company/company-additional-info.model.ts +17 -0
- package/lib/components/ca-right-side-panel/models/company/company-address.model.ts +12 -0
- package/lib/components/ca-right-side-panel/models/company/company-enum-value.model.ts +4 -0
- package/lib/components/ca-right-side-panel/models/company/company-navigation-data.model.ts +5 -0
- package/lib/components/ca-right-side-panel/models/company/company-payroll.model.ts +23 -0
- package/lib/components/ca-right-side-panel/models/company/company-short.model.ts +11 -0
- package/lib/components/ca-right-side-panel/models/company/company-user-short.model.ts +10 -0
- package/lib/components/ca-right-side-panel/models/company/company.model.ts +52 -0
- package/lib/components/ca-right-side-panel/models/company/department-contact.model.ts +12 -0
- package/lib/components/ca-right-side-panel/models/company/department.model.ts +9 -0
- package/lib/components/ca-right-side-panel/models/company/factoring-company.model.ts +11 -0
- package/lib/components/ca-right-side-panel/models/company/file-response.model.ts +9 -0
- package/lib/components/ca-right-side-panel/models/company/insurance-policy-addon.model.ts +27 -0
- package/lib/components/ca-right-side-panel/models/company/insurance-policy.model.ts +15 -0
- package/lib/components/ca-right-side-panel/models/company/per-mile.model.ts +5 -0
- package/lib/components/ca-right-side-panel/models/index.ts +28 -0
- package/lib/components/ca-right-side-panel/models/module-filter/module-filter-activity-log.model.ts +6 -0
- package/lib/components/ca-right-side-panel/models/module-filter/module-filter-input-data.model.ts +7 -0
- package/lib/components/ca-right-side-panel/models/navigation-item.model.ts +9 -0
- package/lib/components/ca-right-side-panel/models/time-filter/time-filter-event.model.ts +8 -0
- package/lib/components/ca-right-side-panel/models/user-filter/user-filter-avatar-file.model.ts +9 -0
- package/lib/components/ca-right-side-panel/models/user-filter/user-filter-data.model.ts +9 -0
- package/lib/components/ca-right-side-panel/models/user-filter/user-filter-input-data.model.ts +9 -0
- package/lib/components/ca-right-side-panel/utils/constants/activity-log-filter-data.constants.ts +132 -0
- package/lib/components/ca-right-side-panel/utils/constants/companies-side-panel-navigation.constants.ts +730 -0
- package/lib/components/ca-right-side-panel/utils/constants/index.ts +2 -0
- package/lib/components/ca-right-side-panel/utils/pipes/bank-card-types.pipe.ts +20 -0
- package/lib/components/ca-right-side-panel/utils/pipes/hide-account.pipe.ts +59 -0
- package/lib/components/ca-right-side-panel/utils/pipes/index.ts +2 -0
- package/lib/components/ca-right-side-panel/utils/svg-routes/index.ts +2 -0
- package/lib/components/ca-right-side-panel/utils/svg-routes/right-side-panel-top-bar-svg.routes.ts +10 -0
- package/lib/components/ca-right-side-panel/utils/svg-routes/side-panel-company-svg.routes.ts +6 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.html +176 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.scss +373 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.spec.ts +21 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.ts +380 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.stories.ts +180 -0
- package/lib/components/ca-search-multiple-states/models/chips.model.ts +6 -0
- package/lib/components/ca-search-multiple-states/models/grid-column.model.ts +23 -0
- package/lib/components/ca-search-multiple-states/models/index.ts +3 -0
- package/lib/components/ca-search-multiple-states/models/tab-data.model.ts +14 -0
- package/lib/components/ca-search-multiple-states/utils/config/index.ts +1 -0
- package/lib/components/ca-search-multiple-states/utils/config/input-config.ts +10 -0
- package/lib/components/ca-search-multiple-states/utils/enums/chips-colors.enum.ts +5 -0
- package/lib/components/ca-search-multiple-states/utils/enums/index.ts +3 -0
- package/lib/components/ca-search-multiple-states/utils/enums/keyboard-event-commands.enum.ts +3 -0
- package/lib/components/ca-search-multiple-states/utils/enums/search-count.enum.ts +6 -0
- package/lib/components/ca-search-multiple-states/utils/pipes/chip-class.pipe.ts +23 -0
- package/lib/components/ca-search-multiple-states/utils/pipes/index.ts +1 -0
- package/lib/components/ca-search-multiple-states/utils/services/index.ts +1 -0
- package/lib/components/ca-search-multiple-states/utils/services/search-multiple-states.service.ts +37 -0
- package/lib/components/ca-search-multiple-states/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.ts +8 -0
- package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.html +145 -0
- package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.scss +205 -0
- package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.spec.ts +22 -0
- package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.component.ts +276 -0
- package/lib/components/ca-search-multiple-states-2/ca-search-multiple-states-2.stories.ts +69 -0
- package/lib/components/ca-search-multiple-states-2/enums/index.ts +1 -0
- package/lib/components/ca-search-multiple-states-2/enums/search-multiple-state-action.enum.ts +3 -0
- package/lib/components/ca-search-multiple-states-2/interfaces/index.ts +1 -0
- package/lib/components/ca-search-multiple-states-2/interfaces/search-query.interface.ts +4 -0
- package/lib/components/ca-search-multiple-states-2/util/index.ts +1 -0
- package/lib/components/ca-search-multiple-states-2/util/routes/multiple-search-state-svg.route.ts +9 -0
- package/lib/components/ca-selectable-column-table/ca-selectable-column-table.component.html +70 -0
- package/lib/components/ca-selectable-column-table/ca-selectable-column-table.component.scss +96 -0
- package/lib/components/ca-selectable-column-table/ca-selectable-column-table.component.ts +72 -0
- package/lib/components/ca-selectable-column-table/ca-selectable-columns-table.stories.ts +53 -0
- package/lib/components/ca-selectable-column-table/enums/ca-selectable-column-table.enum.ts +3 -0
- package/lib/components/ca-selectable-column-table/enums/index.ts +1 -0
- package/lib/components/ca-selectable-column-table/models/ca-selectable-column-table.model.ts +6 -0
- package/lib/components/ca-selectable-column-table/models/index.ts +1 -0
- package/lib/components/ca-selectable-column-table/utils/constants/ca-selectable-column-table.constants.ts +50 -0
- package/lib/components/ca-selectable-column-table/utils/constants/index.ts +1 -0
- package/lib/components/ca-show-more/ca-show-more.component.html +19 -0
- package/lib/components/ca-show-more/ca-show-more.component.scss +0 -0
- package/lib/components/ca-show-more/ca-show-more.component.spec.ts +23 -0
- package/lib/components/ca-show-more/ca-show-more.component.ts +27 -0
- package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.html +122 -0
- package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.scss +158 -0
- package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.spec.ts +21 -0
- package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.ts +137 -0
- package/lib/components/ca-sort-dropdown/ca-sort-dropdown.stories.ts +173 -0
- package/lib/components/ca-sort-dropdown/enums/index.ts +1 -0
- package/lib/components/ca-sort-dropdown/enums/sort-dropdown.enum.ts +11 -0
- package/lib/components/ca-sort-dropdown/interfaces/index.ts +1 -0
- package/lib/components/ca-sort-dropdown/interfaces/sort-dropdown-action.interface.ts +11 -0
- package/lib/components/ca-sort-dropdown/models/index.ts +1 -0
- package/lib/components/ca-sort-dropdown/models/sort-column.model.ts +8 -0
- package/lib/components/ca-sort-dropdown/types/index.ts +1 -0
- package/lib/components/ca-sort-dropdown/types/sort-directions.type.ts +6 -0
- package/lib/components/ca-sort-dropdown/utils/svg-routes/ca-sort-dropdown-svg-routes.ts +10 -0
- package/lib/components/ca-sort-dropdown/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.html +136 -0
- package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.scss +6 -0
- package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.stories.ts +103 -0
- package/lib/components/ca-sorting-card-dropdown/ca-sorting-card-dropdown.component.ts +101 -0
- package/lib/components/ca-spinner/ca-spinner.component.html +13 -0
- package/lib/components/ca-spinner/ca-spinner.component.scss +63 -0
- package/lib/components/ca-spinner/ca-spinner.component.spec.ts +24 -0
- package/lib/components/ca-spinner/ca-spinner.component.ts +61 -0
- package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.html +70 -0
- package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.scss +10 -0
- package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.stories.ts +78 -0
- package/lib/components/ca-status-change-dropdown/ca-status-change-dropdown.component.ts +46 -0
- package/lib/components/ca-tab-switch/ca-tab-switch.component.html +33 -0
- package/lib/components/ca-tab-switch/ca-tab-switch.component.scss +381 -0
- package/lib/components/ca-tab-switch/ca-tab-switch.component.ts +213 -0
- package/lib/components/ca-tab-switch/ca-tab-switch.stories.ts +155 -0
- package/lib/components/ca-tab-switch/models/hover-style.model.ts +4 -0
- package/lib/components/ca-tab-switch/models/tab-options.model.ts +5 -0
- package/lib/components/ca-tab-switch/utils/constants/tab-switch.constants.ts +6 -0
- package/lib/components/ca-table-card-view/ca-table-card-view.component.html +255 -0
- package/lib/components/ca-table-card-view/ca-table-card-view.component.scss +73 -0
- package/lib/components/ca-table-card-view/ca-table-card-view.component.spec.ts +22 -0
- package/lib/components/ca-table-card-view/ca-table-card-view.component.ts +322 -0
- package/lib/components/ca-table-card-view/ca-table-card-view.stories.ts +79 -0
- package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.html +28 -0
- package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.scss +3 -0
- package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.spec.ts +23 -0
- package/lib/components/ca-table-card-view/components/additional-components/ca-table-card-view-skeleton/ca-table-card-view-skeleton.component.ts +25 -0
- package/lib/components/ca-table-card-view/enums/index.ts +2 -0
- package/lib/components/ca-table-card-view/enums/table-card-general.enum.ts +4 -0
- package/lib/components/ca-table-card-view/enums/table-card-types.enum.ts +4 -0
- package/lib/components/ca-table-card-view/pipes/index.ts +1 -0
- package/lib/components/ca-table-card-view/pipes/is-card-flipped.pipe.ts +11 -0
- package/lib/components/ca-table-card-view/utils/helpers/index.ts +2 -0
- package/lib/components/ca-table-card-view/utils/helpers/table-card-skeleton.helper.ts +94 -0
- package/lib/components/ca-table-card-view/utils/helpers/table-card-view-helper.ts +93 -0
- package/lib/components/ca-table-card-view/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-table-card-view/utils/svg-routes/table-card-view-svg-routes.ts +3 -0
- package/lib/components/ca-telematic-map-list/ca-telematic-map-list.component.html +312 -0
- package/lib/components/ca-telematic-map-list/ca-telematic-map-list.component.scss +195 -0
- package/lib/components/ca-telematic-map-list/ca-telematic-map-list.component.ts +131 -0
- package/lib/components/ca-telematic-map-list/ca-telematic-map-list.stories.ts +54 -0
- package/lib/components/ca-telematic-map-list/config/ca-telematic-list.config.ts +16 -0
- package/lib/components/ca-telematic-map-list/config/index.ts +1 -0
- package/lib/components/ca-telematic-map-list/enums/ca-telematic-map-list.enum.ts +4 -0
- package/lib/components/ca-telematic-map-list/enums/index.ts +1 -0
- package/lib/components/ca-telematic-map-list/models/index.ts +1 -0
- package/lib/components/ca-telematic-map-list/models/telematic-truck.model.ts +27 -0
- package/lib/components/ca-telematic-map-list/pipes/index.ts +2 -0
- package/lib/components/ca-telematic-map-list/pipes/is-column-selected.pipe.ts +18 -0
- package/lib/components/ca-telematic-map-list/utils/constants/index.ts +1 -0
- package/lib/components/ca-telematic-map-list/utils/constants/telematic-map-list.constants.ts +1782 -0
- package/lib/components/ca-telematic-map-list/utils/svg-routes/ca-telematic-list-svg-routes.ts +8 -0
- package/lib/components/ca-telematic-map-list/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-toast-messages/ca-toast-messages-component.html +47 -0
- package/lib/components/ca-toast-messages/ca-toast-messages-component.scss +41 -0
- package/lib/components/ca-toast-messages/ca-toast-messages.component.ts +127 -0
- package/lib/components/ca-toast-messages/ca-toast-messages.stories.ts +105 -0
- package/lib/components/ca-toast-messages/enums/index.ts +1 -0
- package/lib/components/ca-toast-messages/enums/toast-type.enum.ts +6 -0
- package/lib/components/ca-toast-messages/pipes/index.ts +2 -0
- package/lib/components/ca-toast-messages/pipes/toast-background.pipe.ts +28 -0
- package/lib/components/ca-toast-messages/pipes/toast-stack.pipe.ts +17 -0
- package/lib/components/ca-todo/ca-todo-component.html +35 -0
- package/lib/components/ca-todo/ca-todo-component.scss +62 -0
- package/lib/components/ca-todo/ca-todo.component.ts +109 -0
- package/lib/components/ca-todo/ca-todo.stories.ts +711 -0
- package/lib/components/ca-todo/components/ca-todo-card.component.html +313 -0
- package/lib/components/ca-todo/components/ca-todo-card.component.scss +223 -0
- package/lib/components/ca-todo/components/ca-todo-card.component.spec.ts +21 -0
- package/lib/components/ca-todo/components/ca-todo-card.component.ts +192 -0
- package/lib/components/ca-todo/components/ca-todo-card.stories.ts +378 -0
- package/lib/components/ca-todo/config/column.config.ts +24 -0
- package/lib/components/ca-todo/config/index.ts +1 -0
- package/lib/components/ca-todo/enums/column.enum.ts +5 -0
- package/lib/components/ca-todo/enums/download-link.enum.ts +5 -0
- package/lib/components/ca-todo/enums/index.ts +2 -0
- package/lib/components/ca-todo/models/image-config.model.ts +5 -0
- package/lib/components/ca-todo/models/index.ts +4 -0
- package/lib/components/ca-todo/models/to-do-column.model.ts +8 -0
- package/lib/components/ca-todo/models/todo-card-config.model.ts +10 -0
- package/lib/components/ca-todo/models/todo-config.model.ts +19 -0
- package/lib/components/ca-todo/services/file-service.ts +15 -0
- package/lib/components/ca-todo/services/index.ts +1 -0
- package/lib/components/ca-todo/utils/index.ts +1 -0
- package/lib/components/ca-todo/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-todo/utils/svg-routes/todo.routes.ts +8 -0
- package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.html +282 -0
- package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.scss +53 -0
- package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.spec.ts +23 -0
- package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.component.ts +197 -0
- package/lib/components/ca-toolbar-dropdown/ca-toolbar-dropdown.stories.ts +83 -0
- package/lib/components/ca-toolbar-dropdown/interfaces/dropdown-item.interface.ts +14 -0
- package/lib/components/ca-toolbar-dropdown/interfaces/index.ts +1 -0
- package/lib/components/ca-toolbar-dropdown/pipes/filter-by-search-term.pipe.ts +20 -0
- package/lib/components/ca-toolbar-dropdown/pipes/index.ts +2 -0
- package/lib/components/ca-toolbar-dropdown/pipes/selected-item.pipe.ts +16 -0
- package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.html +81 -0
- package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.scss +18 -0
- package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.spec.ts +23 -0
- package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.ts +152 -0
- package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.stories.ts +170 -0
- package/lib/components/ca-toolbar-tab-switch/enums/index.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/enums/toolbar-variant.enum.ts +4 -0
- package/lib/components/ca-toolbar-tab-switch/interfaces/index.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/interfaces/toolbar-tabs.interface.ts +6 -0
- package/lib/components/ca-toolbar-tab-switch/pipes/toolbar-tabs-class-pipe.ts +38 -0
- package/lib/components/ca-toolbar-tab-switch/types/index.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/types/toolbar-variant.type.ts +3 -0
- package/lib/components/ca-tooltip-list/ca-tooltip-list.component.html +85 -0
- package/lib/components/ca-tooltip-list/ca-tooltip-list.component.scss +105 -0
- package/lib/components/ca-tooltip-list/ca-tooltip-list.component.spec.ts +21 -0
- package/lib/components/ca-tooltip-list/ca-tooltip-list.component.ts +37 -0
- package/lib/components/ca-tooltip-list/ca-tooltip-list.stories.ts +117 -0
- package/lib/components/ca-tooltip-list/models/index.ts +2 -0
- package/lib/components/ca-tooltip-list/models/tooltip-list-item.model.ts +7 -0
- package/lib/components/ca-tooltip-list/models/tooltip-list.model.ts +8 -0
- package/lib/components/ca-tooltip-list/utils/constants/ca-tooltip-list.constants.ts +3 -0
- package/lib/components/ca-tooltip-list/utils/constants/index.ts +1 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.html +238 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.scss +137 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.spec.ts +22 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.ts +80 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.stories.ts +134 -0
- package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.ts +10 -0
- package/lib/components/ca-upload-files/ca-upload-files.component.html +122 -0
- package/lib/components/ca-upload-files/ca-upload-files.component.scss +134 -0
- package/lib/components/ca-upload-files/ca-upload-files.component.ts +430 -0
- package/lib/components/ca-upload-files/ca-upload-files.stories.ts +499 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.html +303 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.scss +204 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.spec.ts +21 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.ts +410 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.stories.ts +209 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.ts +10 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-dropzone-action.enum.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-dropzone-type.enum.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-upload-page.enum.ts +26 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/template-type.enum.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.ts +30 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/drop-background-event.interface.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-config.interface.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-option-config.interface.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-settings.interface.ts +10 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-config.interface.ts +19 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-event.interface.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/index.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constants.ts +27 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constants.ts +41 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-animation.constants.ts +10 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/mime-type.constants.ts +33 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.html +412 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.scss +1491 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.spec.ts +21 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.ts +481 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/delete-action.interface.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/file-action-event.interface.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/index.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.ts +18 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.ts +17 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/mime-type-to-extension.pipe.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.ts +41 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.ts +18 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/config/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/config/upload-file-input.config.ts +10 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.html +99 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.scss +240 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.spec.ts +21 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.ts +190 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/file-carousel-size.enum.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/files-carousel.interface.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.ts +19 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-upload-files/enums/file-action.enum.ts +5 -0
- package/lib/components/ca-upload-files/enums/file-size.enum.ts +7 -0
- package/lib/components/ca-upload-files/enums/file-type.enum.ts +6 -0
- package/lib/components/ca-upload-files/enums/index.ts +4 -0
- package/lib/components/ca-upload-files/enums/review-state.enum.ts +4 -0
- package/lib/components/ca-upload-files/interfaces/document-review-input-event.interface.ts +7 -0
- package/lib/components/ca-upload-files/interfaces/file-option-config.interface.ts +16 -0
- package/lib/components/ca-upload-files/interfaces/index.ts +5 -0
- package/lib/components/ca-upload-files/interfaces/review-file-config.interface.ts +10 -0
- package/lib/components/ca-upload-files/interfaces/slider.interface.ts +4 -0
- package/lib/components/ca-upload-files/interfaces/upload-files-config.interface.ts +46 -0
- package/lib/components/ca-upload-files/pipes/index.ts +2 -0
- package/lib/components/ca-upload-files/pipes/map-file.pipe.ts +17 -0
- package/lib/components/ca-upload-files/pipes/upload-class.pipe.ts +41 -0
- package/lib/components/ca-upload-files/services/index.ts +1 -0
- package/lib/components/ca-upload-files/services/upload-file.service.ts +34 -0
- package/lib/components/ca-upload-files/utils/svg-routes/files-upload-svg-routes.ts +6 -0
- package/lib/components/ca-upload-files/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-vehicle-list/ca-vehicle-list.component.html +157 -0
- package/lib/components/ca-vehicle-list/ca-vehicle-list.component.scss +80 -0
- package/lib/components/ca-vehicle-list/ca-vehicle-list.component.spec.ts +22 -0
- package/lib/components/ca-vehicle-list/ca-vehicle-list.component.stories.ts +56 -0
- package/lib/components/ca-vehicle-list/ca-vehicle-list.component.ts +92 -0
- package/lib/components/ca-vehicle-list/enums/index.ts +1 -0
- package/lib/components/ca-vehicle-list/enums/vehicle-list.enum.ts +4 -0
- package/lib/components/ca-vehicle-list/interfaces/index.ts +2 -0
- package/lib/components/ca-vehicle-list/interfaces/vehicle-list-actions-emit.interface.ts +5 -0
- package/lib/components/ca-vehicle-list/interfaces/vehicle-list-config.interface.ts +9 -0
- package/lib/components/ca-vehicle-list/models/index.ts +1 -0
- package/lib/components/ca-vehicle-list/models/vehicle-list.model.ts +12 -0
- package/lib/components/ca-vehicle-list/types/index.ts +1 -0
- package/lib/components/ca-vehicle-list/types/vehicle-list.type.ts +5 -0
- package/lib/components/ca-vehicle-list/utils/constants/index.ts +1 -0
- package/lib/components/ca-vehicle-list/utils/constants/vehicle-list.constants.ts +40 -0
- package/lib/components/ca-vehicle-list/utils/svg-routes/index.ts +1 -0
- package/lib/components/ca-vehicle-list/utils/svg-routes/vehicle-list-svg-routes.ts +8 -0
- package/lib/directives/description-items-text-count.directive.ts +242 -0
- package/lib/directives/hover-svg-directives.ts +49 -0
- package/lib/directives/index.ts +3 -0
- package/lib/directives/placeholder-directive.ts +51 -0
- package/lib/enums/animation-state.enum.ts +4 -0
- package/lib/enums/color.enum.ts +9 -0
- package/lib/enums/common-element.enum.ts +8 -0
- package/lib/enums/date-time-formats.enum.ts +14 -0
- package/lib/enums/dispatch-status.enum.ts +24 -0
- package/lib/enums/dropdown.enum.ts +20 -0
- package/lib/enums/filter-color.enum.ts +14 -0
- package/lib/enums/general-actions.enum.ts +71 -0
- package/lib/enums/gps-heading-direction.enum.ts +10 -0
- package/lib/enums/gps-motion-status.enum.ts +7 -0
- package/lib/enums/index.ts +22 -0
- package/lib/enums/load-filter.enum.ts +25 -0
- package/lib/enums/load-status.enum.ts +58 -0
- package/lib/enums/position.enum.ts +10 -0
- package/lib/enums/shared-string.enum.ts +79 -0
- package/lib/enums/string-placeholder.enum.ts +20 -0
- package/lib/enums/style-property.enum.ts +4 -0
- package/lib/enums/styling.enum.ts +13 -0
- package/lib/enums/thousand-separator-format.enum.ts +5 -0
- package/lib/enums/trailer-name.enum.ts +18 -0
- package/lib/enums/truck-name.enum.ts +13 -0
- package/lib/enums/unit.enum.ts +30 -0
- package/lib/interfaces/dropdown-menu/table-card-body-actions.interface.ts +5 -0
- package/lib/interfaces/gps-current-location/gps-current-location.interface.ts +20 -0
- package/lib/interfaces/index.ts +5 -0
- package/lib/interfaces/table/index.ts +2 -0
- package/lib/interfaces/table/sortOrder.ts +7 -0
- package/lib/interfaces/table/table-column.interface.ts +25 -0
- package/lib/interfaces/user/company-user.interface.ts +10 -0
- package/lib/interfaces/user/user-avatar-file.interface.ts +9 -0
- package/lib/interfaces/user/user.interface.ts +14 -0
- package/lib/models/address-entity.model.ts +12 -0
- package/lib/models/address-list-response.model.ts +3 -0
- package/lib/models/address-response.model.ts +7 -0
- package/lib/models/array-status.model.ts +38 -0
- package/lib/models/autocomplete-search-layer.model.ts +32 -0
- package/lib/models/bank-response.ts +7 -0
- package/lib/models/card-models/card-table-data.model.ts +924 -0
- package/lib/models/cdl-response.ts +26 -0
- package/lib/models/cdl-restriction-response.ts +11 -0
- package/lib/models/color-response.ts +6 -0
- package/lib/models/dashboard/custom-period-range.model.ts +5 -0
- package/lib/models/dashboard/dropdown-list-item.model.ts +4 -0
- package/lib/models/enumValue.ts +4 -0
- package/lib/models/file-response.ts +9 -0
- package/lib/models/filter-output-params.model.ts +6 -0
- package/lib/models/filter-output.model.ts +6 -0
- package/lib/models/highlight-text.model.ts +4 -0
- package/lib/models/index.ts +8 -0
- package/lib/models/load/load-possible-statuses-response.model.ts +6 -0
- package/lib/models/load/load-status-response.model.ts +8 -0
- package/lib/models/load-status-history-response.model.ts +17 -0
- package/lib/models/long-lat.model.ts +4 -0
- package/lib/models/mixin.model.ts +1 -0
- package/lib/models/note-active-options.model.ts +6 -0
- package/lib/models/owner-response.ts +24 -0
- package/lib/models/pMTrailerShortResponse.ts +9 -0
- package/lib/models/pMTruckShortResponse.ts +9 -0
- package/lib/models/payroll-list-summary.model.ts +12 -0
- package/lib/models/repairModalResponse.ts +9 -0
- package/lib/models/state-response.ts +8 -0
- package/lib/models/table-models/all-table-animation.model.ts +15 -0
- package/lib/models/table-models/table-body-color-label.model.ts +11 -0
- package/lib/models/tabs.model.ts +6 -0
- package/lib/models/time-filter.model.ts +8 -0
- package/lib/models/trailer-dispatch-modal-response.ts +12 -0
- package/lib/models/trailer-minimal-response.ts +12 -0
- package/lib/models/trailer-type-response.ts +7 -0
- package/lib/models/truck-dispatch-modal-response.ts +19 -0
- package/lib/models/truck-minimal-response.ts +14 -0
- package/lib/models/truck-response.ts +0 -0
- package/lib/models/truck-type-response.ts +6 -0
- package/lib/models/user-selected.model.ts +8 -0
- package/lib/pipes/ca-svg.pipe.ts +33 -0
- package/lib/pipes/date-from-backend.pipe.ts +12 -0
- package/lib/pipes/date-from-string.pipe.ts +46 -0
- package/lib/pipes/date-to-time-from-backend.pipe.ts +15 -0
- package/lib/pipes/date-wait-time.pipe.ts +36 -0
- package/lib/pipes/date.pipe.ts +34 -0
- package/lib/pipes/dispatch-status-color.pipe.ts +80 -0
- package/lib/pipes/dispatch-status-colors.pipe.ts +60 -0
- package/lib/pipes/dropdown-load-status-color.pipe.ts +159 -0
- package/lib/pipes/format-city-state.pipe.ts +20 -0
- package/lib/pipes/format-currency.pipe.ts +46 -0
- package/lib/pipes/format-duration.pipe.ts +38 -0
- package/lib/pipes/highlight-search.pipe.ts +41 -0
- package/lib/pipes/index.ts +26 -0
- package/lib/pipes/load-status-background-color.pipe.ts +106 -0
- package/lib/pipes/load-status-color.pipe.ts +151 -0
- package/lib/pipes/load-status-colors.pipe.ts +109 -0
- package/lib/pipes/n-formatter.pipe.ts +41 -0
- package/lib/pipes/name-initials.pipe.ts +26 -0
- package/lib/pipes/progress-bar-line.pipe.ts +25 -0
- package/lib/pipes/row-class.pipe.ts +22 -0
- package/lib/pipes/safe-html.pipe.ts +16 -0
- package/lib/pipes/table-highlight-search-text.pipe.ts +56 -0
- package/lib/pipes/thousand-formater.pipe.ts +15 -0
- package/lib/pipes/thousand-separator.pipe.ts +19 -0
- package/lib/pipes/thousand-to-short-format-pipe.ts +16 -0
- package/lib/pipes/to-lower-case.pipe.ts +12 -0
- package/lib/pipes/truck-trailer-color-finder.pipe.ts +65 -0
- package/lib/pipes/truncate-string.pipe.ts +12 -0
- package/lib/pipes/unit-position.pipe.ts +20 -0
- package/lib/pipes/user-initials.pipe.ts +15 -0
- package/lib/services/google-script.service.ts +45 -0
- package/lib/services/image-base64.service.ts +20 -0
- package/lib/services/truckassist-table.service.ts +18 -0
- package/lib/utils/animations/index.ts +1 -0
- package/lib/utils/animations/toggle-up-down.animation.ts +23 -0
- package/lib/utils/constants/dropdown-menu-content.constants.ts +59 -0
- package/lib/utils/constants/gps-location.constants.ts +108 -0
- package/lib/utils/constants/index.ts +3 -0
- package/lib/utils/constants/search-multiple-states.constant.ts +7 -0
- package/lib/utils/helpers/date-time.helper.ts +22 -0
- package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.ts +66 -0
- package/lib/utils/helpers/dropdown-menu-content.helper.ts +69 -0
- package/lib/utils/helpers/file.helpers.ts +14 -0
- package/lib/utils/helpers/gps-location.helper.ts +159 -0
- package/lib/utils/helpers/index.ts +7 -0
- package/lib/utils/helpers/methods-calculations.helper.ts +193 -0
- package/lib/utils/helpers/user.helper.ts +19 -0
- package/lib/utils/helpers/uuid.helper.ts +9 -0
- package/lib/utils/svg-routes/index.ts +1 -0
- package/lib/utils/svg-routes/payroll-list-summary-svg-routes.ts +4 -0
- package/lib/utils/svg-routes/shared-svg.routes.ts +91 -0
- package/package.json +1 -1
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
// Models
|
|
2
|
+
import {
|
|
3
|
+
ICaMapProps,
|
|
4
|
+
IMapAreaFilter,
|
|
5
|
+
IMapDashedRouteIcon,
|
|
6
|
+
IMapDashedRouteStyle,
|
|
7
|
+
IMapOptions,
|
|
8
|
+
IMapPagination,
|
|
9
|
+
IRoutePath,
|
|
10
|
+
} from '../../models';
|
|
11
|
+
|
|
12
|
+
// Constants
|
|
13
|
+
import { MapConstants } from './map.constants';
|
|
14
|
+
|
|
15
|
+
export class MapOptionsConstants {
|
|
16
|
+
static DEFAULT_MAP_ZOOM: number = 5;
|
|
17
|
+
|
|
18
|
+
static DEFAULT_MAP_CENTER: IRoutePath = { lat: 40, lng: -100 };
|
|
19
|
+
|
|
20
|
+
static DEFAULT_MAP_OPTIONS: IMapOptions = {
|
|
21
|
+
fullscreenControl: false,
|
|
22
|
+
restriction: {
|
|
23
|
+
latLngBounds: MapConstants.NORTH_AMERICA_BOUNDS,
|
|
24
|
+
strictBounds: true,
|
|
25
|
+
},
|
|
26
|
+
streetViewControl: false,
|
|
27
|
+
keyboardShortcuts: false,
|
|
28
|
+
panControl: true,
|
|
29
|
+
gestureHandling: 'greedy',
|
|
30
|
+
mapTypeControl: false,
|
|
31
|
+
disableDefaultUI: true,
|
|
32
|
+
zoom: MapOptionsConstants.DEFAULT_MAP_ZOOM,
|
|
33
|
+
center: MapOptionsConstants.DEFAULT_MAP_CENTER,
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
static DEFAULT_MAP_CONFIG: ICaMapProps = {
|
|
37
|
+
markers: [],
|
|
38
|
+
clusterMarkers: [],
|
|
39
|
+
routingMarkers: [],
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
static MAP_LIST_PAGINATION: IMapPagination = { pageIndex: 1, pageSize: 25 };
|
|
43
|
+
|
|
44
|
+
static AREA_FILTER_DATA: IMapAreaFilter = {
|
|
45
|
+
options: {
|
|
46
|
+
fillColor: '#3B73ED',
|
|
47
|
+
strokeWeight: 0,
|
|
48
|
+
fillOpacity: 0.2,
|
|
49
|
+
editable: false,
|
|
50
|
+
draggable: false,
|
|
51
|
+
clickable: false,
|
|
52
|
+
},
|
|
53
|
+
center: { lat: 41.860119, lng: -87.660156 },
|
|
54
|
+
radius: 124000,
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
static ROUTING_MARKER_DARK_COLORS: Record<string, string> = {
|
|
58
|
+
pickup: '#259F94',
|
|
59
|
+
delivery: '#DF3C3C',
|
|
60
|
+
deadhead: '#6C6C6C',
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
static ROUTING_MARKER_LIGHT_COLORS: Record<string, string> = {
|
|
64
|
+
pickup: '#56B4AC',
|
|
65
|
+
delivery: '#FF906D',
|
|
66
|
+
deadhead: '#919191',
|
|
67
|
+
repair: '#A08266',
|
|
68
|
+
fuel: '#6692F1',
|
|
69
|
+
towing: '#B370F0',
|
|
70
|
+
parking: '#4DC5EB',
|
|
71
|
+
cancelleddelivery: '#F4BEBE',
|
|
72
|
+
cancelledpickup: '#F4BEBE',
|
|
73
|
+
splitlocation: '#FAB15C',
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
static ROUTING_PATH_DARK_COLORS: Record<string, string> = {
|
|
77
|
+
incomplete: '#6C6C6C',
|
|
78
|
+
complete: '#CCCCCC',
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
static ROUTING_PATH_COLORS: Record<string, string> = {
|
|
82
|
+
currentLocation: '#E5E5E5',
|
|
83
|
+
deadhead: '#2F2F2F',
|
|
84
|
+
gray: '#919191',
|
|
85
|
+
darkgray: '#6c6c6c',
|
|
86
|
+
lightgray: '#CCCCCC',
|
|
87
|
+
lightblue: '#6692F1',
|
|
88
|
+
blue: '#3B73ED',
|
|
89
|
+
purple: '#B370F0',
|
|
90
|
+
darkpurple: '#9E47EC',
|
|
91
|
+
lightpurple: '#DFC2F9',
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
static ROUTING_DASHED_LINE_PATH: IMapDashedRouteIcon = {
|
|
95
|
+
path: 'M 0.3,0 -0.3,0 -0.3,0.5 0.3,0.5',
|
|
96
|
+
strokeOpacity: 1,
|
|
97
|
+
strokeColor: '#919191',
|
|
98
|
+
scale: 4,
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
static ROUTING_DASHED_LINE_ICON: IMapDashedRouteStyle[] = [
|
|
102
|
+
{
|
|
103
|
+
icon: this.ROUTING_DASHED_LINE_PATH,
|
|
104
|
+
offset: '0',
|
|
105
|
+
repeat: '10px',
|
|
106
|
+
},
|
|
107
|
+
];
|
|
108
|
+
|
|
109
|
+
static ROUTING_MARKER_OUTLINE_COLORS: Record<string, string> = {
|
|
110
|
+
pickup: '#86C9C3',
|
|
111
|
+
delivery: '#ED9292',
|
|
112
|
+
deadhead: '#CCCCCC',
|
|
113
|
+
white: '#FFFFFF',
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
static ROUTING_MARKER_DOT_COLORS: Record<string, string> = {
|
|
117
|
+
dark: '#2F2F2F',
|
|
118
|
+
light: '#EEEEEE',
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
static LTL_MARKER_COLORS: string[] = [
|
|
122
|
+
'#6692F1',
|
|
123
|
+
'#E66767',
|
|
124
|
+
'#FAB15C',
|
|
125
|
+
'#56B4AC',
|
|
126
|
+
'#B370F0',
|
|
127
|
+
'#FF906D',
|
|
128
|
+
'#4DC5EB',
|
|
129
|
+
'#E668A0',
|
|
130
|
+
'#77BF56',
|
|
131
|
+
'#A08266',
|
|
132
|
+
'#919191',
|
|
133
|
+
'#DAAD4F',
|
|
134
|
+
];
|
|
135
|
+
|
|
136
|
+
static DISPATCH_ROUTE_MARKER_COLORS: Record<string, string> = {
|
|
137
|
+
pickup: '#56B4AC',
|
|
138
|
+
delivery: '#FF906D',
|
|
139
|
+
deadhead: '#AAAAAA',
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
static ROUTING_MARKER_ICON_PATHS: Record<string, string> = {
|
|
143
|
+
deadhead:
|
|
144
|
+
'M20.3442 18.4375L17.7251 10.9376C17.6821 10.8092 17.61 10.6994 17.5177 10.6217C17.4255 10.5439 17.317 10.5016 17.2058 10.5H15.3749L15.4231 11.0424C15.4253 11.0686 15.4231 11.0951 15.4166 11.1201C15.4102 11.1452 15.3995 11.1682 15.3854 11.1878C15.3713 11.2074 15.3541 11.223 15.3349 11.2337C15.3156 11.2443 15.2948 11.2498 15.2738 11.2498H14.7279C14.7068 11.2498 14.686 11.2443 14.6668 11.2337C14.6475 11.223 14.6303 11.2074 14.6162 11.1878C14.6021 11.1682 14.5915 11.1452 14.585 11.1201C14.5785 11.0951 14.5763 11.0686 14.5785 11.0424L14.6267 10.5H12.7959C12.6846 10.5016 12.5762 10.5439 12.4839 10.6217C12.3916 10.6994 12.3195 10.8092 12.2765 10.9376L9.65501 18.4375C9.61361 18.5493 9.59492 18.6722 9.60061 18.7952C9.60629 18.9183 9.63618 19.0376 9.68761 19.1428C9.73904 19.2479 9.81043 19.3355 9.89543 19.3978C9.98043 19.4601 10.0764 19.4952 10.1749 19.5H13.865L14.0577 17.2098C14.0654 17.1176 14.1002 17.0323 14.1553 16.9703C14.2104 16.9083 14.2818 16.874 14.3559 16.8741H15.6452C15.7193 16.874 15.7908 16.9083 15.8459 16.9703C15.9009 17.0323 15.9357 17.1176 15.9435 17.2098L16.1362 19.5H19.8243C19.9228 19.4952 20.0188 19.4601 20.1038 19.3978C20.1888 19.3355 20.2602 19.2479 20.3116 19.1428C20.363 19.0376 20.3929 18.9183 20.3986 18.7952C20.4043 18.6722 20.3856 18.5493 20.3442 18.4375ZM14.4836 12.1695C14.4875 12.1234 14.505 12.0807 14.5326 12.0498C14.5601 12.0189 14.5959 12.0018 14.633 12.0019H15.3691C15.4062 12.0018 15.442 12.0189 15.4696 12.0498C15.4971 12.0807 15.5146 12.1234 15.5185 12.1695L15.6047 13.191C15.6081 13.2302 15.6047 13.2699 15.595 13.3074C15.5853 13.3449 15.5694 13.3794 15.5483 13.4087C15.5272 13.4381 15.5015 13.4615 15.4727 13.4776C15.4439 13.4937 15.4127 13.502 15.3812 13.502H14.6214C14.5899 13.5021 14.5587 13.4938 14.5298 13.4778C14.501 13.4617 14.4752 13.4383 14.4541 13.4089C14.433 13.3796 14.4171 13.345 14.4074 13.3075C14.3977 13.2699 14.3945 13.2302 14.3978 13.191L14.4836 12.1695ZM15.5185 16.1267H14.4826C14.4406 16.1268 14.399 16.1157 14.3606 16.0944C14.3221 16.073 14.2877 16.0417 14.2596 16.0026C14.2315 15.9635 14.2102 15.9174 14.1973 15.8673C14.1843 15.8173 14.1799 15.7644 14.1844 15.7121L14.2808 14.5869C14.2885 14.4947 14.3233 14.4094 14.3783 14.3474C14.4334 14.2854 14.5049 14.2511 14.579 14.2512H15.425C15.4991 14.2511 15.5706 14.2854 15.6257 14.3474C15.6808 14.4094 15.7155 14.4947 15.7233 14.5869L15.8196 15.7121C15.8239 15.7646 15.8193 15.8176 15.806 15.8677C15.7928 15.9177 15.7713 15.9638 15.7429 16.0027C15.7145 16.0417 15.6798 16.0727 15.6411 16.0938C15.6025 16.1148 15.5607 16.1255 15.5185 16.1249V16.1267Z',
|
|
145
|
+
repair: 'M20.2763 12.7862C20.2611 12.7261 20.2302 12.6712 20.1869 12.627C20.1435 12.5827 20.0892 12.5508 20.0295 12.5344C19.9697 12.5181 19.9067 12.5178 19.8468 12.5338C19.787 12.5497 19.7324 12.5813 19.6888 12.6252L17.5168 14.7972L15.5343 14.4667L15.2038 12.4842L17.3763 10.3127C17.4204 10.2688 17.4521 10.2138 17.468 10.1536C17.4838 10.0934 17.4833 10.03 17.4665 9.97001C17.4497 9.91003 17.4172 9.85562 17.3723 9.81241C17.3274 9.7692 17.2718 9.73874 17.2113 9.72418C16.4813 9.54051 15.7153 9.55708 14.994 9.77214C14.2727 9.98721 13.6227 10.3928 13.1125 10.9462C12.6023 11.4997 12.2508 12.1804 12.0951 12.9169C11.9393 13.6533 11.9849 14.4181 12.2273 15.1307L10.1513 17.2092C9.82411 17.564 9.64687 18.0315 9.65663 18.514C9.6664 18.9965 9.86242 19.4565 10.2037 19.7978C10.5449 20.139 11.0049 20.3351 11.4874 20.3448C11.9699 20.3546 12.4375 20.1773 12.7923 19.8502L14.8653 17.7767C15.5787 18.0185 16.3441 18.0637 17.081 17.9073C17.8178 17.751 18.499 17.3989 19.0527 16.8882C19.6064 16.3775 20.0123 15.727 20.2276 15.0052C20.4429 14.2833 20.4597 13.5168 20.2763 12.7862ZM11.4708 19.2317C11.3323 19.2317 11.197 19.1906 11.0819 19.1137C10.9668 19.0368 10.877 18.9275 10.8241 18.7996C10.7711 18.6717 10.7572 18.5309 10.7842 18.3951C10.8112 18.2593 10.8779 18.1346 10.9758 18.0367C11.0737 17.9388 11.1984 17.8721 11.3342 17.8451C11.47 17.8181 11.6107 17.832 11.7386 17.885C11.8666 17.938 11.9759 18.0277 12.0528 18.1428C12.1297 18.2579 12.1708 18.3932 12.1708 18.5317C12.1708 18.7173 12.097 18.8954 11.9657 19.0267C11.8345 19.1579 11.6564 19.2317 11.4708 19.2317Z',
|
|
146
|
+
fuel: 'M17.2865 19.052H10.5367C10.4474 19.0522 10.3618 19.0878 10.2985 19.1509C10.2353 19.2141 10.1996 19.2996 10.1992 19.389V20.064C10.1995 20.1534 10.2351 20.2391 10.2984 20.3024C10.3616 20.3656 10.4473 20.4012 10.5367 20.4015H17.287C17.3764 20.4012 17.4621 20.3656 17.5254 20.3024C17.5886 20.2391 17.6243 20.1534 17.6245 20.064V19.389C17.6241 19.2995 17.5884 19.2139 17.525 19.1508C17.4617 19.0876 17.3759 19.0521 17.2865 19.052ZM20.6027 11.8647L18.8941 10.1561C18.8307 10.0933 18.7451 10.058 18.6558 10.058C18.5666 10.058 18.481 10.0933 18.4176 10.1561L18.1791 10.3946C18.1162 10.458 18.081 10.5436 18.081 10.6329C18.081 10.7221 18.1162 10.8077 18.1791 10.8711L18.9741 11.6661V12.9767C18.9748 13.2601 19.0776 13.5337 19.2635 13.7475C19.4494 13.9614 19.7061 14.1011 19.9866 14.1413V17.5329C19.9866 17.6672 19.9333 17.7959 19.8383 17.8909C19.7434 17.9858 19.6146 18.0392 19.4804 18.0392C19.3461 18.0392 19.2173 17.9858 19.1224 17.8909C19.0274 17.7959 18.9741 17.6672 18.9741 17.5329V16.8579C18.9741 16.6141 18.9261 16.3728 18.8328 16.1476C18.7395 15.9224 18.6028 15.7178 18.4305 15.5454C18.2581 15.3731 18.0535 15.2363 17.8283 15.1431C17.6031 15.0498 17.3618 15.0018 17.118 15.0018H16.9495V10.9516C16.9495 10.5936 16.8073 10.2502 16.5541 9.99698C16.3009 9.7438 15.9575 9.60156 15.5994 9.60156H12.2243C11.8662 9.60156 11.5229 9.7438 11.2697 9.99698C11.0165 10.2502 10.8742 10.5936 10.8742 10.9516V18.3764H16.9495V16.0138H17.118C17.3417 16.0138 17.5563 16.1027 17.7145 16.2609C17.8727 16.4191 17.9615 16.6336 17.9615 16.8574V17.4439C17.9532 17.8309 18.0871 18.2075 18.3379 18.5024C18.5886 18.7973 18.9388 18.99 19.3221 19.044C19.5337 19.0655 19.7475 19.0426 19.9496 18.9765C20.1518 18.9104 20.3379 18.8028 20.496 18.6604C20.654 18.5181 20.7805 18.3442 20.8672 18.15C20.954 17.9558 20.9991 17.7456 20.9997 17.5329V12.8202C20.9996 12.6427 20.9646 12.4669 20.8966 12.3029C20.8285 12.139 20.7288 11.99 20.6032 11.8647H20.6027ZM15.5994 13.6517H12.2243V10.9516H15.5994V13.6517Z',
|
|
147
|
+
towing: 'M18.5265 11.4679C18.3135 10.947 18.0928 10.4261 17.8937 9.90523C17.8535 9.75933 17.775 9.62654 17.6662 9.52027C17.5574 9.414 17.4222 9.33803 17.2742 9.30005L12.7273 9.30696C12.601 9.33177 12.4829 9.38716 12.3835 9.46818C12.2842 9.54919 12.2067 9.65331 12.158 9.77121C11.9303 10.3488 11.6957 10.9332 11.4533 11.5101C11.3828 11.6913 11.3828 11.8919 11.4533 12.0731C11.6887 12.6576 11.9234 13.2476 12.165 13.8327C12.2179 13.972 12.3139 14.0913 12.4393 14.1734C12.5647 14.2555 12.7132 14.2964 12.8635 14.2901H13.1834C13.1825 14.3209 13.1848 14.3516 13.1904 14.382C13.2228 14.578 13.3323 14.7533 13.4949 14.8698C13.6575 14.9863 13.8601 15.0344 14.0585 15.0037C14.1284 14.9968 14.1982 15.0037 14.2723 15.0037C14.2723 15.1094 14.2792 15.1937 14.2723 15.2856C14.2757 15.4327 14.2366 15.5777 14.1597 15.7036C14.0827 15.8295 13.9711 15.9311 13.8378 15.9965C13.6745 16.0736 13.5215 16.1706 13.3824 16.2852C12.8739 16.6966 12.5509 17.2905 12.4842 17.9369C12.4176 18.5834 12.6127 19.2296 13.0269 19.734C13.3053 20.111 13.6907 20.3977 14.1342 20.5576C14.5777 20.7175 15.0592 20.7434 15.5176 20.6321C16.0226 20.5347 16.4842 20.2836 16.8376 19.9138C17.1911 19.544 17.4187 19.0741 17.4886 18.5699C17.5443 18.3484 17.5319 18.1156 17.453 17.9011C17.384 17.7614 17.271 17.6477 17.1309 17.5772C16.9908 17.5066 16.8313 17.4831 16.6765 17.5101C16.5217 17.5371 16.38 17.6131 16.2727 17.7268C16.1655 17.8405 16.0985 17.9856 16.082 18.1402C16.0742 18.2735 16.0527 18.4057 16.0177 18.5347C15.9428 18.772 15.7849 18.9753 15.5724 19.108C15.3598 19.2408 15.1064 19.2944 14.8576 19.2594C14.6349 19.2284 14.4276 19.1297 14.2642 18.9769C14.1008 18.8242 13.9896 18.6249 13.9458 18.4068C13.9021 18.1887 13.928 17.9625 14.02 17.7596C14.1121 17.5568 14.2656 17.3872 14.4594 17.2745C14.6777 17.1526 14.8827 17.0089 15.0713 16.8455C15.4524 16.4787 15.6808 15.9841 15.7118 15.459C15.7188 15.3111 15.7257 15.1557 15.7327 14.994C16.274 15.0431 16.7224 14.9381 16.8146 14.2832H17.094C17.2626 14.2994 17.4315 14.2569 17.5718 14.1631C17.7121 14.0692 17.8148 13.9299 17.8623 13.7692C18.083 13.2206 18.303 12.6714 18.5307 12.1222C18.5767 12.0191 18.6004 11.9077 18.6004 11.7951C18.6004 11.6824 18.5767 11.571 18.5307 11.4679M13.358 12.7066C13.1484 12.0945 12.9452 11.4887 12.7385 10.8766H13.4928C13.6569 11.3484 14.1123 12.7066 14.1123 12.7066H13.358ZM14.9302 12.7066C14.7207 12.1015 14.5244 11.4963 14.3184 10.8766H15.0727L15.6915 12.7066H14.9302ZM15.8626 13.2206V13.2137H15.8696L15.8626 13.2206ZM16.5101 12.7066C16.3006 12.0945 16.0973 11.4887 15.8913 10.8766H16.6526L17.2714 12.7066H16.5101Z',
|
|
148
|
+
parking:
|
|
149
|
+
'M12.0992 19.8C11.8783 19.8 11.6992 19.6209 11.6992 19.4V10.6C11.6992 10.379 11.8783 10.2 12.0992 10.2H15.6548C16.446 10.2 17.1258 10.3266 17.6945 10.5799C18.2713 10.8331 18.7163 11.2008 19.0295 11.6828C19.3426 12.1567 19.4992 12.7205 19.4992 13.3741C19.4992 14.0195 19.3426 14.5792 19.0295 15.0531C18.7163 15.5269 18.2713 15.8946 17.6945 16.156C17.1258 16.4093 16.446 16.536 15.6548 16.536H13.059L14.1468 15.482V19.4C14.1468 19.6209 13.9677 19.8 13.7468 19.8H12.0992ZM14.1468 15.7394L13.059 14.6241H15.5065C16.0174 14.6241 16.3965 14.5138 16.6438 14.2932C16.8992 14.0726 17.027 13.7662 17.027 13.3741C17.027 12.9737 16.8992 12.6633 16.6438 12.4427C16.3965 12.2221 16.0174 12.1118 15.5065 12.1118H13.059L14.1468 10.9965V15.7394Z',
|
|
150
|
+
cancelledpickup:
|
|
151
|
+
'M11.3334 19.1992V10.7993C11.3354 10.6424 11.2761 10.4912 11.1684 10.3787C11.0608 10.2663 10.9137 10.2017 10.7593 10.1992H10.1785C10.1018 10.1998 10.0261 10.2158 9.95553 10.2461C9.88497 10.2765 9.821 10.3207 9.76725 10.3761C9.7135 10.4316 9.67103 10.4973 9.64228 10.5694C9.61352 10.6415 9.59904 10.7187 9.59966 10.7966V19.1992C9.59869 19.277 9.61282 19.3543 9.64125 19.4265C9.66968 19.4988 9.71185 19.5647 9.76535 19.6204C9.81885 19.6761 9.88264 19.7206 9.95306 19.7513C10.0235 19.782 10.0992 19.7982 10.1758 19.7992H10.7573C10.8339 19.7986 10.9097 19.7827 10.9802 19.7523C11.0508 19.7219 11.1148 19.6778 11.1685 19.6223C11.2222 19.5668 11.2647 19.5012 11.2935 19.429C11.3222 19.3569 11.3367 19.2797 11.3361 19.2019M12.493 13.3992H15.7725V11.2049C15.7705 11.1073 15.7974 11.0113 15.8498 10.9294C15.9021 10.8475 15.9774 10.7834 16.066 10.7455C16.1546 10.7076 16.2523 10.6975 16.3466 10.7166C16.4409 10.7358 16.5273 10.7832 16.5947 10.8528L20.2623 14.6562C20.3504 14.748 20.3996 14.8711 20.3996 14.9992C20.3996 15.1274 20.3504 15.2504 20.2623 15.3422L16.5947 19.1464C16.527 19.2158 16.4403 19.263 16.3459 19.2818C16.2515 19.3007 16.1537 19.2903 16.0651 19.2521C15.9766 19.2139 15.9014 19.1495 15.8492 19.0674C15.797 18.9853 15.7703 18.8892 15.7725 18.7915V16.5972H12.493C12.4164 16.5966 12.3407 16.5806 12.2701 16.5503C12.1996 16.5199 12.1356 16.4757 12.0818 16.4203C12.0281 16.3648 11.9856 16.2991 11.9569 16.227C11.9281 16.1549 11.9136 16.0777 11.9142 15.9999V13.9993C11.9133 13.9214 11.9274 13.8442 11.9558 13.7719C11.9843 13.6996 12.0264 13.6338 12.0799 13.578C12.1334 13.5223 12.1972 13.4778 12.2676 13.4472C12.3381 13.4165 12.4138 13.4002 12.4904 13.3992',
|
|
152
|
+
cancelleddelivery:
|
|
153
|
+
'M20.4001 10.7982V19.1999C20.401 19.2779 20.3868 19.3554 20.3582 19.4279C20.3296 19.5004 20.2872 19.5664 20.2335 19.6221C20.1797 19.6779 20.1156 19.7223 20.0449 19.7529C19.9742 19.7834 19.8982 19.7994 19.8214 19.8H19.2427C19.1661 19.7991 19.0905 19.7828 19.02 19.7521C18.9496 19.7214 18.8859 19.6769 18.8324 19.6212C18.7789 19.5655 18.7367 19.4996 18.7083 19.4273C18.6799 19.355 18.6658 19.2777 18.6667 19.1999V10.8002C18.6658 10.7222 18.68 10.6447 18.7086 10.5722C18.7372 10.4997 18.7796 10.4337 18.8333 10.378C18.8871 10.3222 18.9512 10.2778 19.0219 10.2472C19.0926 10.2167 19.1686 10.2007 19.2454 10.2H19.8241C19.9784 10.202 20.1257 10.2661 20.2337 10.3782C20.3416 10.4903 20.4015 10.6413 20.4001 10.7982V10.7982ZM10.1788 16.5994H13.4574V18.7921C13.4554 18.8897 13.4823 18.9857 13.5346 19.0676C13.587 19.1496 13.6623 19.2137 13.7508 19.2516C13.8394 19.2896 13.9371 19.2996 14.0313 19.2805C14.1256 19.2614 14.212 19.2139 14.2794 19.1443L17.9461 15.3387C18.0331 15.2471 18.0817 15.1247 18.0817 14.9973C18.0817 14.87 18.0331 14.7476 17.9461 14.6559L14.2794 10.8503C14.212 10.7807 14.1256 10.7333 14.0313 10.7142C13.9371 10.6951 13.8394 10.7051 13.7508 10.7431C13.6623 10.781 13.587 10.8451 13.5346 10.927C13.4823 11.009 13.4554 11.105 13.4574 11.2026V13.3987H10.1788C10.102 13.3993 10.026 13.4153 9.9553 13.4459C9.88459 13.4764 9.82051 13.5208 9.76674 13.5766C9.71297 13.6324 9.67057 13.6984 9.64198 13.7708C9.61339 13.8433 9.59918 13.9208 9.60014 13.9989L9.60014 15.9992C9.59918 16.0773 9.61339 16.1548 9.64198 16.2272C9.67057 16.2997 9.71297 16.3657 9.76674 16.4215C9.82051 16.4772 9.88459 16.5217 9.9553 16.5522C10.026 16.5827 10.102 16.5988 10.1788 16.5994V16.5994Z',
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
static MILES_MARKER_ICON_PATHS: Record<string, string> = {
|
|
157
|
+
pickup: 'M13.9448 20.5V13.5C13.9465 13.3694 13.897 13.2433 13.8074 13.1496C13.7177 13.0559 13.5951 13.0021 13.4664 13H12.9824C12.9185 13.0005 12.8554 13.0138 12.7966 13.0391C12.7378 13.0644 12.6845 13.1012 12.6397 13.1474C12.5949 13.1937 12.5595 13.2484 12.5356 13.3085C12.5116 13.3686 12.4995 13.4329 12.5 13.4978V20.5C12.4992 20.5648 12.511 20.6292 12.5347 20.6894C12.5584 20.7497 12.5935 20.8045 12.6381 20.851C12.6827 20.8974 12.7359 20.9345 12.7945 20.96C12.8532 20.9856 12.9163 20.9992 12.9802 21H13.4647C13.5286 20.9995 13.5917 20.9862 13.6505 20.9609C13.7093 20.9356 13.7626 20.8988 13.8074 20.8526C13.8522 20.8063 13.8876 20.7516 13.9115 20.6915C13.9355 20.6314 13.9476 20.5671 13.9471 20.5022M14.9112 15.6667H17.6441V13.8381C17.6424 13.7567 17.6649 13.6768 17.7085 13.6085C17.7521 13.5403 17.8148 13.4869 17.8886 13.4552C17.9625 13.4236 18.0439 13.4152 18.1225 13.4312C18.201 13.4471 18.2731 13.4866 18.3293 13.5446L21.3856 16.7141C21.459 16.7906 21.5 16.8932 21.5 17C21.5 17.1068 21.459 17.2094 21.3856 17.2859L18.3293 20.4559C18.2728 20.5138 18.2006 20.5531 18.1219 20.5688C18.0433 20.5845 17.9617 20.5759 17.8879 20.5441C17.8142 20.5122 17.7515 20.4586 17.708 20.3902C17.6645 20.3217 17.6423 20.2416 17.6441 20.1602V18.3316H14.9112C14.8473 18.3311 14.7842 18.3178 14.7254 18.2925C14.6666 18.2672 14.6133 18.2304 14.5685 18.1842C14.5237 18.138 14.4883 18.0833 14.4644 18.0231C14.4404 17.963 14.4283 17.8987 14.4289 17.8339V16.1667C14.428 16.1019 14.4398 16.0375 14.4635 15.9772C14.4872 15.917 14.5224 15.8621 14.5669 15.8157C14.6115 15.7693 14.6647 15.7322 14.7234 15.7066C14.782 15.6811 14.8451 15.6675 14.909 15.6667',
|
|
158
|
+
delivery:
|
|
159
|
+
'M21.5 13.4984V20.4999C21.5008 20.5649 21.4889 20.6295 21.4651 20.6899C21.4413 20.7503 21.4059 20.8053 21.3611 20.8517C21.3163 20.8982 21.2629 20.9352 21.204 20.9607C21.1451 20.9861 21.0818 20.9995 21.0177 21H20.5355C20.4717 20.9992 20.4086 20.9856 20.35 20.96C20.2913 20.9345 20.2381 20.8974 20.1936 20.851C20.149 20.8045 20.1139 20.7496 20.0902 20.6894C20.0665 20.6291 20.0547 20.5647 20.0555 20.4999V13.5001C20.0547 13.4351 20.0666 13.3705 20.0904 13.3101C20.1142 13.2497 20.1496 13.1947 20.1944 13.1483C20.2392 13.1018 20.2926 13.0648 20.3515 13.0393C20.4104 13.0139 20.4737 13.0005 20.5377 13H21.02C21.1486 13.0016 21.2714 13.055 21.3613 13.1484C21.4513 13.2419 21.5011 13.3677 21.5 13.4984ZM12.9823 18.3328H15.7145V20.16C15.7128 20.2414 15.7352 20.3214 15.7788 20.3897C15.8224 20.4579 15.8851 20.5113 15.9589 20.543C16.0327 20.5746 16.1142 20.583 16.1927 20.567C16.2712 20.5511 16.3433 20.5116 16.3995 20.4536L19.455 17.2822C19.5275 17.2059 19.568 17.1039 19.568 16.9977C19.568 16.8916 19.5275 16.7896 19.455 16.7132L16.3995 13.5419C16.3433 13.4839 16.2712 13.4444 16.1927 13.4284C16.1142 13.4125 16.0327 13.4209 15.9589 13.4525C15.8851 13.4841 15.8224 13.5375 15.7788 13.6058C15.7352 13.6741 15.7128 13.7541 15.7145 13.8355V15.6655H12.9823C12.9182 15.6661 12.8549 15.6794 12.796 15.7049C12.7371 15.7303 12.6837 15.7673 12.6389 15.8138C12.5941 15.8603 12.5587 15.9153 12.5349 15.9757C12.5111 16.0361 12.4992 16.1006 12.5 16.1657V17.8326C12.4992 17.8977 12.5111 17.9623 12.5349 18.0226C12.5587 18.083 12.5941 18.138 12.6389 18.1845C12.6837 18.231 12.7371 18.268 12.796 18.2934C12.8549 18.3189 12.9182 18.3323 12.9823 18.3328Z',
|
|
160
|
+
fuel: 'M18.9056 20.3768H13.2808C13.2063 20.377 13.135 20.4067 13.0823 20.4593C13.0296 20.5119 12.9998 20.5832 12.9995 20.6576V21.2202C12.9997 21.2947 13.0294 21.3661 13.0821 21.4188C13.1348 21.4715 13.2062 21.5012 13.2808 21.5014H18.906C18.9805 21.5012 19.0519 21.4715 19.1046 21.4188C19.1573 21.3661 19.187 21.2947 19.1873 21.2202V20.6576C19.1869 20.5831 19.1571 20.5117 19.1044 20.4591C19.0516 20.4065 18.9801 20.3769 18.9056 20.3768ZM21.669 14.3874L20.2452 12.9636C20.1924 12.9112 20.121 12.8819 20.0467 12.8819C19.9723 12.8819 19.901 12.9112 19.8481 12.9636L19.6494 13.1623C19.597 13.2152 19.5677 13.2865 19.5677 13.3609C19.5677 13.4352 19.597 13.5066 19.6494 13.5594L20.3119 14.222V15.3141C20.3125 15.5502 20.3981 15.7782 20.5531 15.9564C20.708 16.1346 20.9219 16.2511 21.1557 16.2845V19.1109C21.1557 19.2228 21.1112 19.3301 21.0321 19.4092C20.953 19.4883 20.8457 19.5328 20.7338 19.5328C20.6219 19.5328 20.5146 19.4883 20.4355 19.4092C20.3563 19.3301 20.3119 19.2228 20.3119 19.1109V18.5484C20.3119 18.3453 20.2719 18.1441 20.1942 17.9565C20.1164 17.7688 20.0025 17.5983 19.8589 17.4547C19.7152 17.3111 19.5447 17.1971 19.3571 17.1194C19.1694 17.0417 18.9683 17.0017 18.7652 17.0017H18.6247V13.6265C18.6247 13.3281 18.5062 13.042 18.2952 12.831C18.0842 12.62 17.7981 12.5015 17.4997 12.5015H14.6871C14.3887 12.5015 14.1025 12.62 13.8916 12.831C13.6806 13.042 13.562 13.3281 13.562 13.6265V19.8139H18.6247V17.845H18.7652C18.9516 17.845 19.1304 17.9191 19.2622 18.0509C19.3941 18.1827 19.4681 18.3615 19.4681 18.548V19.0367C19.4612 19.3592 19.5728 19.6731 19.7817 19.9188C19.9907 20.1645 20.2825 20.3251 20.6019 20.3701C20.7782 20.3881 20.9564 20.369 21.1249 20.3139C21.2933 20.2589 21.4484 20.1691 21.5801 20.0505C21.7118 19.9319 21.8172 19.787 21.8895 19.6252C21.9618 19.4633 21.9994 19.2882 21.9999 19.1109V15.1837C21.9999 15.0357 21.9707 14.8892 21.914 14.7526C21.8573 14.616 21.7742 14.4919 21.6695 14.3874H21.669ZM17.4997 15.8766H14.6871V13.6265H17.4997V15.8766Z',
|
|
161
|
+
deadhead:
|
|
162
|
+
'M21.4538 19.8645L19.2713 13.6146C19.2354 13.5077 19.1753 13.4162 19.0984 13.3514C19.0215 13.2866 18.9312 13.2514 18.8385 13.25H17.3128L17.3529 13.702C17.3548 13.7238 17.3529 13.7459 17.3475 13.7668C17.3421 13.7876 17.3333 13.8069 17.3215 13.8232C17.3098 13.8395 17.2954 13.8525 17.2794 13.8614C17.2633 13.8703 17.246 13.8748 17.2285 13.8748H16.7736C16.756 13.8748 16.7387 13.8703 16.7226 13.8614C16.7066 13.8525 16.6922 13.8395 16.6805 13.8232C16.6687 13.8069 16.6599 13.7876 16.6545 13.7668C16.6491 13.7459 16.6472 13.7238 16.6491 13.702L16.6892 13.25H15.1635C15.0708 13.2514 14.9805 13.2866 14.9036 13.3514C14.8267 13.4162 14.7666 13.5077 14.7307 13.6146L12.5462 19.8645C12.5117 19.9577 12.4961 20.0602 12.5008 20.1627C12.5056 20.2652 12.5305 20.3647 12.5733 20.4523C12.6162 20.5399 12.6757 20.6129 12.7465 20.6648C12.8174 20.7168 12.8973 20.746 12.9794 20.75H16.0545L16.2151 18.8415C16.2215 18.7647 16.2505 18.6936 16.2964 18.6419C16.3423 18.5902 16.4019 18.5617 16.4636 18.5617H17.538C17.5998 18.5617 17.6593 18.5902 17.7052 18.6419C17.7511 18.6936 17.7801 18.7647 17.7865 18.8415L17.9471 20.75H21.0206C21.1027 20.746 21.1826 20.7168 21.2535 20.6648C21.3243 20.6129 21.3838 20.5399 21.4267 20.4523C21.4695 20.3647 21.4944 20.2652 21.4992 20.1627C21.5039 20.0602 21.4883 19.9577 21.4538 19.8645ZM16.57 14.6412C16.5733 14.6028 16.5878 14.5673 16.6108 14.5415C16.6338 14.5157 16.6636 14.5015 16.6945 14.5016H17.308C17.3388 14.5015 17.3686 14.5157 17.3916 14.5415C17.4146 14.5673 17.4291 14.6028 17.4324 14.6412L17.5043 15.4925C17.507 15.5252 17.5043 15.5582 17.4962 15.5895C17.4881 15.6207 17.4748 15.6495 17.4572 15.674C17.4397 15.6984 17.4182 15.7179 17.3942 15.7313C17.3702 15.7447 17.3443 15.7516 17.318 15.7517H16.6848C16.6585 15.7517 16.6325 15.7448 16.6085 15.7315C16.5845 15.7181 16.563 15.6986 16.5454 15.6741C16.5278 15.6497 16.5146 15.6209 16.5065 15.5896C16.4984 15.5583 16.4957 15.5252 16.4985 15.4925L16.57 14.6412ZM17.4324 17.9389H16.5692C16.5341 17.939 16.4995 17.9298 16.4675 17.912C16.4354 17.8941 16.4068 17.8681 16.3833 17.8355C16.3599 17.8029 16.3422 17.7645 16.3314 17.7228C16.3206 17.6811 16.3169 17.637 16.3207 17.5934L16.401 16.6557C16.4074 16.5789 16.4364 16.5078 16.4823 16.4561C16.5282 16.4045 16.5877 16.3759 16.6495 16.376H17.3545C17.4163 16.3759 17.4758 16.4045 17.5217 16.4561C17.5676 16.5078 17.5966 16.5789 17.6031 16.6557L17.6834 17.5934C17.6869 17.6371 17.6831 17.6813 17.672 17.723C17.661 17.7648 17.6431 17.8031 17.6194 17.8356C17.5957 17.8681 17.5668 17.8939 17.5346 17.9115C17.5024 17.929 17.4676 17.9379 17.4324 17.9374V17.9389Z',
|
|
163
|
+
repair: 'M21.3969 15.1552C21.3842 15.1051 21.3585 15.0593 21.3224 15.0225C21.2863 14.9856 21.241 14.959 21.1912 14.9454C21.1414 14.9317 21.0889 14.9315 21.039 14.9448C20.9892 14.9581 20.9437 14.9844 20.9073 15.021L19.0973 16.831L17.4452 16.5556L17.1698 14.9035L18.9802 13.0939C19.017 13.0573 19.0434 13.0115 19.0566 12.9613C19.0698 12.9111 19.0694 12.8583 19.0554 12.8083C19.0414 12.7584 19.0143 12.713 18.9769 12.677C18.9395 12.641 18.8932 12.6156 18.8427 12.6035C18.2344 12.4504 17.5961 12.4642 16.995 12.6435C16.3939 12.8227 15.8523 13.1607 15.4271 13.6219C15.002 14.0831 14.709 14.6504 14.5792 15.264C14.4494 15.8777 14.4874 16.515 14.6894 17.1089L12.9594 18.841C12.6868 19.1366 12.5391 19.5263 12.5472 19.9284C12.5553 20.3304 12.7187 20.7138 13.0031 20.9982C13.2874 21.2825 13.6708 21.4459 14.0729 21.454C14.4749 21.4622 14.8646 21.3145 15.1602 21.0418L16.8877 19.3139C17.4822 19.5154 18.1201 19.5531 18.7341 19.4228C19.3482 19.2925 19.9158 18.9991 20.3772 18.5735C20.8387 18.1479 21.1769 17.6059 21.3563 17.0043C21.5358 16.4028 21.5498 15.764 21.3969 15.1552ZM14.059 20.5264C13.9436 20.5264 13.8308 20.4922 13.7349 20.4281C13.639 20.364 13.5642 20.2729 13.52 20.1663C13.4759 20.0597 13.4643 19.9424 13.4868 19.8293C13.5094 19.7161 13.5649 19.6122 13.6465 19.5306C13.7281 19.449 13.832 19.3935 13.9452 19.3709C14.0583 19.3484 14.1756 19.36 14.2822 19.4041C14.3888 19.4483 14.4799 19.5231 14.544 19.619C14.6081 19.7149 14.6423 19.8277 14.6423 19.9431C14.6423 20.0978 14.5808 20.2462 14.4715 20.3555C14.3621 20.4649 14.2137 20.5264 14.059 20.5264Z',
|
|
164
|
+
towing: 'M19.9385 14.0566C19.7609 13.6225 19.577 13.1884 19.4111 12.7543C19.3776 12.6327 19.3122 12.5221 19.2215 12.4335C19.1309 12.345 19.0182 12.2817 18.8949 12.25L15.1057 12.2558C15.0005 12.2764 14.9021 12.3226 14.8193 12.3901C14.7365 12.4576 14.6719 12.5444 14.6314 12.6426C14.4416 13.1239 14.2461 13.611 14.0441 14.0917C13.9853 14.2427 13.9853 14.4099 14.0441 14.5609C14.2402 15.0479 14.4358 15.5396 14.6372 16.0272C14.6812 16.1433 14.7612 16.2427 14.8658 16.3111C14.9703 16.3796 15.094 16.4136 15.2192 16.4083H15.4858C15.4851 16.434 15.487 16.4597 15.4916 16.4849C15.5187 16.6483 15.6099 16.7944 15.7454 16.8915C15.881 16.9885 16.0498 17.0286 16.2151 17.0031C16.2733 16.9973 16.3315 17.0031 16.3932 17.0031C16.3932 17.0911 16.399 17.1614 16.3932 17.2379C16.3961 17.3605 16.3635 17.4814 16.2994 17.5863C16.2353 17.6912 16.1422 17.7759 16.0312 17.8304C15.8951 17.8946 15.7676 17.9755 15.6517 18.071C15.2279 18.4138 14.9587 18.9087 14.9032 19.4474C14.8477 19.9861 15.0103 20.5246 15.3554 20.9449C15.5874 21.2591 15.9086 21.498 16.2782 21.6313C16.6477 21.7646 17.049 21.7862 17.431 21.6934C17.8518 21.6122 18.2365 21.4029 18.531 21.0948C18.8256 20.7866 19.0153 20.395 19.0735 19.9749C19.1199 19.7903 19.1096 19.5963 19.0439 19.4176C18.9864 19.3012 18.8921 19.2064 18.7754 19.1476C18.6587 19.0888 18.5258 19.0692 18.3968 19.0917C18.2678 19.1142 18.1496 19.1776 18.0603 19.2723C17.9709 19.367 17.9151 19.4879 17.9013 19.6168C17.8948 19.7279 17.8769 19.838 17.8478 19.9455C17.7853 20.1433 17.6538 20.3127 17.4766 20.4233C17.2995 20.534 17.0884 20.5787 16.881 20.5494C16.6955 20.5236 16.5227 20.4414 16.3865 20.3141C16.2504 20.1868 16.1576 20.0207 16.1212 19.839C16.0847 19.6572 16.1063 19.4687 16.183 19.2997C16.2597 19.1306 16.3877 18.9893 16.5492 18.8954C16.7311 18.7938 16.9019 18.674 17.0591 18.5379C17.3766 18.2322 17.567 17.82 17.5928 17.3825C17.5986 17.2592 17.6045 17.1297 17.6103 16.995C18.0614 17.0359 18.435 16.9484 18.5119 16.4026H18.7447C18.8851 16.4161 19.0259 16.3807 19.1428 16.3025C19.2597 16.2243 19.3453 16.1082 19.3849 15.9743C19.5689 15.5172 19.7522 15.0595 19.942 14.6018C19.9802 14.5159 20 14.423 20 14.3292C20 14.2353 19.9802 14.1425 19.942 14.0566M15.6313 15.0888C15.4567 14.5787 15.2873 14.0738 15.1151 13.5638H15.7437C15.8804 13.957 16.2599 15.0888 16.2599 15.0888H15.6313ZM16.9415 15.0888C16.7669 14.5845 16.6033 14.0802 16.4316 13.5638H17.0602L17.5759 15.0888H16.9415ZM17.7185 15.5171V15.5114H17.7244L17.7185 15.5171ZM18.2581 15.0888C18.0835 14.5787 17.9141 14.0738 17.7424 13.5638H18.3768L18.8925 15.0888H18.2581Z',
|
|
165
|
+
parking:
|
|
166
|
+
'M14.65 21C14.4291 21 14.25 20.8209 14.25 20.6V13.4C14.25 13.1791 14.4291 13 14.65 13H17.5464C18.2056 13 18.7722 13.1055 19.246 13.3166C19.7268 13.5277 20.0976 13.834 20.3586 14.2357C20.6195 14.6306 20.75 15.1004 20.75 15.6451C20.75 16.183 20.6195 16.6494 20.3586 17.0443C20.0976 17.4391 19.7268 17.7455 19.246 17.9634C18.7722 18.1745 18.2056 18.28 17.5464 18.28H15.3831L16.2896 17.4017V20.6C16.2896 20.8209 16.1105 21 15.8896 21H14.65ZM16.2896 17.6162L15.3831 16.6868H17.4227C17.8485 16.6868 18.1644 16.5949 18.3704 16.4111C18.5833 16.2272 18.6898 15.9719 18.6898 15.6451C18.6898 15.3115 18.5833 15.0528 18.3704 14.8689C18.1644 14.6851 17.8485 14.5932 17.4227 14.5932H15.3831L16.2896 13.6638V17.6162Z',
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
static ROUTING_MARKER_PATH_FILL_COLORS: Record<string, string> = {
|
|
170
|
+
cancelleddelivery: '#E66767',
|
|
171
|
+
cancelledpickup: '#E66767',
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
static ROUTING_MARKER_DOT_FILL_COLORS: Record<string, string> = {
|
|
175
|
+
cancelleddelivery: '#E66767',
|
|
176
|
+
cancelledpickup: '#E66767',
|
|
177
|
+
};
|
|
178
|
+
}
|
|
@@ -0,0 +1,437 @@
|
|
|
1
|
+
export class MapConstants {
|
|
2
|
+
static GOOGLE_MAP_STYLES: google.maps.MapTypeStyle[] = [
|
|
3
|
+
{
|
|
4
|
+
elementType: 'geometry.fill',
|
|
5
|
+
stylers: [
|
|
6
|
+
{
|
|
7
|
+
color: '#f1f1f1',
|
|
8
|
+
},
|
|
9
|
+
],
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
elementType: 'labels.icon',
|
|
13
|
+
stylers: [
|
|
14
|
+
{
|
|
15
|
+
visibility: 'on',
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
featureType: 'administrative.land_parcel',
|
|
21
|
+
elementType: 'labels',
|
|
22
|
+
stylers: [
|
|
23
|
+
{
|
|
24
|
+
visibility: 'off',
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
featureType: 'poi',
|
|
30
|
+
elementType: 'labels.text',
|
|
31
|
+
stylers: [
|
|
32
|
+
{
|
|
33
|
+
visibility: 'off',
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
featureType: 'poi',
|
|
39
|
+
elementType: 'labels',
|
|
40
|
+
stylers: [
|
|
41
|
+
{
|
|
42
|
+
visibility: 'off',
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
featureType: 'poi',
|
|
48
|
+
elementType: 'labels.text',
|
|
49
|
+
stylers: [
|
|
50
|
+
{
|
|
51
|
+
visibility: 'off',
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
featureType: 'transit',
|
|
57
|
+
stylers: [
|
|
58
|
+
{
|
|
59
|
+
visibility: 'off',
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
featureType: 'administrative.country',
|
|
65
|
+
stylers: [
|
|
66
|
+
{
|
|
67
|
+
color: '#919191',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
visibility: 'on',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
weight: 1,
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
elementType: 'labels.text.fill',
|
|
79
|
+
stylers: [
|
|
80
|
+
{
|
|
81
|
+
color: '#919191',
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
elementType: 'labels.text.stroke',
|
|
87
|
+
stylers: [
|
|
88
|
+
{
|
|
89
|
+
color: '#f5f5f5',
|
|
90
|
+
},
|
|
91
|
+
],
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
featureType: 'administrative.land_parcel',
|
|
95
|
+
elementType: 'labels.text.fill',
|
|
96
|
+
stylers: [
|
|
97
|
+
{
|
|
98
|
+
color: '#bdbdbd',
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
featureType: 'poi',
|
|
104
|
+
elementType: 'geometry',
|
|
105
|
+
stylers: [
|
|
106
|
+
{
|
|
107
|
+
color: '#eeeeee',
|
|
108
|
+
},
|
|
109
|
+
],
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
featureType: 'poi',
|
|
113
|
+
elementType: 'labels.text.fill',
|
|
114
|
+
stylers: [
|
|
115
|
+
{
|
|
116
|
+
color: '#757575',
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
featureType: 'poi.park',
|
|
122
|
+
elementType: 'geometry',
|
|
123
|
+
stylers: [
|
|
124
|
+
{
|
|
125
|
+
color: '#e5e5e5',
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
featureType: 'poi.park',
|
|
131
|
+
elementType: 'labels.text.fill',
|
|
132
|
+
stylers: [
|
|
133
|
+
{
|
|
134
|
+
color: '#9e9e9e',
|
|
135
|
+
},
|
|
136
|
+
],
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
featureType: 'landscape',
|
|
140
|
+
elementType: 'labels',
|
|
141
|
+
stylers: [
|
|
142
|
+
{
|
|
143
|
+
visibility: 'off',
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
featureType: 'road',
|
|
149
|
+
elementType: 'geometry',
|
|
150
|
+
stylers: [
|
|
151
|
+
{
|
|
152
|
+
color: '#ffffff',
|
|
153
|
+
},
|
|
154
|
+
],
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
featureType: 'road',
|
|
158
|
+
stylers: [
|
|
159
|
+
{
|
|
160
|
+
saturation: -100,
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
lightness: 30,
|
|
164
|
+
},
|
|
165
|
+
],
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
featureType: 'road.arterial',
|
|
169
|
+
elementType: 'labels.text.fill',
|
|
170
|
+
stylers: [
|
|
171
|
+
{
|
|
172
|
+
color: '#dadada',
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
featureType: 'road.highway',
|
|
178
|
+
elementType: 'geometry',
|
|
179
|
+
stylers: [
|
|
180
|
+
{
|
|
181
|
+
color: '#dadada',
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
featureType: 'road.highway',
|
|
187
|
+
elementType: 'labels.text.fill',
|
|
188
|
+
stylers: [
|
|
189
|
+
{
|
|
190
|
+
color: '#616161',
|
|
191
|
+
},
|
|
192
|
+
],
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
featureType: 'road.local',
|
|
196
|
+
elementType: 'labels.text.fill',
|
|
197
|
+
stylers: [
|
|
198
|
+
{
|
|
199
|
+
color: '#9e9e9e',
|
|
200
|
+
},
|
|
201
|
+
],
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
featureType: 'transit.line',
|
|
205
|
+
elementType: 'geometry',
|
|
206
|
+
stylers: [
|
|
207
|
+
{
|
|
208
|
+
color: '#e5e5e5',
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
featureType: 'transit.station',
|
|
214
|
+
elementType: 'geometry',
|
|
215
|
+
stylers: [
|
|
216
|
+
{
|
|
217
|
+
color: '#eeeeee',
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
featureType: 'water',
|
|
223
|
+
elementType: 'geometry',
|
|
224
|
+
stylers: [
|
|
225
|
+
{
|
|
226
|
+
color: '#dadada',
|
|
227
|
+
},
|
|
228
|
+
],
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
featureType: 'water',
|
|
232
|
+
elementType: 'labels.text.fill',
|
|
233
|
+
stylers: [
|
|
234
|
+
{
|
|
235
|
+
color: '#9e9e9e',
|
|
236
|
+
},
|
|
237
|
+
],
|
|
238
|
+
},
|
|
239
|
+
];
|
|
240
|
+
|
|
241
|
+
static GOOGLE_MAP_DARK_STYLES: google.maps.MapTypeStyle[] = [
|
|
242
|
+
{
|
|
243
|
+
elementType: 'geometry',
|
|
244
|
+
stylers: [
|
|
245
|
+
{
|
|
246
|
+
color: '#212121',
|
|
247
|
+
},
|
|
248
|
+
],
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
elementType: 'labels.icon',
|
|
252
|
+
stylers: [
|
|
253
|
+
{
|
|
254
|
+
visibility: 'off',
|
|
255
|
+
},
|
|
256
|
+
],
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
elementType: 'labels.text.fill',
|
|
260
|
+
stylers: [
|
|
261
|
+
{
|
|
262
|
+
color: '#757575',
|
|
263
|
+
},
|
|
264
|
+
],
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
elementType: 'labels.text.stroke',
|
|
268
|
+
stylers: [
|
|
269
|
+
{
|
|
270
|
+
color: '#212121',
|
|
271
|
+
},
|
|
272
|
+
],
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
featureType: 'administrative',
|
|
276
|
+
elementType: 'geometry',
|
|
277
|
+
stylers: [
|
|
278
|
+
{
|
|
279
|
+
color: '#757575',
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
featureType: 'administrative.country',
|
|
285
|
+
elementType: 'labels.text.fill',
|
|
286
|
+
stylers: [
|
|
287
|
+
{
|
|
288
|
+
color: '#9e9e9e',
|
|
289
|
+
},
|
|
290
|
+
],
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
featureType: 'administrative.land_parcel',
|
|
294
|
+
stylers: [
|
|
295
|
+
{
|
|
296
|
+
visibility: 'off',
|
|
297
|
+
},
|
|
298
|
+
],
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
featureType: 'administrative.locality',
|
|
302
|
+
elementType: 'labels.text.fill',
|
|
303
|
+
stylers: [
|
|
304
|
+
{
|
|
305
|
+
color: '#bdbdbd',
|
|
306
|
+
},
|
|
307
|
+
],
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
featureType: 'poi',
|
|
311
|
+
elementType: 'labels.text.fill',
|
|
312
|
+
stylers: [
|
|
313
|
+
{
|
|
314
|
+
color: '#757575',
|
|
315
|
+
},
|
|
316
|
+
],
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
featureType: 'poi.park',
|
|
320
|
+
elementType: 'geometry',
|
|
321
|
+
stylers: [
|
|
322
|
+
{
|
|
323
|
+
color: '#181818',
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
visibility: 'off',
|
|
327
|
+
},
|
|
328
|
+
],
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
featureType: 'poi.park',
|
|
332
|
+
elementType: 'labels.text.fill',
|
|
333
|
+
stylers: [
|
|
334
|
+
{
|
|
335
|
+
color: '#616161',
|
|
336
|
+
},
|
|
337
|
+
],
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
featureType: 'poi.park',
|
|
341
|
+
elementType: 'labels.text.stroke',
|
|
342
|
+
stylers: [
|
|
343
|
+
{
|
|
344
|
+
color: '#1b1b1b',
|
|
345
|
+
},
|
|
346
|
+
],
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
featureType: 'road',
|
|
350
|
+
elementType: 'geometry.fill',
|
|
351
|
+
stylers: [
|
|
352
|
+
{
|
|
353
|
+
color: '#2c2c2c',
|
|
354
|
+
},
|
|
355
|
+
],
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
featureType: 'road',
|
|
359
|
+
elementType: 'labels.text.fill',
|
|
360
|
+
stylers: [
|
|
361
|
+
{
|
|
362
|
+
color: '#8a8a8a',
|
|
363
|
+
},
|
|
364
|
+
],
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
featureType: 'road.arterial',
|
|
368
|
+
elementType: 'geometry',
|
|
369
|
+
stylers: [
|
|
370
|
+
{
|
|
371
|
+
color: '#373737',
|
|
372
|
+
},
|
|
373
|
+
],
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
featureType: 'road.highway',
|
|
377
|
+
elementType: 'geometry',
|
|
378
|
+
stylers: [
|
|
379
|
+
{
|
|
380
|
+
color: '#3c3c3c',
|
|
381
|
+
},
|
|
382
|
+
],
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
featureType: 'road.highway.controlled_access',
|
|
386
|
+
elementType: 'geometry',
|
|
387
|
+
stylers: [
|
|
388
|
+
{
|
|
389
|
+
color: '#4e4e4e',
|
|
390
|
+
},
|
|
391
|
+
],
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
featureType: 'road.local',
|
|
395
|
+
elementType: 'labels.text.fill',
|
|
396
|
+
stylers: [
|
|
397
|
+
{
|
|
398
|
+
color: '#616161',
|
|
399
|
+
},
|
|
400
|
+
],
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
featureType: 'transit',
|
|
404
|
+
elementType: 'labels.text.fill',
|
|
405
|
+
stylers: [
|
|
406
|
+
{
|
|
407
|
+
color: '#757575',
|
|
408
|
+
},
|
|
409
|
+
],
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
featureType: 'water',
|
|
413
|
+
elementType: 'geometry',
|
|
414
|
+
stylers: [
|
|
415
|
+
{
|
|
416
|
+
color: '#000000',
|
|
417
|
+
},
|
|
418
|
+
],
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
featureType: 'water',
|
|
422
|
+
elementType: 'labels.text.fill',
|
|
423
|
+
stylers: [
|
|
424
|
+
{
|
|
425
|
+
color: '#3d3d3d',
|
|
426
|
+
},
|
|
427
|
+
],
|
|
428
|
+
},
|
|
429
|
+
];
|
|
430
|
+
|
|
431
|
+
static NORTH_AMERICA_BOUNDS = {
|
|
432
|
+
north: 75,
|
|
433
|
+
south: 9,
|
|
434
|
+
west: -170,
|
|
435
|
+
east: -50,
|
|
436
|
+
};
|
|
437
|
+
}
|