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,13 @@
|
|
|
1
|
+
export enum eMapMarkerStopType {
|
|
2
|
+
// Stop Type Ids
|
|
3
|
+
DEADHEAD_STOP = 0,
|
|
4
|
+
PICKUP_STOP = 1,
|
|
5
|
+
DELIVERY_STOP = 2,
|
|
6
|
+
SPLIT_LOCATION_STOP = 3,
|
|
7
|
+
CANCELLED_PICKUP_STOP = 4,
|
|
8
|
+
REDIRECTED_PICKUP_STOP = 5,
|
|
9
|
+
CANCELLED_DELIVERY_STOP = 6,
|
|
10
|
+
REDIRECTED_DELIVERY_STOP = 7,
|
|
11
|
+
REDIRECT_LOCATION_STOP = 8,
|
|
12
|
+
CURRENT_LOCATION_STOP = 999,
|
|
13
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export enum eMapMarkerString {
|
|
2
|
+
// Routing marker types
|
|
3
|
+
PICKUP = 'pickup',
|
|
4
|
+
DELIVERY = 'delivery',
|
|
5
|
+
DEADHEAD = 'deadhead',
|
|
6
|
+
REPAIR = 'repair',
|
|
7
|
+
FUEL = 'fuel',
|
|
8
|
+
TOWING = 'towing',
|
|
9
|
+
PARKING = 'parking',
|
|
10
|
+
REDIRECT_LOCATION = 'redirectlocation',
|
|
11
|
+
REDIRECTED_DELIVERY = 'redirecteddelivery',
|
|
12
|
+
REDIRECTED_PICKUP = 'redirectedpickup',
|
|
13
|
+
SPLIT_LOCATION = 'splitlocation',
|
|
14
|
+
|
|
15
|
+
CURRENT_LOCATION = 'Current Location',
|
|
16
|
+
|
|
17
|
+
DARK = 'dark',
|
|
18
|
+
LIGHT = 'light',
|
|
19
|
+
WHITE = 'white',
|
|
20
|
+
|
|
21
|
+
SELECTED = 'selected',
|
|
22
|
+
CANCELLED = 'cancelled',
|
|
23
|
+
CANCELLED_PICKUP = 'cancelledpickup',
|
|
24
|
+
CANCELLED_DELIVERY = 'cancelleddelivery',
|
|
25
|
+
|
|
26
|
+
SPLIT_MARKER_TEXT = 'S',
|
|
27
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export enum ToolbarFilterStringEnum {
|
|
2
|
+
// Filter types
|
|
3
|
+
|
|
4
|
+
DEPARTMENT_FILTER = 'departmentFilter',
|
|
5
|
+
STATUS_FILTER = 'statusFilter',
|
|
6
|
+
PM_FILTER = 'pmFilter',
|
|
7
|
+
CATEGORY_FUEL_FILTER = 'categoryFuelFilter',
|
|
8
|
+
CATEGORY_REPAIR_FILTER = 'categoryRepairFilter',
|
|
9
|
+
SERVICE_FILTER = 'serviceFilter',
|
|
10
|
+
TRUCK_FILTER = 'truckFilter',
|
|
11
|
+
TRAILER_FILTER = 'trailerFilter',
|
|
12
|
+
FUEL_STOP_FILTER = 'fuelStopFilter',
|
|
13
|
+
BROKER_FILTER = 'brokerFilter',
|
|
14
|
+
DRIVER_FILTER = 'driverFilter',
|
|
15
|
+
TRUCK_TYPE_FILTER = 'truckTypeFilter',
|
|
16
|
+
TRAILER_TYPE_FILTER = 'trailerTypeFilter',
|
|
17
|
+
USER_FILTER = 'userFilter',
|
|
18
|
+
MODULE_FILTER = 'moduleFilter',
|
|
19
|
+
STATE_FILTER = 'stateFilter',
|
|
20
|
+
LABEL_FILTER = 'labelFilter',
|
|
21
|
+
TIME_FILTER = 'timeFilter',
|
|
22
|
+
TIME_FILTER_DROPDOWN = "timeFilterDropdown",
|
|
23
|
+
INJURY_FILTER = 'injuryFilter',
|
|
24
|
+
FATALITY_FILTER = 'fatalityFilter',
|
|
25
|
+
VIOLATION_FILTER = 'violationFilter',
|
|
26
|
+
VACATION_FILTER = 'vacationFilter',
|
|
27
|
+
LOCATION_FILTER = 'locationFilter',
|
|
28
|
+
MONEY_FILTER = 'moneyFilter',
|
|
29
|
+
MILES_FILTER = 'milesFilter',
|
|
30
|
+
PAY_FILTER = 'payFilter',
|
|
31
|
+
DISPATCHER_FILTER = 'dispatcherFilter',
|
|
32
|
+
FUEL_ITEM_FILTER = 'fuelItemFilter',
|
|
33
|
+
PARKING_FILTER = 'parkingFilter',
|
|
34
|
+
TAG_FILTER = 'tagFilter',
|
|
35
|
+
ACTION_FILTER = 'actionFilter',
|
|
36
|
+
|
|
37
|
+
// Filter Type Titles
|
|
38
|
+
MONEY_FILTER_2 = 'Money Filter',
|
|
39
|
+
MILES_FILTER_2 = 'Miles Filter',
|
|
40
|
+
STATUS_FILTER_2 = 'Status Filter',
|
|
41
|
+
TIME_FILTER_2 = 'Time Filter',
|
|
42
|
+
DISPATCHER_FILTER_2 = 'Dispatcher Filter',
|
|
43
|
+
DRIVER_FILTER_2 = 'Driver Filter',
|
|
44
|
+
FUEL_STOP_FILTER_2 = 'Fuel Stop Filter',
|
|
45
|
+
BROKER_FILTER_2 = 'Broker Filter',
|
|
46
|
+
USER_FILTER_2 = 'User Filter',
|
|
47
|
+
MODULE_FILTER_2 = 'Module Filter',
|
|
48
|
+
STATE_FILTER_2 = 'State / Province Filter',
|
|
49
|
+
TRUCK_TYPE_FILTER_2 = 'Truck Type Filter',
|
|
50
|
+
TRAILER_TYPE_FILTER_2 = 'Trailer Type Filter',
|
|
51
|
+
TRUCK_UNIT_FILTER_2 = 'Truck Unit Filter',
|
|
52
|
+
TRAILER_UNIT_FILTER_2 = 'Trailer Unit Filter',
|
|
53
|
+
PM_FILTER_2 = 'PM Filter',
|
|
54
|
+
SERVICE_FILTER_2 = 'Service Filter',
|
|
55
|
+
FUEL_ITEM_FILTER_2 = 'Fuel Item Filter',
|
|
56
|
+
DEPARTMENT_FILTER_2 = 'Department Filter',
|
|
57
|
+
PARKING_FILTER_2 = 'Parking Filter',
|
|
58
|
+
TAG_FILTER_2 = 'Tag Filter',
|
|
59
|
+
ACTION_FILTER_2 = 'Action Filter',
|
|
60
|
+
LABEL_FILTER_2 = 'Label Filter',
|
|
61
|
+
AREA_FILTER = 'Area Filter',
|
|
62
|
+
VIOLATION_FILTER_2 = 'Violation Filter',
|
|
63
|
+
|
|
64
|
+
// Location filter subtypes
|
|
65
|
+
|
|
66
|
+
LOCATION = 'Location',
|
|
67
|
+
IC_ADDRESS = 'ic_address',
|
|
68
|
+
|
|
69
|
+
// Time filter subtypes
|
|
70
|
+
|
|
71
|
+
PAST = 'past',
|
|
72
|
+
FUTURE = 'future',
|
|
73
|
+
SHORT = 'short',
|
|
74
|
+
|
|
75
|
+
// Icons
|
|
76
|
+
DOLLAR = 'dollar',
|
|
77
|
+
BROKER_HALF_CIRCLE = 'broker-half-circle',
|
|
78
|
+
TIME = 'ic_time',
|
|
79
|
+
USER = 'user',
|
|
80
|
+
STATE = 'state',
|
|
81
|
+
TRUCK = 'truck',
|
|
82
|
+
TRAILER = 'trailer',
|
|
83
|
+
DEFAULT_PM = 'default_pm',
|
|
84
|
+
IC_KEY_REPAIR = 'ic_key-repair',
|
|
85
|
+
FUEL = 'fuel',
|
|
86
|
+
LABEL = 'label',
|
|
87
|
+
MILES = 'miles',
|
|
88
|
+
|
|
89
|
+
// Filter Popover Conditions
|
|
90
|
+
MAIN_TOOLTIP = 'mainTooltip',
|
|
91
|
+
CLOSE_FILTER = 'Close Filter',
|
|
92
|
+
REMOVE_FILTER = 'Remove Filter',
|
|
93
|
+
FILTER_TEXT = 'filterText',
|
|
94
|
+
USER_BOX = 'userBox',
|
|
95
|
+
SORT_ITEMS = 'sortItems',
|
|
96
|
+
|
|
97
|
+
// State Filter
|
|
98
|
+
CANADA = 'canada',
|
|
99
|
+
CANADA_2 = 'Canada',
|
|
100
|
+
|
|
101
|
+
// Empty string
|
|
102
|
+
EMPTY_STRING_PLACEHOLDER = '',
|
|
103
|
+
|
|
104
|
+
// Control names
|
|
105
|
+
BOOLEAN = 'boolean',
|
|
106
|
+
TEXT = 'text',
|
|
107
|
+
SET = 'Set',
|
|
108
|
+
CLEAR = 'Clear',
|
|
109
|
+
|
|
110
|
+
// Classes
|
|
111
|
+
ACTIVE = 'active',
|
|
112
|
+
|
|
113
|
+
// Money filter
|
|
114
|
+
PENDING_STATUS = 'pendingStatus',
|
|
115
|
+
ALL = 'all',
|
|
116
|
+
MIN_VALUE = '0',
|
|
117
|
+
MAX_VALUE = '5,000',
|
|
118
|
+
MONEY_MAX_VALUE = '20,000',
|
|
119
|
+
VIOLATION_MAX_VALUE = '5',
|
|
120
|
+
FROM = 'from',
|
|
121
|
+
TO = 'to',
|
|
122
|
+
MONEY_ARRAY = 'moneyArray',
|
|
123
|
+
|
|
124
|
+
// Service filter
|
|
125
|
+
REPAIR_CATEGORY_UPDATE = 'repair-category-update',
|
|
126
|
+
|
|
127
|
+
// Pm filter
|
|
128
|
+
PM_TRAILER_DATA_UPDATE = 'pm-trailer-data-update',
|
|
129
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './map.model';
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import { MapDropdownContent } from '../../ca-map-dropdown/models';
|
|
2
|
+
|
|
3
|
+
export interface IRoutePath {
|
|
4
|
+
lat: number;
|
|
5
|
+
lng: number;
|
|
6
|
+
}
|
|
7
|
+
export interface IRouteLocation {
|
|
8
|
+
latitude?: number | null;
|
|
9
|
+
longitude?: number | null;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface ICaMapProps {
|
|
13
|
+
clusterMarkers?: IMapMarkers[];
|
|
14
|
+
routingMarkers?: IMapMarkers[];
|
|
15
|
+
routePaths?: IMapRoutePath[];
|
|
16
|
+
selectedMarkerData?: IMapSelectedMarkerData;
|
|
17
|
+
selectedRoutingMarkerData?: IMapMarkers;
|
|
18
|
+
isAccidentMap?: boolean;
|
|
19
|
+
stateBoundariesUrl?: { url: string };
|
|
20
|
+
markers?: IMapMarkers[];
|
|
21
|
+
view?: string;
|
|
22
|
+
isUnitViewStops?: boolean;
|
|
23
|
+
isDriverMiles?: boolean;
|
|
24
|
+
mapType?: string;
|
|
25
|
+
darkMode?: boolean;
|
|
26
|
+
isZoomShown?: boolean;
|
|
27
|
+
isVerticalZoom?: boolean;
|
|
28
|
+
isOpenInMapShown?: boolean;
|
|
29
|
+
areaFilterData?: IMapAreaFilter;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface IMapOptions {
|
|
33
|
+
fullscreenControl: boolean;
|
|
34
|
+
disableDefaultUI: boolean;
|
|
35
|
+
restriction: {
|
|
36
|
+
latLngBounds: {
|
|
37
|
+
north: number;
|
|
38
|
+
south: number;
|
|
39
|
+
east: number;
|
|
40
|
+
west: number;
|
|
41
|
+
};
|
|
42
|
+
strictBounds: boolean;
|
|
43
|
+
};
|
|
44
|
+
streetViewControl: boolean;
|
|
45
|
+
styles?: IMapStyles[];
|
|
46
|
+
keyboardShortcuts: boolean;
|
|
47
|
+
panControl: boolean;
|
|
48
|
+
gestureHandling: string;
|
|
49
|
+
mapTypeControl?: boolean;
|
|
50
|
+
zoom?: number;
|
|
51
|
+
center?: IRoutePath;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface IMapStyles {
|
|
55
|
+
elementType?: string | null;
|
|
56
|
+
featureType?: string | null;
|
|
57
|
+
stylers: IMapColor[];
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface IMapColor {
|
|
61
|
+
color?: string;
|
|
62
|
+
visibility?: string;
|
|
63
|
+
weight?: number;
|
|
64
|
+
saturation?: number;
|
|
65
|
+
lightness?: number;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export interface IMapMarkers {
|
|
69
|
+
position: IRoutePath;
|
|
70
|
+
icon?: IMapMarkersIcon;
|
|
71
|
+
infoWindowContent?: MapDropdownContent;
|
|
72
|
+
label?: string;
|
|
73
|
+
labelOrigin?: { x: number; y: number };
|
|
74
|
+
data?: any;
|
|
75
|
+
options?: { zIndex?: number };
|
|
76
|
+
isLargeMarker?: boolean;
|
|
77
|
+
isFavorite?: boolean;
|
|
78
|
+
isClosed?: boolean;
|
|
79
|
+
isShowLabelOnHover?: boolean;
|
|
80
|
+
hasClickEvent?: boolean;
|
|
81
|
+
hasHoverEvent?: boolean;
|
|
82
|
+
id?: number;
|
|
83
|
+
content?: any;
|
|
84
|
+
routeId?: number;
|
|
85
|
+
isRouteHover?: boolean;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface IMapMarkersIcon {
|
|
89
|
+
url: string;
|
|
90
|
+
labelOrigin?: google.maps.Point;
|
|
91
|
+
scaledSize?: google.maps.Size;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface IMarkerLabel {
|
|
95
|
+
text: string;
|
|
96
|
+
fontSize?: string;
|
|
97
|
+
color?: string;
|
|
98
|
+
fontWeight?: string;
|
|
99
|
+
isShowOnHover?: boolean;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface IMapRoutePath {
|
|
103
|
+
path: IRoutePath[];
|
|
104
|
+
decodedShape?: IRouteLocation[];
|
|
105
|
+
strokeColor: string;
|
|
106
|
+
strokeOpacity?: number;
|
|
107
|
+
strokeWeight?: number;
|
|
108
|
+
isDashed?: boolean;
|
|
109
|
+
dashedLineStyle?: IMapDashedRouteStyle[];
|
|
110
|
+
id?: number;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export interface IMapBoundsZoom {
|
|
114
|
+
bounds: google.maps.LatLngBounds;
|
|
115
|
+
zoom: number;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export interface IMapSelectedMarkerData extends IMapMarkers {
|
|
119
|
+
isClusterMarker?: boolean;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface IMapDashedRouteStyle {
|
|
123
|
+
icon: IMapDashedRouteIcon;
|
|
124
|
+
offset: string;
|
|
125
|
+
repeat: string;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export interface IMapDashedRouteIcon {
|
|
129
|
+
path: string;
|
|
130
|
+
strokeOpacity: number;
|
|
131
|
+
strokeColor: string;
|
|
132
|
+
scale: number;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
export interface IMapPagination {
|
|
136
|
+
pageIndex: number;
|
|
137
|
+
pageSize: number;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export interface IMapBounds {
|
|
141
|
+
northEastLatitude: number;
|
|
142
|
+
northEastLongitude: number;
|
|
143
|
+
southWestLatitude: number;
|
|
144
|
+
southWestLongitude: number;
|
|
145
|
+
zoomLevel: number;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export interface IMapList {
|
|
149
|
+
isSelected?: boolean;
|
|
150
|
+
id?: number;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export interface IMapAreaFilter {
|
|
154
|
+
options: IMapAreaFilterOptions;
|
|
155
|
+
center: IRoutePath;
|
|
156
|
+
radius: number;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
interface IMapAreaFilterOptions {
|
|
160
|
+
fillColor: string;
|
|
161
|
+
strokeWeight: number;
|
|
162
|
+
fillOpacity: number;
|
|
163
|
+
editable: boolean;
|
|
164
|
+
draggable: boolean;
|
|
165
|
+
clickable: boolean;
|
|
166
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
export class MapMarkerIconsConstants {
|
|
2
|
+
static defaultMarker: string = `<svg class="marker-svg" width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g filter="url(#filter0_f_30697_48851)">
|
|
4
|
+
<path class="shadow-circle" d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
|
|
5
|
+
</g>
|
|
6
|
+
<g filter="url(#filter1_d_30697_48851)">
|
|
7
|
+
<path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
|
|
8
|
+
</g>
|
|
9
|
+
<circle class="outside-circle" cx="15" cy="15" r="9" fill="#6692F1"/>
|
|
10
|
+
<circle class="white-circle" cx="15" cy="15" r="5" fill="white"/>
|
|
11
|
+
<defs>
|
|
12
|
+
<filter id="filter0_f_30697_48851" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
13
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
14
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
15
|
+
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_30697_48851"/>
|
|
16
|
+
</filter>
|
|
17
|
+
<filter id="filter1_d_30697_48851" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
18
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
19
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
20
|
+
<feOffset/>
|
|
21
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
22
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
23
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
24
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_30697_48851"/>
|
|
25
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_30697_48851" result="shape"/>
|
|
26
|
+
</filter>
|
|
27
|
+
</defs>
|
|
28
|
+
</svg>
|
|
29
|
+
`;
|
|
30
|
+
|
|
31
|
+
static favoriteMarker: string = `<svg class="marker-svg" width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
32
|
+
<g filter="url(#filter0_f_30697_39170)">
|
|
33
|
+
<path class="shadow-circle" d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
|
|
34
|
+
</g>
|
|
35
|
+
<g filter="url(#filter1_d_30697_39170)">
|
|
36
|
+
<path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
|
|
37
|
+
</g>
|
|
38
|
+
<circle class="outside-circle" cx="15" cy="15" r="9" fill="#6692F1"/>
|
|
39
|
+
<path class="inside-shape" d="M20.3715 13.6803C20.339 13.5707 20.2747 13.4731 20.1868 13.3999C20.099 13.3268 19.9914 13.2813 19.8777 13.2692L16.7605 12.9736L15.5284 9.96352C15.4875 9.85661 15.4151 9.76463 15.3209 9.69973C15.2266 9.63484 15.1149 9.6001 15.0004 9.6001C14.886 9.6001 14.7742 9.63484 14.6799 9.69973C14.5857 9.76463 14.5133 9.85661 14.4725 9.96352L13.2404 12.9736L10.1225 13.2692C10.0089 13.2814 9.90137 13.327 9.81351 13.4001C9.72565 13.4733 9.66135 13.5707 9.62867 13.6803C9.59364 13.7914 9.59076 13.9101 9.62037 14.0228C9.64999 14.1355 9.71089 14.2374 9.79603 14.3169L12.1529 16.4737L11.4582 19.6676C11.4327 19.7812 11.4401 19.8997 11.4796 20.0092C11.5191 20.1187 11.589 20.2147 11.6811 20.2859C11.7708 20.3547 11.8794 20.3943 11.9923 20.3995C12.1052 20.4047 12.217 20.3752 12.3126 20.3149L15.0004 18.6375L17.6882 20.3149C17.7838 20.3751 17.8956 20.4046 18.0085 20.3994C18.1214 20.3942 18.23 20.3546 18.3197 20.2859C18.4118 20.2147 18.4817 20.1187 18.5212 20.0092C18.5607 19.8997 18.5681 19.7812 18.5426 19.6676L17.848 16.4737L20.2042 14.3169C20.2893 14.2374 20.3502 14.1355 20.3798 14.0228C20.4094 13.9101 20.4066 13.7914 20.3715 13.6803Z" fill="white"/>
|
|
40
|
+
<defs>
|
|
41
|
+
<filter id="filter0_f_30697_39170" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
42
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
43
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
44
|
+
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_30697_39170"/>
|
|
45
|
+
</filter>
|
|
46
|
+
<filter id="filter1_d_30697_39170" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
47
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
48
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
49
|
+
<feOffset/>
|
|
50
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
51
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
52
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
53
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_30697_39170"/>
|
|
54
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_30697_39170" result="shape"/>
|
|
55
|
+
</filter>
|
|
56
|
+
</defs>
|
|
57
|
+
</svg>
|
|
58
|
+
`;
|
|
59
|
+
|
|
60
|
+
static closedMarker: string = `<svg class="marker-svg" width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
61
|
+
<g filter="url(#filter0_f_30697_35967)">
|
|
62
|
+
<path class="shadow-circle" d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
|
|
63
|
+
</g>
|
|
64
|
+
<g filter="url(#filter1_d_30697_35967)">
|
|
65
|
+
<path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
|
|
66
|
+
</g>
|
|
67
|
+
<circle class="outside-circle" cx="15" cy="15" r="9" fill="#E66767"/>
|
|
68
|
+
<path class="inside-shape" d="M16.5917 14.9998L18.9793 12.612C19.1201 12.4712 19.1991 12.2803 19.1991 12.0812C19.1991 11.8821 19.1201 11.6912 18.9793 11.5504L18.4486 11.0196C18.3078 10.8789 18.1169 10.7998 17.9178 10.7998C17.7188 10.7998 17.5279 10.8789 17.3871 11.0196L15.0001 13.4075L12.6118 11.0196C12.4711 10.8789 12.2802 10.7998 12.0811 10.7998C11.882 10.7998 11.6911 10.8789 11.5504 11.0196L11.0196 11.5504C10.8789 11.6912 10.7998 11.8821 10.7998 12.0812C10.7998 12.2803 10.8789 12.4712 11.0196 12.612L13.4073 14.9998L11.0203 17.3876C10.8796 17.5284 10.8005 17.7193 10.8005 17.9184C10.8005 18.1175 10.8796 18.3084 11.0203 18.4492L11.551 18.98C11.6918 19.1207 11.8827 19.1998 12.0818 19.1998C12.2808 19.1998 12.4717 19.1207 12.6125 18.98L15.0001 16.5921L17.3878 18.98C17.5285 19.1207 17.7195 19.1998 17.9185 19.1998C18.1176 19.1998 18.3085 19.1207 18.4493 18.98L18.98 18.4492C19.1207 18.3084 19.1998 18.1175 19.1998 17.9184C19.1998 17.7193 19.1207 17.5284 18.98 17.3876L16.5917 14.9998Z" fill="white"/>
|
|
69
|
+
<defs>
|
|
70
|
+
<filter id="filter0_f_30697_35967" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
71
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
72
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
73
|
+
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_30697_35967"/>
|
|
74
|
+
</filter>
|
|
75
|
+
<filter id="filter1_d_30697_35967" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
76
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
77
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
78
|
+
<feOffset/>
|
|
79
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
80
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
81
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
82
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_30697_35967"/>
|
|
83
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_30697_35967" result="shape"/>
|
|
84
|
+
</filter>
|
|
85
|
+
</defs>
|
|
86
|
+
</svg>
|
|
87
|
+
`;
|
|
88
|
+
|
|
89
|
+
static clusterIcon: string = `<svg class="marker-svg" width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
90
|
+
<g filter="url(#filter0_d_8915_70166)">
|
|
91
|
+
<circle cx="26" cy="26" r="16" fill="white"/>
|
|
92
|
+
</g>
|
|
93
|
+
<circle cx="26" cy="26" r="14" fill="#FAB15C"/>
|
|
94
|
+
<path d="M16.7817 28.942V27.416L21.4017 21.2H23.7817L19.2597 27.416L18.1537 27.094H25.8677V28.942H16.7817ZM22.0597 31V28.942L22.1297 27.094V25.26H24.2717V31H22.0597ZM26.434 28.942V27.416L31.054 21.2H33.434L28.912 27.416L27.806 27.094H35.52V28.942H26.434ZM31.712 31V28.942L31.782 27.094V25.26H33.924V31H31.712Z" fill="white"/>
|
|
95
|
+
<g opacity="0.7" filter="url(#filter1_d_8915_70166)">
|
|
96
|
+
<path d="M36.781 7.65002L35.461 9.89302C35.3705 10.0502 35.3446 10.2363 35.3886 10.4122C35.4326 10.5881 35.5432 10.74 35.697 10.836C37.8917 12.2409 39.7555 14.1051 41.16 16.3C41.256 16.4538 41.408 16.5644 41.5838 16.6084C41.7597 16.6524 41.9458 16.6265 42.103 16.536L44.346 15.216C44.4275 15.1691 44.4988 15.1061 44.5554 15.031C44.6121 14.9559 44.653 14.8702 44.6758 14.7789C44.6986 14.6876 44.7027 14.5926 44.688 14.4997C44.6732 14.4068 44.6399 14.3178 44.59 14.238C42.8426 11.4867 40.5103 9.15436 37.759 7.40702C37.6792 7.35709 37.5902 7.32376 37.4973 7.30901C37.4044 7.29427 37.3094 7.2984 37.2181 7.32118C37.1268 7.34396 37.0411 7.38491 36.966 7.44158C36.8909 7.49825 36.8279 7.56848 36.781 7.65002ZM46.601 20.651L44.073 21.309C43.8985 21.3562 43.749 21.469 43.6558 21.6239C43.5626 21.7788 43.5329 21.9637 43.573 22.14C44.1343 24.6827 44.1343 27.3173 43.573 29.86C43.5329 30.0363 43.5626 30.2212 43.6558 30.3761C43.749 30.531 43.8985 30.6439 44.073 30.691L46.601 31.349C46.6917 31.3735 46.7864 31.3794 46.8795 31.3665C46.9725 31.3536 47.0621 31.3221 47.1427 31.2738C47.2233 31.2256 47.2934 31.1616 47.3488 31.0857C47.4041 31.0098 47.4437 30.9235 47.465 30.832C48.173 27.6496 48.173 24.3504 47.465 21.168C47.4437 21.0765 47.4041 20.9902 47.3488 20.9143C47.2934 20.8384 47.2233 20.7744 47.1427 20.7262C47.0621 20.678 46.9725 20.6464 46.8795 20.6335C46.7864 20.6206 46.6917 20.6266 46.601 20.651ZM30.696 44.079C30.6502 43.9037 30.5376 43.7532 30.3823 43.6598C30.227 43.5663 30.0414 43.5374 29.865 43.579C27.3192 44.1397 24.6818 44.1397 22.136 43.579C21.9597 43.5389 21.7748 43.5686 21.6199 43.6618C21.465 43.755 21.3521 43.9045 21.305 44.079L20.647 46.6C20.6225 46.6907 20.6166 46.7854 20.6295 46.8785C20.6424 46.9716 20.6739 47.0611 20.7222 47.1417C20.7704 47.2223 20.8344 47.2924 20.9103 47.3478C20.9862 47.4032 21.0725 47.4427 21.164 47.464C24.3471 48.172 27.6469 48.172 30.83 47.464C30.9214 47.4427 31.0076 47.4032 31.0834 47.3479C31.1592 47.2926 31.2231 47.2226 31.2714 47.1421C31.3196 47.0616 31.3512 46.9722 31.3641 46.8792C31.3771 46.7863 31.3713 46.6917 31.347 46.601L30.696 44.079ZM15.21 7.64902C15.163 7.56762 15.1002 7.49651 15.0251 7.43993C14.9501 7.38335 14.8644 7.34245 14.7733 7.31968C14.6821 7.29691 14.5873 7.29273 14.4945 7.30739C14.4016 7.32205 14.3127 7.35526 14.233 7.40502C11.4742 9.14543 9.13842 11.4795 7.39599 14.237C7.34623 14.3167 7.31303 14.4057 7.29837 14.4985C7.28371 14.5913 7.28789 14.6861 7.31066 14.7773C7.33343 14.8685 7.37432 14.9541 7.4309 15.0292C7.48748 15.1042 7.55859 15.1671 7.63999 15.214L9.88599 16.533C10.0436 16.6246 10.2308 16.6511 10.4076 16.6068C10.5845 16.5626 10.7371 16.4511 10.833 16.296C12.237 14.1021 14.101 12.2394 16.296 10.837C16.451 10.7411 16.5625 10.5885 16.6068 10.4116C16.6511 10.2348 16.6246 10.0476 16.533 9.89002L15.21 7.64902ZM7.90999 21.308L5.39599 20.652C5.30528 20.6274 5.21053 20.6213 5.11741 20.6341C5.02428 20.6468 4.93468 20.6782 4.85396 20.7264C4.77323 20.7746 4.70303 20.8385 4.64754 20.9143C4.59205 20.9902 4.55242 21.0765 4.53099 21.168C3.823 24.3504 3.823 27.6496 4.53099 30.832C4.55231 30.9235 4.59184 31.0098 4.64721 31.0857C4.70258 31.1616 4.77267 31.2256 4.8533 31.2738C4.93392 31.3221 5.02343 31.3536 5.1165 31.3665C5.20956 31.3794 5.30428 31.3735 5.39499 31.349L7.92299 30.691C8.09751 30.6439 8.24702 30.531 8.34022 30.3761C8.43342 30.2212 8.46308 30.0363 8.42299 29.86C8.13992 28.5928 7.99673 27.2984 7.99599 26C7.99593 24.7027 8.13439 23.409 8.40899 22.141C8.44966 21.9645 8.42028 21.779 8.32703 21.6237C8.23379 21.4683 8.08494 21.3552 7.90999 21.308ZM9.88899 35.465L7.64599 36.785C7.56446 36.832 7.49322 36.8949 7.43655 36.97C7.37988 37.0451 7.33893 37.1309 7.31616 37.2222C7.29338 37.3135 7.28924 37.4084 7.30399 37.5013C7.31874 37.5943 7.35207 37.6833 7.40199 37.763C9.14933 40.5143 11.4817 42.8467 14.233 44.594C14.3127 44.6439 14.4017 44.6773 14.4947 44.692C14.5876 44.7068 14.6826 44.7026 14.7738 44.6799C14.8651 44.6571 14.9509 44.6161 15.026 44.5595C15.1011 44.5028 15.164 44.4316 15.211 44.35L16.531 42.107C16.6214 41.9499 16.6474 41.7638 16.6034 41.5879C16.5594 41.412 16.4488 41.26 16.295 41.164C14.1003 39.7592 12.2365 37.895 10.832 35.7C10.736 35.5462 10.584 35.4357 10.4081 35.3916C10.2322 35.3476 10.0461 35.3746 9.88899 35.465ZM41.16 35.7C39.7552 37.8951 37.891 39.7593 35.696 41.164C35.5422 41.26 35.4316 41.412 35.3876 41.5879C35.3436 41.7638 35.3695 41.9499 35.46 42.107L36.78 44.35C36.827 44.4316 36.8899 44.5028 36.965 44.5595C37.0401 44.6161 37.1258 44.6571 37.2171 44.6799C37.3084 44.7026 37.4034 44.7068 37.4963 44.692C37.5892 44.6773 37.6782 44.6439 37.758 44.594C40.5093 42.8467 42.8416 40.5143 44.589 37.763C44.6389 37.6833 44.6722 37.5943 44.687 37.5013C44.7017 37.4084 44.6976 37.3135 44.6748 37.2222C44.6521 37.1309 44.6111 37.0451 44.5544 36.97C44.4978 36.8949 44.4265 36.832 44.345 36.785L42.102 35.465C41.9448 35.3746 41.7587 35.3486 41.5828 35.3926C41.407 35.4367 41.255 35.5472 41.159 35.701M25.996 4.00002C24.3707 3.99798 22.7501 4.17607 21.164 4.53102C21.0725 4.55244 20.9862 4.59208 20.9103 4.64757C20.8344 4.70305 20.7705 4.77325 20.7224 4.85398C20.6742 4.93471 20.6428 5.02431 20.63 5.11743C20.6173 5.21056 20.6234 5.3053 20.648 5.39602L21.304 7.91202C21.3511 8.08696 21.4643 8.23681 21.6196 8.33006C21.775 8.4233 21.9604 8.45268 22.137 8.41202C23.405 8.13775 24.6987 7.99963 25.996 8.00002C27.2971 7.99907 28.5944 8.1399 29.865 8.42002C30.0414 8.46168 30.227 8.43269 30.3823 8.33926C30.5376 8.24583 30.6502 8.09536 30.696 7.92002L31.347 5.39302C31.3713 5.30237 31.3771 5.20776 31.3641 5.11481C31.3512 5.02186 31.3196 4.93247 31.2714 4.85196C31.2231 4.77145 31.1592 4.70146 31.0834 4.64615C31.0076 4.59084 30.9214 4.55135 30.83 4.53002C29.2431 4.17581 27.6219 3.99806 25.996 4.00002Z" fill="white"/>
|
|
97
|
+
</g>
|
|
98
|
+
<defs>
|
|
99
|
+
<filter id="filter0_d_8915_70166" x="6" y="6" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
100
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
101
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
102
|
+
<feOffset/>
|
|
103
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
104
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
105
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
106
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8915_70166"/>
|
|
107
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8915_70166" result="shape"/>
|
|
108
|
+
</filter>
|
|
109
|
+
<filter id="filter1_d_8915_70166" x="0" y="0" width="51.9961" height="51.9951" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
110
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
111
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
112
|
+
<feOffset/>
|
|
113
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
114
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
115
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
116
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8915_70166"/>
|
|
117
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8915_70166" result="shape"/>
|
|
118
|
+
</filter>
|
|
119
|
+
</defs>
|
|
120
|
+
</svg>`;
|
|
121
|
+
}
|