ca-components 1.3.35 → 1.3.37

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 (220) hide show
  1. package/assets/scss/icons.scss +29 -4
  2. package/assets/scss/input-dropdown-test.scss +2030 -0
  3. package/assets/scss/text-selection.scss +0 -14
  4. package/esm2022/lib/ca-components.module.mjs +8 -2
  5. package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +3 -3
  6. package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +5 -4
  7. package/esm2022/lib/components/ca-checkbox/ca-checkbox.component.mjs +2 -2
  8. package/esm2022/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.mjs +2 -2
  9. package/esm2022/lib/components/ca-comment/ca-comment.component.mjs +2 -2
  10. package/esm2022/lib/components/ca-comment/modals/comment-modal/comment-modal.component.mjs +3 -3
  11. package/esm2022/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.mjs +3 -3
  12. package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +2 -2
  13. package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +3 -3
  14. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +2 -2
  15. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +2 -2
  16. package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +2 -2
  17. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +2 -2
  18. package/esm2022/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.mjs +2 -2
  19. package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +2 -2
  20. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +2 -2
  21. package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +3 -3
  22. package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +2 -2
  23. package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +2 -2
  24. package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +2 -2
  25. package/esm2022/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.mjs +2 -2
  26. package/esm2022/lib/components/ca-input/ca-input.component.mjs +2 -2
  27. package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
  28. package/esm2022/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +2 -2
  29. package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +2 -2
  30. package/esm2022/lib/components/ca-input-note/ca-input-note.component.mjs +2 -2
  31. package/esm2022/lib/components/ca-input-test/base-classes/ca-input-event-manager.mjs +24 -0
  32. package/esm2022/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.mjs +66 -0
  33. package/esm2022/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.mjs +48 -0
  34. package/esm2022/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.mjs +63 -0
  35. package/esm2022/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +85 -0
  36. package/esm2022/lib/components/ca-input-test/config/ca-input.config.mjs +2 -0
  37. package/esm2022/lib/components/ca-input-test/config/index.mjs +2 -0
  38. package/esm2022/lib/components/ca-input-test/directives/caps-lock.directive.mjs +50 -0
  39. package/esm2022/lib/components/ca-input-test/directives/command-visible.directive.mjs +48 -0
  40. package/esm2022/lib/components/ca-input-test/directives/index.mjs +6 -0
  41. package/esm2022/lib/components/ca-input-test/directives/input-max-value.directive.mjs +53 -0
  42. package/esm2022/lib/components/ca-input-test/directives/min-max-value.directive.mjs +41 -0
  43. package/esm2022/lib/components/ca-input-test/directives/price_format.directive.mjs +41 -0
  44. package/esm2022/lib/components/ca-input-test/directives/restrict-input.directive.mjs +94 -0
  45. package/esm2022/lib/components/ca-input-test/enums/index.mjs +5 -0
  46. package/esm2022/lib/components/ca-input-test/enums/input-commands-action.enum.mjs +11 -0
  47. package/esm2022/lib/components/ca-input-test/enums/input-commands-type.enum.mjs +8 -0
  48. package/esm2022/lib/components/ca-input-test/enums/input-config-name-string.enum.mjs +9 -0
  49. package/esm2022/lib/components/ca-input-test/enums/input-string.enum.mjs +114 -0
  50. package/esm2022/lib/components/ca-input-test/enums/input-text-transform.enum.mjs +9 -0
  51. package/esm2022/lib/components/ca-input-test/input-test.component.mjs +273 -0
  52. package/esm2022/lib/components/ca-input-test/mixins/input-command.mixin.mjs +124 -0
  53. package/esm2022/lib/components/ca-input-test/mixins/input-helper.mixin.mjs +49 -0
  54. package/esm2022/lib/components/ca-input-test/mixins/restriction-pipe.mixin.mjs +34 -0
  55. package/esm2022/lib/components/ca-input-test/models/base.model.mjs +2 -0
  56. package/esm2022/lib/components/ca-input-test/models/command-click.model.mjs +2 -0
  57. package/esm2022/lib/components/ca-input-test/models/commands-event.model.mjs +2 -0
  58. package/esm2022/lib/components/ca-input-test/models/index.mjs +4 -0
  59. package/esm2022/lib/components/ca-input-test/models/label-color.model.mjs +2 -0
  60. package/esm2022/lib/components/ca-input-test/pipes/color-finder.pipe.mjs +62 -0
  61. package/esm2022/lib/components/ca-input-test/pipes/form-control.pipe.mjs +17 -0
  62. package/esm2022/lib/components/ca-input-test/pipes/index.mjs +20 -0
  63. package/esm2022/lib/components/ca-input-test/pipes/input-class.pipe.mjs +155 -0
  64. package/esm2022/lib/components/ca-input-test/pipes/input-clear-class.pipe.mjs +87 -0
  65. package/esm2022/lib/components/ca-input-test/pipes/input-container-class.pipe.mjs +58 -0
  66. package/esm2022/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.mjs +77 -0
  67. package/esm2022/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.mjs +61 -0
  68. package/esm2022/lib/components/ca-input-test/pipes/input-error.pipe.mjs +88 -0
  69. package/esm2022/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.mjs +37 -0
  70. package/esm2022/lib/components/ca-input-test/pipes/input-pattern.pipe.mjs +326 -0
  71. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.mjs +46 -0
  72. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.mjs +58 -0
  73. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.mjs +45 -0
  74. package/esm2022/lib/components/ca-input-test/pipes/input-type.pipe.mjs +25 -0
  75. package/esm2022/lib/components/ca-input-test/pipes/label-class.pipe.mjs +38 -0
  76. package/esm2022/lib/components/ca-input-test/pipes/show-clear.pipe.mjs +22 -0
  77. package/esm2022/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.mjs +26 -0
  78. package/esm2022/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
  79. package/esm2022/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.mjs +24 -0
  80. package/esm2022/lib/components/ca-input-test/pipes/show-valid-check.pipe.mjs +27 -0
  81. package/esm2022/lib/components/ca-input-test/utils/index.mjs +3 -0
  82. package/esm2022/lib/components/ca-input-test/utils/input-change-value.type.mjs +2 -0
  83. package/esm2022/lib/components/ca-input-test/utils/input-svg-routes.mjs +17 -0
  84. package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +3 -3
  85. package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +2 -2
  86. package/esm2022/lib/components/ca-modal-button/ca-modal-button.component.mjs +3 -3
  87. package/esm2022/lib/components/ca-new-filter/ca-filter-dropdown.component.mjs +3 -3
  88. package/esm2022/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.mjs +3 -3
  89. package/esm2022/lib/components/ca-new-filter/components/ca-filter-time-dropdown/ca-filter-time-dropdown.component.mjs +3 -3
  90. package/esm2022/lib/components/ca-ngx-slider/ca-ngx-slider.component.mjs +2 -2
  91. package/esm2022/lib/components/ca-note/ca-note.component.mjs +2 -2
  92. package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +2 -2
  93. package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +2 -2
  94. package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +2 -2
  95. package/esm2022/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.mjs +3 -3
  96. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +2 -2
  97. package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +3 -3
  98. package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +3 -3
  99. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +3 -3
  100. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +3 -3
  101. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +3 -3
  102. package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +3 -3
  103. package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +2 -2
  104. package/esm2022/lib/components/ca-progress-expiration/ca-progress-expiration.component.mjs +2 -2
  105. package/esm2022/lib/components/ca-rating-review/ca-rating-review.component.mjs +2 -2
  106. package/esm2022/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.mjs +2 -2
  107. package/esm2022/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.mjs +2 -2
  108. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.mjs +3 -3
  109. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +3 -3
  110. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.mjs +3 -3
  111. package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +2 -2
  112. package/esm2022/lib/components/ca-search-multiple-states/models/tab-data.model.mjs +1 -1
  113. package/esm2022/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.mjs +2 -2
  114. package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +2 -2
  115. package/esm2022/lib/components/ca-tab-switch/ca-tab-switch.component.mjs +3 -3
  116. package/esm2022/lib/components/ca-todo/ca-todo.component.mjs +3 -3
  117. package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +3 -3
  118. package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +3 -3
  119. package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +2 -2
  120. package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +3 -3
  121. package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +3 -3
  122. package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +2 -2
  123. package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +3 -3
  124. package/esm2022/lib/components/ca-vehicle-list/ca-vehicle-list.component.mjs +75 -0
  125. package/esm2022/lib/components/ca-vehicle-list/enums/index.mjs +2 -0
  126. package/esm2022/lib/components/ca-vehicle-list/enums/vehicle-list.enum.mjs +6 -0
  127. package/esm2022/lib/components/ca-vehicle-list/interfaces/index.mjs +3 -0
  128. package/esm2022/lib/components/ca-vehicle-list/interfaces/vehicle-list-actions-emit.interface.mjs +2 -0
  129. package/esm2022/lib/components/ca-vehicle-list/interfaces/vehicle-list-config.interface.mjs +2 -0
  130. package/esm2022/lib/components/ca-vehicle-list/models/index.mjs +2 -0
  131. package/esm2022/lib/components/ca-vehicle-list/models/vehicle-list.model.mjs +2 -0
  132. package/esm2022/lib/components/ca-vehicle-list/types/index.mjs +2 -0
  133. package/esm2022/lib/components/ca-vehicle-list/types/vehicle-list.type.mjs +2 -0
  134. package/esm2022/lib/components/ca-vehicle-list/utils/constants/index.mjs +2 -0
  135. package/esm2022/lib/components/ca-vehicle-list/utils/constants/vehicle-list.constants.mjs +4 -0
  136. package/esm2022/lib/components/ca-vehicle-list/utils/svg-routes/index.mjs +2 -0
  137. package/esm2022/lib/components/ca-vehicle-list/utils/svg-routes/vehicle-list-svg-routes.mjs +7 -0
  138. package/esm2022/lib/pipes/index.mjs +2 -1
  139. package/esm2022/lib/pipes/truck-trailer-color-finder.pipe.mjs +72 -0
  140. package/esm2022/public-api.mjs +7 -2
  141. package/fesm2022/ca-components.mjs +2618 -513
  142. package/fesm2022/ca-components.mjs.map +1 -1
  143. package/lib/ca-components.module.d.ts +4 -3
  144. package/lib/components/ca-input-test/base-classes/ca-input-event-manager.d.ts +16 -0
  145. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.d.ts +20 -0
  146. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts +16 -0
  147. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts +20 -0
  148. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +26 -0
  149. package/lib/components/ca-input-test/config/ca-input.config.d.ts +168 -0
  150. package/lib/components/ca-input-test/config/index.d.ts +1 -0
  151. package/lib/components/ca-input-test/directives/caps-lock.directive.d.ts +14 -0
  152. package/lib/components/ca-input-test/directives/index.d.ts +5 -0
  153. package/lib/components/ca-input-test/directives/input-max-value.directive.d.ts +12 -0
  154. package/lib/components/ca-input-test/directives/min-max-value.directive.d.ts +13 -0
  155. package/lib/components/ca-input-test/directives/price_format.directive.d.ts +11 -0
  156. package/lib/components/ca-input-test/directives/restrict-input.directive.d.ts +27 -0
  157. package/lib/components/ca-input-test/enums/index.d.ts +4 -0
  158. package/lib/components/ca-input-test/enums/input-commands-action.enum.d.ts +9 -0
  159. package/lib/components/ca-input-test/enums/input-commands-type.enum.d.ts +6 -0
  160. package/lib/components/ca-input-test/enums/input-config-name-string.enum.d.ts +7 -0
  161. package/lib/components/ca-input-test/enums/input-string.enum.d.ts +112 -0
  162. package/lib/components/ca-input-test/enums/input-text-transform.enum.d.ts +6 -0
  163. package/lib/components/{ca-input/input-test → ca-input-test}/input-test.component.d.ts +13 -12
  164. package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.d.ts +12 -0
  165. package/lib/components/ca-input-test/models/command-click.model.d.ts +5 -0
  166. package/lib/components/ca-input-test/models/commands-event.model.d.ts +5 -0
  167. package/lib/components/ca-input-test/models/index.d.ts +3 -0
  168. package/lib/components/ca-input-test/models/label-color.model.d.ts +11 -0
  169. package/lib/components/ca-input-test/pipes/color-finder.pipe.d.ts +7 -0
  170. package/lib/components/ca-input-test/pipes/form-control.pipe.d.ts +8 -0
  171. package/lib/components/ca-input-test/pipes/index.d.ts +19 -0
  172. package/lib/components/ca-input-test/pipes/input-class.pipe.d.ts +13 -0
  173. package/lib/components/ca-input-test/pipes/input-clear-class.pipe.d.ts +11 -0
  174. package/lib/components/ca-input-test/pipes/input-container-class.pipe.d.ts +11 -0
  175. package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.d.ts +11 -0
  176. package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.d.ts +11 -0
  177. package/lib/components/ca-input-test/pipes/input-error.pipe.d.ts +7 -0
  178. package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.d.ts +11 -0
  179. package/lib/components/ca-input-test/pipes/input-pattern.pipe.d.ts +38 -0
  180. package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.d.ts +11 -0
  181. package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.d.ts +12 -0
  182. package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.d.ts +11 -0
  183. package/lib/components/ca-input-test/pipes/input-type.pipe.d.ts +7 -0
  184. package/lib/components/ca-input-test/pipes/label-class.pipe.d.ts +10 -0
  185. package/lib/components/ca-input-test/pipes/show-clear.pipe.d.ts +8 -0
  186. package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.d.ts +8 -0
  187. package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.d.ts +9 -0
  188. package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.d.ts +9 -0
  189. package/lib/components/ca-input-test/pipes/show-valid-check.pipe.d.ts +9 -0
  190. package/lib/components/ca-input-test/utils/index.d.ts +2 -0
  191. package/lib/components/ca-input-test/utils/input-change-value.type.d.ts +1 -0
  192. package/lib/components/ca-input-test/utils/input-svg-routes.d.ts +16 -0
  193. package/lib/components/ca-vehicle-list/ca-vehicle-list.component.d.ts +20 -0
  194. package/lib/components/ca-vehicle-list/enums/index.d.ts +1 -0
  195. package/lib/components/ca-vehicle-list/enums/vehicle-list.enum.d.ts +4 -0
  196. package/lib/components/ca-vehicle-list/interfaces/index.d.ts +2 -0
  197. package/lib/components/ca-vehicle-list/interfaces/vehicle-list-actions-emit.interface.d.ts +5 -0
  198. package/lib/components/ca-vehicle-list/interfaces/vehicle-list-config.interface.d.ts +7 -0
  199. package/lib/components/ca-vehicle-list/models/index.d.ts +1 -0
  200. package/lib/components/ca-vehicle-list/models/vehicle-list.model.d.ts +11 -0
  201. package/lib/components/ca-vehicle-list/types/index.d.ts +1 -0
  202. package/lib/components/ca-vehicle-list/types/vehicle-list.type.d.ts +2 -0
  203. package/lib/components/ca-vehicle-list/utils/constants/index.d.ts +1 -0
  204. package/lib/components/ca-vehicle-list/utils/constants/vehicle-list.constants.d.ts +3 -0
  205. package/lib/components/ca-vehicle-list/utils/svg-routes/index.d.ts +1 -0
  206. package/lib/components/ca-vehicle-list/utils/svg-routes/vehicle-list-svg-routes.d.ts +6 -0
  207. package/lib/pipes/index.d.ts +1 -0
  208. package/lib/pipes/truck-trailer-color-finder.pipe.d.ts +7 -0
  209. package/package.json +1 -1
  210. package/public-api.d.ts +6 -1
  211. package/src/assets/ca-components/svg/common/fuel.svg +4 -0
  212. package/esm2022/lib/components/ca-input/directives/command-visible.directive.mjs +0 -48
  213. package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +0 -266
  214. package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +0 -127
  215. package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +0 -49
  216. package/esm2022/lib/components/ca-input/models/base.model.mjs +0 -2
  217. /package/lib/components/{ca-input → ca-input-test}/directives/command-visible.directive.d.ts +0 -0
  218. /package/lib/components/{ca-input → ca-input-test}/mixins/input-command.mixin.d.ts +0 -0
  219. /package/lib/components/{ca-input → ca-input-test}/mixins/input-helper.mixin.d.ts +0 -0
  220. /package/lib/components/{ca-input → ca-input-test}/models/base.model.d.ts +0 -0
@@ -0,0 +1,114 @@
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=
@@ -0,0 +1,9 @@
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