ca-components 0.0.2 → 0.0.4

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 (504) hide show
  1. package/ca-components.d.ts.map +1 -0
  2. package/esm2022/assets/json/ca-table.json +59 -0
  3. package/esm2022/assets/json/ta-detail-dropdown.json +80 -0
  4. package/esm2022/lib/animation/in-out.animation.mjs +73 -0
  5. package/esm2022/lib/animations/accordion-animation.mjs +25 -0
  6. package/esm2022/lib/animations/animation.mjs +30 -0
  7. package/esm2022/lib/animations/close-form.animation.mjs +18 -0
  8. package/esm2022/lib/animations/expand-search-button.animation.mjs +17 -0
  9. package/esm2022/lib/animations/show.animation.mjs +20 -0
  10. package/esm2022/lib/animations/tabs-modal.animation.mjs +78 -0
  11. package/esm2022/lib/ca-components.module.mjs +117 -8
  12. package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +53 -0
  13. package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +116 -0
  14. package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +2 -0
  15. package/esm2022/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.mjs +4 -0
  16. package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +37 -0
  17. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +165 -0
  18. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +541 -0
  19. package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +75 -0
  20. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +191 -0
  21. package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +131 -0
  22. package/esm2022/lib/components/ca-filters/utils/constants/status-filter.constants.mjs +19 -0
  23. package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +45 -0
  24. package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.mjs +7 -0
  25. package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.mjs +4 -0
  26. package/esm2022/lib/components/ca-input/ca-input.component.mjs +179 -0
  27. package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +55 -0
  28. package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +63 -0
  29. package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +52 -0
  30. package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +2 -0
  31. package/esm2022/lib/components/ca-input/models/label-color.model.mjs +2 -0
  32. package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +89 -0
  33. package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +76 -0
  34. package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +57 -0
  35. package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +85 -0
  36. package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +37 -0
  37. package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +57 -0
  38. package/esm2022/lib/components/ca-input/pipes/input-type.pipe.mjs +25 -0
  39. package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +32 -0
  40. package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +22 -0
  41. package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
  42. package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +27 -0
  43. package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +92 -0
  44. package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +9 -0
  45. package/esm2022/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.mjs +43 -0
  46. package/esm2022/lib/components/ca-map/ca-map.component.mjs +329 -0
  47. package/esm2022/lib/components/ca-map/enums/google-map.enum.mjs +6 -0
  48. package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +40 -0
  49. package/esm2022/lib/components/ca-map/models/map.model.mjs +2 -0
  50. package/esm2022/lib/components/ca-map/utils/helpers/map.helper.mjs +87 -0
  51. package/esm2022/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.mjs +5 -0
  52. package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +55 -0
  53. package/esm2022/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.mjs +19 -0
  54. package/esm2022/lib/components/ca-note/ca-note.component.mjs +238 -0
  55. package/esm2022/lib/components/ca-note/utils/helper/copy-paste.helper.mjs +8 -0
  56. package/esm2022/lib/components/ca-note/utils/svg-routes/note-svg-routes.mjs +6 -0
  57. package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +153 -0
  58. package/esm2022/lib/components/ca-note-container/enums/note-default-string.enum.mjs +11 -0
  59. package/esm2022/lib/components/ca-note-container/enums/note-selected-color.enum.mjs +6 -0
  60. package/esm2022/lib/components/ca-note-container/models/note-colors.model.mjs +2 -0
  61. package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +61 -0
  62. package/esm2022/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.mjs +9 -0
  63. package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +53 -0
  64. package/esm2022/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.mjs +5 -0
  65. package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +26 -0
  66. package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +44 -0
  67. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +93 -0
  68. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +103 -0
  69. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +81 -0
  70. package/esm2022/lib/components/ca-pickup-delivery-block/models/adress-model.mjs +2 -0
  71. package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +2 -0
  72. package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +2 -0
  73. package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +2 -0
  74. package/esm2022/lib/components/ca-pickup-delivery-block/models/enum-value.mjs +2 -0
  75. package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +2 -0
  76. package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +2 -0
  77. package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +2 -0
  78. package/esm2022/lib/components/ca-pickup-delivery-block/models/status-types.enum.mjs +7 -0
  79. package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +8 -0
  80. package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.mjs +25 -0
  81. package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +21 -0
  82. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.mjs +5 -0
  83. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.mjs +16 -0
  84. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.mjs +5 -0
  85. package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +5 -5
  86. package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +209 -0
  87. package/esm2022/lib/components/ca-progress-bar/models/gps-progress.model.mjs +2 -0
  88. package/esm2022/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.mjs +8 -0
  89. package/esm2022/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.mjs +4 -0
  90. package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +91 -0
  91. package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +9 -0
  92. package/esm2022/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.mjs +7 -0
  93. package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +40 -0
  94. package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +97 -0
  95. package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +2 -0
  96. package/esm2022/lib/constants/map.constant.mjs +436 -0
  97. package/esm2022/lib/directives/placeholder-directive.mjs +59 -0
  98. package/esm2022/lib/enums/load-filter-string.enum.mjs +23 -0
  99. package/esm2022/lib/enums/load-status.enum.mjs +58 -0
  100. package/esm2022/lib/models/array-status.model.mjs +2 -0
  101. package/esm2022/lib/models/card-models/card-table-data.model.mjs +2 -0
  102. package/esm2022/lib/models/color-response.mjs +2 -0
  103. package/esm2022/lib/models/dropdown.model.mjs +2 -0
  104. package/esm2022/lib/models/filter-output-params.model.mjs +2 -0
  105. package/esm2022/lib/models/filter-output.model.mjs +2 -0
  106. package/esm2022/lib/models/note-active-options.model.mjs +2 -0
  107. package/esm2022/lib/models/payroll-list-summary.model.mjs +2 -0
  108. package/esm2022/lib/models/table-models/table-body-color-label.model.mjs +2 -0
  109. package/esm2022/lib/models/time-filter.model.mjs +2 -0
  110. package/esm2022/lib/models/trailer-minimal-response.mjs +2 -0
  111. package/esm2022/lib/models/trailer-type-response.mjs +2 -0
  112. package/esm2022/lib/models/truck-minimal-response.mjs +2 -0
  113. package/esm2022/lib/models/truck-type-response.mjs +2 -0
  114. package/esm2022/lib/pipes/dropdown-load-status-color.pipe.mjs +164 -0
  115. package/esm2022/lib/pipes/format-currency.pipe.mjs +22 -0
  116. package/esm2022/lib/pipes/safe-html.pipe.mjs +18 -0
  117. package/esm2022/lib/pipes/ta-svg.pipe.mjs +30 -0
  118. package/esm2022/lib/pipes/thousand-separator.pipe.mjs +19 -0
  119. package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +19 -0
  120. package/esm2022/lib/services/truckassist-table.service.mjs +20 -0
  121. package/esm2022/lib/utils/helpers/methods-calculations.helper.mjs +153 -0
  122. package/esm2022/public-api.mjs +21 -3
  123. package/fesm2022/ca-components.mjs +1864 -9
  124. package/fesm2022/ca-components.mjs.map +1 -1
  125. package/index.d.ts +1 -0
  126. package/lib/animation/in-out.animation.d.ts +2 -0
  127. package/lib/animation/in-out.animation.d.ts.map +1 -0
  128. package/lib/animations/accordion-animation.d.ts +2 -0
  129. package/lib/animations/accordion-animation.d.ts.map +1 -0
  130. package/lib/animations/animation.d.ts +5 -0
  131. package/lib/animations/animation.d.ts.map +1 -0
  132. package/lib/animations/close-form.animation.d.ts +2 -0
  133. package/lib/animations/close-form.animation.d.ts.map +1 -0
  134. package/lib/animations/expand-search-button.animation.d.ts +2 -0
  135. package/lib/animations/expand-search-button.animation.d.ts.map +1 -0
  136. package/lib/animations/show.animation.d.ts +2 -0
  137. package/lib/animations/show.animation.d.ts.map +1 -0
  138. package/lib/animations/tabs-modal.animation.d.ts +2 -0
  139. package/lib/animations/tabs-modal.animation.d.ts.map +1 -0
  140. package/lib/ca-components.module.d.ts +19 -1
  141. package/lib/ca-components.module.d.ts.map +1 -0
  142. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +20 -0
  143. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts.map +1 -0
  144. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +36 -0
  145. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts.map +1 -0
  146. package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +20 -0
  147. package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts.map +1 -0
  148. package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts +4 -0
  149. package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts.map +1 -0
  150. package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +15 -0
  151. package/lib/components/ca-dropdown/ca-dropdown.component.d.ts.map +1 -0
  152. package/lib/components/ca-filters/ca-filter.component.d.ts +47 -0
  153. package/lib/components/ca-filters/ca-filter.component.d.ts.map +1 -0
  154. package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +79 -0
  155. package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts.map +1 -0
  156. package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +12 -0
  157. package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts.map +1 -0
  158. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +63 -0
  159. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts.map +1 -0
  160. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +34 -0
  161. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts.map +1 -0
  162. package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts +10 -0
  163. package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts.map +1 -0
  164. package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts +9 -0
  165. package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts.map +1 -0
  166. package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts +7 -0
  167. package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts.map +1 -0
  168. package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts +4 -0
  169. package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts.map +1 -0
  170. package/lib/components/ca-input/ca-input.component.d.ts +47 -0
  171. package/lib/components/ca-input/ca-input.component.d.ts.map +1 -0
  172. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +20 -0
  173. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts.map +1 -0
  174. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +21 -0
  175. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts.map +1 -0
  176. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +17 -0
  177. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts.map +1 -0
  178. package/lib/components/ca-input/config/ca-input.config.d.ts +137 -0
  179. package/lib/components/ca-input/config/ca-input.config.d.ts.map +1 -0
  180. package/lib/components/ca-input/models/label-color.model.d.ts +12 -0
  181. package/lib/components/ca-input/models/label-color.model.d.ts.map +1 -0
  182. package/lib/components/ca-input/pipes/input-class.pipe.d.ts +14 -0
  183. package/lib/components/ca-input/pipes/input-class.pipe.d.ts.map +1 -0
  184. package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +12 -0
  185. package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts.map +1 -0
  186. package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +12 -0
  187. package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts.map +1 -0
  188. package/lib/components/ca-input/pipes/input-error.pipe.d.ts +8 -0
  189. package/lib/components/ca-input/pipes/input-error.pipe.d.ts.map +1 -0
  190. package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +12 -0
  191. package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts.map +1 -0
  192. package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +13 -0
  193. package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts.map +1 -0
  194. package/lib/components/ca-input/pipes/input-type.pipe.d.ts +8 -0
  195. package/lib/components/ca-input/pipes/input-type.pipe.d.ts.map +1 -0
  196. package/lib/components/ca-input/pipes/label-class.pipe.d.ts +11 -0
  197. package/lib/components/ca-input/pipes/label-class.pipe.d.ts.map +1 -0
  198. package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +9 -0
  199. package/lib/components/ca-input/pipes/show-clear.pipe.d.ts.map +1 -0
  200. package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +10 -0
  201. package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts.map +1 -0
  202. package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +10 -0
  203. package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts.map +1 -0
  204. package/lib/components/ca-input/services/ca-input-state.service.d.ts +25 -0
  205. package/lib/components/ca-input/services/ca-input-state.service.d.ts.map +1 -0
  206. package/lib/components/ca-input/utils/input-svg-routes.d.ts +9 -0
  207. package/lib/components/ca-input/utils/input-svg-routes.d.ts.map +1 -0
  208. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts +22 -0
  209. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts.map +1 -0
  210. package/lib/components/ca-map/ca-map.component.d.ts +57 -0
  211. package/lib/components/ca-map/ca-map.component.d.ts.map +1 -0
  212. package/lib/components/ca-map/enums/google-map.enum.d.ts +5 -0
  213. package/lib/components/ca-map/enums/google-map.enum.d.ts.map +1 -0
  214. package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +34 -0
  215. package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts.map +1 -0
  216. package/lib/components/ca-map/models/map.model.d.ts +75 -0
  217. package/lib/components/ca-map/models/map.model.d.ts.map +1 -0
  218. package/lib/components/ca-map/utils/helpers/map.helper.d.ts +10 -0
  219. package/lib/components/ca-map/utils/helpers/map.helper.d.ts.map +1 -0
  220. package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts +5 -0
  221. package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts.map +1 -0
  222. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +43 -0
  223. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts.map +1 -0
  224. package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts +19 -0
  225. package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts.map +1 -0
  226. package/lib/components/ca-note/ca-note.component.d.ts +57 -0
  227. package/lib/components/ca-note/ca-note.component.d.ts.map +1 -0
  228. package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts +4 -0
  229. package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts.map +1 -0
  230. package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts +6 -0
  231. package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts.map +1 -0
  232. package/lib/components/ca-note-container/ca-note-container.component.d.ts +39 -0
  233. package/lib/components/ca-note-container/ca-note-container.component.d.ts.map +1 -0
  234. package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts +10 -0
  235. package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts.map +1 -0
  236. package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts +5 -0
  237. package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts.map +1 -0
  238. package/lib/components/ca-note-container/models/note-colors.model.d.ts +5 -0
  239. package/lib/components/ca-note-container/models/note-colors.model.d.ts.map +1 -0
  240. package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +8 -0
  241. package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts.map +1 -0
  242. package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts +9 -0
  243. package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts.map +1 -0
  244. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +21 -0
  245. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts.map +1 -0
  246. package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts +5 -0
  247. package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts.map +1 -0
  248. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +21 -0
  249. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts.map +1 -0
  250. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +20 -0
  251. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts.map +1 -0
  252. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +31 -0
  253. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts.map +1 -0
  254. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +31 -0
  255. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts.map +1 -0
  256. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +24 -0
  257. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts.map +1 -0
  258. package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts +13 -0
  259. package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts.map +1 -0
  260. package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +8 -0
  261. package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts.map +1 -0
  262. package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +14 -0
  263. package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts.map +1 -0
  264. package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +7 -0
  265. package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts.map +1 -0
  266. package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts +5 -0
  267. package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts.map +1 -0
  268. package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +19 -0
  269. package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts.map +1 -0
  270. package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +10 -0
  271. package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts.map +1 -0
  272. package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +9 -0
  273. package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts.map +1 -0
  274. package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts +6 -0
  275. package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts.map +1 -0
  276. package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +5 -0
  277. package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts.map +1 -0
  278. package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts +15 -0
  279. package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts.map +1 -0
  280. package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +10 -0
  281. package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts.map +1 -0
  282. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts +5 -0
  283. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts.map +1 -0
  284. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts +16 -0
  285. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts.map +1 -0
  286. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts +5 -0
  287. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts.map +1 -0
  288. package/lib/components/ca-profile-image/ca-profile-image.component.d.ts +2 -1
  289. package/lib/components/ca-profile-image/ca-profile-image.component.d.ts.map +1 -0
  290. package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +116 -0
  291. package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts.map +1 -0
  292. package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts +9 -0
  293. package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts.map +1 -0
  294. package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts +8 -0
  295. package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts.map +1 -0
  296. package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts +4 -0
  297. package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts.map +1 -0
  298. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +25 -0
  299. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts.map +1 -0
  300. package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +3 -0
  301. package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts.map +1 -0
  302. package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts +7 -0
  303. package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts.map +1 -0
  304. package/lib/components/ca-spinner/ca-spinner.component.d.ts +16 -0
  305. package/lib/components/ca-spinner/ca-spinner.component.d.ts.map +1 -0
  306. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +24 -0
  307. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts.map +1 -0
  308. package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +6 -0
  309. package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts.map +1 -0
  310. package/lib/constants/map.constant.d.ts +40 -0
  311. package/lib/constants/map.constant.d.ts.map +1 -0
  312. package/lib/directives/placeholder-directive.d.ts +16 -0
  313. package/lib/directives/placeholder-directive.d.ts.map +1 -0
  314. package/lib/enums/load-filter-string.enum.d.ts +17 -0
  315. package/lib/enums/load-filter-string.enum.d.ts.map +1 -0
  316. package/lib/enums/load-status.enum.d.ts +57 -0
  317. package/lib/enums/load-status.enum.d.ts.map +1 -0
  318. package/lib/models/array-status.model.d.ts +25 -0
  319. package/lib/models/array-status.model.d.ts.map +1 -0
  320. package/lib/models/card-models/card-table-data.model.d.ts +838 -0
  321. package/lib/models/card-models/card-table-data.model.d.ts.map +1 -0
  322. package/lib/models/color-response.d.ts +7 -0
  323. package/lib/models/color-response.d.ts.map +1 -0
  324. package/lib/models/dropdown.model.d.ts +5 -0
  325. package/lib/models/dropdown.model.d.ts.map +1 -0
  326. package/lib/models/filter-output-params.model.d.ts +6 -0
  327. package/lib/models/filter-output-params.model.d.ts.map +1 -0
  328. package/lib/models/filter-output.model.d.ts +7 -0
  329. package/lib/models/filter-output.model.d.ts.map +1 -0
  330. package/lib/models/note-active-options.model.d.ts +7 -0
  331. package/lib/models/note-active-options.model.d.ts.map +1 -0
  332. package/lib/models/payroll-list-summary.model.d.ts +13 -0
  333. package/lib/models/payroll-list-summary.model.d.ts.map +1 -0
  334. package/lib/models/table-models/table-body-color-label.model.d.ts +12 -0
  335. package/lib/models/table-models/table-body-color-label.model.d.ts.map +1 -0
  336. package/lib/models/time-filter.model.d.ts +8 -0
  337. package/lib/models/time-filter.model.d.ts.map +1 -0
  338. package/lib/models/trailer-minimal-response.d.ts +12 -0
  339. package/lib/models/trailer-minimal-response.d.ts.map +1 -0
  340. package/lib/models/trailer-type-response.d.ts +8 -0
  341. package/lib/models/trailer-type-response.d.ts.map +1 -0
  342. package/lib/models/truck-minimal-response.d.ts +14 -0
  343. package/lib/models/truck-minimal-response.d.ts.map +1 -0
  344. package/lib/models/truck-type-response.d.ts +7 -0
  345. package/lib/models/truck-type-response.d.ts.map +1 -0
  346. package/lib/pipes/dropdown-load-status-color.pipe.d.ts +11 -0
  347. package/lib/pipes/dropdown-load-status-color.pipe.d.ts.map +1 -0
  348. package/lib/pipes/format-currency.pipe.d.ts +8 -0
  349. package/lib/pipes/format-currency.pipe.d.ts.map +1 -0
  350. package/lib/pipes/safe-html.pipe.d.ts +11 -0
  351. package/lib/pipes/safe-html.pipe.d.ts.map +1 -0
  352. package/lib/pipes/ta-svg.pipe.d.ts +8 -0
  353. package/lib/pipes/ta-svg.pipe.d.ts.map +1 -0
  354. package/lib/pipes/thousand-separator.pipe.d.ts +8 -0
  355. package/lib/pipes/thousand-separator.pipe.d.ts.map +1 -0
  356. package/lib/pipes/thousand-to-short-format-pipe.d.ts +8 -0
  357. package/lib/pipes/thousand-to-short-format-pipe.d.ts.map +1 -0
  358. package/lib/services/truckassist-table.service.d.ts +8 -0
  359. package/lib/services/truckassist-table.service.d.ts.map +1 -0
  360. package/lib/utils/helpers/methods-calculations.helper.d.ts +16 -0
  361. package/lib/utils/helpers/methods-calculations.helper.d.ts.map +1 -0
  362. package/package.json +1 -1
  363. package/public-api.d.ts +21 -2
  364. package/public-api.d.ts.map +1 -0
  365. package/src/assets/global_style/styles.scss +45 -0
  366. package/src/assets/json/ca-dropdown.json +12 -0
  367. package/src/assets/json/ca-payroll-list-summary.json +71 -0
  368. package/src/assets/json/ca-table.json +59 -0
  369. package/src/assets/json/ta-detail-dropdown.json +80 -0
  370. package/src/assets/json/truck-trailer-progress-bar.json +1453 -0
  371. package/src/assets/json/usa-states.json +54 -0
  372. package/src/assets/kml/timezones.kml +1608 -0
  373. package/src/assets/kml/toll-roads/California.kml +55 -0
  374. package/src/assets/kml/toll-roads/Texas.kml +5079 -0
  375. package/src/assets/kml/toll-roads/florida.kml +2092 -0
  376. package/src/assets/lottie/ta-lottie-spinner/18px/black.json +1 -0
  377. package/src/assets/lottie/ta-lottie-spinner/18px/blueDark.json +1 -0
  378. package/src/assets/lottie/ta-lottie-spinner/18px/blueLight.json +1 -0
  379. package/src/assets/lottie/ta-lottie-spinner/18px/gray.json +1 -0
  380. package/src/assets/lottie/ta-lottie-spinner/18px/white.json +1 -0
  381. package/src/assets/lottie/ta-lottie-spinner/32px/black.json +1 -0
  382. package/src/assets/lottie/ta-lottie-spinner/32px/blueLight.json +1 -0
  383. package/src/assets/lottie/ta-lottie-spinner/32px/dark.json +1 -0
  384. package/src/assets/lottie/ta-lottie-spinner/32px/gray.json +1 -0
  385. package/src/assets/lottie/ta-lottie-spinner/32px/white.json +1 -0
  386. package/src/assets/scss/font-family.scss +2 -0
  387. package/src/assets/scss/font-weight.scss +36 -0
  388. package/src/assets/scss/popover.scss +112 -0
  389. package/src/assets/svg/common/calendar/arrow-left.svg +3 -0
  390. package/src/assets/svg/common/ic_confirm.svg +3 -0
  391. package/src/assets/svg/common/ic_search.svg +3 -0
  392. package/src/assets/svg/common/payroll-down-arrow.svg +3 -0
  393. package/src/assets/svg/common/payroll-up-arrow.svg +3 -0
  394. package/src/assets/svg/common/sortArrow_filter.svg +3 -0
  395. package/src/assets/svg/input/ic_confirm.svg +3 -0
  396. package/src/assets/svg/input/ic_danger.svg +3 -0
  397. package/src/assets/svg/input/ic_eye-hidden.svg +6 -0
  398. package/src/assets/svg/input/ic_eye-visible.svg +6 -0
  399. package/src/assets/svg/input/ic_password.svg +6 -0
  400. package/src/assets/svg/input/ic_remove_input.svg +7 -0
  401. package/src/assets/svg/input/ic_x.svg +4 -0
  402. package/src/assets/svg/map/18px_tooltip.svg +3 -0
  403. package/src/assets/svg/map/accident_calender.svg +3 -0
  404. package/src/assets/svg/map/accident_hazmat.svg +3 -0
  405. package/src/assets/svg/map/accident_injury.svg +3 -0
  406. package/src/assets/svg/map/accident_towing.svg +3 -0
  407. package/src/assets/svg/map/accident_vechile.svg +3 -0
  408. package/src/assets/svg/map/address.svg +3 -0
  409. package/src/assets/svg/map/arrow_corner_top.svg +3 -0
  410. package/src/assets/svg/map/calender_last_used.svg +3 -0
  411. package/src/assets/svg/map/check.svg +3 -0
  412. package/src/assets/svg/map/cluster_marker_4.svg +32 -0
  413. package/src/assets/svg/map/cluster_marker_6.svg +32 -0
  414. package/src/assets/svg/map/details_options.svg +10 -0
  415. package/src/assets/svg/map/details_options_2.svg +3 -0
  416. package/src/assets/svg/map/dislike.svg +3 -0
  417. package/src/assets/svg/map/email.svg +3 -0
  418. package/src/assets/svg/map/extended_stop_ignition.svg +11 -0
  419. package/src/assets/svg/map/gps-location.svg +4 -0
  420. package/src/assets/svg/map/gps_extended_status.svg +4 -0
  421. package/src/assets/svg/map/gps_full.svg +7 -0
  422. package/src/assets/svg/map/gps_parking_status.svg +4 -0
  423. package/src/assets/svg/map/gps_short_status.svg +4 -0
  424. package/src/assets/svg/map/gps_trailer_extended.svg +11 -0
  425. package/src/assets/svg/map/gps_trailer_moving.svg +16 -0
  426. package/src/assets/svg/map/gps_trailer_parking.svg +11 -0
  427. package/src/assets/svg/map/gps_trailer_short_stop.svg +11 -0
  428. package/src/assets/svg/map/ic_marker_office.svg +18 -0
  429. package/src/assets/svg/map/ic_pulse_circle.svg +1 -0
  430. package/src/assets/svg/map/like.svg +3 -0
  431. package/src/assets/svg/map/marker.svg +27 -0
  432. package/src/assets/svg/map/marker_2.svg +27 -0
  433. package/src/assets/svg/map/marker_3.svg +27 -0
  434. package/src/assets/svg/map/marker_4.svg +27 -0
  435. package/src/assets/svg/map/marker_5.svg +27 -0
  436. package/src/assets/svg/map/marker_cluster.svg +32 -0
  437. package/src/assets/svg/map/marker_cluster_2.svg +32 -0
  438. package/src/assets/svg/map/marker_dot.svg +18 -0
  439. package/src/assets/svg/map/marker_dot_2.svg +18 -0
  440. package/src/assets/svg/map/mask_group.svg +546 -0
  441. package/src/assets/svg/map/no_gps_status.svg +8 -0
  442. package/src/assets/svg/map/oss.svg +3 -0
  443. package/src/assets/svg/map/parking_ignition.svg +11 -0
  444. package/src/assets/svg/map/parking_trailer_ignition.svg +11 -0
  445. package/src/assets/svg/map/phone.svg +3 -0
  446. package/src/assets/svg/map/progress-marker-checked.svg +20 -0
  447. package/src/assets/svg/map/progress-marker-pickup-checked.svg +20 -0
  448. package/src/assets/svg/map/progress-marker-pickup.svg +20 -0
  449. package/src/assets/svg/map/progress_marker-pin-dark.svg +20 -0
  450. package/src/assets/svg/map/progress_marker.svg +20 -0
  451. package/src/assets/svg/map/progress_marker_reached.svg +20 -0
  452. package/src/assets/svg/map/review.svg +3 -0
  453. package/src/assets/svg/map/routing_marker.svg +19 -0
  454. package/src/assets/svg/map/short_stop_ignition.svg +11 -0
  455. package/src/assets/svg/map/short_stop_trailer_ignition.svg +16 -0
  456. package/src/assets/svg/map/telematic_marker.svg +19 -0
  457. package/src/assets/svg/map/telematic_marker_1.svg +19 -0
  458. package/src/assets/svg/map/telematic_marker_2.svg +18 -0
  459. package/src/assets/svg/map/unitView_marker.svg +20 -0
  460. package/src/assets/svg/note/Itallic.svg +3 -0
  461. package/src/assets/svg/note/Note.svg +3 -0
  462. package/src/assets/svg/note/Underline.svg +3 -0
  463. package/src/assets/svg/note/arrow.svg +3 -0
  464. package/src/assets/svg/note/bold.svg +3 -0
  465. package/src/assets/svg/note/color-picker-inverse.svg +10 -0
  466. package/src/assets/svg/note/note-empty-dark.svg +3 -0
  467. package/src/assets/svg/note/note-empty.svg +3 -0
  468. package/src/assets/svg/note/note-filled.svg +3 -0
  469. package/src/assets/svg/note/tick.svg +3 -0
  470. package/src/assets/svg/pickup-delivery/Miles.svg +3 -0
  471. package/src/assets/svg/pickup-delivery/Options.svg +3 -0
  472. package/src/assets/svg/pickup-delivery/arrowLeft.svg +10 -0
  473. package/src/assets/svg/pickup-delivery/arrowLeftHover.svg +10 -0
  474. package/src/assets/svg/pickup-delivery/arrowRight.svg +3 -0
  475. package/src/assets/svg/pickup-delivery/detailsOptions.svg +3 -0
  476. package/src/assets/svg/pickup-delivery/leftArrow.svg +3 -0
  477. package/src/assets/svg/pickup-delivery/mailIcon.svg +3 -0
  478. package/src/assets/svg/pickup-delivery/mapOptionsDark.svg +11 -0
  479. package/src/assets/svg/pickup-delivery/optionsVertical.svg +10 -0
  480. package/src/assets/svg/pickup-delivery/phoneIcon.svg +3 -0
  481. package/src/assets/svg/pickup-delivery/userIcon.svg +3 -0
  482. package/src/assets/svg/pickup-delivery/vector.svg +3 -0
  483. package/src/assets/svg/popup/Delete.svg +4 -0
  484. package/src/assets/svg/popup/Information.svg +3 -0
  485. package/src/assets/svg/popup/Minus.svg +3 -0
  486. package/src/assets/svg/popup/Print.svg +3 -0
  487. package/src/assets/svg/popup/Share.svg +3 -0
  488. package/src/assets/svg/popup/close-business-icon.svg +6 -0
  489. package/src/assets/svg/popup/delete-hover-new.svg +9 -0
  490. package/src/assets/svg/popup/edit-hover.svg +10 -0
  491. package/src/assets/svg/popup/ic_broker-user.svg +1 -0
  492. package/src/assets/svg/popup/ic_info.svg +6 -0
  493. package/src/assets/svg/popup/ic_print.svg +1 -0
  494. package/src/assets/svg/popup/resize-arrow.svg +1 -0
  495. package/src/assets/svg/popup/review-pen.svg +6 -0
  496. package/src/assets/svg/popup/share-icon.svg +6 -0
  497. package/src/assets/svg/popup/trash.svg +4 -0
  498. package/src/assets/svg/search-multiple-states/add.svg +4 -0
  499. package/src/assets/svg/search-multiple-states/clear-search.svg +4 -0
  500. package/src/assets/svg/search-multiple-states/focused-search-button.svg +3 -0
  501. package/src/assets/svg/search-multiple-states/search-button.svg +3 -0
  502. package/src/assets/svg/truckassist-table/x.svg +1 -0
  503. package/src/assets/theme/main.scss +193 -0
  504. package/src/assets/theme/variables.scss +361 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card-table-data.model.d.ts","sourceRoot":"","sources":["../../../../../projects/ca-components/src/lib/models/card-models/card-table-data.model.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ export interface ColorResponse {
2
+ id?: number;
3
+ companyId?: number | null;
4
+ name?: string | null;
5
+ code?: string | null;
6
+ }
7
+ //# sourceMappingURL=color-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"color-response.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/color-response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACtB"}
@@ -0,0 +1,5 @@
1
+ export interface IItemList {
2
+ Icon: string;
3
+ text: string;
4
+ }
5
+ //# sourceMappingURL=dropdown.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dropdown.model.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/dropdown.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd"}
@@ -0,0 +1,6 @@
1
+ export interface filterOutputWithParams {
2
+ action: string;
3
+ type: string;
4
+ filterType: string;
5
+ }
6
+ //# sourceMappingURL=filter-output-params.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-output-params.model.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/filter-output-params.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,7 @@
1
+ export interface filterOutput {
2
+ filterType: string;
3
+ action: string;
4
+ queryParams: {};
5
+ subType: string;
6
+ }
7
+ //# sourceMappingURL=filter-output.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-output.model.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/filter-output.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,EAAE,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACnB"}
@@ -0,0 +1,7 @@
1
+ export interface NoteActiveOptions {
2
+ bold: boolean;
3
+ italic: boolean;
4
+ foreColor: boolean;
5
+ underline: boolean;
6
+ }
7
+ //# sourceMappingURL=note-active-options.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"note-active-options.model.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/note-active-options.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;CACpB"}
@@ -0,0 +1,13 @@
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
+ }
13
+ //# sourceMappingURL=payroll-list-summary.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payroll-list-summary.model.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/payroll-list-summary.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,0BAA0B;IACzC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,12 @@
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
+ }
12
+ //# sourceMappingURL=table-body-color-label.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"table-body-color-label.model.d.ts","sourceRoot":"","sources":["../../../../../projects/ca-components/src/lib/models/table-models/table-body-color-label.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;CACb"}
@@ -0,0 +1,8 @@
1
+ export interface TimeFilterItem {
2
+ label: string;
3
+ }
4
+ export interface TimeFilterOptions {
5
+ label: string;
6
+ items: TimeFilterItem[];
7
+ }
8
+ //# sourceMappingURL=time-filter.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"time-filter.model.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/time-filter.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC3B,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,cAAc,EAAE,CAAC;CAC3B"}
@@ -0,0 +1,12 @@
1
+ import { TrailerTypeResponse } from "@ca-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
+ }
12
+ //# sourceMappingURL=trailer-minimal-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trailer-minimal-response.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/trailer-minimal-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AAE9E,MAAM,WAAW,sBAAsB;IACrC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,WAAW,CAAC,EAAE,mBAAmB,CAAC;IAClC,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf"}
@@ -0,0 +1,8 @@
1
+ export interface TrailerTypeResponse {
2
+ id?: number;
3
+ companyId?: number | null;
4
+ name?: string | null;
5
+ logoName?: string | null;
6
+ hasVolume?: boolean | null;
7
+ }
8
+ //# sourceMappingURL=trailer-type-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trailer-type-response.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/trailer-type-response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAC5B"}
@@ -0,0 +1,14 @@
1
+ import { ColorResponse } from "@ca-shared/models/color-response";
2
+ import { TruckTypeResponse } from "@ca-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
+ }
14
+ //# sourceMappingURL=truck-minimal-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"truck-minimal-response.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/truck-minimal-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAE1E,MAAM,WAAW,oBAAoB;IACnC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf"}
@@ -0,0 +1,7 @@
1
+ export interface TruckTypeResponse {
2
+ id?: number;
3
+ companyId?: number | null;
4
+ name?: string | null;
5
+ logoName?: string | null;
6
+ }
7
+ //# sourceMappingURL=truck-type-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"truck-type-response.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/models/truck-type-response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B"}
@@ -0,0 +1,11 @@
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
+ }
11
+ //# sourceMappingURL=dropdown-load-status-color.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dropdown-load-status-color.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/pipes/dropdown-load-status-color.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAIa,2BAA4B,YAAW,aAAa;IAC7D,SAAS,CACL,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,OAAO,GAClB;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,eAAe,CAAC,EAAE,MAAM,CAAA;KAAE;yCAJrC,2BAA2B;uCAA3B,2BAA2B;CAgJvC"}
@@ -0,0 +1,8 @@
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
+ }
8
+ //# sourceMappingURL=format-currency.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"format-currency.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/pipes/format-currency.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAIa,kBAAmB,YAAW,aAAa;IACtD,SAAS,CAAC,QAAQ,EAAE,MAAM;yCADf,kBAAkB;uCAAlB,kBAAkB;CAU9B"}
@@ -0,0 +1,11 @@
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
+ }
11
+ //# sourceMappingURL=safe-html.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"safe-html.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/pipes/safe-html.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBACa,YAAa,YAAW,aAAa;IACpC,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,YAAY;IAE3C,SAAS,CAAC,KAAK,EAAE,MAAM;yCAHZ,YAAY;uCAAZ,YAAY;CAMxB"}
@@ -0,0 +1,8 @@
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
+ }
8
+ //# sourceMappingURL=ta-svg.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ta-svg.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/pipes/ta-svg.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAIa,SAAU,YAAW,aAAa;IAC7C,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,GAAG;yCADxD,SAAS;uCAAT,SAAS;CAoBrB"}
@@ -0,0 +1,8 @@
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
+ }
8
+ //# sourceMappingURL=thousand-separator.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"thousand-separator.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/pipes/thousand-separator.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAMpD,qBAIa,qBAAsB,YAAW,aAAa;IACvD,SAAS,CAAC,KAAK,EAAE,GAAG,GAAG,GAAG;yCADjB,qBAAqB;uCAArB,qBAAqB;CAQjC"}
@@ -0,0 +1,8 @@
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
+ }
8
+ //# sourceMappingURL=thousand-to-short-format-pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"thousand-to-short-format-pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/pipes/thousand-to-short-format-pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAKpD,qBAIa,yBAA0B,YAAW,aAAa;IAC7D,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;yCADrB,yBAAyB;uCAAzB,yBAAyB;CAIrC"}
@@ -0,0 +1,8 @@
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
+ }
8
+ //# sourceMappingURL=truckassist-table.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"truckassist-table.service.d.ts","sourceRoot":"","sources":["../../../../projects/ca-components/src/lib/services/truckassist-table.service.ts"],"names":[],"mappings":";AAMA,qBAGa,uBAAuB;IAEhC,OAAO,CAAC,0BAA0B,CAAkC;IAC7D,8BAA8B,iCACc;yCAJ1C,uBAAuB;6CAAvB,uBAAuB;CAKnC"}
@@ -0,0 +1,16 @@
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
+ }
16
+ //# sourceMappingURL=methods-calculations.helper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"methods-calculations.helper.d.ts","sourceRoot":"","sources":["../../../../../projects/ca-components/src/lib/utils/helpers/methods-calculations.helper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,qBAAa,yBAAyB;IAElC,MAAM,CAAC,oBAAoB,UAChB,MAAM,eACA,eAAe,wBA4F9B;IAGF,MAAM,CAAC,oBAAoB,SAAU,MAAM,YAEzC;IAGF,MAAM,CAAC,sBAAsB,SAAU,MAAM,YAE3C;IAGF,MAAM,CAAC,4BAA4B,SACzB,MAAM,eACC,OAAO,mBAStB;IAGF,MAAM,CAAC,sBAAsB,SAAU,MAAM,UAE3C;IAGF,MAAM,CAAC,4BAA4B,SAAU,MAAM,YAEjD;IAEF,MAAM,CAAC,2BAA2B,SAAU,MAAM,QAAQ,MAAM,YAK9D;IAGF,MAAM,CAAC,mCAAmC,SAAU,IAAI,GAAG,MAAM,YAE/D;IAGF,MAAM,CAAC,yBAAyB,UAAW,MAAM,YAG/C;IAGF,MAAM,CAAC,0BAA0B,UAAW,MAAM,gBAIhD;IAGF,MAAM,CAAC,4BAA4B,UAAW,MAAM,YAQlD;IAGF,MAAM,CAAC,2CAA2C,UACvC,MAAM,cACF,OAAO,YAapB;CACL"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"
package/public-api.d.ts CHANGED
@@ -1,2 +1,21 @@
1
- export * from './lib/components/ca-profile-image/ca-profile-image.component';
2
- export * from './lib/ca-components.module';
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";
21
+ //# sourceMappingURL=public-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ca-components/src/public-api.ts"],"names":[],"mappings":"AAIA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wFAAwF,CAAC;AACvG,cAAc,gEAAgE,CAAC;AAC/E,cAAc,oEAAoE,CAAC;AACnF,cAAc,oDAAoD,CAAC;AACnE,cAAc,iDAAiD,CAAC;AAChE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wEAAwE,CAAC;AACvF,cAAc,0CAA0C,CAAC;AACzD,cAAc,4DAA4D,CAAC;AAC3E,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gEAAgE,CAAC;AAC/E,cAAc,8FAA8F,CAAC;AAC7G,cAAc,0GAA0G,CAAC;AACzH,cAAc,8EAA8E,CAAC;AAC7F,cAAc,8DAA8D,CAAC;AAC7E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,gFAAgF,CAAC;AAC/F,cAAc,kDAAkD,CAAC;AACjE,cAAc,wFAAwF,CAAC"}
@@ -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
+ }