ca-components 0.0.2 → 0.0.3
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/esm2022/assets/json/ca-table.json +59 -0
- package/esm2022/assets/json/ta-detail-dropdown.json +80 -0
- package/esm2022/lib/animation/in-out.animation.mjs +73 -0
- package/esm2022/lib/animations/accordion-animation.mjs +25 -0
- package/esm2022/lib/animations/animation.mjs +30 -0
- package/esm2022/lib/animations/close-form.animation.mjs +18 -0
- package/esm2022/lib/animations/expand-search-button.animation.mjs +17 -0
- package/esm2022/lib/animations/show.animation.mjs +20 -0
- package/esm2022/lib/animations/tabs-modal.animation.mjs +78 -0
- package/esm2022/lib/ca-components.module.mjs +117 -8
- package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +53 -0
- package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +116 -0
- package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +2 -0
- package/esm2022/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.mjs +4 -0
- package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +37 -0
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +165 -0
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +541 -0
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +75 -0
- package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +191 -0
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +131 -0
- package/esm2022/lib/components/ca-filters/utils/constants/status-filter.constants.mjs +19 -0
- package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +45 -0
- package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.mjs +7 -0
- package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.mjs +4 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +179 -0
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +55 -0
- package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +63 -0
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +52 -0
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +2 -0
- package/esm2022/lib/components/ca-input/models/label-color.model.mjs +2 -0
- package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +89 -0
- package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +76 -0
- package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +57 -0
- package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +85 -0
- package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +37 -0
- package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +57 -0
- package/esm2022/lib/components/ca-input/pipes/input-type.pipe.mjs +25 -0
- package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +32 -0
- package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
- package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +27 -0
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +92 -0
- package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +9 -0
- package/esm2022/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.mjs +43 -0
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +329 -0
- package/esm2022/lib/components/ca-map/enums/google-map.enum.mjs +6 -0
- package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +40 -0
- package/esm2022/lib/components/ca-map/models/map.model.mjs +2 -0
- package/esm2022/lib/components/ca-map/utils/helpers/map.helper.mjs +87 -0
- package/esm2022/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.mjs +5 -0
- package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +57 -0
- package/esm2022/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.mjs +19 -0
- package/esm2022/lib/components/ca-note/ca-note.component.mjs +238 -0
- package/esm2022/lib/components/ca-note/utils/helper/copy-paste.helper.mjs +8 -0
- package/esm2022/lib/components/ca-note/utils/svg-routes/note-svg-routes.mjs +6 -0
- package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +153 -0
- package/esm2022/lib/components/ca-note-container/enums/note-default-string.enum.mjs +11 -0
- package/esm2022/lib/components/ca-note-container/enums/note-selected-color.enum.mjs +6 -0
- package/esm2022/lib/components/ca-note-container/models/note-colors.model.mjs +2 -0
- package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +61 -0
- package/esm2022/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.mjs +9 -0
- package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +53 -0
- package/esm2022/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.mjs +5 -0
- package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +26 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +44 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +93 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +103 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +81 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/adress-model.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/enum-value.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/status-types.enum.mjs +7 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +8 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.mjs +25 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +21 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.mjs +5 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.mjs +16 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.mjs +5 -0
- package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +5 -5
- package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +209 -0
- package/esm2022/lib/components/ca-progress-bar/models/gps-progress.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.mjs +8 -0
- package/esm2022/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.mjs +4 -0
- package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +91 -0
- package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +9 -0
- package/esm2022/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.mjs +7 -0
- package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +40 -0
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +97 -0
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +2 -0
- package/esm2022/lib/constants/map.constant.mjs +436 -0
- package/esm2022/lib/directives/placeholder-directive.mjs +59 -0
- package/esm2022/lib/enums/load-filter-string.enum.mjs +23 -0
- package/esm2022/lib/enums/load-status.enum.mjs +58 -0
- package/esm2022/lib/models/array-status.model.mjs +2 -0
- package/esm2022/lib/models/card-models/card-table-data.model.mjs +2 -0
- package/esm2022/lib/models/color-response.mjs +2 -0
- package/esm2022/lib/models/dropdown.model.mjs +2 -0
- package/esm2022/lib/models/filter-output-params.model.mjs +2 -0
- package/esm2022/lib/models/filter-output.model.mjs +2 -0
- package/esm2022/lib/models/note-active-options.model.mjs +2 -0
- package/esm2022/lib/models/payroll-list-summary.model.mjs +2 -0
- package/esm2022/lib/models/table-models/table-body-color-label.model.mjs +2 -0
- package/esm2022/lib/models/time-filter.model.mjs +2 -0
- package/esm2022/lib/models/trailer-minimal-response.mjs +2 -0
- package/esm2022/lib/models/trailer-type-response.mjs +2 -0
- package/esm2022/lib/models/truck-minimal-response.mjs +2 -0
- package/esm2022/lib/models/truck-type-response.mjs +2 -0
- package/esm2022/lib/pipes/dropdown-load-status-color.pipe.mjs +164 -0
- package/esm2022/lib/pipes/format-currency.pipe.mjs +22 -0
- package/esm2022/lib/pipes/safe-html.pipe.mjs +18 -0
- package/esm2022/lib/pipes/ta-svg.pipe.mjs +30 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +19 -0
- package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +19 -0
- package/esm2022/lib/services/truckassist-table.service.mjs +20 -0
- package/esm2022/lib/utils/helpers/methods-calculations.helper.mjs +153 -0
- package/esm2022/public-api.mjs +21 -3
- package/fesm2022/ca-components.mjs +1866 -9
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/animation/in-out.animation.d.ts +1 -0
- package/lib/animations/accordion-animation.d.ts +1 -0
- package/lib/animations/animation.d.ts +4 -0
- package/lib/animations/close-form.animation.d.ts +1 -0
- package/lib/animations/expand-search-button.animation.d.ts +1 -0
- package/lib/animations/show.animation.d.ts +1 -0
- package/lib/animations/tabs-modal.animation.d.ts +1 -0
- package/lib/ca-components.module.d.ts +18 -1
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +19 -0
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +35 -0
- package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +19 -0
- package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts +3 -0
- package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +14 -0
- package/lib/components/ca-filters/ca-filter.component.d.ts +46 -0
- package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +78 -0
- package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +11 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +62 -0
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +33 -0
- package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts +9 -0
- package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts +8 -0
- package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts +6 -0
- package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts +3 -0
- package/lib/components/ca-input/ca-input.component.d.ts +46 -0
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +19 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +20 -0
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +16 -0
- package/lib/components/ca-input/config/ca-input.config.d.ts +136 -0
- package/lib/components/ca-input/models/label-color.model.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-class.pipe.d.ts +13 -0
- package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-error.pipe.d.ts +7 -0
- package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +12 -0
- package/lib/components/ca-input/pipes/input-type.pipe.d.ts +7 -0
- package/lib/components/ca-input/pipes/label-class.pipe.d.ts +10 -0
- package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +8 -0
- package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +9 -0
- package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +9 -0
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +24 -0
- package/lib/components/ca-input/utils/input-svg-routes.d.ts +8 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts +21 -0
- package/lib/components/ca-map/ca-map.component.d.ts +56 -0
- package/lib/components/ca-map/enums/google-map.enum.d.ts +4 -0
- package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +33 -0
- package/lib/components/ca-map/models/map.model.d.ts +74 -0
- package/lib/components/ca-map/utils/helpers/map.helper.d.ts +9 -0
- package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts +4 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +43 -0
- package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts +18 -0
- package/lib/components/ca-note/ca-note.component.d.ts +56 -0
- package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts +3 -0
- package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts +5 -0
- package/lib/components/ca-note-container/ca-note-container.component.d.ts +38 -0
- package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts +9 -0
- package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts +4 -0
- package/lib/components/ca-note-container/models/note-colors.model.d.ts +4 -0
- package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +7 -0
- package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts +8 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +20 -0
- package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts +4 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +20 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +19 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +30 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +30 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +23 -0
- package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts +12 -0
- package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +7 -0
- package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +13 -0
- package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +6 -0
- package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +18 -0
- package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +9 -0
- package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +8 -0
- package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts +5 -0
- package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts +14 -0
- package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +9 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts +15 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts +4 -0
- package/lib/components/ca-profile-image/ca-profile-image.component.d.ts +1 -1
- package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +115 -0
- package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts +8 -0
- package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts +7 -0
- package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts +3 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +24 -0
- package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +2 -0
- package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts +6 -0
- package/lib/components/ca-spinner/ca-spinner.component.d.ts +15 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +23 -0
- package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +5 -0
- package/lib/constants/map.constant.d.ts +39 -0
- package/lib/directives/placeholder-directive.d.ts +15 -0
- package/lib/enums/load-filter-string.enum.d.ts +16 -0
- package/lib/enums/load-status.enum.d.ts +56 -0
- package/lib/models/array-status.model.d.ts +24 -0
- package/lib/models/card-models/card-table-data.model.d.ts +837 -0
- package/lib/models/color-response.d.ts +6 -0
- package/lib/models/dropdown.model.d.ts +4 -0
- package/lib/models/filter-output-params.model.d.ts +5 -0
- package/lib/models/filter-output.model.d.ts +6 -0
- package/lib/models/note-active-options.model.d.ts +6 -0
- package/lib/models/payroll-list-summary.model.d.ts +12 -0
- package/lib/models/table-models/table-body-color-label.model.d.ts +11 -0
- package/lib/models/time-filter.model.d.ts +7 -0
- package/lib/models/trailer-minimal-response.d.ts +11 -0
- package/lib/models/trailer-type-response.d.ts +7 -0
- package/lib/models/truck-minimal-response.d.ts +13 -0
- package/lib/models/truck-type-response.d.ts +6 -0
- package/lib/pipes/dropdown-load-status-color.pipe.d.ts +10 -0
- package/lib/pipes/format-currency.pipe.d.ts +7 -0
- package/lib/pipes/safe-html.pipe.d.ts +10 -0
- package/lib/pipes/ta-svg.pipe.d.ts +7 -0
- package/lib/pipes/thousand-separator.pipe.d.ts +7 -0
- package/lib/pipes/thousand-to-short-format-pipe.d.ts +7 -0
- package/lib/services/truckassist-table.service.d.ts +7 -0
- package/lib/utils/helpers/methods-calculations.helper.d.ts +15 -0
- package/package.json +1 -1
- package/public-api.d.ts +20 -2
- package/src/assets/global_style/styles.scss +45 -0
- package/src/assets/json/ca-dropdown.json +12 -0
- package/src/assets/json/ca-payroll-list-summary.json +71 -0
- package/src/assets/json/ca-table.json +59 -0
- package/src/assets/json/ta-detail-dropdown.json +80 -0
- package/src/assets/json/truck-trailer-progress-bar.json +1453 -0
- package/src/assets/json/usa-states.json +54 -0
- package/src/assets/kml/timezones.kml +1608 -0
- package/src/assets/kml/toll-roads/California.kml +55 -0
- package/src/assets/kml/toll-roads/Texas.kml +5079 -0
- package/src/assets/kml/toll-roads/florida.kml +2092 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/black.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/blueDark.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/blueLight.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/gray.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/white.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/black.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/blueLight.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/dark.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/gray.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/white.json +1 -0
- package/src/assets/scss/font-family.scss +2 -0
- package/src/assets/scss/font-weight.scss +36 -0
- package/src/assets/scss/popover.scss +112 -0
- package/src/assets/svg/common/calendar/arrow-left.svg +3 -0
- package/src/assets/svg/common/ic_confirm.svg +3 -0
- package/src/assets/svg/common/ic_search.svg +3 -0
- package/src/assets/svg/common/payroll-down-arrow.svg +3 -0
- package/src/assets/svg/common/payroll-up-arrow.svg +3 -0
- package/src/assets/svg/common/sortArrow_filter.svg +3 -0
- package/src/assets/svg/input/ic_confirm.svg +3 -0
- package/src/assets/svg/input/ic_danger.svg +3 -0
- package/src/assets/svg/input/ic_eye-hidden.svg +6 -0
- package/src/assets/svg/input/ic_eye-visible.svg +6 -0
- package/src/assets/svg/input/ic_password.svg +6 -0
- package/src/assets/svg/input/ic_remove_input.svg +7 -0
- package/src/assets/svg/input/ic_x.svg +4 -0
- package/src/assets/svg/map/18px_tooltip.svg +3 -0
- package/src/assets/svg/map/accident_calender.svg +3 -0
- package/src/assets/svg/map/accident_hazmat.svg +3 -0
- package/src/assets/svg/map/accident_injury.svg +3 -0
- package/src/assets/svg/map/accident_towing.svg +3 -0
- package/src/assets/svg/map/accident_vechile.svg +3 -0
- package/src/assets/svg/map/address.svg +3 -0
- package/src/assets/svg/map/arrow_corner_top.svg +3 -0
- package/src/assets/svg/map/calender_last_used.svg +3 -0
- package/src/assets/svg/map/check.svg +3 -0
- package/src/assets/svg/map/cluster_marker_4.svg +32 -0
- package/src/assets/svg/map/cluster_marker_6.svg +32 -0
- package/src/assets/svg/map/details_options.svg +10 -0
- package/src/assets/svg/map/details_options_2.svg +3 -0
- package/src/assets/svg/map/dislike.svg +3 -0
- package/src/assets/svg/map/email.svg +3 -0
- package/src/assets/svg/map/extended_stop_ignition.svg +11 -0
- package/src/assets/svg/map/gps-location.svg +4 -0
- package/src/assets/svg/map/gps_extended_status.svg +4 -0
- package/src/assets/svg/map/gps_full.svg +7 -0
- package/src/assets/svg/map/gps_parking_status.svg +4 -0
- package/src/assets/svg/map/gps_short_status.svg +4 -0
- package/src/assets/svg/map/gps_trailer_extended.svg +11 -0
- package/src/assets/svg/map/gps_trailer_moving.svg +16 -0
- package/src/assets/svg/map/gps_trailer_parking.svg +11 -0
- package/src/assets/svg/map/gps_trailer_short_stop.svg +11 -0
- package/src/assets/svg/map/ic_marker_office.svg +18 -0
- package/src/assets/svg/map/ic_pulse_circle.svg +1 -0
- package/src/assets/svg/map/like.svg +3 -0
- package/src/assets/svg/map/marker.svg +27 -0
- package/src/assets/svg/map/marker_2.svg +27 -0
- package/src/assets/svg/map/marker_3.svg +27 -0
- package/src/assets/svg/map/marker_4.svg +27 -0
- package/src/assets/svg/map/marker_5.svg +27 -0
- package/src/assets/svg/map/marker_cluster.svg +32 -0
- package/src/assets/svg/map/marker_cluster_2.svg +32 -0
- package/src/assets/svg/map/marker_dot.svg +18 -0
- package/src/assets/svg/map/marker_dot_2.svg +18 -0
- package/src/assets/svg/map/mask_group.svg +546 -0
- package/src/assets/svg/map/no_gps_status.svg +8 -0
- package/src/assets/svg/map/oss.svg +3 -0
- package/src/assets/svg/map/parking_ignition.svg +11 -0
- package/src/assets/svg/map/parking_trailer_ignition.svg +11 -0
- package/src/assets/svg/map/phone.svg +3 -0
- package/src/assets/svg/map/progress-marker-checked.svg +20 -0
- package/src/assets/svg/map/progress-marker-pickup-checked.svg +20 -0
- package/src/assets/svg/map/progress-marker-pickup.svg +20 -0
- package/src/assets/svg/map/progress_marker-pin-dark.svg +20 -0
- package/src/assets/svg/map/progress_marker.svg +20 -0
- package/src/assets/svg/map/progress_marker_reached.svg +20 -0
- package/src/assets/svg/map/review.svg +3 -0
- package/src/assets/svg/map/routing_marker.svg +19 -0
- package/src/assets/svg/map/short_stop_ignition.svg +11 -0
- package/src/assets/svg/map/short_stop_trailer_ignition.svg +16 -0
- package/src/assets/svg/map/telematic_marker.svg +19 -0
- package/src/assets/svg/map/telematic_marker_1.svg +19 -0
- package/src/assets/svg/map/telematic_marker_2.svg +18 -0
- package/src/assets/svg/map/unitView_marker.svg +20 -0
- package/src/assets/svg/note/Itallic.svg +3 -0
- package/src/assets/svg/note/Note.svg +3 -0
- package/src/assets/svg/note/Underline.svg +3 -0
- package/src/assets/svg/note/arrow.svg +3 -0
- package/src/assets/svg/note/bold.svg +3 -0
- package/src/assets/svg/note/color-picker-inverse.svg +10 -0
- package/src/assets/svg/note/note-empty-dark.svg +3 -0
- package/src/assets/svg/note/note-empty.svg +3 -0
- package/src/assets/svg/note/note-filled.svg +3 -0
- package/src/assets/svg/note/tick.svg +3 -0
- package/src/assets/svg/pickup-delivery/Miles.svg +3 -0
- package/src/assets/svg/pickup-delivery/Options.svg +3 -0
- package/src/assets/svg/pickup-delivery/arrowLeft.svg +10 -0
- package/src/assets/svg/pickup-delivery/arrowLeftHover.svg +10 -0
- package/src/assets/svg/pickup-delivery/arrowRight.svg +3 -0
- package/src/assets/svg/pickup-delivery/detailsOptions.svg +3 -0
- package/src/assets/svg/pickup-delivery/leftArrow.svg +3 -0
- package/src/assets/svg/pickup-delivery/mailIcon.svg +3 -0
- package/src/assets/svg/pickup-delivery/mapOptionsDark.svg +11 -0
- package/src/assets/svg/pickup-delivery/optionsVertical.svg +10 -0
- package/src/assets/svg/pickup-delivery/phoneIcon.svg +3 -0
- package/src/assets/svg/pickup-delivery/userIcon.svg +3 -0
- package/src/assets/svg/pickup-delivery/vector.svg +3 -0
- package/src/assets/svg/popup/Delete.svg +4 -0
- package/src/assets/svg/popup/Information.svg +3 -0
- package/src/assets/svg/popup/Minus.svg +3 -0
- package/src/assets/svg/popup/Print.svg +3 -0
- package/src/assets/svg/popup/Share.svg +3 -0
- package/src/assets/svg/popup/close-business-icon.svg +6 -0
- package/src/assets/svg/popup/delete-hover-new.svg +9 -0
- package/src/assets/svg/popup/edit-hover.svg +10 -0
- package/src/assets/svg/popup/ic_broker-user.svg +1 -0
- package/src/assets/svg/popup/ic_info.svg +6 -0
- package/src/assets/svg/popup/ic_print.svg +1 -0
- package/src/assets/svg/popup/resize-arrow.svg +1 -0
- package/src/assets/svg/popup/review-pen.svg +6 -0
- package/src/assets/svg/popup/share-icon.svg +6 -0
- package/src/assets/svg/popup/trash.svg +4 -0
- package/src/assets/svg/search-multiple-states/add.svg +4 -0
- package/src/assets/svg/search-multiple-states/clear-search.svg +4 -0
- package/src/assets/svg/search-multiple-states/focused-search-button.svg +3 -0
- package/src/assets/svg/search-multiple-states/search-button.svg +3 -0
- package/src/assets/svg/truckassist-table/x.svg +1 -0
- package/src/assets/theme/main.scss +193 -0
- package/src/assets/theme/variables.scss +361 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { NoteActiveOptions } from "@shared/models/note-active-options.model";
|
|
3
|
+
import { NoteColors } from "@shared/components/ca-note-container/models/note-colors.model";
|
|
4
|
+
import { NoteContainerSvgRoutes } from "@shared/components/ca-note-container/utils/svg-routes/note-container-svg-routes";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CaNoteContainerComponent implements OnInit, OnDestroy {
|
|
7
|
+
value: string;
|
|
8
|
+
range: Range;
|
|
9
|
+
selectionTaken: Selection;
|
|
10
|
+
isExpanded: boolean;
|
|
11
|
+
parking: boolean;
|
|
12
|
+
popoverNote: boolean;
|
|
13
|
+
isVisibleArrow: boolean;
|
|
14
|
+
type: string;
|
|
15
|
+
stopBlurRemoveTimeout: EventEmitter<any>;
|
|
16
|
+
selectedPaternColor: string;
|
|
17
|
+
activeOptions: NoteActiveOptions | any;
|
|
18
|
+
containerColors: NoteColors[];
|
|
19
|
+
selectedColorName: NoteColors;
|
|
20
|
+
private lastSavedIndex;
|
|
21
|
+
showCollorPattern: boolean;
|
|
22
|
+
closedPattern: boolean;
|
|
23
|
+
hoveringArrowPicker: boolean;
|
|
24
|
+
private destroy$;
|
|
25
|
+
constructor();
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
private filterContainersColor;
|
|
28
|
+
executeEditor(action: string, color?: string, indx?: number): void;
|
|
29
|
+
togglePattern(): void;
|
|
30
|
+
hoveringArrow(value: boolean): void;
|
|
31
|
+
private setContainerColors;
|
|
32
|
+
/**Function retrun id */
|
|
33
|
+
identity(index: number): number;
|
|
34
|
+
getSvgPath(propertyName: keyof typeof NoteContainerSvgRoutes): string;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaNoteContainerComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaNoteContainerComponent, "app-ca-note-container", never, { "value": { "alias": "value"; "required": false; }; "range": { "alias": "range"; "required": false; }; "selectionTaken": { "alias": "selectionTaken"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "parking": { "alias": "parking"; "required": false; }; "popoverNote": { "alias": "popoverNote"; "required": false; }; "isVisibleArrow": { "alias": "isVisibleArrow"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "stopBlurRemoveTimeout": "stopBlurRemoveTimeout"; }, never, never, true, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { NoteActiveOptions } from "@shared/models/note-active-options.model";
|
|
2
|
+
import { NoteColors } from "@shared/components/ca-note-container/models/note-colors.model";
|
|
3
|
+
export declare class NoteConfigConstants {
|
|
4
|
+
static noteDarkColors: NoteColors[];
|
|
5
|
+
static noteLightColors: NoteColors[];
|
|
6
|
+
static noteActiveOptions: NoteActiveOptions;
|
|
7
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { PayrollListSummaryOverviewSvgRoutes } from "@shared/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes";
|
|
3
|
+
import { PayrollListSummaryOverview } from "@shared/models/payroll-list-summary.model";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CaPayrollListSummaryOverviewComponent {
|
|
6
|
+
item: PayrollListSummaryOverview;
|
|
7
|
+
isItemExpanded: boolean;
|
|
8
|
+
isExpanded: boolean;
|
|
9
|
+
index: number;
|
|
10
|
+
toggle: EventEmitter<void>;
|
|
11
|
+
animationMarginParams: {
|
|
12
|
+
marginTop: string;
|
|
13
|
+
marginBottom: string;
|
|
14
|
+
};
|
|
15
|
+
constructor();
|
|
16
|
+
getSvgPath(propertyName: keyof typeof PayrollListSummaryOverviewSvgRoutes): string;
|
|
17
|
+
toggleAccordion(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaPayrollListSummaryOverviewComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaPayrollListSummaryOverviewComponent, "app-ca-payroll-list-summary-overview", never, { "item": { "alias": "item"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "index": { "alias": "index"; "required": false; }; "animationMarginParams": { "alias": "animationMarginParams"; "required": false; }; }, { "toggle": "toggle"; }, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { PayrollListSummaryOverview } from "@shared/models/payroll-list-summary.model";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CaPayrollListSummaryOverviewTableComponent {
|
|
4
|
+
data: {
|
|
5
|
+
text: string;
|
|
6
|
+
type: string;
|
|
7
|
+
itemCount: number;
|
|
8
|
+
date: string;
|
|
9
|
+
money: number;
|
|
10
|
+
moneyCounter: number;
|
|
11
|
+
status: string;
|
|
12
|
+
isOpen: boolean;
|
|
13
|
+
description: string;
|
|
14
|
+
}[];
|
|
15
|
+
openIndex: number | null;
|
|
16
|
+
identity(index: number, item: PayrollListSummaryOverview): string;
|
|
17
|
+
toggleItem(index: number): number | void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaPayrollListSummaryOverviewTableComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaPayrollListSummaryOverviewTableComponent, "app-ca-payroll-list-summary-overview-table", never, {}, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { DispatchAssignedLoadListResponse } from "@shared/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response";
|
|
4
|
+
import { LoadShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-short-response";
|
|
5
|
+
import { StatusTypeEnum } from "@shared/components/ca-pickup-delivery-block/models/status-types.enum";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PickupDeliveryBlockComponent implements OnInit {
|
|
8
|
+
private modalService;
|
|
9
|
+
loads: DispatchAssignedLoadListResponse;
|
|
10
|
+
loadInfo: LoadShortResponse;
|
|
11
|
+
hasLoad: boolean;
|
|
12
|
+
loadType: StatusTypeEnum;
|
|
13
|
+
constructor(modalService: NgbModal);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
private initializeLoadDetails;
|
|
16
|
+
openLoadModal(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PickupDeliveryBlockComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PickupDeliveryBlockComponent, "app-ca-pickup-delivery-block", never, { "loads": { "alias": "loads"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DispatchAssignedLoadListResponse } from "@shared/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response";
|
|
2
|
+
import { LoadShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-short-response";
|
|
3
|
+
import { AnimationObject } from "@shared/components/ca-pickup-delivery-block/models/animation-model";
|
|
4
|
+
import { StatusTypeEnum } from "@shared/components/ca-pickup-delivery-block/models/status-types.enum";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class LoadComponent {
|
|
7
|
+
focusedTab: StatusTypeEnum;
|
|
8
|
+
loads: DispatchAssignedLoadListResponse;
|
|
9
|
+
tabs: StatusTypeEnum[];
|
|
10
|
+
activeLoad: Array<LoadShortResponse>;
|
|
11
|
+
pendingLoads: Array<LoadShortResponse>;
|
|
12
|
+
closedLoads: Array<LoadShortResponse>;
|
|
13
|
+
hasLoad: boolean;
|
|
14
|
+
StatusTypeEnum: typeof StatusTypeEnum;
|
|
15
|
+
returnButtonVisible: boolean;
|
|
16
|
+
animationObject: AnimationObject;
|
|
17
|
+
isTop: boolean;
|
|
18
|
+
private defaultIcon;
|
|
19
|
+
private hoverIcon;
|
|
20
|
+
currentIcon: string;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
private getConstantData;
|
|
23
|
+
private extractLoadStatuses;
|
|
24
|
+
onMouseEnter(): void;
|
|
25
|
+
onMouseLeave(): void;
|
|
26
|
+
toggleFocusedLoad(): void;
|
|
27
|
+
setFocusedTab(status: StatusTypeEnum): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadComponent, "app-ca-load", never, { "focusedTab": { "alias": "focusedTab"; "required": false; }; "loads": { "alias": "loads"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { LoadShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-short-response";
|
|
3
|
+
import { IItemList } from "@shared/models/dropdown.model";
|
|
4
|
+
import { PickupDeliverySvgRoutes } from "@shared/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes";
|
|
5
|
+
import { FormatCurrencyPipe } from "@shared/pipes/format-currency.pipe";
|
|
6
|
+
import { StatusTypeEnum } from "@shared/components/ca-pickup-delivery-block/models/status-types.enum";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class LoadListComponent {
|
|
9
|
+
formatCurrencyPipe: FormatCurrencyPipe;
|
|
10
|
+
loads: Array<LoadShortResponse>;
|
|
11
|
+
focusedTab: StatusTypeEnum;
|
|
12
|
+
isFocusingLoad: boolean;
|
|
13
|
+
focusLoadEmitter: EventEmitter<boolean>;
|
|
14
|
+
focusedLoad: Array<LoadShortResponse>;
|
|
15
|
+
originalIcon: string;
|
|
16
|
+
alternateIcon: string;
|
|
17
|
+
dropdownOptions: IItemList[];
|
|
18
|
+
private dropdownStates;
|
|
19
|
+
private activeLoadNumber;
|
|
20
|
+
constructor(formatCurrencyPipe: FormatCurrencyPipe);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
private setDropdownOptions;
|
|
23
|
+
focusLoad(load: LoadShortResponse): void;
|
|
24
|
+
dropDownClickEvent(loadNumber: number): void;
|
|
25
|
+
isDropdownEnabled(loadNumber: number): boolean;
|
|
26
|
+
trackByIdentity(index: number): number;
|
|
27
|
+
getSvgPath(propertyName: keyof typeof PickupDeliverySvgRoutes): string;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadListComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadListComponent, "app-ca-load-list", never, { "loads": { "alias": "loads"; "required": false; }; "focusedTab": { "alias": "focusedTab"; "required": false; }; "isFocusingLoad": { "alias": "isFocusingLoad"; "required": false; }; }, { "focusLoadEmitter": "focusLoadEmitter"; }, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { LoadShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-short-response";
|
|
2
|
+
import { IItemList } from "@shared/models/dropdown.model";
|
|
3
|
+
import { PickupDeliverySvgRoutes } from "@shared/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes";
|
|
4
|
+
import { FormatCurrencyPipe } from "@shared/pipes/format-currency.pipe";
|
|
5
|
+
import { StatusTypeEnum } from "@shared/components/ca-pickup-delivery-block/models/status-types.enum";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ActiveLoadComponent {
|
|
8
|
+
formatCurrencyPipe: FormatCurrencyPipe;
|
|
9
|
+
activeLoad: Array<LoadShortResponse>;
|
|
10
|
+
status: StatusTypeEnum;
|
|
11
|
+
originalIcon: string;
|
|
12
|
+
alternateIcon: string;
|
|
13
|
+
currentIcon: string;
|
|
14
|
+
isDropdownEnabled: boolean;
|
|
15
|
+
dropdownOptions: IItemList[];
|
|
16
|
+
constructor(formatCurrencyPipe: FormatCurrencyPipe);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
private setDropdownOptions;
|
|
19
|
+
dropDownClickEvent(): void;
|
|
20
|
+
getSvgPath(propertyName: keyof typeof PickupDeliverySvgRoutes): string;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveLoadComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveLoadComponent, "app-ca-load-single", never, { "activeLoad": { "alias": "activeLoad"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface AddressModel {
|
|
2
|
+
city?: string | null;
|
|
3
|
+
state?: string | null;
|
|
4
|
+
county?: string | null;
|
|
5
|
+
address?: string | null;
|
|
6
|
+
street?: string | null;
|
|
7
|
+
streetNumber?: string | null;
|
|
8
|
+
country?: string | null;
|
|
9
|
+
zipCode?: string | null;
|
|
10
|
+
stateShortName?: string | null;
|
|
11
|
+
addressUnit?: string | null;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EnumValue } from "@shared/components/ca-pickup-delivery-block/models/enum-value";
|
|
2
|
+
export interface BrokerShortResponse {
|
|
3
|
+
id?: number;
|
|
4
|
+
businessName?: string | null;
|
|
5
|
+
contactName?: string | null;
|
|
6
|
+
phone?: string | null;
|
|
7
|
+
email?: string | null;
|
|
8
|
+
availableCredit?: number | null;
|
|
9
|
+
availableCreditType?: EnumValue;
|
|
10
|
+
payTerm?: EnumValue;
|
|
11
|
+
dnu?: boolean;
|
|
12
|
+
ban?: boolean;
|
|
13
|
+
}
|
package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { LoadShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-short-response";
|
|
2
|
+
export interface DispatchAssignedLoadListResponse {
|
|
3
|
+
pending: Array<LoadShortResponse> | null;
|
|
4
|
+
closed: Array<LoadShortResponse> | null;
|
|
5
|
+
active: Array<LoadShortResponse> | null;
|
|
6
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BrokerShortResponse } from "@shared/components/ca-pickup-delivery-block/models/broker-short-response";
|
|
2
|
+
import { EnumValue } from "@shared/components/ca-pickup-delivery-block/models/enum-value";
|
|
3
|
+
import { LoadStopShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-stop-short-response";
|
|
4
|
+
export interface LoadShortResponse {
|
|
5
|
+
id: number;
|
|
6
|
+
loadNumber?: string | null;
|
|
7
|
+
referenceNumber?: string | null;
|
|
8
|
+
statusType?: EnumValue;
|
|
9
|
+
broker?: BrokerShortResponse;
|
|
10
|
+
pickup?: LoadStopShortResponse;
|
|
11
|
+
delivery?: LoadStopShortResponse;
|
|
12
|
+
pickupCount?: number;
|
|
13
|
+
deliveryCount?: number;
|
|
14
|
+
totalMiles?: number | null;
|
|
15
|
+
totalRate?: number | null;
|
|
16
|
+
totalAdjustedRate?: number | null;
|
|
17
|
+
driverMessage?: string | null;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EnumValue } from "@shared/components/ca-pickup-delivery-block/models/enum-value";
|
|
2
|
+
import { ShipperShortResponse } from "@shared/components/ca-pickup-delivery-block/models/shipper-short-response";
|
|
3
|
+
export interface LoadStopShortResponse {
|
|
4
|
+
loadNumber?: string | null;
|
|
5
|
+
stopType?: EnumValue;
|
|
6
|
+
stopOrder?: number;
|
|
7
|
+
shipper?: ShipperShortResponse;
|
|
8
|
+
dateFrom?: string | null;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AddressModel } from "@shared/components/ca-pickup-delivery-block/models/adress-model";
|
|
2
|
+
export interface ShipperShortResponse {
|
|
3
|
+
id?: number;
|
|
4
|
+
businessName?: string | null;
|
|
5
|
+
address?: AddressModel;
|
|
6
|
+
longitude?: number | null;
|
|
7
|
+
latitude?: number | null;
|
|
8
|
+
}
|
package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class PickupDeliveryBlockConstants {
|
|
2
|
+
static readonly activeOptions: {
|
|
3
|
+
Icon: string;
|
|
4
|
+
text: string;
|
|
5
|
+
}[];
|
|
6
|
+
static readonly closedOptions: {
|
|
7
|
+
Icon: string;
|
|
8
|
+
text: string;
|
|
9
|
+
}[];
|
|
10
|
+
static readonly pendingOptions: {
|
|
11
|
+
Icon: string;
|
|
12
|
+
text: string;
|
|
13
|
+
}[];
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DispatchAssignedLoadListResponse } from "@shared/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response";
|
|
2
|
+
import { LoadShortResponse } from "@shared/components/ca-pickup-delivery-block/models/load-short-response";
|
|
3
|
+
import { StatusTypeEnum } from "@shared/components/ca-pickup-delivery-block/models/status-types.enum";
|
|
4
|
+
export declare class PickupDeliveryHelper {
|
|
5
|
+
static setLoadDetails(loadDetails: DispatchAssignedLoadListResponse | null): {
|
|
6
|
+
load?: LoadShortResponse;
|
|
7
|
+
loadType: StatusTypeEnum;
|
|
8
|
+
};
|
|
9
|
+
}
|
package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare class PickupDeliverySvgRoutes {
|
|
2
|
+
static arrowLeft: string;
|
|
3
|
+
static arrowLeftHover: string;
|
|
4
|
+
static arrowRight: string;
|
|
5
|
+
static leftArrow: string;
|
|
6
|
+
static phoneIcon: string;
|
|
7
|
+
static mailIcon: string;
|
|
8
|
+
static markerSvgRoute: string;
|
|
9
|
+
static vector: string;
|
|
10
|
+
static userIcon: string;
|
|
11
|
+
static options: string;
|
|
12
|
+
static miles: string;
|
|
13
|
+
static optionsVertical: string;
|
|
14
|
+
static detailsOptions: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { NgbPopover } from "@ng-bootstrap/ng-bootstrap";
|
|
2
|
+
import { IGpsProgress } from "@shared/components/ca-progress-bar/models/gps-progress.model";
|
|
3
|
+
import { ProgressBarSvgRoutes } from "@shared/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ProgressBarComponent {
|
|
6
|
+
constructor();
|
|
7
|
+
isDropdown: boolean;
|
|
8
|
+
currentPosition: number;
|
|
9
|
+
mileageInfo: string;
|
|
10
|
+
currentStop: IGpsProgress;
|
|
11
|
+
gpsTitle: string;
|
|
12
|
+
gpsIcon: string;
|
|
13
|
+
gpsInfo: {
|
|
14
|
+
gpsheading: string;
|
|
15
|
+
gpsTime: string;
|
|
16
|
+
gpsheadingColor?: string;
|
|
17
|
+
};
|
|
18
|
+
mileagesPercent: string;
|
|
19
|
+
gpsProgress: IGpsProgress[];
|
|
20
|
+
gpsLocationIcon: string;
|
|
21
|
+
hoveredGpsIcon: boolean;
|
|
22
|
+
hoveredGpsCurrentPosition: boolean;
|
|
23
|
+
showDropdown: boolean;
|
|
24
|
+
focusedIcon: number;
|
|
25
|
+
isIcon: boolean;
|
|
26
|
+
tooltip: string;
|
|
27
|
+
staticConstant: {
|
|
28
|
+
completed: string;
|
|
29
|
+
completed_text: string;
|
|
30
|
+
total: string;
|
|
31
|
+
zero: number;
|
|
32
|
+
percentage: string;
|
|
33
|
+
};
|
|
34
|
+
Mapdata: {
|
|
35
|
+
center: {
|
|
36
|
+
lat: number;
|
|
37
|
+
lng: number;
|
|
38
|
+
};
|
|
39
|
+
mapZoom: number;
|
|
40
|
+
markers: never[];
|
|
41
|
+
clustermarkers: never[];
|
|
42
|
+
routingMarkers: {
|
|
43
|
+
position: {
|
|
44
|
+
lat: number;
|
|
45
|
+
lng: number;
|
|
46
|
+
};
|
|
47
|
+
icon: {
|
|
48
|
+
url: string;
|
|
49
|
+
labelOrigin: google.maps.Point;
|
|
50
|
+
};
|
|
51
|
+
}[];
|
|
52
|
+
routePaths: {
|
|
53
|
+
path: {
|
|
54
|
+
lat: number;
|
|
55
|
+
lng: number;
|
|
56
|
+
}[];
|
|
57
|
+
strokeColor: string;
|
|
58
|
+
}[];
|
|
59
|
+
mapOptions: {
|
|
60
|
+
restriction: {
|
|
61
|
+
latLngBounds: {
|
|
62
|
+
north: number;
|
|
63
|
+
south: number;
|
|
64
|
+
west: number;
|
|
65
|
+
east: number;
|
|
66
|
+
};
|
|
67
|
+
strictBounds: boolean;
|
|
68
|
+
};
|
|
69
|
+
streetViewControl: boolean;
|
|
70
|
+
styles: ({
|
|
71
|
+
elementType: string;
|
|
72
|
+
stylers: {
|
|
73
|
+
color: string;
|
|
74
|
+
}[];
|
|
75
|
+
featureType?: undefined;
|
|
76
|
+
} | {
|
|
77
|
+
elementType: string;
|
|
78
|
+
stylers: {
|
|
79
|
+
visibility: string;
|
|
80
|
+
}[];
|
|
81
|
+
featureType?: undefined;
|
|
82
|
+
} | {
|
|
83
|
+
featureType: string;
|
|
84
|
+
stylers: {
|
|
85
|
+
visibility: string;
|
|
86
|
+
}[];
|
|
87
|
+
elementType?: undefined;
|
|
88
|
+
} | {
|
|
89
|
+
featureType: string;
|
|
90
|
+
elementType: string;
|
|
91
|
+
stylers: ({
|
|
92
|
+
color: string;
|
|
93
|
+
visibility?: undefined;
|
|
94
|
+
} | {
|
|
95
|
+
visibility: string;
|
|
96
|
+
color?: undefined;
|
|
97
|
+
})[];
|
|
98
|
+
})[];
|
|
99
|
+
keyboardShortcuts: boolean;
|
|
100
|
+
panControl: boolean;
|
|
101
|
+
gestureHandling: string;
|
|
102
|
+
mapTypeControl: boolean;
|
|
103
|
+
disableDefaultUI: boolean;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
hoverStop(stop: IGpsProgress, i: number, isIcon?: boolean): void;
|
|
107
|
+
leaveStop(): void;
|
|
108
|
+
getLeftStyle(): string;
|
|
109
|
+
getToolTip(): string;
|
|
110
|
+
identity(index: number): number;
|
|
111
|
+
showDropdownMap(t2: NgbPopover): void;
|
|
112
|
+
getSvgPath(propertyName: keyof typeof ProgressBarSvgRoutes): string;
|
|
113
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
114
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "app-ca-progress-bar", never, { "isDropdown": { "alias": "isDropdown"; "required": false; }; "currentPosition": { "alias": "currentPosition"; "required": false; }; "mileageInfo": { "alias": "mileageInfo"; "required": false; }; "currentStop": { "alias": "currentStop"; "required": false; }; "gpsTitle": { "alias": "gpsTitle"; "required": false; }; "gpsIcon": { "alias": "gpsIcon"; "required": false; }; "gpsInfo": { "alias": "gpsInfo"; "required": false; }; "mileagesPercent": { "alias": "mileagesPercent"; "required": false; }; "gpsProgress": { "alias": "gpsProgress"; "required": false; }; "gpsLocationIcon": { "alias": "gpsLocationIcon"; "required": false; }; }, {}, never, never, true, never>;
|
|
115
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { SearchMultipleStatesRoutes } from "@shared/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes";
|
|
3
|
+
import { ICaInput } from "@shared/components/ca-input/config/ca-input.config";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CaSearchMultipleStatesComponent {
|
|
6
|
+
searchQueriesEmitter: EventEmitter<string[]>;
|
|
7
|
+
isFocused: boolean;
|
|
8
|
+
searchQueries: string[];
|
|
9
|
+
searchQuery: string;
|
|
10
|
+
searchMultipleStatesSvgRoutes: typeof SearchMultipleStatesRoutes;
|
|
11
|
+
inputConfig: ICaInput;
|
|
12
|
+
get isSearchQueryNotEmpty(): boolean;
|
|
13
|
+
emitSearchQueries(): void;
|
|
14
|
+
toggleFocus(): void;
|
|
15
|
+
addSearchQuery(): void;
|
|
16
|
+
removeSearchQuery(index: number): void;
|
|
17
|
+
clearSearchBar(): void;
|
|
18
|
+
removeSelected(index: number): void;
|
|
19
|
+
removeQuery(): void;
|
|
20
|
+
trackByQuery(index: number, query: string): string;
|
|
21
|
+
getSvgPath(propertyName: keyof typeof SearchMultipleStatesRoutes): string;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaSearchMultipleStatesComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaSearchMultipleStatesComponent, "app-ca-search-multiple-states", never, {}, { "searchQueriesEmitter": "searchQueriesEmitter"; }, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CaSpinnerComponent implements OnChanges {
|
|
4
|
+
size?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
isBarSpinner?: boolean;
|
|
7
|
+
lottieSpinner: {
|
|
8
|
+
path: string;
|
|
9
|
+
};
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
12
|
+
getLottieSpinner(changes: SimpleChanges): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaSpinnerComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaSpinnerComponent, "app-ca-spinner", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "isBarSpinner": { "alias": "isBarSpinner"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { NgbPopover } from "@ng-bootstrap/ng-bootstrap";
|
|
2
|
+
import { ProgressDropdownData } from "@shared/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CaTruckTrailerProgresBarComponent {
|
|
5
|
+
type: string;
|
|
6
|
+
text: string | number;
|
|
7
|
+
percents: number;
|
|
8
|
+
data: any;
|
|
9
|
+
columnField: string;
|
|
10
|
+
isTable: boolean;
|
|
11
|
+
daysExpired: boolean;
|
|
12
|
+
daysToPay: number;
|
|
13
|
+
hasPopover: boolean;
|
|
14
|
+
pmName: string;
|
|
15
|
+
progressDropdownActive: number;
|
|
16
|
+
progressDropdownColumnActive: string | any;
|
|
17
|
+
progressDropdownData: ProgressDropdownData;
|
|
18
|
+
isOpenPopup: boolean;
|
|
19
|
+
get daysPluralization(): string;
|
|
20
|
+
toggleProgressDropdown(tooltip: NgbPopover): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaTruckTrailerProgresBarComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaTruckTrailerProgresBarComponent, "app-ca-truck-trailer-progress-bar", never, { "type": { "alias": "type"; "required": false; }; "text": { "alias": "text"; "required": false; }; "percents": { "alias": "percents"; "required": false; }; "data": { "alias": "data"; "required": false; }; "columnField": { "alias": "columnField"; "required": false; }; "isTable": { "alias": "isTable"; "required": false; }; "daysExpired": { "alias": "daysExpired"; "required": false; }; "daysToPay": { "alias": "daysToPay"; "required": false; }; "hasPopover": { "alias": "hasPopover"; "required": false; }; "pmName": { "alias": "pmName"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|