ca-components 1.3.33 → 1.3.34

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 (298) hide show
  1. package/esm2022/lib/ca-components.module.mjs +11 -5
  2. package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +12 -11
  3. package/esm2022/lib/components/ca-checkbox/ca-checkbox.component.mjs +134 -0
  4. package/esm2022/lib/components/ca-checkbox/interfaces/column-check-action.interface.mjs +2 -0
  5. package/esm2022/lib/components/ca-checkbox/interfaces/index.mjs +2 -0
  6. package/esm2022/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.mjs +7 -0
  7. package/esm2022/lib/components/ca-checkbox/utils/svg-routes/index.mjs +2 -0
  8. package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +95 -24
  9. package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu.enum.mjs +19 -0
  10. package/esm2022/lib/components/ca-dropdown-menu/enums/index.mjs +2 -2
  11. package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-item.interface.mjs +2 -0
  12. package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-option-emit.interface.mjs +2 -0
  13. package/esm2022/lib/components/ca-dropdown-menu/interfaces/index.mjs +3 -0
  14. package/esm2022/lib/components/ca-dropdown-menu/pipes/dropdown-menu-placement-class.pipe.mjs +4 -4
  15. package/esm2022/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.mjs +21 -0
  16. package/esm2022/lib/components/ca-dropdown-menu/pipes/index.mjs +2 -1
  17. package/esm2022/lib/components/ca-input/directives/command-visible.directive.mjs +48 -0
  18. package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +266 -0
  19. package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +127 -0
  20. package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +49 -0
  21. package/esm2022/lib/components/ca-input/models/base.model.mjs +2 -0
  22. package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +5 -3
  23. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +1 -1
  24. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +1 -1
  25. package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +3 -3
  26. package/esm2022/lib/enums/dropdown-menu.enum.mjs +20 -0
  27. package/esm2022/lib/pipes/row-class.pipe.mjs +26 -0
  28. package/esm2022/lib/utils/constants/dropdown-menu-content.constants.mjs +26 -26
  29. package/esm2022/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.mjs +4 -4
  30. package/esm2022/lib/utils/helpers/dropdown-menu-content.helper.mjs +6 -6
  31. package/esm2022/public-api.mjs +3 -4
  32. package/fesm2022/ca-components.mjs +1792 -6057
  33. package/fesm2022/ca-components.mjs.map +1 -1
  34. package/lib/ca-components.module.d.ts +3 -2
  35. package/lib/components/ca-checkbox/ca-checkbox.component.d.ts +39 -0
  36. package/lib/components/ca-checkbox/interfaces/column-check-action.interface.d.ts +6 -0
  37. package/lib/components/ca-checkbox/interfaces/index.d.ts +1 -0
  38. package/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.d.ts +6 -0
  39. package/lib/components/ca-checkbox/utils/svg-routes/index.d.ts +1 -0
  40. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.d.ts +16 -7
  41. package/lib/components/ca-dropdown-menu/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +5 -2
  42. package/lib/components/ca-dropdown-menu/enums/index.d.ts +1 -1
  43. package/lib/components/ca-dropdown-menu/{models/dropdown-menu-item.model.d.ts → interfaces/dropdown-menu-item.interface.d.ts} +7 -1
  44. package/lib/components/ca-dropdown-menu/{models/dropdown-menu-option-emit.model.d.ts → interfaces/dropdown-menu-option-emit.interface.d.ts} +1 -1
  45. package/lib/components/ca-dropdown-menu/interfaces/index.d.ts +2 -0
  46. package/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.d.ts +8 -0
  47. package/lib/components/ca-dropdown-menu/pipes/index.d.ts +1 -0
  48. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  49. package/lib/components/{ca-input-test → ca-input/input-test}/input-test.component.d.ts +12 -13
  50. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +4 -4
  51. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +3 -3
  52. package/lib/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +1 -1
  53. package/lib/pipes/row-class.pipe.d.ts +7 -0
  54. package/lib/utils/constants/dropdown-menu-content.constants.d.ts +3 -3
  55. package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.d.ts +3 -3
  56. package/lib/utils/helpers/dropdown-menu-content.helper.d.ts +3 -3
  57. package/package.json +1 -1
  58. package/public-api.d.ts +2 -3
  59. package/src/assets/ca-components/svg/common/ic_carriera-logo-active.svg +4 -0
  60. package/src/assets/ca-components/svg/common/ic_carriera-logo-inactive.svg +4 -0
  61. package/src/assets/ca-components/svg/common/ic_columns.svg +8 -0
  62. package/src/assets/ca-components/svg/common/ic_disable.svg +3 -0
  63. package/assets/scss/input-dropdown-test.scss +0 -2030
  64. package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu-string.enum.mjs +0 -14
  65. package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-item.model.mjs +0 -2
  66. package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-option-emit.model.mjs +0 -2
  67. package/esm2022/lib/components/ca-dropdown-menu/models/index.mjs +0 -3
  68. package/esm2022/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.mjs +0 -351
  69. package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.mjs +0 -6
  70. package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.mjs +0 -8
  71. package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.mjs +0 -6
  72. package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.mjs +0 -6
  73. package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.mjs +0 -7
  74. package/esm2022/lib/components/ca-input-address-dropdown-test/models/address-data.model.mjs +0 -2
  75. package/esm2022/lib/components/ca-input-address-dropdown-test/models/address-list.model.mjs +0 -2
  76. package/esm2022/lib/components/ca-input-address-dropdown-test/models/command-properties.model.mjs +0 -2
  77. package/esm2022/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.mjs +0 -2
  78. package/esm2022/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.mjs +0 -2
  79. package/esm2022/lib/components/ca-input-address-dropdown-test/models/long-lat.model.mjs +0 -2
  80. package/esm2022/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.mjs +0 -2
  81. package/esm2022/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.mjs +0 -11
  82. package/esm2022/lib/components/ca-input-dropdown-test/animations/index.mjs +0 -2
  83. package/esm2022/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.mjs +0 -11
  84. package/esm2022/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.mjs +0 -692
  85. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.mjs +0 -62
  86. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.mjs +0 -72
  87. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.mjs +0 -60
  88. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.mjs +0 -62
  89. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.mjs +0 -76
  90. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.mjs +0 -58
  91. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.mjs +0 -76
  92. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.mjs +0 -41
  93. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.mjs +0 -64
  94. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.mjs +0 -38
  95. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.mjs +0 -62
  96. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.mjs +0 -37
  97. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.mjs +0 -61
  98. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.mjs +0 -49
  99. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.mjs +0 -60
  100. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.mjs +0 -49
  101. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.mjs +0 -65
  102. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.mjs +0 -58
  103. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.mjs +0 -62
  104. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.mjs +0 -63
  105. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.mjs +0 -72
  106. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.mjs +0 -56
  107. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.mjs +0 -77
  108. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.mjs +0 -58
  109. package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.mjs +0 -62
  110. package/esm2022/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.mjs +0 -6
  111. package/esm2022/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.mjs +0 -23
  112. package/esm2022/lib/components/ca-input-dropdown-test/enums/index.mjs +0 -3
  113. package/esm2022/lib/components/ca-input-dropdown-test/models/index.mjs +0 -4
  114. package/esm2022/lib/components/ca-input-dropdown-test/models/input-dropdown-option.model.mjs +0 -2
  115. package/esm2022/lib/components/ca-input-dropdown-test/models/load-modal-status.model.mjs +0 -2
  116. package/esm2022/lib/components/ca-input-dropdown-test/models/status-order.model.mjs +0 -2
  117. package/esm2022/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.mjs +0 -29
  118. package/esm2022/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.mjs +0 -73
  119. package/esm2022/lib/components/ca-input-dropdown-test/pipes/index.mjs +0 -10
  120. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.mjs +0 -27
  121. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.mjs +0 -22
  122. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.mjs +0 -18
  123. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.mjs +0 -27
  124. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.mjs +0 -25
  125. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.mjs +0 -23
  126. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.mjs +0 -25
  127. package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.mjs +0 -23
  128. package/esm2022/lib/components/ca-input-dropdown-test/utils/svg-routes/index.mjs +0 -2
  129. package/esm2022/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.mjs +0 -13
  130. package/esm2022/lib/components/ca-input-test/base-classes/ca-input-event-manager.mjs +0 -24
  131. package/esm2022/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.mjs +0 -66
  132. package/esm2022/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.mjs +0 -48
  133. package/esm2022/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.mjs +0 -63
  134. package/esm2022/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +0 -85
  135. package/esm2022/lib/components/ca-input-test/config/ca-input.config.mjs +0 -2
  136. package/esm2022/lib/components/ca-input-test/config/index.mjs +0 -2
  137. package/esm2022/lib/components/ca-input-test/directives/caps-lock.directive.mjs +0 -50
  138. package/esm2022/lib/components/ca-input-test/directives/command-visible.directive.mjs +0 -48
  139. package/esm2022/lib/components/ca-input-test/directives/index.mjs +0 -6
  140. package/esm2022/lib/components/ca-input-test/directives/input-max-value.directive.mjs +0 -53
  141. package/esm2022/lib/components/ca-input-test/directives/min-max-value.directive.mjs +0 -41
  142. package/esm2022/lib/components/ca-input-test/directives/price_format.directive.mjs +0 -41
  143. package/esm2022/lib/components/ca-input-test/directives/restrict-input.directive.mjs +0 -94
  144. package/esm2022/lib/components/ca-input-test/enums/index.mjs +0 -5
  145. package/esm2022/lib/components/ca-input-test/enums/input-commands-action.enum.mjs +0 -11
  146. package/esm2022/lib/components/ca-input-test/enums/input-commands-type.enum.mjs +0 -8
  147. package/esm2022/lib/components/ca-input-test/enums/input-config-name-string.enum.mjs +0 -9
  148. package/esm2022/lib/components/ca-input-test/enums/input-string.enum.mjs +0 -114
  149. package/esm2022/lib/components/ca-input-test/enums/input-text-transform.enum.mjs +0 -9
  150. package/esm2022/lib/components/ca-input-test/input-test.component.mjs +0 -273
  151. package/esm2022/lib/components/ca-input-test/mixins/input-command.mixin.mjs +0 -127
  152. package/esm2022/lib/components/ca-input-test/mixins/input-helper.mixin.mjs +0 -49
  153. package/esm2022/lib/components/ca-input-test/mixins/restriction-pipe.mixin.mjs +0 -34
  154. package/esm2022/lib/components/ca-input-test/models/base.model.mjs +0 -2
  155. package/esm2022/lib/components/ca-input-test/models/command-click.model.mjs +0 -2
  156. package/esm2022/lib/components/ca-input-test/models/commands-event.model.mjs +0 -2
  157. package/esm2022/lib/components/ca-input-test/models/index.mjs +0 -4
  158. package/esm2022/lib/components/ca-input-test/models/label-color.model.mjs +0 -2
  159. package/esm2022/lib/components/ca-input-test/pipes/color-finder.pipe.mjs +0 -62
  160. package/esm2022/lib/components/ca-input-test/pipes/form-control.pipe.mjs +0 -17
  161. package/esm2022/lib/components/ca-input-test/pipes/index.mjs +0 -20
  162. package/esm2022/lib/components/ca-input-test/pipes/input-class.pipe.mjs +0 -155
  163. package/esm2022/lib/components/ca-input-test/pipes/input-clear-class.pipe.mjs +0 -87
  164. package/esm2022/lib/components/ca-input-test/pipes/input-container-class.pipe.mjs +0 -58
  165. package/esm2022/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.mjs +0 -77
  166. package/esm2022/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.mjs +0 -61
  167. package/esm2022/lib/components/ca-input-test/pipes/input-error.pipe.mjs +0 -88
  168. package/esm2022/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.mjs +0 -37
  169. package/esm2022/lib/components/ca-input-test/pipes/input-pattern.pipe.mjs +0 -326
  170. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.mjs +0 -46
  171. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.mjs +0 -58
  172. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.mjs +0 -45
  173. package/esm2022/lib/components/ca-input-test/pipes/input-type.pipe.mjs +0 -25
  174. package/esm2022/lib/components/ca-input-test/pipes/label-class.pipe.mjs +0 -38
  175. package/esm2022/lib/components/ca-input-test/pipes/show-clear.pipe.mjs +0 -22
  176. package/esm2022/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.mjs +0 -26
  177. package/esm2022/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.mjs +0 -27
  178. package/esm2022/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.mjs +0 -24
  179. package/esm2022/lib/components/ca-input-test/pipes/show-valid-check.pipe.mjs +0 -27
  180. package/esm2022/lib/components/ca-input-test/utils/index.mjs +0 -3
  181. package/esm2022/lib/components/ca-input-test/utils/input-change-value.type.mjs +0 -2
  182. package/esm2022/lib/components/ca-input-test/utils/input-svg-routes.mjs +0 -17
  183. package/esm2022/lib/enums/dropdown-menu-string.enum.mjs +0 -20
  184. package/lib/components/ca-dropdown-menu/models/index.d.ts +0 -2
  185. package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.d.ts +0 -74
  186. package/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.d.ts +0 -4
  187. package/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.d.ts +0 -6
  188. package/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.d.ts +0 -4
  189. package/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.d.ts +0 -4
  190. package/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.d.ts +0 -5
  191. package/lib/components/ca-input-address-dropdown-test/models/address-data.model.d.ts +0 -10
  192. package/lib/components/ca-input-address-dropdown-test/models/address-list.model.d.ts +0 -5
  193. package/lib/components/ca-input-address-dropdown-test/models/command-properties.model.d.ts +0 -7
  194. package/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.d.ts +0 -7
  195. package/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.d.ts +0 -1
  196. package/lib/components/ca-input-address-dropdown-test/models/long-lat.model.d.ts +0 -4
  197. package/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.d.ts +0 -6
  198. package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.d.ts +0 -2
  199. package/lib/components/ca-input-dropdown-test/animations/index.d.ts +0 -1
  200. package/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.d.ts +0 -1
  201. package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.d.ts +0 -125
  202. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.d.ts +0 -20
  203. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.d.ts +0 -22
  204. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.d.ts +0 -19
  205. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.d.ts +0 -20
  206. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.d.ts +0 -27
  207. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.d.ts +0 -18
  208. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.d.ts +0 -24
  209. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.d.ts +0 -10
  210. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.d.ts +0 -18
  211. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.d.ts +0 -11
  212. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.d.ts +0 -18
  213. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.d.ts +0 -11
  214. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.d.ts +0 -18
  215. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.d.ts +0 -14
  216. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.d.ts +0 -20
  217. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.d.ts +0 -14
  218. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.d.ts +0 -20
  219. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.d.ts +0 -18
  220. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.d.ts +0 -20
  221. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.d.ts +0 -20
  222. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.d.ts +0 -22
  223. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.d.ts +0 -15
  224. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.d.ts +0 -22
  225. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.d.ts +0 -18
  226. package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.d.ts +0 -20
  227. package/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.d.ts +0 -4
  228. package/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.d.ts +0 -21
  229. package/lib/components/ca-input-dropdown-test/enums/index.d.ts +0 -2
  230. package/lib/components/ca-input-dropdown-test/models/index.d.ts +0 -3
  231. package/lib/components/ca-input-dropdown-test/models/input-dropdown-option.model.d.ts +0 -95
  232. package/lib/components/ca-input-dropdown-test/models/load-modal-status.model.d.ts +0 -5
  233. package/lib/components/ca-input-dropdown-test/models/status-order.model.d.ts +0 -4
  234. package/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.d.ts +0 -7
  235. package/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.d.ts +0 -10
  236. package/lib/components/ca-input-dropdown-test/pipes/index.d.ts +0 -9
  237. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.d.ts +0 -11
  238. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.d.ts +0 -10
  239. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.d.ts +0 -9
  240. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.d.ts +0 -11
  241. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.d.ts +0 -10
  242. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.d.ts +0 -11
  243. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.d.ts +0 -10
  244. package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.d.ts +0 -11
  245. package/lib/components/ca-input-dropdown-test/utils/svg-routes/index.d.ts +0 -1
  246. package/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.d.ts +0 -12
  247. package/lib/components/ca-input-test/base-classes/ca-input-event-manager.d.ts +0 -16
  248. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.d.ts +0 -20
  249. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts +0 -16
  250. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts +0 -20
  251. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +0 -26
  252. package/lib/components/ca-input-test/config/ca-input.config.d.ts +0 -168
  253. package/lib/components/ca-input-test/config/index.d.ts +0 -1
  254. package/lib/components/ca-input-test/directives/caps-lock.directive.d.ts +0 -14
  255. package/lib/components/ca-input-test/directives/index.d.ts +0 -5
  256. package/lib/components/ca-input-test/directives/input-max-value.directive.d.ts +0 -12
  257. package/lib/components/ca-input-test/directives/min-max-value.directive.d.ts +0 -13
  258. package/lib/components/ca-input-test/directives/price_format.directive.d.ts +0 -11
  259. package/lib/components/ca-input-test/directives/restrict-input.directive.d.ts +0 -27
  260. package/lib/components/ca-input-test/enums/index.d.ts +0 -4
  261. package/lib/components/ca-input-test/enums/input-commands-action.enum.d.ts +0 -9
  262. package/lib/components/ca-input-test/enums/input-commands-type.enum.d.ts +0 -6
  263. package/lib/components/ca-input-test/enums/input-config-name-string.enum.d.ts +0 -7
  264. package/lib/components/ca-input-test/enums/input-string.enum.d.ts +0 -112
  265. package/lib/components/ca-input-test/enums/input-text-transform.enum.d.ts +0 -6
  266. package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.d.ts +0 -12
  267. package/lib/components/ca-input-test/models/command-click.model.d.ts +0 -5
  268. package/lib/components/ca-input-test/models/commands-event.model.d.ts +0 -5
  269. package/lib/components/ca-input-test/models/index.d.ts +0 -3
  270. package/lib/components/ca-input-test/models/label-color.model.d.ts +0 -11
  271. package/lib/components/ca-input-test/pipes/color-finder.pipe.d.ts +0 -7
  272. package/lib/components/ca-input-test/pipes/form-control.pipe.d.ts +0 -8
  273. package/lib/components/ca-input-test/pipes/index.d.ts +0 -19
  274. package/lib/components/ca-input-test/pipes/input-class.pipe.d.ts +0 -13
  275. package/lib/components/ca-input-test/pipes/input-clear-class.pipe.d.ts +0 -11
  276. package/lib/components/ca-input-test/pipes/input-container-class.pipe.d.ts +0 -11
  277. package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.d.ts +0 -11
  278. package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.d.ts +0 -11
  279. package/lib/components/ca-input-test/pipes/input-error.pipe.d.ts +0 -7
  280. package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.d.ts +0 -11
  281. package/lib/components/ca-input-test/pipes/input-pattern.pipe.d.ts +0 -38
  282. package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.d.ts +0 -11
  283. package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.d.ts +0 -12
  284. package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.d.ts +0 -11
  285. package/lib/components/ca-input-test/pipes/input-type.pipe.d.ts +0 -7
  286. package/lib/components/ca-input-test/pipes/label-class.pipe.d.ts +0 -10
  287. package/lib/components/ca-input-test/pipes/show-clear.pipe.d.ts +0 -8
  288. package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.d.ts +0 -8
  289. package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.d.ts +0 -9
  290. package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.d.ts +0 -9
  291. package/lib/components/ca-input-test/pipes/show-valid-check.pipe.d.ts +0 -9
  292. package/lib/components/ca-input-test/utils/index.d.ts +0 -2
  293. package/lib/components/ca-input-test/utils/input-change-value.type.d.ts +0 -1
  294. package/lib/components/ca-input-test/utils/input-svg-routes.d.ts +0 -16
  295. /package/lib/components/{ca-input-test → ca-input}/directives/command-visible.directive.d.ts +0 -0
  296. /package/lib/components/{ca-input-test → ca-input}/mixins/input-command.mixin.d.ts +0 -0
  297. /package/lib/components/{ca-input-test → ca-input}/mixins/input-helper.mixin.d.ts +0 -0
  298. /package/lib/components/{ca-input-test → ca-input}/models/base.model.d.ts +0 -0
