ca-components 0.0.1 → 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.
Files changed (383) hide show
  1. package/esm2022/assets/json/ca-table.json +59 -0
  2. package/esm2022/assets/json/ta-detail-dropdown.json +80 -0
  3. package/esm2022/lib/animation/in-out.animation.mjs +73 -0
  4. package/esm2022/lib/animations/accordion-animation.mjs +25 -0
  5. package/esm2022/lib/animations/animation.mjs +30 -0
  6. package/esm2022/lib/animations/close-form.animation.mjs +18 -0
  7. package/esm2022/lib/animations/expand-search-button.animation.mjs +17 -0
  8. package/esm2022/lib/animations/show.animation.mjs +20 -0
  9. package/esm2022/lib/animations/tabs-modal.animation.mjs +78 -0
  10. package/esm2022/lib/ca-components.module.mjs +127 -0
  11. package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +53 -0
  12. package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +116 -0
  13. package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +2 -0
  14. package/esm2022/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.mjs +4 -0
  15. package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +37 -0
  16. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +165 -0
  17. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +541 -0
  18. package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +75 -0
  19. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +191 -0
  20. package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +131 -0
  21. package/esm2022/lib/components/ca-filters/utils/constants/status-filter.constants.mjs +19 -0
  22. package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +45 -0
  23. package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.mjs +7 -0
  24. package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.mjs +4 -0
  25. package/esm2022/lib/components/ca-input/ca-input.component.mjs +179 -0
  26. package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +55 -0
  27. package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +63 -0
  28. package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +52 -0
  29. package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +2 -0
  30. package/esm2022/lib/components/ca-input/models/label-color.model.mjs +2 -0
  31. package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +89 -0
  32. package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +76 -0
  33. package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +57 -0
  34. package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +85 -0
  35. package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +37 -0
  36. package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +57 -0
  37. package/esm2022/lib/components/ca-input/pipes/input-type.pipe.mjs +25 -0
  38. package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +32 -0
  39. package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +22 -0
  40. package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
  41. package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +27 -0
  42. package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +92 -0
  43. package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +9 -0
  44. package/esm2022/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.mjs +43 -0
  45. package/esm2022/lib/components/ca-map/ca-map.component.mjs +329 -0
  46. package/esm2022/lib/components/ca-map/enums/google-map.enum.mjs +6 -0
  47. package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +40 -0
  48. package/esm2022/lib/components/ca-map/models/map.model.mjs +2 -0
  49. package/esm2022/lib/components/ca-map/utils/helpers/map.helper.mjs +87 -0
  50. package/esm2022/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.mjs +5 -0
  51. package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +57 -0
  52. package/esm2022/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.mjs +19 -0
  53. package/esm2022/lib/components/ca-note/ca-note.component.mjs +238 -0
  54. package/esm2022/lib/components/ca-note/utils/helper/copy-paste.helper.mjs +8 -0
  55. package/esm2022/lib/components/ca-note/utils/svg-routes/note-svg-routes.mjs +6 -0
  56. package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +153 -0
  57. package/esm2022/lib/components/ca-note-container/enums/note-default-string.enum.mjs +11 -0
  58. package/esm2022/lib/components/ca-note-container/enums/note-selected-color.enum.mjs +6 -0
  59. package/esm2022/lib/components/ca-note-container/models/note-colors.model.mjs +2 -0
  60. package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +61 -0
  61. package/esm2022/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.mjs +9 -0
  62. package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +53 -0
  63. package/esm2022/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.mjs +5 -0
  64. package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +26 -0
  65. package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +44 -0
  66. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +93 -0
  67. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +103 -0
  68. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +81 -0
  69. package/esm2022/lib/components/ca-pickup-delivery-block/models/adress-model.mjs +2 -0
  70. package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +2 -0
  71. package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +2 -0
  72. package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +2 -0
  73. package/esm2022/lib/components/ca-pickup-delivery-block/models/enum-value.mjs +2 -0
  74. package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +2 -0
  75. package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +2 -0
  76. package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +2 -0
  77. package/esm2022/lib/components/ca-pickup-delivery-block/models/status-types.enum.mjs +7 -0
  78. package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +8 -0
  79. package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.mjs +25 -0
  80. package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +21 -0
  81. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.mjs +5 -0
  82. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.mjs +16 -0
  83. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.mjs +5 -0
  84. package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +5 -5
  85. package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +209 -0
  86. package/esm2022/lib/components/ca-progress-bar/models/gps-progress.model.mjs +2 -0
  87. package/esm2022/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.mjs +8 -0
  88. package/esm2022/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.mjs +4 -0
  89. package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +91 -0
  90. package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +9 -0
  91. package/esm2022/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.mjs +7 -0
  92. package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +40 -0
  93. package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +97 -0
  94. package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +2 -0
  95. package/esm2022/lib/constants/map.constant.mjs +436 -0
  96. package/esm2022/lib/directives/placeholder-directive.mjs +59 -0
  97. package/esm2022/lib/enums/load-filter-string.enum.mjs +23 -0
  98. package/esm2022/lib/enums/load-status.enum.mjs +58 -0
  99. package/esm2022/lib/models/array-status.model.mjs +2 -0
  100. package/esm2022/lib/models/card-models/card-table-data.model.mjs +2 -0
  101. package/esm2022/lib/models/color-response.mjs +2 -0
  102. package/esm2022/lib/models/dropdown.model.mjs +2 -0
  103. package/esm2022/lib/models/filter-output-params.model.mjs +2 -0
  104. package/esm2022/lib/models/filter-output.model.mjs +2 -0
  105. package/esm2022/lib/models/note-active-options.model.mjs +2 -0
  106. package/esm2022/lib/models/payroll-list-summary.model.mjs +2 -0
  107. package/esm2022/lib/models/table-models/table-body-color-label.model.mjs +2 -0
  108. package/esm2022/lib/models/time-filter.model.mjs +2 -0
  109. package/esm2022/lib/models/trailer-minimal-response.mjs +2 -0
  110. package/esm2022/lib/models/trailer-type-response.mjs +2 -0
  111. package/esm2022/lib/models/truck-minimal-response.mjs +2 -0
  112. package/esm2022/lib/models/truck-type-response.mjs +2 -0
  113. package/esm2022/lib/pipes/dropdown-load-status-color.pipe.mjs +164 -0
  114. package/esm2022/lib/pipes/format-currency.pipe.mjs +22 -0
  115. package/esm2022/lib/pipes/safe-html.pipe.mjs +18 -0
  116. package/esm2022/lib/pipes/ta-svg.pipe.mjs +30 -0
  117. package/esm2022/lib/pipes/thousand-separator.pipe.mjs +19 -0
  118. package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +19 -0
  119. package/esm2022/lib/services/truckassist-table.service.mjs +20 -0
  120. package/esm2022/lib/utils/helpers/methods-calculations.helper.mjs +153 -0
  121. package/esm2022/public-api.mjs +21 -4
  122. package/fesm2022/ca-components.mjs +1876 -7
  123. package/fesm2022/ca-components.mjs.map +1 -1
  124. package/lib/animation/in-out.animation.d.ts +1 -0
  125. package/lib/animations/accordion-animation.d.ts +1 -0
  126. package/lib/animations/animation.d.ts +4 -0
  127. package/lib/animations/close-form.animation.d.ts +1 -0
  128. package/lib/animations/expand-search-button.animation.d.ts +1 -0
  129. package/lib/animations/show.animation.d.ts +1 -0
  130. package/lib/animations/tabs-modal.animation.d.ts +1 -0
  131. package/lib/ca-components.module.d.ts +25 -0
  132. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +19 -0
  133. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +35 -0
  134. package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +19 -0
  135. package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts +3 -0
  136. package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +14 -0
  137. package/lib/components/ca-filters/ca-filter.component.d.ts +46 -0
  138. package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +78 -0
  139. package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +11 -0
  140. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +62 -0
  141. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +33 -0
  142. package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts +9 -0
  143. package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts +8 -0
  144. package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts +6 -0
  145. package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts +3 -0
  146. package/lib/components/ca-input/ca-input.component.d.ts +46 -0
  147. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +19 -0
  148. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +20 -0
  149. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +16 -0
  150. package/lib/components/ca-input/config/ca-input.config.d.ts +136 -0
  151. package/lib/components/ca-input/models/label-color.model.d.ts +11 -0
  152. package/lib/components/ca-input/pipes/input-class.pipe.d.ts +13 -0
  153. package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +11 -0
  154. package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +11 -0
  155. package/lib/components/ca-input/pipes/input-error.pipe.d.ts +7 -0
  156. package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +11 -0
  157. package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +12 -0
  158. package/lib/components/ca-input/pipes/input-type.pipe.d.ts +7 -0
  159. package/lib/components/ca-input/pipes/label-class.pipe.d.ts +10 -0
  160. package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +8 -0
  161. package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +9 -0
  162. package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +9 -0
  163. package/lib/components/ca-input/services/ca-input-state.service.d.ts +24 -0
  164. package/lib/components/ca-input/utils/input-svg-routes.d.ts +8 -0
  165. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts +21 -0
  166. package/lib/components/ca-map/ca-map.component.d.ts +56 -0
  167. package/lib/components/ca-map/enums/google-map.enum.d.ts +4 -0
  168. package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +33 -0
  169. package/lib/components/ca-map/models/map.model.d.ts +74 -0
  170. package/lib/components/ca-map/utils/helpers/map.helper.d.ts +9 -0
  171. package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts +4 -0
  172. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +43 -0
  173. package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts +18 -0
  174. package/lib/components/ca-note/ca-note.component.d.ts +56 -0
  175. package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts +3 -0
  176. package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts +5 -0
  177. package/lib/components/ca-note-container/ca-note-container.component.d.ts +38 -0
  178. package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts +9 -0
  179. package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts +4 -0
  180. package/lib/components/ca-note-container/models/note-colors.model.d.ts +4 -0
  181. package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +7 -0
  182. package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts +8 -0
  183. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +20 -0
  184. package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts +4 -0
  185. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +20 -0
  186. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +19 -0
  187. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +30 -0
  188. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +30 -0
  189. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +23 -0
  190. package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts +12 -0
  191. package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +7 -0
  192. package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +13 -0
  193. package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +6 -0
  194. package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts +4 -0
  195. package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +18 -0
  196. package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +9 -0
  197. package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +8 -0
  198. package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts +5 -0
  199. package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +4 -0
  200. package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts +14 -0
  201. package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +9 -0
  202. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts +4 -0
  203. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts +15 -0
  204. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts +4 -0
  205. package/lib/components/ca-profile-image/ca-profile-image.component.d.ts +1 -1
  206. package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +115 -0
  207. package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts +8 -0
  208. package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts +7 -0
  209. package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts +3 -0
  210. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +24 -0
  211. package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +2 -0
  212. package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts +6 -0
  213. package/lib/components/ca-spinner/ca-spinner.component.d.ts +15 -0
  214. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +23 -0
  215. package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +5 -0
  216. package/lib/constants/map.constant.d.ts +39 -0
  217. package/lib/directives/placeholder-directive.d.ts +15 -0
  218. package/lib/enums/load-filter-string.enum.d.ts +16 -0
  219. package/lib/enums/load-status.enum.d.ts +56 -0
  220. package/lib/models/array-status.model.d.ts +24 -0
  221. package/lib/models/card-models/card-table-data.model.d.ts +837 -0
  222. package/lib/models/color-response.d.ts +6 -0
  223. package/lib/models/dropdown.model.d.ts +4 -0
  224. package/lib/models/filter-output-params.model.d.ts +5 -0
  225. package/lib/models/filter-output.model.d.ts +6 -0
  226. package/lib/models/note-active-options.model.d.ts +6 -0
  227. package/lib/models/payroll-list-summary.model.d.ts +12 -0
  228. package/lib/models/table-models/table-body-color-label.model.d.ts +11 -0
  229. package/lib/models/time-filter.model.d.ts +7 -0
  230. package/lib/models/trailer-minimal-response.d.ts +11 -0
  231. package/lib/models/trailer-type-response.d.ts +7 -0
  232. package/lib/models/truck-minimal-response.d.ts +13 -0
  233. package/lib/models/truck-type-response.d.ts +6 -0
  234. package/lib/pipes/dropdown-load-status-color.pipe.d.ts +10 -0
  235. package/lib/pipes/format-currency.pipe.d.ts +7 -0
  236. package/lib/pipes/safe-html.pipe.d.ts +10 -0
  237. package/lib/pipes/ta-svg.pipe.d.ts +7 -0
  238. package/lib/pipes/thousand-separator.pipe.d.ts +7 -0
  239. package/lib/pipes/thousand-to-short-format-pipe.d.ts +7 -0
  240. package/lib/services/truckassist-table.service.d.ts +7 -0
  241. package/lib/utils/helpers/methods-calculations.helper.d.ts +15 -0
  242. package/package.json +1 -1
  243. package/public-api.d.ts +20 -1
  244. package/src/assets/global_style/styles.scss +45 -0
  245. package/src/assets/json/ca-dropdown.json +12 -0
  246. package/src/assets/json/ca-payroll-list-summary.json +71 -0
  247. package/src/assets/json/ca-table.json +59 -0
  248. package/src/assets/json/ta-detail-dropdown.json +80 -0
  249. package/src/assets/json/truck-trailer-progress-bar.json +1453 -0
  250. package/src/assets/json/usa-states.json +54 -0
  251. package/src/assets/kml/timezones.kml +1608 -0
  252. package/src/assets/kml/toll-roads/California.kml +55 -0
  253. package/src/assets/kml/toll-roads/Texas.kml +5079 -0
  254. package/src/assets/kml/toll-roads/florida.kml +2092 -0
  255. package/src/assets/lottie/ta-lottie-spinner/18px/black.json +1 -0
  256. package/src/assets/lottie/ta-lottie-spinner/18px/blueDark.json +1 -0
  257. package/src/assets/lottie/ta-lottie-spinner/18px/blueLight.json +1 -0
  258. package/src/assets/lottie/ta-lottie-spinner/18px/gray.json +1 -0
  259. package/src/assets/lottie/ta-lottie-spinner/18px/white.json +1 -0
  260. package/src/assets/lottie/ta-lottie-spinner/32px/black.json +1 -0
  261. package/src/assets/lottie/ta-lottie-spinner/32px/blueLight.json +1 -0
  262. package/src/assets/lottie/ta-lottie-spinner/32px/dark.json +1 -0
  263. package/src/assets/lottie/ta-lottie-spinner/32px/gray.json +1 -0
  264. package/src/assets/lottie/ta-lottie-spinner/32px/white.json +1 -0
  265. package/src/assets/scss/font-family.scss +2 -0
  266. package/src/assets/scss/font-weight.scss +36 -0
  267. package/src/assets/scss/popover.scss +112 -0
  268. package/src/assets/svg/common/calendar/arrow-left.svg +3 -0
  269. package/src/assets/svg/common/ic_confirm.svg +3 -0
  270. package/src/assets/svg/common/ic_search.svg +3 -0
  271. package/src/assets/svg/common/payroll-down-arrow.svg +3 -0
  272. package/src/assets/svg/common/payroll-up-arrow.svg +3 -0
  273. package/src/assets/svg/common/sortArrow_filter.svg +3 -0
  274. package/src/assets/svg/input/ic_confirm.svg +3 -0
  275. package/src/assets/svg/input/ic_danger.svg +3 -0
  276. package/src/assets/svg/input/ic_eye-hidden.svg +6 -0
  277. package/src/assets/svg/input/ic_eye-visible.svg +6 -0
  278. package/src/assets/svg/input/ic_password.svg +6 -0
  279. package/src/assets/svg/input/ic_remove_input.svg +7 -0
  280. package/src/assets/svg/input/ic_x.svg +4 -0
  281. package/src/assets/svg/map/18px_tooltip.svg +3 -0
  282. package/src/assets/svg/map/accident_calender.svg +3 -0
  283. package/src/assets/svg/map/accident_hazmat.svg +3 -0
  284. package/src/assets/svg/map/accident_injury.svg +3 -0
  285. package/src/assets/svg/map/accident_towing.svg +3 -0
  286. package/src/assets/svg/map/accident_vechile.svg +3 -0
  287. package/src/assets/svg/map/address.svg +3 -0
  288. package/src/assets/svg/map/arrow_corner_top.svg +3 -0
  289. package/src/assets/svg/map/calender_last_used.svg +3 -0
  290. package/src/assets/svg/map/check.svg +3 -0
  291. package/src/assets/svg/map/cluster_marker_4.svg +32 -0
  292. package/src/assets/svg/map/cluster_marker_6.svg +32 -0
  293. package/src/assets/svg/map/details_options.svg +10 -0
  294. package/src/assets/svg/map/details_options_2.svg +3 -0
  295. package/src/assets/svg/map/dislike.svg +3 -0
  296. package/src/assets/svg/map/email.svg +3 -0
  297. package/src/assets/svg/map/extended_stop_ignition.svg +11 -0
  298. package/src/assets/svg/map/gps-location.svg +4 -0
  299. package/src/assets/svg/map/gps_extended_status.svg +4 -0
  300. package/src/assets/svg/map/gps_full.svg +7 -0
  301. package/src/assets/svg/map/gps_parking_status.svg +4 -0
  302. package/src/assets/svg/map/gps_short_status.svg +4 -0
  303. package/src/assets/svg/map/gps_trailer_extended.svg +11 -0
  304. package/src/assets/svg/map/gps_trailer_moving.svg +16 -0
  305. package/src/assets/svg/map/gps_trailer_parking.svg +11 -0
  306. package/src/assets/svg/map/gps_trailer_short_stop.svg +11 -0
  307. package/src/assets/svg/map/ic_marker_office.svg +18 -0
  308. package/src/assets/svg/map/ic_pulse_circle.svg +1 -0
  309. package/src/assets/svg/map/like.svg +3 -0
  310. package/src/assets/svg/map/marker.svg +27 -0
  311. package/src/assets/svg/map/marker_2.svg +27 -0
  312. package/src/assets/svg/map/marker_3.svg +27 -0
  313. package/src/assets/svg/map/marker_4.svg +27 -0
  314. package/src/assets/svg/map/marker_5.svg +27 -0
  315. package/src/assets/svg/map/marker_cluster.svg +32 -0
  316. package/src/assets/svg/map/marker_cluster_2.svg +32 -0
  317. package/src/assets/svg/map/marker_dot.svg +18 -0
  318. package/src/assets/svg/map/marker_dot_2.svg +18 -0
  319. package/src/assets/svg/map/mask_group.svg +546 -0
  320. package/src/assets/svg/map/no_gps_status.svg +8 -0
  321. package/src/assets/svg/map/oss.svg +3 -0
  322. package/src/assets/svg/map/parking_ignition.svg +11 -0
  323. package/src/assets/svg/map/parking_trailer_ignition.svg +11 -0
  324. package/src/assets/svg/map/phone.svg +3 -0
  325. package/src/assets/svg/map/progress-marker-checked.svg +20 -0
  326. package/src/assets/svg/map/progress-marker-pickup-checked.svg +20 -0
  327. package/src/assets/svg/map/progress-marker-pickup.svg +20 -0
  328. package/src/assets/svg/map/progress_marker-pin-dark.svg +20 -0
  329. package/src/assets/svg/map/progress_marker.svg +20 -0
  330. package/src/assets/svg/map/progress_marker_reached.svg +20 -0
  331. package/src/assets/svg/map/review.svg +3 -0
  332. package/src/assets/svg/map/routing_marker.svg +19 -0
  333. package/src/assets/svg/map/short_stop_ignition.svg +11 -0
  334. package/src/assets/svg/map/short_stop_trailer_ignition.svg +16 -0
  335. package/src/assets/svg/map/telematic_marker.svg +19 -0
  336. package/src/assets/svg/map/telematic_marker_1.svg +19 -0
  337. package/src/assets/svg/map/telematic_marker_2.svg +18 -0
  338. package/src/assets/svg/map/unitView_marker.svg +20 -0
  339. package/src/assets/svg/note/Itallic.svg +3 -0
  340. package/src/assets/svg/note/Note.svg +3 -0
  341. package/src/assets/svg/note/Underline.svg +3 -0
  342. package/src/assets/svg/note/arrow.svg +3 -0
  343. package/src/assets/svg/note/bold.svg +3 -0
  344. package/src/assets/svg/note/color-picker-inverse.svg +10 -0
  345. package/src/assets/svg/note/note-empty-dark.svg +3 -0
  346. package/src/assets/svg/note/note-empty.svg +3 -0
  347. package/src/assets/svg/note/note-filled.svg +3 -0
  348. package/src/assets/svg/note/tick.svg +3 -0
  349. package/src/assets/svg/pickup-delivery/Miles.svg +3 -0
  350. package/src/assets/svg/pickup-delivery/Options.svg +3 -0
  351. package/src/assets/svg/pickup-delivery/arrowLeft.svg +10 -0
  352. package/src/assets/svg/pickup-delivery/arrowLeftHover.svg +10 -0
  353. package/src/assets/svg/pickup-delivery/arrowRight.svg +3 -0
  354. package/src/assets/svg/pickup-delivery/detailsOptions.svg +3 -0
  355. package/src/assets/svg/pickup-delivery/leftArrow.svg +3 -0
  356. package/src/assets/svg/pickup-delivery/mailIcon.svg +3 -0
  357. package/src/assets/svg/pickup-delivery/mapOptionsDark.svg +11 -0
  358. package/src/assets/svg/pickup-delivery/optionsVertical.svg +10 -0
  359. package/src/assets/svg/pickup-delivery/phoneIcon.svg +3 -0
  360. package/src/assets/svg/pickup-delivery/userIcon.svg +3 -0
  361. package/src/assets/svg/pickup-delivery/vector.svg +3 -0
  362. package/src/assets/svg/popup/Delete.svg +4 -0
  363. package/src/assets/svg/popup/Information.svg +3 -0
  364. package/src/assets/svg/popup/Minus.svg +3 -0
  365. package/src/assets/svg/popup/Print.svg +3 -0
  366. package/src/assets/svg/popup/Share.svg +3 -0
  367. package/src/assets/svg/popup/close-business-icon.svg +6 -0
  368. package/src/assets/svg/popup/delete-hover-new.svg +9 -0
  369. package/src/assets/svg/popup/edit-hover.svg +10 -0
  370. package/src/assets/svg/popup/ic_broker-user.svg +1 -0
  371. package/src/assets/svg/popup/ic_info.svg +6 -0
  372. package/src/assets/svg/popup/ic_print.svg +1 -0
  373. package/src/assets/svg/popup/resize-arrow.svg +1 -0
  374. package/src/assets/svg/popup/review-pen.svg +6 -0
  375. package/src/assets/svg/popup/share-icon.svg +6 -0
  376. package/src/assets/svg/popup/trash.svg +4 -0
  377. package/src/assets/svg/search-multiple-states/add.svg +4 -0
  378. package/src/assets/svg/search-multiple-states/clear-search.svg +4 -0
  379. package/src/assets/svg/search-multiple-states/focused-search-button.svg +3 -0
  380. package/src/assets/svg/search-multiple-states/search-button.svg +3 -0
  381. package/src/assets/svg/truckassist-table/x.svg +1 -0
  382. package/src/assets/theme/main.scss +193 -0
  383. 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,9 @@
