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,6 @@
1
+ export interface ColorResponse {
2
+ id?: number;
3
+ companyId?: number | null;
4
+ name?: string | null;
5
+ code?: string | null;
6
+ }
@@ -0,0 +1,4 @@
1
+ export interface IItemList {
2
+ Icon: string;
3
+ text: string;
4
+ }
@@ -0,0 +1,5 @@
1
+ export interface filterOutputWithParams {
2
+ action: string;
3
+ type: string;
4
+ filterType: string;
5
+ }
@@ -0,0 +1,6 @@
1
+ export interface filterOutput {
2
+ filterType: string;
3
+ action: string;
4
+ queryParams: {};
5
+ subType: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ export interface NoteActiveOptions {
2
+ bold: boolean;
3
+ italic: boolean;
4
+ foreColor: boolean;
5
+ underline: boolean;
6
+ }
@@ -0,0 +1,12 @@
1
+ export interface PayrollListSummaryOverview {
2
+ text: string;
3
+ type: string;
4
+ itemCount: number;
5
+ date: string;
6
+ money: number;
7
+ moneyCounter: number;
8
+ status: string;
9
+ isExpanded?: boolean;
10
+ isOpen?: boolean;
11
+ description?: string;
12
+ }
@@ -0,0 +1,11 @@
1
+ export interface TableBodyColorLabel {
2
+ code?: string;
3
+ color?: string;
4
+ createdAt?: string;
5
+ hoverCode?: string;
6
+ name?: string;
7
+ updatedAt?: string;
8
+ colorId?: number;
9
+ count?: number;
10
+ id?: number;
11
+ }
@@ -0,0 +1,7 @@
1
+ export interface TimeFilterItem {
2
+ label: string;
3
+ }
4
+ export interface TimeFilterOptions {
5
+ label: string;
6
+ items: TimeFilterItem[];
7
+ }
@@ -0,0 +1,11 @@
1
+ import { TrailerTypeResponse } from "@shared/models/trailer-type-response";
2
+ export interface TrailerMinimalResponse {
3
+ id?: number;
4
+ trailerNumber?: string | null;
5
+ status?: number;
6
+ owner?: string | null;
7
+ trailerType?: TrailerTypeResponse;
8
+ trailerMakeName?: string | null;
9
+ model?: string | null;
10
+ year?: number;
11
+ }
@@ -0,0 +1,7 @@
1
+ export interface TrailerTypeResponse {
2
+ id?: number;
3
+ companyId?: number | null;
4
+ name?: string | null;
5
+ logoName?: string | null;
6
+ hasVolume?: boolean | null;
7
+ }
@@ -0,0 +1,13 @@
1
+ import { ColorResponse } from "@shared/models/color-response";
2
+ import { TruckTypeResponse } from "@shared/models/truck-type-response";
3
+ export interface TruckMinimalResponse {
4
+ id?: number;
5
+ truckNumber?: string | null;
6
+ status?: number;
7
+ owner?: string | null;
8
+ color?: ColorResponse;
9
+ truckType?: TruckTypeResponse;
10
+ truckMakeName?: string | null;
11
+ model?: string | null;
12
+ year?: number;
13
+ }
@@ -0,0 +1,6 @@
1
+ export interface TruckTypeResponse {
2
+ id?: number;
3
+ companyId?: number | null;
4
+ name?: string | null;
5
+ logoName?: string | null;
6
+ }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DropdownLoadStatusColorPipe implements PipeTransform {
4
+ transform(status: string, isBadge?: boolean): {
5
+ color: string;
6
+ backgroundColor?: string;
7
+ };
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownLoadStatusColorPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<DropdownLoadStatusColorPipe, "dropdownLoadStatusColor", true>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class FormatCurrencyPipe implements PipeTransform {
4
+ transform(currency: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormatCurrencyPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FormatCurrencyPipe, "formatCurrency", true>;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { DomSanitizer } from "@angular/platform-browser";
2
+ import { PipeTransform } from "@angular/core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafeHtmlPipe implements PipeTransform {
5
+ private sanitized;
6
+ constructor(sanitized: DomSanitizer);
7
+ transform(value: string): import("@angular/platform-browser").SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", true>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class TaSvgPipe implements PipeTransform {
4
+ transform(svgPath: string, folder: string, subFolder?: string): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaSvgPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TaSvgPipe, "taSvg", true>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ThousandSeparatorPipe implements PipeTransform {
4
+ transform(value: any): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThousandSeparatorPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ThousandSeparatorPipe, "thousandSeparator", true>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ThousandToShortFormatPipe implements PipeTransform {
4
+ transform(value: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThousandToShortFormatPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ThousandToShortFormatPipe, "thousandToShortFormatPipe", true>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TruckassistTableService {
3
+ private setLoadStatusFilterOptions;
4
+ currentLoadStatusFilterOptions: import("rxjs").Observable<any>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruckassistTableService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<TruckassistTableService>;
7
+ }
@@ -0,0 +1,15 @@
1
+ import { AbstractControl } from '@angular/forms';
2
+ export declare class MethodsCalculationsHelper {
3
+ static calculateParkingSlot: (value: string, formControl: AbstractControl) => number | undefined;
4
+ static convertDateToBackend: (date: string) => string;
5
+ static convertDateFromBackend: (date: string) => string;
6
+ static convertDateToTimeFromBackend: (date: string, show_am_ap?: boolean) => string | null;
7
+ static convertTimeFromBackend: (time: string) => Date;
8
+ static convertDateFromBackendToTime: (date: string) => string;
9
+ static combineDateAndTimeToBackend: (date: string, time: string) => string;
10
+ static convertDateFromBackendToDateAndTime: (date: Date | string) => string;
11
+ static convertThousanSepInNumber: (value: string) => number;
12
+ static convertNumberInThousandSep: (value: number) => string | 0;
13
+ static convertThousandToShortFormat: (value: number) => string;
14
+ static convertNumberWithCurrencyFormatterToBackend: (value: number, hasDollar?: boolean) => string;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"
package/public-api.d.ts CHANGED
@@ -1 +1,20 @@
1
- export * from './lib/components/ca-profile-image/ca-profile-image.component';
1
+ export * from "./lib/ca-components.module";
2
+ export * from "./lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component";
3
+ export * from "./lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component";
4
+ export * from "./lib/components/ca-details-dropdown/ca-details-dropdown.component";
5
+ export * from "./lib/components/ca-dropdown/ca-dropdown.component";
6
+ export * from "./lib/components/ca-filters/ca-filter.component";
7
+ export * from "./lib/components/ca-input/ca-input.component";
8
+ export * from "./lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component";
9
+ export * from "./lib/components/ca-map/ca-map.component";
10
+ export * from "./lib/components/ca-map-dropdown/ca-map-dropdown.component";
11
+ export * from "./lib/components/ca-note/ca-note.component";
12
+ export * from "./lib/components/ca-note-container/ca-note-container.component";
13
+ export * from "./lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component";
14
+ export * from "./lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component";
15
+ export * from "./lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component";
16
+ export * from "./lib/components/ca-profile-image/ca-profile-image.component";
17
+ export * from "./lib/components/ca-progress-bar/ca-progress-bar.component";
18
+ export * from "./lib/components/ca-search-multiple-states/ca-search-multiple-states.component";
19
+ export * from "./lib/components/ca-spinner/ca-spinner.component";
20
+ export * from "./lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component";
@@ -0,0 +1,45 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
2
+ @import "theme/variables.scss";
3
+
4
+ @import "/node_modules/bootstrap/dist/css/bootstrap.css";
5
+ @import "scss/font-family.scss";
6
+ @import "scss/font-weight.scss";
7
+ @import "scss/popover.scss";
8
+
9
+ /* You can add global styles to this file, and also import other style files */
10
+
11
+ * {
12
+ margin: 0;
13
+ font-family: Roboto, "Helvetica Neue", sans-serif;
14
+ }
15
+
16
+ html {
17
+ scroll-behavior: auto !important;
18
+ }
19
+
20
+ .gm-style-iw-chr,
21
+ .gm-style-iw-tc {
22
+ display: none;
23
+ }
24
+
25
+ .gm-style .gm-style-iw-c {
26
+ border-radius: 0;
27
+ }
28
+
29
+ .gm-style-iw {
30
+ overflow-y: auto !important;
31
+ overflow-x: hidden !important;
32
+ }
33
+ .gm-style-iw > div {
34
+ overflow: visible !important;
35
+ }
36
+ .infoWindow {
37
+ overflow: hidden !important;
38
+ }
39
+
40
+ .gm-style-iw-d {
41
+ max-height: 350px !important;
42
+ }
43
+ .gm-style-iw.gm-style-iw-c {
44
+ max-height: 350px !important;
45
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "options": [
3
+ { "Icon": "svg/popup/edit-hover.svg", "text": "Edit" },
4
+ { "Icon": "svg/popup/ic_info.svg", "text": "View Details" },
5
+ { "Icon": "svg/popup/ic_broker-user.svg", "text": "Add Contact" },
6
+ { "Icon": "svg/popup/review-pen.svg", "text": "Write Review" },
7
+ { "Icon": "svg/popup/share-icon.svg", "text": "Share" },
8
+ { "Icon": "svg/popup/ic_print.svg", "text": "Print" },
9
+ { "Icon": "svg/popup/close-business-icon.svg", "text": "Close Business" },
10
+ { "Icon": "svg/popup/delete-hover-new.svg", "text": "Delete" }
11
+ ]
12
+ }
@@ -0,0 +1,71 @@
1
+ {
2
+ "payrollListSummaryOverview": {
3
+ "OpenDangerPayrollList": {
4
+ "text": "Solo Driver",
5
+ "type": "Miles",
6
+ "itemCount": 17,
7
+ "date": "04/04/24",
8
+ "money": 74146.92,
9
+ "moneyCounter": 2,
10
+ "status": "danger",
11
+ "isOpen": true,
12
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
13
+ },
14
+
15
+ "OpenPositivePayrollList": {
16
+ "text": "Team Driver",
17
+ "type": "Miles",
18
+ "itemCount": 17,
19
+ "date": "04/04/24",
20
+ "money": 74146.92,
21
+ "moneyCounter": 2,
22
+ "status": "positive",
23
+ "isOpen": true,
24
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
25
+ },
26
+ "OpenSuccessPayrollList": {
27
+ "text": "Solo Driver",
28
+ "type": "Commission",
29
+ "itemCount": 17,
30
+ "date": "04/04/24",
31
+ "money": 74146.92,
32
+ "moneyCounter": 2,
33
+ "status": "success",
34
+ "isOpen": true,
35
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
36
+ },
37
+ "ClosedDangerPayrollList": {
38
+ "text": "Solo Driver",
39
+ "type": "Miles",
40
+ "itemCount": 17,
41
+ "date": "04/04/24",
42
+ "money": 74146.92,
43
+ "moneyCounter": 2,
44
+ "status": "danger",
45
+ "isOpen": false,
46
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
47
+ },
48
+ "ClosedPositivePayrollList": {
49
+ "text": "Team Driver",
50
+ "type": "Miles",
51
+ "itemCount": 17,
52
+ "date": "04/04/24",
53
+ "money": 74146.92,
54
+ "moneyCounter": 2,
55
+ "status": "positive",
56
+ "isOpen": false,
57
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
58
+ },
59
+ "ClosedSuccessPayrollList": {
60
+ "text": "Solo Driver",
61
+ "type": "Commission",
62
+ "itemCount": 17,
63
+ "date": "04/04/24",
64
+ "money": 74146.92,
65
+ "moneyCounter": 2,
66
+ "status": "success",
67
+ "isOpen": false,
68
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
69
+ }
70
+ }
71
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "CaTablePayrollList": [
3
+ {
4
+ "text": "Solo Driver",
5
+ "type": "Miles",
6
+ "itemCount": 17,
7
+ "date": "04/04/24",
8
+ "money": 74146.92,
9
+ "moneyCounter": 2,
10
+ "status": "danger",
11
+ "isOpen": true,
12
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
13
+ },
14
+ {
15
+ "text": "Team Driver",
16
+ "type": "Miles",
17
+ "itemCount": 17,
18
+ "date": "04/04/24",
19
+ "money": 74146.92,
20
+ "moneyCounter": 2,
21
+ "status": "danger",
22
+ "isOpen": true,
23
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
24
+ },
25
+ {
26
+ "text": "Solo Driver",
27
+ "type": "Commission",
28
+ "itemCount": 17,
29
+ "date": "04/04/24",
30
+ "money": 74146.92,
31
+ "moneyCounter": 2,
32
+ "status": "danger",
33
+ "isOpen": true,
34
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
35
+ },
36
+ {
37
+ "text": "Team Driver",
38
+ "type": "Driver",
39
+ "itemCount": 17,
40
+ "date": "04/04/24",
41
+ "money": 74146.92,
42
+ "moneyCounter": 2,
43
+ "status": "danger",
44
+ "isOpen": true,
45
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
46
+ },
47
+ {
48
+ "text": "Solo Driver",
49
+ "type": "Flat Rate",
50
+ "itemCount": 17,
51
+ "date": "04/04/24",
52
+ "money": 74146.92,
53
+ "moneyCounter": 2,
54
+ "status": "danger",
55
+ "isOpen": true,
56
+ "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
57
+ }
58
+ ]
59
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "taDetailDropDown": [
3
+ {
4
+ "id": 1,
5
+ "hasBorder": true,
6
+ "mutedStyle": false,
7
+ "name": "edit-cutomer-or-shipper",
8
+ "svgClass": "regular",
9
+ "svgStyle": { "height": 18, "width": 18 },
10
+ "svgUrl": "svg/popup/edit-hover.svg",
11
+ "title": "Edit"
12
+ },
13
+ {
14
+ "id": 2,
15
+ "hasBorder": false,
16
+ "mutedStyle": false,
17
+ "name": "view-details",
18
+ "svgClass": "regular",
19
+ "svgStyle": { "height": 18, "width": 18 },
20
+ "svgUrl": "svg/popup/ic_info.svg",
21
+ "title": "View Details"
22
+ },
23
+ {
24
+ "id": 3,
25
+ "mutedStyle": false,
26
+ "name": "add-contact",
27
+ "svgClass": "regular",
28
+ "svgStyle": { "height": 18, "width": 18 },
29
+ "svgUrl": "svg/popup/ic_broker-user.svg",
30
+ "title": "Add Contact"
31
+ },
32
+ {
33
+ "id": 4,
34
+ "hasBorder": true,
35
+ "mutedStyle": false,
36
+ "name": "write-review",
37
+ "svgClass": "regular",
38
+ "svgStyle": { "height": 18, "width": 18 },
39
+ "svgUrl": "svg/popup/review-pen.svg",
40
+ "title": "Write Review"
41
+ },
42
+ {
43
+ "id": 5,
44
+ "mutedStyle": false,
45
+ "name": "share",
46
+ "svgClass": "regular",
47
+ "svgStyle": { "height": 18, "width": 18 },
48
+ "svgUrl": "svg/popup/share-icon.svg",
49
+ "title": "Share"
50
+ },
51
+ {
52
+ "id": 6,
53
+ "hasBorder": true,
54
+ "mutedStyle": false,
55
+ "name": "print",
56
+ "svgClass": "regular",
57
+ "svgStyle": { "height": 18, "width": 18 },
58
+ "svgUrl": "svg/popup/ic_print.svg",
59
+ "title": "Print"
60
+ },
61
+ {
62
+ "id": 7,
63
+ "mutedStyle": false,
64
+ "name": "close-business",
65
+ "svgClass": "regular",
66
+ "svgStyle": { "height": 18, "width": 18 },
67
+ "svgUrl": "svg/popup/close-business-icon.svg",
68
+ "title": "Close Business"
69
+ },
70
+ {
71
+ "id": 8,
72
+ "mutedStyle": false,
73
+ "name": "close-business",
74
+ "svgClass": "regular",
75
+ "svgStyle": { "height": 18, "width": 18 },
76
+ "svgUrl": "svg/popup/delete-hover-new.svg",
77
+ "title": "Delete"
78
+ }
79
+ ]
80
+ }