@@ -1,5 +0,0 @@
1
- export * from './input-commands-action.enum';
2
- export * from './input-commands-type.enum';
3
- export * from './input-config-name-string.enum';
4
- export * from './input-string.enum';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L2VudW1zL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2lucHV0LWNvbW1hbmRzLWFjdGlvbi5lbnVtJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQtY29tbWFuZHMtdHlwZS5lbnVtJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQtY29uZmlnLW5hbWUtc3RyaW5nLmVudW0nO1xuZXhwb3J0ICogZnJvbSAnLi9pbnB1dC1zdHJpbmcuZW51bSc7XG4iXX0=
@@ -1,11 +0,0 @@
1
- export var InputCommandsAction;
2
- (function (InputCommandsAction) {
3
- InputCommandsAction["DECREMENT"] = "decrement";
4
- InputCommandsAction["INCREMENT"] = "increment";
5
- InputCommandsAction["RESET"] = "reset";
6
- InputCommandsAction["CONFIRM"] = "confirm";
7
- InputCommandsAction["CANCEL"] = "cancel";
8
- InputCommandsAction["MINUS"] = "minus";
9
- InputCommandsAction["PLUS"] = "plus";
10
- })(InputCommandsAction || (InputCommandsAction = {}));
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtY29tbWFuZHMtYWN0aW9uLmVudW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L2VudW1zL2lucHV0LWNvbW1hbmRzLWFjdGlvbi5lbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLG1CQVFYO0FBUkQsV0FBWSxtQkFBbUI7SUFDN0IsOENBQXVCLENBQUE7SUFDdkIsOENBQXVCLENBQUE7SUFDdkIsc0NBQWUsQ0FBQTtJQUNmLDBDQUFtQixDQUFBO0lBQ25CLHdDQUFpQixDQUFBO0lBQ2pCLHNDQUFlLENBQUE7SUFDZixvQ0FBYSxDQUFBO0FBQ2YsQ0FBQyxFQVJXLG1CQUFtQixLQUFuQixtQkFBbUIsUUFROUIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBJbnB1dENvbW1hbmRzQWN0aW9uIHtcbiAgREVDUkVNRU5UID0gJ2RlY3JlbWVudCcsXG4gIElOQ1JFTUVOVCA9ICdpbmNyZW1lbnQnLFxuICBSRVNFVCA9ICdyZXNldCcsXG4gIENPTkZJUk0gPSAnY29uZmlybScsXG4gIENBTkNFTCA9ICdjYW5jZWwnLFxuICBNSU5VUyA9ICdtaW51cycsXG4gIFBMVVMgPSAncGx1cycsXG59XG4iXX0=
@@ -1,8 +0,0 @@
1
- export var InputCommandsType;
2
- (function (InputCommandsType) {
3
- InputCommandsType["PM_INCREMENT_DECREMENT"] = "pm-increment-decrement";
4
- InputCommandsType["INCREMENT_DECREMENT"] = "increment-decrement";
5
- InputCommandsType["CONFIRM_CANCEL"] = "confirm-cancel";
6
- InputCommandsType["MONTHS"] = "months";
7
- })(InputCommandsType || (InputCommandsType = {}));
8
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtY29tbWFuZHMtdHlwZS5lbnVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtdGVzdC9lbnVtcy9pbnB1dC1jb21tYW5kcy10eXBlLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksaUJBTVg7QUFORCxXQUFZLGlCQUFpQjtJQUMzQixzRUFBaUQsQ0FBQTtJQUNqRCxnRUFBMkMsQ0FBQTtJQUMzQyxzREFBaUMsQ0FBQTtJQUNqQyxzQ0FBaUIsQ0FBQTtBQUVuQixDQUFDLEVBTlcsaUJBQWlCLEtBQWpCLGlCQUFpQixRQU01QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIElucHV0Q29tbWFuZHNUeXBlIHtcbiAgUE1fSU5DUkVNRU5UX0RFQ1JFTUVOVCA9ICdwbS1pbmNyZW1lbnQtZGVjcmVtZW50JyxcbiAgSU5DUkVNRU5UX0RFQ1JFTUVOVCA9ICdpbmNyZW1lbnQtZGVjcmVtZW50JyxcbiAgQ09ORklSTV9DQU5DRUwgPSAnY29uZmlybS1jYW5jZWwnLFxuICBNT05USFMgPSAnbW9udGhzJyxcblxufVxuIl19
@@ -1,9 +0,0 @@
1
- export var InputConfigNameStringEnum;
2
- (function (InputConfigNameStringEnum) {
3
- InputConfigNameStringEnum["DATE_PICKER"] = "datepicker";
4
- InputConfigNameStringEnum["TIME_PICKER"] = "timepicker";
5
- InputConfigNameStringEnum["DATE_PICKER_BANK_CARD"] = "datepickerBankCard";
6
- InputConfigNameStringEnum["INPUT_DROPDOWN_BANK_NAME"] = "Input Dropdown Bank Name";
7
- InputConfigNameStringEnum["ADDRESS"] = "Address";
8
- })(InputConfigNameStringEnum || (InputConfigNameStringEnum = {}));
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtY29uZmlnLW5hbWUtc3RyaW5nLmVudW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L2VudW1zL2lucHV0LWNvbmZpZy1uYW1lLXN0cmluZy5lbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLHlCQU1YO0FBTkQsV0FBWSx5QkFBeUI7SUFDbkMsdURBQTBCLENBQUE7SUFDMUIsdURBQTBCLENBQUE7SUFDMUIseUVBQTRDLENBQUE7SUFDNUMsa0ZBQXFELENBQUE7SUFDckQsZ0RBQW1CLENBQUE7QUFDckIsQ0FBQyxFQU5XLHlCQUF5QixLQUF6Qix5QkFBeUIsUUFNcEMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBJbnB1dENvbmZpZ05hbWVTdHJpbmdFbnVtIHtcbiAgREFURV9QSUNLRVIgPSAnZGF0ZXBpY2tlcicsXG4gIFRJTUVfUElDS0VSID0gJ3RpbWVwaWNrZXInLFxuICBEQVRFX1BJQ0tFUl9CQU5LX0NBUkQgPSAnZGF0ZXBpY2tlckJhbmtDYXJkJyxcbiAgSU5QVVRfRFJPUERPV05fQkFOS19OQU1FID0gJ0lucHV0IERyb3Bkb3duIEJhbmsgTmFtZScsXG4gIEFERFJFU1MgPSAnQWRkcmVzcydcbn1cbiJdfQ==
@@ -1,114 +0,0 @@
1
- export var InputStringEnum;
2
- (function (InputStringEnum) {
3
- InputStringEnum["PHONE"] = "phone";
4
- InputStringEnum["CAPITALIZE"] = "capitalize";
5
- InputStringEnum["UPPERCASE"] = "uppercase";
6
- InputStringEnum["CAPITALIZED_CASE"] = "capitalizedcase";
7
- InputStringEnum["YEAR"] = "year";
8
- InputStringEnum["MONTHS"] = "months";
9
- InputStringEnum["AXLES"] = "axles";
10
- InputStringEnum["FULL_NAME"] = "full name";
11
- InputStringEnum["EMAIL"] = "email";
12
- InputStringEnum["INVOICE"] = "invoice";
13
- InputStringEnum["ADDRESS"] = "address";
14
- InputStringEnum["PERSONS"] = "persons";
15
- InputStringEnum["VEHICLES"] = "vehicles";
16
- InputStringEnum["PRICE_SEPARATOR"] = "price-separator";
17
- InputStringEnum["BUSINESS_NAME"] = "business name";
18
- InputStringEnum["SHOP_NAME"] = "shop name";
19
- InputStringEnum["FUEL_STOP"] = "fuel stop";
20
- InputStringEnum["PRODUCER_NAME"] = "producer name";
21
- InputStringEnum["TERMINAL_NAME"] = "terminal name";
22
- InputStringEnum["EIN"] = "ein";
23
- InputStringEnum["MC_FF"] = "mc/ff";
24
- InputStringEnum["PHONE_EXTENSION"] = "phone-extension";
25
- InputStringEnum["ACCOUNT_BANK"] = "account-bank";
26
- InputStringEnum["ROUTING_BANK"] = "routing-bank";
27
- InputStringEnum["SSN"] = "ssn";
28
- InputStringEnum["FUEL_CARD"] = "fuel-card";
29
- InputStringEnum["EMPTY_WEIGHT"] = "empty-weight";
30
- InputStringEnum["CREDIT_LIMIT"] = "credit limit";
31
- InputStringEnum["PO_BOX"] = "po box";
32
- InputStringEnum["PRICE"] = "price";
33
- InputStringEnum["TRAILER_VOLUME"] = "trailer-volume";
34
- InputStringEnum["REPAIR_ODOMETER"] = "repair-odometer";
35
- InputStringEnum["USDOT"] = "usdot";
36
- InputStringEnum["IRP"] = "irp";
37
- InputStringEnum["STARTING"] = "starting";
38
- InputStringEnum["CUSTOMER_PAY_TERM"] = "customer pay term";
39
- InputStringEnum["CUSTOMER_CREDIT"] = "customer credit";
40
- InputStringEnum["DEFAULT_BASE"] = "default base";
41
- InputStringEnum["EACH_OCCURRENCE"] = "each occurrence";
42
- InputStringEnum["DAMAGE"] = "damage";
43
- InputStringEnum["PERSONAL_ADVER_INJ"] = "personal-adver-inj";
44
- InputStringEnum["MEDICAL_EXPENSES"] = "medical expenses";
45
- InputStringEnum["BODILY_INJURY"] = "bodily injury";
46
- InputStringEnum["GENERAL_AGGREGATE"] = "general aggregate";
47
- InputStringEnum["PRODUCTS_COMP_OP_AGG"] = "products-comp-op-agg";
48
- InputStringEnum["COMBINED_SINGLE_LIMIT"] = "combined-single-limit";
49
- InputStringEnum["SINGLE_CONVEYANCE"] = "single-conveyance";
50
- InputStringEnum["DEDUCTABLE"] = "deductable";
51
- InputStringEnum["COMPREH_COLLISION"] = "compreh-collision";
52
- InputStringEnum["TRAILER_VALUE_INSURANCE_POLICY"] = "trailer-value-insurance-policy";
53
- InputStringEnum["RENT"] = "rent";
54
- InputStringEnum["SALARY"] = "salary";
55
- InputStringEnum["MILEAGE"] = "mileage";
56
- InputStringEnum["EMPTY_WEIGHT_SPACE"] = "empty weight";
57
- InputStringEnum["QTY"] = "qty";
58
- InputStringEnum["PURCHASE_PRICE"] = "purchase price";
59
- InputStringEnum["FUEL_TANK_SIZE"] = "fuel tank size";
60
- InputStringEnum["DEVICE_NO"] = "device no";
61
- InputStringEnum["WEIGHT"] = "weight";
62
- InputStringEnum["FUEL_PER_MILES"] = "fuel per miles";
63
- InputStringEnum["FUEL_PRICE_MAP"] = "fuel price map";
64
- InputStringEnum["AMOUNT"] = "amount";
65
- InputStringEnum["BOL_NO"] = "bol no.";
66
- InputStringEnum["SEAL_NO"] = "seal no.";
67
- InputStringEnum["PICKUP_NO"] = "pickup no.";
68
- InputStringEnum["CODE"] = "code";
69
- InputStringEnum["MULTI_FROM_FIRST_FROM"] = "multifromfirstfrom";
70
- InputStringEnum["MULTI_FROM_FIRST_TO"] = "multifromfirstto";
71
- InputStringEnum["MULTI_FORM_SECOND_FROM"] = "multiformsecondfrom";
72
- InputStringEnum["MULTI_FORM_SECOND_TO"] = "multiformsecondto";
73
- InputStringEnum["MULTI_FORM_THIRD_FROM"] = "multiformthirdfrom";
74
- InputStringEnum["MULTI_FORM_THIRD_TO"] = "multiformthirdto";
75
- InputStringEnum["ADDRESS_UNIT"] = "address-unit";
76
- InputStringEnum["DEPARTMENT"] = "department";
77
- InputStringEnum["VEHICLE_UNIT"] = "vehicle-unit";
78
- InputStringEnum["FIRST_NAME"] = "first name";
79
- InputStringEnum["LAST_NAME"] = "last name";
80
- InputStringEnum["BANK_NAME"] = "bank name";
81
- InputStringEnum["VIN_NUMBER"] = "vin-number";
82
- InputStringEnum["INSURANCE_POLICY"] = "insurance-policy";
83
- InputStringEnum["IFTA"] = "ifta";
84
- InputStringEnum["TRUCK_TRAILER_MODEL"] = "truck-trailer-model";
85
- InputStringEnum["LICENSE_PLATE"] = "license plate";
86
- InputStringEnum["DESCRIPTION"] = "description";
87
- InputStringEnum["ALLOW_ALL"] = "allow all";
88
- InputStringEnum["DBA_NAME"] = "dba name";
89
- InputStringEnum["PER_MILE"] = "per mile";
90
- InputStringEnum["PER_STOP"] = "per stop";
91
- InputStringEnum["FLAT_RATE"] = "flat rate";
92
- InputStringEnum["PER_LOAD"] = "per load";
93
- InputStringEnum["RELATIONSHIP"] = "relationship";
94
- InputStringEnum["SCAC"] = "scac";
95
- InputStringEnum["EMERGENCY_NAME"] = "emergency name";
96
- InputStringEnum["FULL_CONTACT_NAME"] = "full contact name";
97
- InputStringEnum["FUEL_STORE"] = "fuel-store";
98
- InputStringEnum["HOS"] = "hos";
99
- InputStringEnum["FULL_PARKING_SLOT"] = "full parking slot";
100
- InputStringEnum["PARKING_SLOT"] = "parking slot";
101
- InputStringEnum["CDL_NUMBER"] = "cdl-number";
102
- InputStringEnum["USERNAME"] = "username";
103
- InputStringEnum["NICKNAME"] = "nickname";
104
- InputStringEnum["PASSWORD"] = "password";
105
- InputStringEnum["TOLL_VALIDATION"] = "tollvalidation";
106
- InputStringEnum["PREFIX"] = "prefix";
107
- InputStringEnum["SUFFIX"] = "suffix";
108
- InputStringEnum["PARKING_NAME"] = "parking name";
109
- InputStringEnum["FILE_NAME"] = "file name";
110
- InputStringEnum["INSURER_NAME"] = "insurer name";
111
- InputStringEnum["OFFICE_NAME"] = "office name";
112
- InputStringEnum["INPUT_DROPDOWN_LABEL"] = "input dropdown label";
113
- })(InputStringEnum || (InputStringEnum = {}));
114
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtc3RyaW5nLmVudW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC10ZXN0L2VudW1zL2lucHV0LXN0cmluZy5lbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLGVBa0hYO0FBbEhELFdBQVksZUFBZTtJQUN6QixrQ0FBZSxDQUFBO0lBQ2YsNENBQXlCLENBQUE7SUFDekIsMENBQXVCLENBQUE7SUFDdkIsdURBQW9DLENBQUE7SUFDcEMsZ0NBQWEsQ0FBQTtJQUNiLG9DQUFpQixDQUFBO0lBQ2pCLGtDQUFlLENBQUE7SUFDZiwwQ0FBdUIsQ0FBQTtJQUN2QixrQ0FBZSxDQUFBO0lBQ2Ysc0NBQW1CLENBQUE7SUFDbkIsc0NBQW1CLENBQUE7SUFDbkIsc0NBQW1CLENBQUE7SUFDbkIsd0NBQXFCLENBQUE7SUFFckIsc0RBQW1DLENBQUE7SUFDbkMsa0RBQStCLENBQUE7SUFDL0IsMENBQXVCLENBQUE7SUFDdkIsMENBQXVCLENBQUE7SUFDdkIsa0RBQStCLENBQUE7SUFDL0Isa0RBQStCLENBQUE7SUFFL0IsOEJBQVcsQ0FBQTtJQUNYLGtDQUFlLENBQUE7SUFDZixzREFBbUMsQ0FBQTtJQUNuQyxnREFBNkIsQ0FBQTtJQUM3QixnREFBNkIsQ0FBQTtJQUM3Qiw4QkFBVyxDQUFBO0lBQ1gsMENBQXVCLENBQUE7SUFDdkIsZ0RBQTZCLENBQUE7SUFDN0IsZ0RBQTZCLENBQUE7SUFDN0Isb0NBQWlCLENBQUE7SUFDakIsa0NBQWUsQ0FBQTtJQUNmLG9EQUFpQyxDQUFBO0lBQ2pDLHNEQUFtQyxDQUFBO0lBQ25DLGtDQUFlLENBQUE7SUFDZiw4QkFBVyxDQUFBO0lBQ1gsd0NBQXFCLENBQUE7SUFDckIsMERBQXVDLENBQUE7SUFDdkMsc0RBQW1DLENBQUE7SUFDbkMsZ0RBQTZCLENBQUE7SUFDN0Isc0RBQW1DLENBQUE7SUFDbkMsb0NBQWlCLENBQUE7SUFDakIsNERBQXlDLENBQUE7SUFDekMsd0RBQXFDLENBQUE7SUFDckMsa0RBQStCLENBQUE7SUFDL0IsMERBQXVDLENBQUE7SUFDdkMsZ0VBQTZDLENBQUE7SUFDN0Msa0VBQStDLENBQUE7SUFDL0MsMERBQXVDLENBQUE7SUFDdkMsNENBQXlCLENBQUE7SUFDekIsMERBQXVDLENBQUE7SUFDdkMsb0ZBQWlFLENBQUE7SUFDakUsZ0NBQWEsQ0FBQTtJQUNiLG9DQUFpQixDQUFBO0lBQ2pCLHNDQUFtQixDQUFBO0lBQ25CLHNEQUFtQyxDQUFBO0lBQ25DLDhCQUFXLENBQUE7SUFDWCxvREFBaUMsQ0FBQTtJQUNqQyxvREFBaUMsQ0FBQTtJQUNqQywwQ0FBdUIsQ0FBQTtJQUN2QixvQ0FBaUIsQ0FBQTtJQUNqQixvREFBaUMsQ0FBQTtJQUNqQyxvREFBaUMsQ0FBQTtJQUNqQyxvQ0FBaUIsQ0FBQTtJQUNqQixxQ0FBa0IsQ0FBQTtJQUNsQix1Q0FBb0IsQ0FBQTtJQUNwQiwyQ0FBd0IsQ0FBQTtJQUN4QixnQ0FBYSxDQUFBO0lBQ2IsK0RBQTRDLENBQUE7SUFDNUMsMkRBQXdDLENBQUE7SUFDeEMsaUVBQThDLENBQUE7SUFDOUMsNkRBQTBDLENBQUE7SUFDMUMsK0RBQTRDLENBQUE7SUFDNUMsMkRBQXdDLENBQUE7SUFFeEMsZ0RBQTZCLENBQUE7SUFDN0IsNENBQXlCLENBQUE7SUFDekIsZ0RBQTZCLENBQUE7SUFDN0IsNENBQXlCLENBQUE7SUFDekIsMENBQXVCLENBQUE7SUFDdkIsMENBQXVCLENBQUE7SUFDdkIsNENBQXlCLENBQUE7SUFDekIsd0RBQXFDLENBQUE7SUFDckMsZ0NBQWEsQ0FBQTtJQUNiLDhEQUEyQyxDQUFBO0lBQzNDLGtEQUErQixDQUFBO0lBQy9CLDhDQUEyQixDQUFBO0lBQzNCLDBDQUF1QixDQUFBO0lBQ3ZCLHdDQUFxQixDQUFBO0lBQ3JCLHdDQUFxQixDQUFBO0lBQ3JCLHdDQUFxQixDQUFBO0lBQ3JCLDBDQUF1QixDQUFBO0lBQ3ZCLHdDQUFxQixDQUFBO0lBQ3JCLGdEQUE2QixDQUFBO0lBQzdCLGdDQUFhLENBQUE7SUFDYixvREFBaUMsQ0FBQTtJQUNqQywwREFBdUMsQ0FBQTtJQUN2Qyw0Q0FBeUIsQ0FBQTtJQUN6Qiw4QkFBVyxDQUFBO0lBQ1gsMERBQXVDLENBQUE7SUFDdkMsZ0RBQTZCLENBQUE7SUFDN0IsNENBQXlCLENBQUE7SUFDekIsd0NBQXFCLENBQUE7SUFDckIsd0NBQXFCLENBQUE7SUFDckIsd0NBQXFCLENBQUE7SUFDckIscURBQWtDLENBQUE7SUFDbEMsb0NBQWlCLENBQUE7SUFDakIsb0NBQWlCLENBQUE7SUFDakIsZ0RBQTZCLENBQUE7SUFDN0IsMENBQXVCLENBQUE7SUFDdkIsZ0RBQTZCLENBQUE7SUFDN0IsOENBQTJCLENBQUE7SUFDM0IsZ0VBQTZDLENBQUE7QUFDL0MsQ0FBQyxFQWxIVyxlQUFlLEtBQWYsZUFBZSxRQWtIMUIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBJbnB1dFN0cmluZ0VudW0ge1xuICBQSE9ORSA9ICdwaG9uZScsXG4gIENBUElUQUxJWkUgPSAnY2FwaXRhbGl6ZScsXG4gIFVQUEVSQ0FTRSA9ICd1cHBlcmNhc2UnLFxuICBDQVBJVEFMSVpFRF9DQVNFID0gJ2NhcGl0YWxpemVkY2FzZScsXG4gIFlFQVIgPSAneWVhcicsXG4gIE1PTlRIUyA9ICdtb250aHMnLFxuICBBWExFUyA9ICdheGxlcycsXG4gIEZVTExfTkFNRSA9ICdmdWxsIG5hbWUnLFxuICBFTUFJTCA9ICdlbWFpbCcsXG4gIElOVk9JQ0UgPSAnaW52b2ljZScsXG4gIEFERFJFU1MgPSAnYWRkcmVzcycsXG4gIFBFUlNPTlMgPSAncGVyc29ucycsXG4gIFZFSElDTEVTID0gJ3ZlaGljbGVzJyxcblxuICBQUklDRV9TRVBBUkFUT1IgPSAncHJpY2Utc2VwYXJhdG9yJyxcbiAgQlVTSU5FU1NfTkFNRSA9ICdidXNpbmVzcyBuYW1lJyxcbiAgU0hPUF9OQU1FID0gJ3Nob3AgbmFtZScsXG4gIEZVRUxfU1RPUCA9ICdmdWVsIHN0b3AnLFxuICBQUk9EVUNFUl9OQU1FID0gJ3Byb2R1Y2VyIG5hbWUnLFxuICBURVJNSU5BTF9OQU1FID0gJ3Rlcm1pbmFsIG5hbWUnLFxuXG4gIEVJTiA9ICdlaW4nLFxuICBNQ19GRiA9ICdtYy9mZicsXG4gIFBIT05FX0VYVEVOU0lPTiA9ICdwaG9uZS1leHRlbnNpb24nLFxuICBBQ0NPVU5UX0JBTksgPSAnYWNjb3VudC1iYW5rJyxcbiAgUk9VVElOR19CQU5LID0gJ3JvdXRpbmctYmFuaycsXG4gIFNTTiA9ICdzc24nLFxuICBGVUVMX0NBUkQgPSAnZnVlbC1jYXJkJyxcbiAgRU1QVFlfV0VJR0hUID0gJ2VtcHR5LXdlaWdodCcsXG4gIENSRURJVF9MSU1JVCA9ICdjcmVkaXQgbGltaXQnLFxuICBQT19CT1ggPSAncG8gYm94JyxcbiAgUFJJQ0UgPSAncHJpY2UnLFxuICBUUkFJTEVSX1ZPTFVNRSA9ICd0cmFpbGVyLXZvbHVtZScsXG4gIFJFUEFJUl9PRE9NRVRFUiA9ICdyZXBhaXItb2RvbWV0ZXInLFxuICBVU0RPVCA9ICd1c2RvdCcsXG4gIElSUCA9ICdpcnAnLFxuICBTVEFSVElORyA9ICdzdGFydGluZycsXG4gIENVU1RPTUVSX1BBWV9URVJNID0gJ2N1c3RvbWVyIHBheSB0ZXJtJyxcbiAgQ1VTVE9NRVJfQ1JFRElUID0gJ2N1c3RvbWVyIGNyZWRpdCcsXG4gIERFRkFVTFRfQkFTRSA9ICdkZWZhdWx0IGJhc2UnLFxuICBFQUNIX09DQ1VSUkVOQ0UgPSAnZWFjaCBvY2N1cnJlbmNlJyxcbiAgREFNQUdFID0gJ2RhbWFnZScsXG4gIFBFUlNPTkFMX0FEVkVSX0lOSiA9ICdwZXJzb25hbC1hZHZlci1pbmonLFxuICBNRURJQ0FMX0VYUEVOU0VTID0gJ21lZGljYWwgZXhwZW5zZXMnLFxuICBCT0RJTFlfSU5KVVJZID0gJ2JvZGlseSBpbmp1cnknLFxuICBHRU5FUkFMX0FHR1JFR0FURSA9ICdnZW5lcmFsIGFnZ3JlZ2F0ZScsXG4gIFBST0RVQ1RTX0NPTVBfT1BfQUdHID0gJ3Byb2R1Y3RzLWNvbXAtb3AtYWdnJyxcbiAgQ09NQklORURfU0lOR0xFX0xJTUlUID0gJ2NvbWJpbmVkLXNpbmdsZS1saW1pdCcsXG4gIFNJTkdMRV9DT05WRVlBTkNFID0gJ3NpbmdsZS1jb252ZXlhbmNlJyxcbiAgREVEVUNUQUJMRSA9ICdkZWR1Y3RhYmxlJyxcbiAgQ09NUFJFSF9DT0xMSVNJT04gPSAnY29tcHJlaC1jb2xsaXNpb24nLFxuICBUUkFJTEVSX1ZBTFVFX0lOU1VSQU5DRV9QT0xJQ1kgPSAndHJhaWxlci12YWx1ZS1pbnN1cmFuY2UtcG9saWN5JyxcbiAgUkVOVCA9ICdyZW50JyxcbiAgU0FMQVJZID0gJ3NhbGFyeScsXG4gIE1JTEVBR0UgPSAnbWlsZWFnZScsXG4gIEVNUFRZX1dFSUdIVF9TUEFDRSA9ICdlbXB0eSB3ZWlnaHQnLFxuICBRVFkgPSAncXR5JyxcbiAgUFVSQ0hBU0VfUFJJQ0UgPSAncHVyY2hhc2UgcHJpY2UnLFxuICBGVUVMX1RBTktfU0laRSA9ICdmdWVsIHRhbmsgc2l6ZScsXG4gIERFVklDRV9OTyA9ICdkZXZpY2Ugbm8nLFxuICBXRUlHSFQgPSAnd2VpZ2h0JyxcbiAgRlVFTF9QRVJfTUlMRVMgPSAnZnVlbCBwZXIgbWlsZXMnLFxuICBGVUVMX1BSSUNFX01BUCA9ICdmdWVsIHByaWNlIG1hcCcsXG4gIEFNT1VOVCA9ICdhbW91bnQnLFxuICBCT0xfTk8gPSAnYm9sIG5vLicsXG4gIFNFQUxfTk8gPSAnc2VhbCBuby4nLFxuICBQSUNLVVBfTk8gPSAncGlja3VwIG5vLicsXG4gIENPREUgPSAnY29kZScsXG4gIE1VTFRJX0ZST01fRklSU1RfRlJPTSA9ICdtdWx0aWZyb21maXJzdGZyb20nLFxuICBNVUxUSV9GUk9NX0ZJUlNUX1RPID0gJ211bHRpZnJvbWZpcnN0dG8nLFxuICBNVUxUSV9GT1JNX1NFQ09ORF9GUk9NID0gJ211bHRpZm9ybXNlY29uZGZyb20nLFxuICBNVUxUSV9GT1JNX1NFQ09ORF9UTyA9ICdtdWx0aWZvcm1zZWNvbmR0bycsXG4gIE1VTFRJX0ZPUk1fVEhJUkRfRlJPTSA9ICdtdWx0aWZvcm10aGlyZGZyb20nLFxuICBNVUxUSV9GT1JNX1RISVJEX1RPID0gJ211bHRpZm9ybXRoaXJkdG8nLFxuXG4gIEFERFJFU1NfVU5JVCA9ICdhZGRyZXNzLXVuaXQnLFxuICBERVBBUlRNRU5UID0gJ2RlcGFydG1lbnQnLFxuICBWRUhJQ0xFX1VOSVQgPSAndmVoaWNsZS11bml0JyxcbiAgRklSU1RfTkFNRSA9ICdmaXJzdCBuYW1lJyxcbiAgTEFTVF9OQU1FID0gJ2xhc3QgbmFtZScsXG4gIEJBTktfTkFNRSA9ICdiYW5rIG5hbWUnLFxuICBWSU5fTlVNQkVSID0gJ3Zpbi1udW1iZXInLFxuICBJTlNVUkFOQ0VfUE9MSUNZID0gJ2luc3VyYW5jZS1wb2xpY3knLFxuICBJRlRBID0gJ2lmdGEnLFxuICBUUlVDS19UUkFJTEVSX01PREVMID0gJ3RydWNrLXRyYWlsZXItbW9kZWwnLFxuICBMSUNFTlNFX1BMQVRFID0gJ2xpY2Vuc2UgcGxhdGUnLFxuICBERVNDUklQVElPTiA9ICdkZXNjcmlwdGlvbicsXG4gIEFMTE9XX0FMTCA9ICdhbGxvdyBhbGwnLFxuICBEQkFfTkFNRSA9ICdkYmEgbmFtZScsXG4gIFBFUl9NSUxFID0gJ3BlciBtaWxlJyxcbiAgUEVSX1NUT1AgPSAncGVyIHN0b3AnLFxuICBGTEFUX1JBVEUgPSAnZmxhdCByYXRlJyxcbiAgUEVSX0xPQUQgPSAncGVyIGxvYWQnLFxuICBSRUxBVElPTlNISVAgPSAncmVsYXRpb25zaGlwJyxcbiAgU0NBQyA9ICdzY2FjJyxcbiAgRU1FUkdFTkNZX05BTUUgPSAnZW1lcmdlbmN5IG5hbWUnLFxuICBGVUxMX0NPTlRBQ1RfTkFNRSA9ICdmdWxsIGNvbnRhY3QgbmFtZScsXG4gIEZVRUxfU1RPUkUgPSAnZnVlbC1zdG9yZScsXG4gIEhPUyA9ICdob3MnLFxuICBGVUxMX1BBUktJTkdfU0xPVCA9ICdmdWxsIHBhcmtpbmcgc2xvdCcsXG4gIFBBUktJTkdfU0xPVCA9ICdwYXJraW5nIHNsb3QnLFxuICBDRExfTlVNQkVSID0gJ2NkbC1udW1iZXInLFxuICBVU0VSTkFNRSA9ICd1c2VybmFtZScsXG4gIE5JQ0tOQU1FID0gJ25pY2tuYW1lJyxcbiAgUEFTU1dPUkQgPSAncGFzc3dvcmQnLFxuICBUT0xMX1ZBTElEQVRJT04gPSAndG9sbHZhbGlkYXRpb24nLFxuICBQUkVGSVggPSAncHJlZml4JyxcbiAgU1VGRklYID0gJ3N1ZmZpeCcsXG4gIFBBUktJTkdfTkFNRSA9ICdwYXJraW5nIG5hbWUnLFxuICBGSUxFX05BTUUgPSAnZmlsZSBuYW1lJyxcbiAgSU5TVVJFUl9OQU1FID0gJ2luc3VyZXIgbmFtZScsXG4gIE9GRklDRV9OQU1FID0gJ29mZmljZSBuYW1lJyxcbiAgSU5QVVRfRFJPUERPV05fTEFCRUwgPSAnaW5wdXQgZHJvcGRvd24gbGFiZWwnXG59XG4iXX0=
@@ -1,9 +0,0 @@
1
- export var InputTransformStringEnum;
2
- (function (InputTransformStringEnum) {
3
- InputTransformStringEnum["CAPITALIZE"] = "capitalize";
4
- InputTransformStringEnum["UPPERCASE"] = "uppercase";
5
- InputTransformStringEnum["CAPITALIZED_CASE"] = "capitalizedcase";
6
- InputTransformStringEnum["LOWERCASE"] = "lowercase";
7
- })(InputTransformStringEnum || (InputTransformStringEnum = {}));
8
- ;
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtdGV4dC10cmFuc2Zvcm0uZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LXRlc3QvZW51bXMvaW5wdXQtdGV4dC10cmFuc2Zvcm0uZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSx3QkFLWDtBQUxELFdBQVksd0JBQXdCO0lBQ2hDLHFEQUF5QixDQUFBO0lBQ3pCLG1EQUF1QixDQUFBO0lBQ3ZCLGdFQUFvQyxDQUFBO0lBQ3BDLG1EQUF1QixDQUFBO0FBQzNCLENBQUMsRUFMVyx3QkFBd0IsS0FBeEIsd0JBQXdCLFFBS25DO0FBQUEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIElucHV0VHJhbnNmb3JtU3RyaW5nRW51bSB7XG4gICAgQ0FQSVRBTElaRSA9ICdjYXBpdGFsaXplJyxcbiAgICBVUFBFUkNBU0UgPSAndXBwZXJjYXNlJyxcbiAgICBDQVBJVEFMSVpFRF9DQVNFID0gJ2NhcGl0YWxpemVkY2FzZScsXG4gICAgTE9XRVJDQVNFID0gJ2xvd2VyY2FzZSdcbn07Il19