1
+ export declare enum NoteDefaultStringEnum {
2
+ FORE_COLOR = "ForeColor",
3
+ FORE_COLOR2 = "foreColor",
4
+ MAIN_EDITOR = "main_editor",
5
+ CSS_STYLE = "styleWithCSS",
6
+ FALSE = "false",
7
+ COLOR = "color",
8
+ DARK = "dark"
9
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum NoteSelectedColorStringEnum {
2
+ GRAY_RGB = "rgb(218, 218, 218)",
3
+ GRAY = "Gray"
4
+ }
@@ -0,0 +1,4 @@
1
+ export interface NoteColors {
2
+ color: string;
3
+ name: string;
4
+ }
@@ -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,8 @@
1
+ export declare class NoteContainerSvgRoutes {
2
+ static boldRoute: string;
3
+ static itallicRoute: string;
4
+ static colorRoute: string;
5
+ static underlineRoute: string;
6
+ static checkRoute: string;
7
+ static arrowRoute: string;
8
+ }
@@ -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,4 @@
1
+ export declare class PayrollListSummaryOverviewSvgRoutes {
2
+ static downArrow: string;
3
+ static upArrow: string;
4
+ }
@@ -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,7 @@
1
+ import { StatusTypeEnum } from "@shared/components/ca-pickup-delivery-block/models/status-types.enum";
2
+ export interface AnimationObject {
3
+ value: StatusTypeEnum;
4
+ params: {
5
+ height: string;
6
+ };
7
+ }
@@ -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
+ }
@@ -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,4 @@
1
+ export interface EnumValue {
2
+ name?: string | null;
3
+ id?: number;
4
+ }
@@ -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
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum StatusTypeEnum {
2
+ CLOSED = "CLOSED",
3
+ ACTIVE = "ACTIVE",
4
+ PENDING = "PENDING"
5
+ }
@@ -0,0 +1,4 @@
1
+ import { AnimationObject } from "@shared/components/ca-pickup-delivery-block/models/animation-model";
2
+ export declare class LoadTabsConstants {
3
+ static ANIMATION_OBJECT: AnimationObject;
4
+ }
@@ -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
+ }
@@ -0,0 +1,4 @@
1
+ export declare class OptionsButtonIconsSvgRoutes {
2
+ static optionsDefault: string;
3
+ static optionsClicked: string;
4
+ }
@@ -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,4 @@
1
+ export declare class ReturnArrowIconsSvgRoutes {
2
+ static optionsDefault: string;
3
+ static optionsHovered: string;
4
+ }
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnInit } from "@angular/core";
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class CaProfileImageComponent implements OnInit {
4
4
  avatarImg: string;
@@ -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,8 @@
1
+ export interface IGpsProgress {
2
+ type: string;
3
+ heading: string;
4
+ position: number;
5
+ location: string;
6
+ mileage: string;
7
+ time?: string;
8
+ }
@@ -0,0 +1,7 @@
1
+ export declare const ProgressBarConstants: {
2
+ completed: string;
3
+ completed_text: string;
4
+ total: string;
5
+ zero: number;
6
+ percentage: string;
7
+ };
@@ -0,0 +1,3 @@
1
+ export declare class ProgressBarSvgRoutes {
2
+ static checkRoute: string;
3
+ }
@@ -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,2 @@
1
+ import { ICaInput } from '@shared/components/ca-input/config/ca-input.config';
2
+ export declare const inputConfig: ICaInput;
@@ -0,0 +1,6 @@
1
+ export declare class SearchMultipleStatesRoutes {
2
+ static searchButton: string;
3
+ static focusedSearchButton: string;
4
+ static clearSearch: string;
5
+ static add: string;
6
+ }
@@ -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
+ }
@@ -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
+ }
@@ -0,0 +1,5 @@
1
+ import { CardDetails, PmTrailerProgressData, PmTruckProgressData } from "@shared/models/card-models/card-table-data.model";
2
+ export interface ProgressDropdownData {
3
+ row: CardDetails;
4
+ column: PmTruckProgressData | PmTrailerProgressData;
5
+ }