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.
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 +117 -8
  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 -3
  122. package/fesm2022/ca-components.mjs +1866 -9
  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 +18 -1
  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 -2
  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,1453 @@
1
+ {
2
+ "TruckTrailerProgressBar": {
3
+ "FullTruckProgressBar": {
4
+ "truckTypeClass": "ic_truck_box-truck",
5
+ "truckTypeIcon": "ic_truck_box-truck.svg",
6
+ "tableTruckName": "Box Truck",
7
+ "truckType": {
8
+ "id": 2,
9
+ "companyId": null,
10
+ "name": "Box Truck",
11
+ "logoName": "ic_truck_box-truck.svg"
12
+ },
13
+ "tableTruckColor": "#DF3C3C",
14
+ "textUnit": "2",
15
+ "textOdometer": null,
16
+ "textInv": null,
17
+ "textLastShop": null,
18
+ "lastService": null,
19
+ "textMake": "Ford",
20
+ "textModel": "14231",
21
+ "textYear": 1991,
22
+ "note": null,
23
+ "tableDropdownContent": {
24
+ "hasContent": true,
25
+ "content": [
26
+ {
27
+ "title": "Configure",
28
+ "name": "configure",
29
+ "svgUrl": "assets/svg/common/ic_settings.svg",
30
+ "svgStyle": {
31
+ "width": 18,
32
+ "height": 18
33
+ },
34
+ "svgClass": "regular",
35
+ "tableListDropdownContentStyle": {
36
+ "margin-bottom.px": 4
37
+ }
38
+ },
39
+ {
40
+ "title": "Add Repair Bill",
41
+ "name": "add-repair-bill",
42
+ "svgUrl": "assets/svg/truckassist-table/dropdown/content/add.svg",
43
+ "svgStyle": {
44
+ "width": 18,
45
+ "height": 18
46
+ },
47
+ "svgClass": "activate",
48
+ "tableListDropdownContentStyle": {
49
+ "margin-bottom.px": 4
50
+ },
51
+ "hasBorder": true
52
+ },
53
+ {
54
+ "title": "Share",
55
+ "name": "share",
56
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Share.svg",
57
+ "svgStyle": {
58
+ "width": 18,
59
+ "height": 18
60
+ },
61
+ "svgClass": "regular",
62
+ "tableListDropdownContentStyle": {
63
+ "margin-bottom.px": 4
64
+ }
65
+ },
66
+ {
67
+ "title": "Print",
68
+ "name": "print",
69
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Print.svg",
70
+ "svgStyle": {
71
+ "width": 18,
72
+ "height": 18
73
+ },
74
+ "svgClass": "regular"
75
+ }
76
+ ]
77
+ },
78
+ "truck": {
79
+ "id": 156,
80
+ "truckNumber": "2",
81
+ "truckType": {
82
+ "id": 2,
83
+ "companyId": null,
84
+ "name": "Box Truck",
85
+ "logoName": "ic_truck_box-truck.svg"
86
+ },
87
+ "vin": "12413452345435435",
88
+ "truckMake": {
89
+ "id": 2,
90
+ "companyId": null,
91
+ "name": "Ford",
92
+ "logoName": "ic_truck_ford.svg"
93
+ },
94
+ "model": "14231",
95
+ "year": 1991,
96
+ "color": null,
97
+ "truckLength": {
98
+ "name": "10 ft",
99
+ "id": 1
100
+ },
101
+ "companyOwned": true,
102
+ "owner": null,
103
+ "commission": 14.5,
104
+ "truckGrossWeight": null,
105
+ "emptyWeight": null,
106
+ "truckEngineModel": null,
107
+ "engineOilType": null,
108
+ "transmissionModel": null,
109
+ "shifter": null,
110
+ "gearRatio": null,
111
+ "fuelType": null,
112
+ "fuelTankSize": null,
113
+ "axles": null,
114
+ "brakes": null,
115
+ "tireSize": null,
116
+ "wheelBase": null,
117
+ "frontWheels": null,
118
+ "rearWheels": null,
119
+ "apUnit": null,
120
+ "doubleBunk": null,
121
+ "refrigerator": null,
122
+ "headacheRack": null,
123
+ "dashCam": null,
124
+ "dcInverter": null,
125
+ "blower": null,
126
+ "pto": null,
127
+ "tollTransponder": null,
128
+ "tollTransponderDeviceNo": null,
129
+ "insurancePolicy": null,
130
+ "mileage": null,
131
+ "purchaseDate": null,
132
+ "purchasePrice": null,
133
+ "licensePlate": null,
134
+ "registrationPercentage": null,
135
+ "registrationExpirationDays": null,
136
+ "registrationExpirationHours": null,
137
+ "fhwaExp": 6,
138
+ "fhwaInspection": null,
139
+ "inspectionPercentage": null,
140
+ "inspectionExpirationDays": null,
141
+ "inspectionExpirationHours": null,
142
+ "titleNumber": null,
143
+ "titleState": null,
144
+ "titlePurchaseDate": null,
145
+ "titleIssueDate": null,
146
+ "driverId": null,
147
+ "driver": null,
148
+ "driverAvatarFile": null,
149
+ "trailerNumber": null,
150
+ "note": null,
151
+ "status": 1,
152
+ "deactivatedAt": null,
153
+ "fileCount": null,
154
+ "createdAt": "2024-03-20T12:38:56.66333",
155
+ "updatedAt": "2024-03-20T12:38:56.663329"
156
+ },
157
+ "pmId": 154,
158
+ "oilFilter": {
159
+ "expirationMiles": 15000,
160
+ "expirationMilesText": "15,000",
161
+ "totalValueText": "15K mi",
162
+ "percentage": 100
163
+ },
164
+ "airFilter": {
165
+ "expirationMiles": 75000,
166
+ "expirationMilesText": "75,000",
167
+ "totalValueText": "75K mi",
168
+ "percentage": 100
169
+ },
170
+ "belts": {
171
+ "expirationMiles": 75000,
172
+ "expirationMilesText": "75,000",
173
+ "totalValueText": "75K mi",
174
+ "percentage": 100
175
+ },
176
+ "transFluid": {
177
+ "expirationMiles": 150000,
178
+ "expirationMilesText": "150,000",
179
+ "totalValueText": "150K mi",
180
+ "percentage": 100
181
+ },
182
+ "engTuneUp": {
183
+ "expirationMiles": 150000,
184
+ "expirationMilesText": "150,000",
185
+ "totalValueText": "150K mi",
186
+ "percentage": 100
187
+ },
188
+ "oilPump": {
189
+ "expirationMiles": 300000,
190
+ "expirationMilesText": "300,000",
191
+ "totalValueText": "300K mi",
192
+ "percentage": 100
193
+ },
194
+ "acCompressor": {
195
+ "expirationMiles": 300000,
196
+ "expirationMilesText": "300,000",
197
+ "totalValueText": "300K mi",
198
+ "percentage": 100
199
+ },
200
+ "isSelected": false
201
+ },
202
+ "ExpiredTruckProgressBar": {
203
+ "truckTypeClass": "ic_truck_semi-wSleeper",
204
+ "truckTypeIcon": "ic_truck_semi-wSleeper.svg",
205
+ "tableTruckName": "Semi Sleeper",
206
+ "truckType": {
207
+ "id": 6,
208
+ "companyId": null,
209
+ "name": "Semi Sleeper",
210
+ "logoName": "ic_truck_semi-wSleeper.svg"
211
+ },
212
+ "tableTruckColor": "#F89B2E",
213
+ "textUnit": "1858",
214
+ "textOdometer": "474,596",
215
+ "textInv": "IVAN",
216
+ "textLastShop": {
217
+ "id": 204,
218
+ "name": "HAMMER REPAIR INC",
219
+ "address": {
220
+ "city": "Crown Point",
221
+ "state": "Indiana",
222
+ "county": "Lake County",
223
+ "address": "2603 Harvest Drive, Crown Point, IN, USA",
224
+ "street": "Harvest Drive",
225
+ "streetNumber": "2603",
226
+ "country": "US",
227
+ "zipCode": "46307",
228
+ "stateShortName": "IN",
229
+ "addressUnit": null
230
+ }
231
+ },
232
+ "lastService": "03/20/23",
233
+ "textMake": "Freightliner",
234
+ "textModel": "Cascadia",
235
+ "textYear": 2018,
236
+ "textRepairShop": "HAMMER REPAIR INC",
237
+ "textRepairShopAddress": "2603 Harvest Drive, Crown Point, IN, USA",
238
+ "note": null,
239
+ "tableDropdownContent": {
240
+ "hasContent": true,
241
+ "content": [
242
+ {
243
+ "title": "Configure",
244
+ "name": "configure",
245
+ "svgUrl": "assets/svg/common/ic_settings.svg",
246
+ "svgStyle": {
247
+ "width": 18,
248
+ "height": 18
249
+ },
250
+ "svgClass": "regular",
251
+ "tableListDropdownContentStyle": {
252
+ "margin-bottom.px": 4
253
+ }
254
+ },
255
+ {
256
+ "title": "Add Repair Bill",
257
+ "name": "add-repair-bill",
258
+ "svgUrl": "assets/svg/truckassist-table/dropdown/content/add.svg",
259
+ "svgStyle": {
260
+ "width": 18,
261
+ "height": 18
262
+ },
263
+ "svgClass": "activate",
264
+ "tableListDropdownContentStyle": {
265
+ "margin-bottom.px": 4
266
+ },
267
+ "hasBorder": true
268
+ },
269
+ {
270
+ "title": "Share",
271
+ "name": "share",
272
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Share.svg",
273
+ "svgStyle": {
274
+ "width": 18,
275
+ "height": 18
276
+ },
277
+ "svgClass": "regular",
278
+ "tableListDropdownContentStyle": {
279
+ "margin-bottom.px": 4
280
+ }
281
+ },
282
+ {
283
+ "title": "Print",
284
+ "name": "print",
285
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Print.svg",
286
+ "svgStyle": {
287
+ "width": 18,
288
+ "height": 18
289
+ },
290
+ "svgClass": "regular"
291
+ }
292
+ ]
293
+ },
294
+ "truck": {
295
+ "id": 56,
296
+ "truckNumber": "1858",
297
+ "truckType": {
298
+ "id": 6,
299
+ "companyId": null,
300
+ "name": "Semi Sleeper",
301
+ "logoName": "ic_truck_semi-wSleeper.svg"
302
+ },
303
+ "vin": "3AKJHHDR0JSJJ1858",
304
+ "truckMake": {
305
+ "id": 3,
306
+ "companyId": null,
307
+ "name": "Freightliner",
308
+ "logoName": "ic_truck_freightliner.svg"
309
+ },
310
+ "model": "Cascadia",
311
+ "year": 2018,
312
+ "color": {
313
+ "id": 3,
314
+ "companyId": null,
315
+ "name": "Red",
316
+ "code": "#E61D0D"
317
+ },
318
+ "truckLength": null,
319
+ "companyOwned": false,
320
+ "owner": null,
321
+ "commission": 7,
322
+ "truckGrossWeight": null,
323
+ "emptyWeight": 18000,
324
+ "truckEngineModel": null,
325
+ "engineOilType": {
326
+ "name": "15W-40 mineral",
327
+ "id": 4
328
+ },
329
+ "transmissionModel": "Detroit DT12 Automated Manual Transmission",
330
+ "shifter": {
331
+ "name": "Automatic",
332
+ "id": 1
333
+ },
334
+ "gearRatio": {
335
+ "name": "2.28",
336
+ "id": 7
337
+ },
338
+ "fuelType": {
339
+ "name": "Diesel",
340
+ "id": 1
341
+ },
342
+ "fuelTankSize": 200,
343
+ "axles": 2,
344
+ "brakes": {
345
+ "name": "Disc",
346
+ "id": 2
347
+ },
348
+ "tireSize": null,
349
+ "wheelBase": 216,
350
+ "frontWheels": {
351
+ "name": "Aluminum",
352
+ "id": 1
353
+ },
354
+ "rearWheels": {
355
+ "name": "Aluminum",
356
+ "id": 1
357
+ },
358
+ "apUnit": {
359
+ "name": "Diesel",
360
+ "id": 1
361
+ },
362
+ "doubleBunk": true,
363
+ "refrigerator": true,
364
+ "headacheRack": null,
365
+ "dashCam": null,
366
+ "dcInverter": true,
367
+ "blower": true,
368
+ "pto": null,
369
+ "tollTransponder": null,
370
+ "tollTransponderDeviceNo": null,
371
+ "insurancePolicy": null,
372
+ "mileage": 480000,
373
+ "purchaseDate": null,
374
+ "purchasePrice": null,
375
+ "licensePlate": "P1190511",
376
+ "registrationPercentage": 30.14,
377
+ "registrationExpirationDays": 254,
378
+ "registrationExpirationHours": null,
379
+ "fhwaExp": 6,
380
+ "fhwaInspection": null,
381
+ "inspectionPercentage": 100,
382
+ "inspectionExpirationDays": 236,
383
+ "inspectionExpirationHours": null,
384
+ "titleNumber": null,
385
+ "titleState": null,
386
+ "titlePurchaseDate": null,
387
+ "titleIssueDate": null,
388
+ "driverId": null,
389
+ "driver": null,
390
+ "driverAvatarFile": null,
391
+ "trailerNumber": null,
392
+ "note": null,
393
+ "status": 1,
394
+ "deactivatedAt": null,
395
+ "fileCount": null,
396
+ "createdAt": "2023-01-26T14:45:53.821001",
397
+ "updatedAt": "2024-07-22T17:52:02.286643"
398
+ },
399
+ "pmId": 56,
400
+ "oilFilter": {
401
+ "expirationMiles": 459596,
402
+ "expirationMilesText": "459,596",
403
+ "totalValueText": "15K mi",
404
+ "percentage": 0
405
+ },
406
+ "airFilter": {
407
+ "expirationMiles": 399596,
408
+ "expirationMilesText": "399,596",
409
+ "totalValueText": "75K mi",
410
+ "percentage": 0
411
+ },
412
+ "belts": {
413
+ "expirationMiles": 399596,
414
+ "expirationMilesText": "399,596",
415
+ "totalValueText": "75K mi",
416
+ "percentage": 0
417
+ },
418
+ "transFluid": {
419
+ "expirationMiles": 324596,
420
+ "expirationMilesText": "324,596",
421
+ "totalValueText": "150K mi",
422
+ "percentage": 0
423
+ },
424
+ "engTuneUp": {
425
+ "expirationMiles": 324596,
426
+ "expirationMilesText": "324,596",
427
+ "totalValueText": "150K mi",
428
+ "percentage": 0
429
+ },
430
+ "oilPump": {
431
+ "expirationMiles": 174596,
432
+ "expirationMilesText": "174,596",
433
+ "totalValueText": "300K mi",
434
+ "percentage": 0
435
+ },
436
+ "acCompressor": {
437
+ "expirationMiles": 174596,
438
+ "expirationMilesText": "174,596",
439
+ "totalValueText": "300K mi",
440
+ "percentage": 0
441
+ },
442
+ "isSelected": false
443
+ },
444
+ "TwentyToFiftyTruckProgressBar": {
445
+ "truckTypeClass": "ic_truck_semi-wSleeper",
446
+ "truckTypeIcon": "ic_truck_semi-wSleeper.svg",
447
+ "tableTruckName": "Semi Sleeper",
448
+ "truckType": {
449
+ "id": 6,
450
+ "companyId": null,
451
+ "name": "Semi Sleeper",
452
+ "logoName": "ic_truck_semi-wSleeper.svg"
453
+ },
454
+ "tableTruckColor": "#F89B2E",
455
+ "textUnit": "1858",
456
+ "textOdometer": "474,596",
457
+ "textInv": "IVAN",
458
+ "textLastShop": {
459
+ "id": 204,
460
+ "name": "HAMMER REPAIR INC",
461
+ "address": {
462
+ "city": "Crown Point",
463
+ "state": "Indiana",
464
+ "county": "Lake County",
465
+ "address": "2603 Harvest Drive, Crown Point, IN, USA",
466
+ "street": "Harvest Drive",
467
+ "streetNumber": "2603",
468
+ "country": "US",
469
+ "zipCode": "46307",
470
+ "stateShortName": "IN",
471
+ "addressUnit": null
472
+ }
473
+ },
474
+ "lastService": "03/20/23",
475
+ "textMake": "Freightliner",
476
+ "textModel": "Cascadia",
477
+ "textYear": 2018,
478
+ "textRepairShop": "HAMMER REPAIR INC",
479
+ "textRepairShopAddress": "2603 Harvest Drive, Crown Point, IN, USA",
480
+ "note": null,
481
+ "tableDropdownContent": {
482
+ "hasContent": true,
483
+ "content": [
484
+ {
485
+ "title": "Configure",
486
+ "name": "configure",
487
+ "svgUrl": "assets/svg/common/ic_settings.svg",
488
+ "svgStyle": {
489
+ "width": 18,
490
+ "height": 18
491
+ },
492
+ "svgClass": "regular",
493
+ "tableListDropdownContentStyle": {
494
+ "margin-bottom.px": 4
495
+ }
496
+ },
497
+ {
498
+ "title": "Add Repair Bill",
499
+ "name": "add-repair-bill",
500
+ "svgUrl": "assets/svg/truckassist-table/dropdown/content/add.svg",
501
+ "svgStyle": {
502
+ "width": 18,
503
+ "height": 18
504
+ },
505
+ "svgClass": "activate",
506
+ "tableListDropdownContentStyle": {
507
+ "margin-bottom.px": 4
508
+ },
509
+ "hasBorder": true
510
+ },
511
+ {
512
+ "title": "Share",
513
+ "name": "share",
514
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Share.svg",
515
+ "svgStyle": {
516
+ "width": 18,
517
+ "height": 18
518
+ },
519
+ "svgClass": "regular",
520
+ "tableListDropdownContentStyle": {
521
+ "margin-bottom.px": 4
522
+ }
523
+ },
524
+ {
525
+ "title": "Print",
526
+ "name": "print",
527
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Print.svg",
528
+ "svgStyle": {
529
+ "width": 18,
530
+ "height": 18
531
+ },
532
+ "svgClass": "regular"
533
+ }
534
+ ]
535
+ },
536
+ "truck": {
537
+ "id": 56,
538
+ "truckNumber": "1858",
539
+ "truckType": {
540
+ "id": 6,
541
+ "companyId": null,
542
+ "name": "Semi Sleeper",
543
+ "logoName": "ic_truck_semi-wSleeper.svg"
544
+ },
545
+ "vin": "3AKJHHDR0JSJJ1858",
546
+ "truckMake": {
547
+ "id": 3,
548
+ "companyId": null,
549
+ "name": "Freightliner",
550
+ "logoName": "ic_truck_freightliner.svg"
551
+ },
552
+ "model": "Cascadia",
553
+ "year": 2018,
554
+ "color": {
555
+ "id": 3,
556
+ "companyId": null,
557
+ "name": "Red",
558
+ "code": "#E61D0D"
559
+ },
560
+ "truckLength": null,
561
+ "companyOwned": false,
562
+ "owner": null,
563
+ "commission": 7,
564
+ "truckGrossWeight": null,
565
+ "emptyWeight": 18000,
566
+ "truckEngineModel": null,
567
+ "engineOilType": {
568
+ "name": "15W-40 mineral",
569
+ "id": 4
570
+ },
571
+ "transmissionModel": "Detroit DT12 Automated Manual Transmission",
572
+ "shifter": {
573
+ "name": "Automatic",
574
+ "id": 1
575
+ },
576
+ "gearRatio": {
577
+ "name": "2.28",
578
+ "id": 7
579
+ },
580
+ "fuelType": {
581
+ "name": "Diesel",
582
+ "id": 1
583
+ },
584
+ "fuelTankSize": 200,
585
+ "axles": 2,
586
+ "brakes": {
587
+ "name": "Disc",
588
+ "id": 2
589
+ },
590
+ "tireSize": null,
591
+ "wheelBase": 216,
592
+ "frontWheels": {
593
+ "name": "Aluminum",
594
+ "id": 1
595
+ },
596
+ "rearWheels": {
597
+ "name": "Aluminum",
598
+ "id": 1
599
+ },
600
+ "apUnit": {
601
+ "name": "Diesel",
602
+ "id": 1
603
+ },
604
+ "doubleBunk": true,
605
+ "refrigerator": true,
606
+ "headacheRack": null,
607
+ "dashCam": null,
608
+ "dcInverter": true,
609
+ "blower": true,
610
+ "pto": null,
611
+ "tollTransponder": null,
612
+ "tollTransponderDeviceNo": null,
613
+ "insurancePolicy": null,
614
+ "mileage": 480000,
615
+ "purchaseDate": null,
616
+ "purchasePrice": null,
617
+ "licensePlate": "P1190511",
618
+ "registrationPercentage": 30.14,
619
+ "registrationExpirationDays": 254,
620
+ "registrationExpirationHours": null,
621
+ "fhwaExp": 6,
622
+ "fhwaInspection": null,
623
+ "inspectionPercentage": 100,
624
+ "inspectionExpirationDays": 236,
625
+ "inspectionExpirationHours": null,
626
+ "titleNumber": null,
627
+ "titleState": null,
628
+ "titlePurchaseDate": null,
629
+ "titleIssueDate": null,
630
+ "driverId": null,
631
+ "driver": null,
632
+ "driverAvatarFile": null,
633
+ "trailerNumber": null,
634
+ "note": null,
635
+ "status": 1,
636
+ "deactivatedAt": null,
637
+ "fileCount": null,
638
+ "createdAt": "2023-01-26T14:45:53.821001",
639
+ "updatedAt": "2024-07-22T17:52:02.286643"
640
+ },
641
+ "pmId": 56,
642
+ "oilFilter": {
643
+ "expirationMiles": 142000,
644
+ "expirationMilesText": "142000",
645
+ "totalValueText": "142K mi",
646
+ "percentage": 48.47
647
+ },
648
+ "airFilter": {
649
+ "expirationMiles": 399596,
650
+ "expirationMilesText": "399,596",
651
+ "totalValueText": "75K mi",
652
+ "percentage": 0
653
+ },
654
+ "belts": {
655
+ "expirationMiles": 399596,
656
+ "expirationMilesText": "399,596",
657
+ "totalValueText": "75K mi",
658
+ "percentage": 0
659
+ },
660
+ "transFluid": {
661
+ "expirationMiles": 324596,
662
+ "expirationMilesText": "324,596",
663
+ "totalValueText": "150K mi",
664
+ "percentage": 0
665
+ },
666
+ "engTuneUp": {
667
+ "expirationMiles": 324596,
668
+ "expirationMilesText": "324,596",
669
+ "totalValueText": "150K mi",
670
+ "percentage": 0
671
+ },
672
+ "oilPump": {
673
+ "expirationMiles": 174596,
674
+ "expirationMilesText": "174,596",
675
+ "totalValueText": "300K mi",
676
+ "percentage": 0
677
+ },
678
+ "acCompressor": {
679
+ "expirationMiles": 174596,
680
+ "expirationMilesText": "174,596",
681
+ "totalValueText": "300K mi",
682
+ "percentage": 0
683
+ },
684
+ "isSelected": false
685
+ },
686
+ "FullTrailerProgressBar": {
687
+ "id": 275,
688
+ "status": 1,
689
+ "isSelected": false,
690
+ "isOwner": false,
691
+ "textShortName": "TS",
692
+ "avatarColor": {
693
+ "background": "#FFCFC0",
694
+ "color": "#FF704366"
695
+ },
696
+ "avatarImg": null,
697
+ "fullName": "Tuky Suzuky",
698
+ "tableDOB": "12/03/56",
699
+ "ssn": "999-99-9999",
700
+ "phone": "(123) 456-7894",
701
+ "email": "milan.sendbox@gmail.com",
702
+ "tableAddress": "97 North Razorback Road, Fayetteville, AR, USA",
703
+ "tableDriverType": "Company Driver",
704
+ "tablePayrollDetailType": "Per Mile",
705
+ "emptyMileSolo": "$1",
706
+ "loadedMileSolo": "$2",
707
+ "perStopSolo": null,
708
+ "perMileSolo": null,
709
+ "flatRateSolo": null,
710
+ "commissionSolo": null,
711
+ "emptyMileTeam": "$1",
712
+ "loadedMileTeam": "$2",
713
+ "perStopTeam": null,
714
+ "perMileTeam": null,
715
+ "flatRateTeam": null,
716
+ "commissionTeam": null,
717
+ "tableBankDetailBankName": "",
718
+ "tableBankDetailRouting": null,
719
+ "tableBankDetailAccount": null,
720
+ "tableOffDutyLocation": [],
721
+ "tableEmergContactName": "",
722
+ "tableEmergContactRelation": "",
723
+ "tableEmergContactPhone": "",
724
+ "tableTwicExp": null,
725
+ "tableCdlDetailNumber": "080465521",
726
+ "tableCdlDetailState": "AL",
727
+ "tableCdlDetailRestriction": null,
728
+ "tableCdlDetailEndorsment": null,
729
+ "tableCdlDetailExpiration": {
730
+ "expirationDays": 645,
731
+ "expirationDaysText": "645",
732
+ "percentage": 93.9
733
+ },
734
+ "tableTestDetailsIssued": "07/23/24",
735
+ "tableMedicalData": {
736
+ "expirationDays": null,
737
+ "expirationDaysText": null,
738
+ "percentage": null
739
+ },
740
+ "tableMvrDetailsRenewalTerm": 6,
741
+ "tableAssignedUnitTrailer": {
742
+ "text": null,
743
+ "type": null,
744
+ "hover": false
745
+ },
746
+ "tableAssignedUnitTruck": {
747
+ "text": null,
748
+ "type": null,
749
+ "hover": false
750
+ },
751
+ "tableMvrDetailsExpiration": {
752
+ "expirationDays": null,
753
+ "expirationDaysText": null,
754
+ "percentage": null
755
+ },
756
+ "tabelNotificationGeneral": "Email • Push • ",
757
+ "tabelNotificationPayroll": "Email • Push • ",
758
+ "tabelHired": "06/24/24",
759
+ "tableTerminated": null,
760
+ "tableAdded": "06/24/24",
761
+ "tableEdited": "07/05/24",
762
+ "fileCount": null,
763
+ "tableDropdownContent": {
764
+ "hasContent": true,
765
+ "content": [
766
+ {
767
+ "title": "Edit",
768
+ "name": "edit",
769
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Edit.svg",
770
+ "svgStyle": {
771
+ "width": 18,
772
+ "height": 18
773
+ },
774
+ "hasBorder": true,
775
+ "svgClass": "regular",
776
+ "mutedStyle": false
777
+ },
778
+ {
779
+ "title": "View Details",
780
+ "name": "view-details",
781
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Information.svg",
782
+ "svgStyle": {
783
+ "width": 18,
784
+ "height": 18
785
+ },
786
+ "svgClass": "regular",
787
+ "tableListDropdownContentStyle": {
788
+ "margin-bottom.px": 4
789
+ }
790
+ },
791
+ {
792
+ "title": "Send Message",
793
+ "name": "send-message",
794
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Send Message.svg",
795
+ "svgStyle": {
796
+ "width": 18,
797
+ "height": 18
798
+ },
799
+ "tableListDropdownContentStyle": {
800
+ "margin-bottom.px": 4
801
+ },
802
+ "svgClass": "regular",
803
+ "mutedStyle": false
804
+ },
805
+ {
806
+ "title": "Add New",
807
+ "name": "add-new",
808
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Show More.svg",
809
+ "svgStyle": {
810
+ "width": 15,
811
+ "height": 15
812
+ },
813
+ "svgClass": "regular",
814
+ "tableListDropdownContentStyle": {
815
+ "margin-bottom.px": 4
816
+ },
817
+ "isDropdown": true,
818
+ "insideDropdownContent": [
819
+ {
820
+ "title": "CDL",
821
+ "name": "new-licence"
822
+ },
823
+ {
824
+ "title": "Test (Drug, Alcohol)",
825
+ "name": "new-drug"
826
+ },
827
+ {
828
+ "title": "Medical-Exam",
829
+ "name": "new-medical"
830
+ },
831
+ {
832
+ "title": "MVR",
833
+ "name": "new-mvr"
834
+ }
835
+ ],
836
+ "mutedStyle": false
837
+ },
838
+ {
839
+ "title": "Request",
840
+ "name": "add-to-favourites",
841
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Show More.svg",
842
+ "svgStyle": {
843
+ "width": 15,
844
+ "height": 15
845
+ },
846
+ "svgClass": "regular",
847
+ "isDropdown": true,
848
+ "insideDropdownContent": [
849
+ {
850
+ "title": "Background-check",
851
+ "name": "background-check"
852
+ },
853
+ {
854
+ "title": "Test (Drug, Alcohol)",
855
+ "name": "test-drug"
856
+ },
857
+ {
858
+ "title": "Medical-exam",
859
+ "name": "medical-exam"
860
+ },
861
+ {
862
+ "title": "MVR",
863
+ "name": "test-mvr"
864
+ }
865
+ ],
866
+ "hasBorder": true,
867
+ "mutedStyle": false
868
+ },
869
+ {
870
+ "title": "Share",
871
+ "name": "share",
872
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Share.svg",
873
+ "svgStyle": {
874
+ "width": 18,
875
+ "height": 18
876
+ },
877
+ "svgClass": "regular",
878
+ "tableListDropdownContentStyle": {
879
+ "margin-bottom.px": 4
880
+ }
881
+ },
882
+ {
883
+ "title": "Print",
884
+ "name": "print",
885
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Print.svg",
886
+ "svgStyle": {
887
+ "width": 18,
888
+ "height": 18
889
+ },
890
+ "svgClass": "regular",
891
+ "hasBorder": true
892
+ },
893
+ {
894
+ "title": "Deactivate",
895
+ "name": "activate-item",
896
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Deactivate.svg",
897
+ "svgStyle": {
898
+ "width": 18,
899
+ "height": 18
900
+ },
901
+ "svgClass": "deactivate",
902
+ "tableListDropdownContentStyle": {
903
+ "margin-bottom.px": 4
904
+ }
905
+ },
906
+ {
907
+ "title": "Delete",
908
+ "name": "delete-item",
909
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Delete.svg",
910
+ "svgStyle": {
911
+ "width": 18,
912
+ "height": 18
913
+ },
914
+ "svgClass": "delete"
915
+ }
916
+ ]
917
+ }
918
+ },
919
+ "ExpiredTrailerProgressBar": {
920
+ "id": 268,
921
+ "status": 1,
922
+ "isSelected": false,
923
+ "isOwner": true,
924
+ "textShortName": "AA",
925
+ "avatarColor": {
926
+ "background": "#DFC2F9",
927
+ "color": "#9E47EC66"
928
+ },
929
+ "avatarImg": null,
930
+ "fullName": "Aaa Aaa",
931
+ "tableDOB": "06/27/24",
932
+ "ssn": "141-34-1245",
933
+ "phone": "(342) 342-3423",
934
+ "email": "asdasd@asd.com",
935
+ "tableAddress": "123 Meadow Lane, Coffeyville, KS, USA",
936
+ "tableOwnerDetailsType": "Company",
937
+ "tableOwnerDetailsBusinesName": "ASDAS",
938
+ "tableOwnerDetailsEin": "14-3443545",
939
+ "tablePayrollDetailType": "Commission",
940
+ "emptyMileSolo": null,
941
+ "loadedMileSolo": null,
942
+ "perStopSolo": null,
943
+ "perMileSolo": null,
944
+ "flatRateSolo": null,
945
+ "commissionSolo": "26%",
946
+ "emptyMileTeam": null,
947
+ "loadedMileTeam": null,
948
+ "perStopTeam": null,
949
+ "perMileTeam": null,
950
+ "flatRateTeam": null,
951
+ "commissionTeam": null,
952
+ "tableBankDetailBankName": "BMO Harris Bank",
953
+ "tableBankDetailRouting": "123123123",
954
+ "tableBankDetailAccount": "123123213",
955
+ "tableOffDutyLocation": [
956
+ {
957
+ "id": 145,
958
+ "nickname": "Grant South Parking",
959
+ "address": {
960
+ "city": "Coffeyville",
961
+ "state": "Kansas",
962
+ "county": "Montgomery County",
963
+ "address": "123 Meadow Lane, Coffeyville, KS, USA",
964
+ "street": "Meadow Lane",
965
+ "streetNumber": "123",
966
+ "country": "US",
967
+ "zipCode": "67337",
968
+ "stateShortName": "KS",
969
+ "addressUnit": null
970
+ }
971
+ },
972
+ {
973
+ "id": 146,
974
+ "nickname": "Central Parking",
975
+ "address": {
976
+ "city": "Coffeyville",
977
+ "state": "Kansas",
978
+ "county": "Montgomery County",
979
+ "address": "4331 County Rd 3000, Coffeyville, KS 67337, US",
980
+ "street": "County Rd 3000",
981
+ "streetNumber": "4331",
982
+ "country": "US",
983
+ "zipCode": "67337",
984
+ "stateShortName": "KS",
985
+ "addressUnit": null
986
+ }
987
+ },
988
+ {
989
+ "id": 147,
990
+ "nickname": "Home",
991
+ "address": {
992
+ "city": "Independence",
993
+ "state": "Kansas",
994
+ "county": "Montgomery County",
995
+ "address": "3551 County Rd 2800, Independence, KS 67301, US",
996
+ "street": "County Rd 2800",
997
+ "streetNumber": "3551",
998
+ "country": "US",
999
+ "zipCode": "67301",
1000
+ "stateShortName": "KS",
1001
+ "addressUnit": null
1002
+ }
1003
+ }
1004
+ ],
1005
+ "tableEmergContactName": "Aaaaa",
1006
+ "tableEmergContactRelation": "Aaa",
1007
+ "tableEmergContactPhone": "(123) 123-1231",
1008
+ "tableTwicExp": null,
1009
+ "tableCdlDetailNumber": "23423",
1010
+ "tableCdlDetailState": "CT",
1011
+ "tableCdlDetailRestriction": null,
1012
+ "tableCdlDetailEndorsment": null,
1013
+ "tableCdlDetailExpiration": {
1014
+ "expirationDays": 23,
1015
+ "expirationDaysText": "23",
1016
+ "percentage": 0
1017
+ },
1018
+ "tableTestDetailsIssued": "06/16/24",
1019
+ "tableTestDetailsType": "Drug",
1020
+ "tableTestDetailsReason": "Pre employment",
1021
+ "tableTestDetailsResult": "Negative",
1022
+ "tableMedicalData": {
1023
+ "expirationDays": 36,
1024
+ "expirationDaysText": "36",
1025
+ "percentage": 0
1026
+ },
1027
+ "tableMvrDetailsRenewalTerm": 6,
1028
+ "tableAssignedUnitTrailer": {
1029
+ "text": null,
1030
+ "type": null,
1031
+ "hover": false
1032
+ },
1033
+ "tableAssignedUnitTruck": {
1034
+ "text": null,
1035
+ "type": null,
1036
+ "hover": false
1037
+ },
1038
+ "tableMvrDetailsExpiration": {
1039
+ "expirationDays": null,
1040
+ "expirationDaysText": null,
1041
+ "percentage": null
1042
+ },
1043
+ "tabelNotificationGeneral": "Email • Push • ",
1044
+ "tabelNotificationPayroll": "Email • ",
1045
+ "tabelHired": "06/15/24",
1046
+ "tableTerminated": null,
1047
+ "tableAdded": "06/04/24",
1048
+ "tableEdited": "07/18/24",
1049
+ "fileCount": 3,
1050
+ "tableDropdownContent": {
1051
+ "hasContent": true,
1052
+ "content": [
1053
+ {
1054
+ "title": "Edit",
1055
+ "name": "edit",
1056
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Edit.svg",
1057
+ "svgStyle": {
1058
+ "width": 18,
1059
+ "height": 18
1060
+ },
1061
+ "hasBorder": true,
1062
+ "svgClass": "regular",
1063
+ "mutedStyle": false
1064
+ },
1065
+ {
1066
+ "title": "View Details",
1067
+ "name": "view-details",
1068
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Information.svg",
1069
+ "svgStyle": {
1070
+ "width": 18,
1071
+ "height": 18
1072
+ },
1073
+ "svgClass": "regular",
1074
+ "tableListDropdownContentStyle": {
1075
+ "margin-bottom.px": 4
1076
+ }
1077
+ },
1078
+ {
1079
+ "title": "Send Message",
1080
+ "name": "send-message",
1081
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Send Message.svg",
1082
+ "svgStyle": {
1083
+ "width": 18,
1084
+ "height": 18
1085
+ },
1086
+ "tableListDropdownContentStyle": {
1087
+ "margin-bottom.px": 4
1088
+ },
1089
+ "svgClass": "regular",
1090
+ "mutedStyle": false
1091
+ },
1092
+ {
1093
+ "title": "Add New",
1094
+ "name": "add-new",
1095
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Show More.svg",
1096
+ "svgStyle": {
1097
+ "width": 15,
1098
+ "height": 15
1099
+ },
1100
+ "svgClass": "regular",
1101
+ "tableListDropdownContentStyle": {
1102
+ "margin-bottom.px": 4
1103
+ },
1104
+ "isDropdown": true,
1105
+ "insideDropdownContent": [
1106
+ {
1107
+ "title": "CDL",
1108
+ "name": "new-licence"
1109
+ },
1110
+ {
1111
+ "title": "Test (Drug, Alcohol)",
1112
+ "name": "new-drug"
1113
+ },
1114
+ {
1115
+ "title": "Medical-Exam",
1116
+ "name": "new-medical"
1117
+ },
1118
+ {
1119
+ "title": "MVR",
1120
+ "name": "new-mvr"
1121
+ }
1122
+ ],
1123
+ "mutedStyle": false
1124
+ },
1125
+ {
1126
+ "title": "Request",
1127
+ "name": "add-to-favourites",
1128
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Show More.svg",
1129
+ "svgStyle": {
1130
+ "width": 15,
1131
+ "height": 15
1132
+ },
1133
+ "svgClass": "regular",
1134
+ "isDropdown": true,
1135
+ "insideDropdownContent": [
1136
+ {
1137
+ "title": "Background-check",
1138
+ "name": "background-check"
1139
+ },
1140
+ {
1141
+ "title": "Test (Drug, Alcohol)",
1142
+ "name": "test-drug"
1143
+ },
1144
+ {
1145
+ "title": "Medical-exam",
1146
+ "name": "medical-exam"
1147
+ },
1148
+ {
1149
+ "title": "MVR",
1150
+ "name": "test-mvr"
1151
+ }
1152
+ ],
1153
+ "hasBorder": true,
1154
+ "mutedStyle": false
1155
+ },
1156
+ {
1157
+ "title": "Share",
1158
+ "name": "share",
1159
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Share.svg",
1160
+ "svgStyle": {
1161
+ "width": 18,
1162
+ "height": 18
1163
+ },
1164
+ "svgClass": "regular",
1165
+ "tableListDropdownContentStyle": {
1166
+ "margin-bottom.px": 4
1167
+ }
1168
+ },
1169
+ {
1170
+ "title": "Print",
1171
+ "name": "print",
1172
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Print.svg",
1173
+ "svgStyle": {
1174
+ "width": 18,
1175
+ "height": 18
1176
+ },
1177
+ "svgClass": "regular",
1178
+ "hasBorder": true
1179
+ },
1180
+ {
1181
+ "title": "Deactivate",
1182
+ "name": "activate-item",
1183
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Deactivate.svg",
1184
+ "svgStyle": {
1185
+ "width": 18,
1186
+ "height": 18
1187
+ },
1188
+ "svgClass": "deactivate",
1189
+ "tableListDropdownContentStyle": {
1190
+ "margin-bottom.px": 4
1191
+ }
1192
+ },
1193
+ {
1194
+ "title": "Delete",
1195
+ "name": "delete-item",
1196
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Delete.svg",
1197
+ "svgStyle": {
1198
+ "width": 18,
1199
+ "height": 18
1200
+ },
1201
+ "svgClass": "delete"
1202
+ }
1203
+ ]
1204
+ }
1205
+ },
1206
+ "TwentyToFiftyTrailerProgressBar": {
1207
+ "id": 278,
1208
+ "status": 1,
1209
+ "isSelected": false,
1210
+ "isOwner": false,
1211
+ "textShortName": "BP",
1212
+ "avatarColor": {
1213
+ "background": "#F4BEBE",
1214
+ "color": "#DF3C3C66"
1215
+ },
1216
+ "avatarImg": null,
1217
+ "fullName": "Bojan Pavlovic",
1218
+ "tableDOB": "06/10/86",
1219
+ "ssn": "789-15-9061",
1220
+ "phone": "(626) 171-4600",
1221
+ "email": "bojan.pavlovic@carriera.dev",
1222
+ "tableAddress": "123 Oak Hills Drive, Coffeyville, KS, USA",
1223
+ "tableDriverType": "Company Driver",
1224
+ "tablePayrollDetailType": "Flat Rate",
1225
+ "emptyMileSolo": null,
1226
+ "loadedMileSolo": null,
1227
+ "perStopSolo": null,
1228
+ "perMileSolo": null,
1229
+ "flatRateSolo": "$123546",
1230
+ "commissionSolo": null,
1231
+ "emptyMileTeam": null,
1232
+ "loadedMileTeam": null,
1233
+ "perStopTeam": null,
1234
+ "perMileTeam": null,
1235
+ "flatRateTeam": "$12345",
1236
+ "commissionTeam": null,
1237
+ "tableBankDetailBankName": "BMO Harris Bank",
1238
+ "tableBankDetailRouting": "670114562",
1239
+ "tableBankDetailAccount": "47996242371",
1240
+ "tableOffDutyLocation": [],
1241
+ "tableEmergContactName": "Royce hagenes",
1242
+ "tableEmergContactRelation": "Brother",
1243
+ "tableEmergContactPhone": "(691) 961-6089",
1244
+ "tableTwicExp": null,
1245
+ "tableCdlDetailNumber": "455493468",
1246
+ "tableCdlDetailState": "AK",
1247
+ "tableCdlDetailRestriction": [
1248
+ {
1249
+ "code": "4",
1250
+ "description": "Telescopic Lens 4"
1251
+ }
1252
+ ],
1253
+ "tableCdlDetailEndorsment": [
1254
+ {
1255
+ "code": "F",
1256
+ "description": "Farm Class A Vehicles"
1257
+ }
1258
+ ],
1259
+ "tableCdlDetailExpiration": {
1260
+ "expirationDays": 933,
1261
+ "expirationDaysText": "933",
1262
+ "percentage": 48.42
1263
+ },
1264
+ "tableTestDetailsIssued": "03/01/24",
1265
+ "tableTestDetailsType": "Drug",
1266
+ "tableTestDetailsReason": "Random",
1267
+ "tableTestDetailsResult": "Negative",
1268
+ "tableMedicalData": {
1269
+ "expirationDays": 987,
1270
+ "expirationDaysText": "987",
1271
+ "percentage": 97.82
1272
+ },
1273
+ "tableMvrDetailsRenewalTerm": 6,
1274
+ "tableAssignedUnitTrailer": {
1275
+ "text": null,
1276
+ "type": null,
1277
+ "hover": false
1278
+ },
1279
+ "tableAssignedUnitTruck": {
1280
+ "text": null,
1281
+ "type": null,
1282
+ "hover": false
1283
+ },
1284
+ "tableMvrDetailsExpiration": {
1285
+ "expirationDays": 8,
1286
+ "expirationDaysText": "8",
1287
+ "percentage": 4.950000000000003
1288
+ },
1289
+ "tabelNotificationGeneral": "Email • Push • ",
1290
+ "tabelNotificationPayroll": "Email • Push • ",
1291
+ "tabelHired": "07/01/24",
1292
+ "tableTerminated": null,
1293
+ "tableAdded": "07/01/24",
1294
+ "tableEdited": "07/05/24",
1295
+ "fileCount": null,
1296
+ "tableDropdownContent": {
1297
+ "hasContent": true,
1298
+ "content": [
1299
+ {
1300
+ "title": "Edit",
1301
+ "name": "edit",
1302
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Edit.svg",
1303
+ "svgStyle": {
1304
+ "width": 18,
1305
+ "height": 18
1306
+ },
1307
+ "hasBorder": true,
1308
+ "svgClass": "regular",
1309
+ "mutedStyle": false
1310
+ },
1311
+ {
1312
+ "title": "View Details",
1313
+ "name": "view-details",
1314
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Information.svg",
1315
+ "svgStyle": {
1316
+ "width": 18,
1317
+ "height": 18
1318
+ },
1319
+ "svgClass": "regular",
1320
+ "tableListDropdownContentStyle": {
1321
+ "margin-bottom.px": 4
1322
+ }
1323
+ },
1324
+ {
1325
+ "title": "Send Message",
1326
+ "name": "send-message",
1327
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Send Message.svg",
1328
+ "svgStyle": {
1329
+ "width": 18,
1330
+ "height": 18
1331
+ },
1332
+ "tableListDropdownContentStyle": {
1333
+ "margin-bottom.px": 4
1334
+ },
1335
+ "svgClass": "regular",
1336
+ "mutedStyle": false
1337
+ },
1338
+ {
1339
+ "title": "Add New",
1340
+ "name": "add-new",
1341
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Show More.svg",
1342
+ "svgStyle": {
1343
+ "width": 15,
1344
+ "height": 15
1345
+ },
1346
+ "svgClass": "regular",
1347
+ "tableListDropdownContentStyle": {
1348
+ "margin-bottom.px": 4
1349
+ },
1350
+ "isDropdown": true,
1351
+ "insideDropdownContent": [
1352
+ {
1353
+ "title": "CDL",
1354
+ "name": "new-licence"
1355
+ },
1356
+ {
1357
+ "title": "Test (Drug, Alcohol)",
1358
+ "name": "new-drug"
1359
+ },
1360
+ {
1361
+ "title": "Medical-Exam",
1362
+ "name": "new-medical"
1363
+ },
1364
+ {
1365
+ "title": "MVR",
1366
+ "name": "new-mvr"
1367
+ }
1368
+ ],
1369
+ "mutedStyle": false
1370
+ },
1371
+ {
1372
+ "title": "Request",
1373
+ "name": "add-to-favourites",
1374
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Show More.svg",
1375
+ "svgStyle": {
1376
+ "width": 15,
1377
+ "height": 15
1378
+ },
1379
+ "svgClass": "regular",
1380
+ "isDropdown": true,
1381
+ "insideDropdownContent": [
1382
+ {
1383
+ "title": "Background-check",
1384
+ "name": "background-check"
1385
+ },
1386
+ {
1387
+ "title": "Test (Drug, Alcohol)",
1388
+ "name": "test-drug"
1389
+ },
1390
+ {
1391
+ "title": "Medical-exam",
1392
+ "name": "medical-exam"
1393
+ },
1394
+ {
1395
+ "title": "MVR",
1396
+ "name": "test-mvr"
1397
+ }
1398
+ ],
1399
+ "hasBorder": true,
1400
+ "mutedStyle": false
1401
+ },
1402
+ {
1403
+ "title": "Share",
1404
+ "name": "share",
1405
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Share.svg",
1406
+ "svgStyle": {
1407
+ "width": 18,
1408
+ "height": 18
1409
+ },
1410
+ "svgClass": "regular",
1411
+ "tableListDropdownContentStyle": {
1412
+ "margin-bottom.px": 4
1413
+ }
1414
+ },
1415
+ {
1416
+ "title": "Print",
1417
+ "name": "print",
1418
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Print.svg",
1419
+ "svgStyle": {
1420
+ "width": 18,
1421
+ "height": 18
1422
+ },
1423
+ "svgClass": "regular",
1424
+ "hasBorder": true
1425
+ },
1426
+ {
1427
+ "title": "Deactivate",
1428
+ "name": "activate-item",
1429
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Deactivate.svg",
1430
+ "svgStyle": {
1431
+ "width": 18,
1432
+ "height": 18
1433
+ },
1434
+ "svgClass": "deactivate",
1435
+ "tableListDropdownContentStyle": {
1436
+ "margin-bottom.px": 4
1437
+ }
1438
+ },
1439
+ {
1440
+ "title": "Delete",
1441
+ "name": "delete-item",
1442
+ "svgUrl": "assets/svg/truckassist-table/new-list-dropdown/Delete.svg",
1443
+ "svgStyle": {
1444
+ "width": 18,
1445
+ "height": 18
1446
+ },
1447
+ "svgClass": "delete"
1448
+ }
1449
+ ]
1450
+ }
1451
+ }
1452
+ }
1453
+ }