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,10 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { OptionModel } from '../models';
3
- import * as i0 from "@angular/core";
4
- export declare class InputDropdownFuelFranchiseClassPipe implements PipeTransform {
5
- transform(option: OptionModel, options: OptionModel[]): {
6
- [key: string]: boolean | undefined;
7
- };
8
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownFuelFranchiseClassPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownFuelFranchiseClassPipe, "inputDropdownFuelFranchiseClass", true>;
10
- }
@@ -1,9 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { ICaInputWithDropdown } from '../../ca-input/config';
3
- import { OptionModel } from '../models';
4
- import * as i0 from "@angular/core";
5
- export declare class InputDropdownGetIconsPipe implements PipeTransform {
6
- transform(option: ICaInputWithDropdown, activeItem: OptionModel | null): string;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownGetIconsPipe, never>;
8
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownGetIconsPipe, "inputDropdownGetIcons", true>;
9
- }
@@ -1,11 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { ICaInput } from '../../ca-input-test/config';
3
- import { OptionModel } from '../models';
4
- import * as i0 from "@angular/core";
5
- export declare class InputDropdownLabelClassPipe implements PipeTransform {
6
- transform(option: OptionModel, options: OptionModel[], activeItem: OptionModel | null, labelMode: string, inputConfig: ICaInput): {
7
- [key: string]: boolean | undefined;
8
- };
9
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownLabelClassPipe, never>;
10
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownLabelClassPipe, "inputDropdownLabelClass", true>;
11
- }
@@ -1,10 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { OptionModel } from '../models';
3
- import * as i0 from "@angular/core";
4
- export declare class InputDropdownLoadBrokerContainerPipe implements PipeTransform {
5
- transform(option: OptionModel, options: OptionModel[], activeItem: OptionModel | null): {
6
- [key: string]: boolean | undefined;
7
- };
8
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownLoadBrokerContainerPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownLoadBrokerContainerPipe, "inputDropdownLoadBrokerContainer", true>;
10
- }
@@ -1,11 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { ICaInput } from '../../ca-input-test/config';
3
- import { OptionModel } from '../models';
4
- import * as i0 from "@angular/core";
5
- export declare class InputDropdownMultiselectClassPipe implements PipeTransform {
6
- transform(inputConfig: ICaInput, multiselectItems: OptionModel[], isMultiSelectInputFocus: boolean): {
7
- [key: string]: boolean | undefined;
8
- };
9
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownMultiselectClassPipe, never>;
10
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownMultiselectClassPipe, "inputDropdownMultiselectClass", true>;
11
- }
@@ -1,10 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { OptionModel } from '../models';
3
- import * as i0 from "@angular/core";
4
- export declare class InputDropdownSvgtextTemplateContainerPipe implements PipeTransform {
5
- transform(option: OptionModel, options: OptionModel[], activeItem: OptionModel | null): {
6
- [key: string]: boolean | undefined;
7
- };
8
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownSvgtextTemplateContainerPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownSvgtextTemplateContainerPipe, "inputDropdownSvgtextTemplateContainer", true>;
10
- }
@@ -1,11 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { OptionModel } from '../models';
3
- import { ICaInput } from '../../ca-input-test/config';
4
- import * as i0 from "@angular/core";
5
- export declare class InputDropdownSvgtextTemplateIconPipe implements PipeTransform {
6
- transform(option: OptionModel, activeItem: OptionModel | null, inputConfig: ICaInput): {
7
- [key: string]: boolean | undefined;
8
- };
9
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownSvgtextTemplateIconPipe, never>;
10
- static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownSvgtextTemplateIconPipe, "inputDropdownSvgtextTemplateIcon", true>;
11
- }
@@ -1 +0,0 @@
1
- export * from './input-dropdown-svg-routes';
@@ -1,12 +0,0 @@
1
- export declare class InputDropdownSvgRoutes {
2
- static trailersSvgRoute: string;
3
- static trucksSvgRoute: string;
4
- static repairPmSvgRoute: string;
5
- static inputDropdownArrowSvg: string;
6
- static xClearSvg: string;
7
- static plusSvg: string;
8
- static dynamicLabelSvg: string;
9
- static ownerBadgeBlackSvg: string;
10
- static arrowDownUpdatedSvg: string;
11
- static specConfirmSvg: string;
12
- }
@@ -1,16 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- import { EventEmitter } from '@angular/core';
3
- export declare class EventInputManager<T> {
4
- private eventEmitter;
5
- private stateSubject;
6
- state$: Observable<T | null>;
7
- constructor(initialValue: T | null, eventEmitter: EventEmitter<T>);
8
- /**
9
- * Update the value and emit the event.
10
- */
11
- next(newValue: T): void;
12
- /**
13
- * Get the current value.
14
- */
15
- get value(): T | null;
16
- }
@@ -1,20 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { ICaInput } from '../../config';
4
- import { LabelColor } from '../../models';
5
- import { InputSvgRoutes } from '../../utils';
6
- import * as i0 from "@angular/core";
7
- export declare class CaInputClearComponent {
8
- inputConfig: ICaInput;
9
- getSuperControl: AbstractControl<any, any> | null;
10
- isFocusInput: boolean;
11
- incorrectValue: boolean;
12
- selectedDropdownLabelColor: LabelColor | null;
13
- template: string;
14
- clearInputClick: EventEmitter<Event>;
15
- constructor();
16
- clearInput(event: Event): void;
17
- getSvgPath(propertyName: keyof typeof InputSvgRoutes): string;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<CaInputClearComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<CaInputClearComponent, "app-ca-input-clear", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "clearInputClick": "clearInputClick"; }, never, never, true, never>;
20
- }
@@ -1,16 +0,0 @@
1
- import { EventEmitter } from "@angular/core";
2
- import { ICaInput } from "../../config";
3
- import { CommandClick } from "../../models";
4
- import { InputCommandsType } from "../../enums";
5
- import * as i0 from "@angular/core";
6
- export declare class CaInputCommandsComponent {
7
- inputConfig: ICaInput;
8
- isFocusInput: boolean;
9
- isVisibleCommands: boolean;
10
- onCommandsClick: EventEmitter<CommandClick>;
11
- inputCommandsType: typeof InputCommandsType;
12
- constructor();
13
- onCommands(event: Event, type: string, action: string): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<CaInputCommandsComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<CaInputCommandsComponent, "app-ca-input-commands", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "isVisibleCommands": { "alias": "isVisibleCommands"; "required": false; }; }, { "onCommandsClick": "onCommandsClick"; }, never, never, true, never>;
16
- }
@@ -1,20 +0,0 @@
1
- import { EventEmitter, OnInit } from "@angular/core";
2
- import { AbstractControl } from "@angular/forms";
3
- import { InputSvgRoutes } from "../../utils";
4
- import { ICaInput } from "../../config";
5
- import * as i0 from "@angular/core";
6
- export declare class CaInputPasswordComponent implements OnInit {
7
- inputConfig: ICaInput;
8
- getSuperControl: AbstractControl<any, any> | null;
9
- isFocusInput: boolean;
10
- isTouchedInput: boolean;
11
- isCapsLockOn: boolean;
12
- isTogglePassword: boolean;
13
- onTogglePasswordClick: EventEmitter<Event>;
14
- constructor();
15
- ngOnInit(): void;
16
- onTogglePassword(event: Event): void;
17
- getSvgPath(propertyName: keyof typeof InputSvgRoutes): string;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<CaInputPasswordComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<CaInputPasswordComponent, "app-ca-input-password", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "isTouchedInput": { "alias": "isTouchedInput"; "required": false; }; "isCapsLockOn": { "alias": "isCapsLockOn"; "required": false; }; "isTogglePassword": { "alias": "isTogglePassword"; "required": false; }; }, { "onTogglePasswordClick": "onTogglePasswordClick"; }, never, never, true, never>;
20
- }
@@ -1,26 +0,0 @@
1
- import { EventEmitter, TemplateRef } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { ICaInput } from '../../config/ca-input.config';
4
- import { LabelColor } from '../../models/label-color.model';
5
- import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
6
- import * as i0 from "@angular/core";
7
- export declare class CaInputPlaceholderIconComponent {
8
- inputConfig: ICaInput;
9
- getSuperControl: AbstractControl<any, any> | null;
10
- isFocusInput: boolean;
11
- isTouchedInput: boolean;
12
- selectedDropdownLabelColor: LabelColor | null;
13
- isEditInput: boolean;
14
- dateTimePopover: TemplateRef<any>;
15
- onPopoverShownEmitter: EventEmitter<boolean>;
16
- onPopoverHiddenEmitter: EventEmitter<boolean>;
17
- onPlaceholderIconEventEmitter: EventEmitter<Event>;
18
- t2: NgbPopover;
19
- ngbMainPopover: NgbPopover;
20
- constructor();
21
- onPopoverShown(): void;
22
- onPopoverHidden(): void;
23
- onPlaceholderIconEvent(event: Event): void;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<CaInputPlaceholderIconComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<CaInputPlaceholderIconComponent, "app-ca-input-placeholder-icon", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "isFocusInput": { "alias": "isFocusInput"; "required": false; }; "isTouchedInput": { "alias": "isTouchedInput"; "required": false; }; "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "isEditInput": { "alias": "isEditInput"; "required": false; }; "dateTimePopover": { "alias": "dateTimePopover"; "required": false; }; }, { "onPopoverShownEmitter": "onPopoverShownEmitter"; "onPopoverHiddenEmitter": "onPopoverHiddenEmitter"; "onPlaceholderIconEventEmitter": "onPlaceholderIconEventEmitter"; }, never, never, true, never>;
26
- }
@@ -1,168 +0,0 @@
1
- export interface IMultipleInput {
2
- id?: number;
3
- value: string | number;
4
- second_value?: string | number;
5
- logoName?: string;
6
- isImg?: boolean;
7
- isSvg?: boolean;
8
- folder?: string;
9
- subFolder?: string;
10
- logoType?: string;
11
- isOwner?: boolean;
12
- isProgressBar?: boolean;
13
- isCounter?: boolean;
14
- }
15
- export interface ICaInputDateTimePicker {
16
- name: string;
17
- isIconHidden?: boolean;
18
- customClass?: string;
19
- isDisabled?: boolean;
20
- isFutureDateDisabled?: boolean;
21
- expiredDateInvalid?: boolean;
22
- isFromDate?: boolean;
23
- }
24
- export interface ICaInputWithDropdown {
25
- withText: boolean;
26
- svg: boolean;
27
- image: boolean;
28
- iconsPath?: string;
29
- activeItemIconKey?: string;
30
- url?: string;
31
- nameInitialsInsteadUrl?: string;
32
- template?: string;
33
- color?: string;
34
- class?: string;
35
- remove?: boolean;
36
- }
37
- export interface ICaInput {
38
- id?: number | string;
39
- name: string;
40
- type: string;
41
- label?: string;
42
- labelInInput?: boolean;
43
- placeholder?: string;
44
- placeholderIcon?: string;
45
- placeholderIconRightSide?: string;
46
- isPlaceHolderIconRightSideDynamicColor?: boolean;
47
- placeholderIconFolllowTextOnRightSide?: string;
48
- placeholderIconColor?: string;
49
- placeholderText?: string;
50
- placeholderInsteadOfLabel?: boolean;
51
- inputCursorOnRightSide?: boolean;
52
- isRequired?: boolean;
53
- isDisabled?: boolean;
54
- pattern?: string;
55
- autocomplete?: string;
56
- showCount?: boolean;
57
- minLength?: number;
58
- maxLength?: number;
59
- minValue?: number;
60
- maxValue?: number;
61
- min?: number;
62
- max?: number;
63
- step?: number;
64
- mask?: string;
65
- textTransform?: 'capitalize' | 'uppercase' | 'lowercase' | 'capitalizedcase';
66
- textAlign?: string | 'center';
67
- blackInput?: boolean;
68
- blueInput?: boolean;
69
- incorrectInput?: boolean;
70
- dangerMark?: boolean;
71
- autoFocus?: boolean;
72
- hideClear?: boolean;
73
- hideRequiredCheck?: boolean;
74
- hideErrorMessage?: boolean;
75
- hideDangerMark?: boolean;
76
- hideDropdownArrow?: boolean;
77
- requiredLabel?: boolean;
78
- errorInsideInput?: boolean;
79
- removeInput?: boolean;
80
- readOnly?: boolean;
81
- thousandSeparator?: boolean;
82
- priceSeparator?: boolean;
83
- priceSeparatorLimitation?: number;
84
- loadingSpinner?: {
85
- size?: string;
86
- color?: string;
87
- isLoading?: boolean;
88
- };
89
- addressFlag?: string;
90
- customClass?: string;
91
- isIconInput?: boolean;
92
- isValidIcon?: boolean;
93
- inputIcon?: string;
94
- multipleInputValues?: {
95
- options: IMultipleInput[];
96
- customClass: string;
97
- };
98
- multipleLabel?: {
99
- labels: string[];
100
- searchLabels?: string[];
101
- customClass: string;
102
- };
103
- isInputBackgroundRemoved?: boolean;
104
- isBlueText?: boolean;
105
- commands?: {
106
- active?: boolean;
107
- type?: string;
108
- firstCommand?: {
109
- popup?: {
110
- name?: string;
111
- backgroundColor?: string;
112
- };
113
- name?: string;
114
- svg?: string;
115
- };
116
- secondCommand?: {
117
- popup?: {
118
- name?: string;
119
- backgroundColor?: string;
120
- };
121
- name?: string;
122
- svg?: string;
123
- };
124
- thirdCommand?: {
125
- popup?: {
126
- name?: string;
127
- backgroundColor?: string;
128
- };
129
- name?: string;
130
- svg?: string;
131
- };
132
- setTimeout?: number;
133
- blueCommands?: boolean;
134
- };
135
- defaultValue?: string;
136
- isDropdown?: boolean;
137
- isAddress?: boolean;
138
- searchinGroupIndex?: string;
139
- dropdownWidthClass?: string;
140
- dropdownImageInput?: ICaInputWithDropdown | null;
141
- isInvalidSearchInDropdown?: boolean;
142
- selectedDropdown?: boolean;
143
- mergeDropdownBodyWithInput?: boolean;
144
- hideAllItemsInInputDropdown?: boolean;
145
- isBlueDropdown?: boolean;
146
- isItemSelected?: boolean;
147
- isDisplayingCustomPeriodRange?: boolean;
148
- isUsingCustomPeriodRange?: boolean;
149
- isDispatchLocationDropdown?: boolean;
150
- dropdownLabel?: boolean;
151
- dropdownLabelNew?: boolean;
152
- multiselectDropdown?: boolean;
153
- multiSelectDropdownActive?: boolean;
154
- multiSelectItemRange?: boolean;
155
- isFromDate?: boolean;
156
- hideColorValidations?: boolean;
157
- expiredDateInvalid?: boolean;
158
- isFutureDateDisabled?: boolean;
159
- fixedPlacholder?: string;
160
- statusStyle?: boolean;
161
- isIconHidden?: boolean;
162
- isRemovedIconMovedOnLeft?: boolean;
163
- removeLeadingZero?: boolean;
164
- negativeLeadingZero?: boolean;
165
- isHoverRow?: boolean;
166
- minutesGapFive?: boolean;
167
- updateAsTouchedOnEdit?: boolean;
168
- }
@@ -1 +0,0 @@
1
- export * from './ca-input.config';
@@ -1,14 +0,0 @@
1
- import { ElementRef, EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CapsLockDirective {
4
- private el;
5
- capsLockStatus: EventEmitter<boolean>;
6
- private capsLockDetected;
7
- constructor(el: ElementRef);
8
- onKeyDown(event: KeyboardEvent): void;
9
- onKeyUP(event: KeyboardEvent): void;
10
- onFocus(): void;
11
- onBlur(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<CapsLockDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<CapsLockDirective, "[appCapsLock]", never, {}, { "capsLockStatus": "capsLockStatus"; }, never, never, true, never>;
14
- }
@@ -1,5 +0,0 @@
1
- export * from './min-max-value.directive';
2
- export * from './caps-lock.directive';
3
- export * from './input-max-value.directive';
4
- export * from './price_format.directive';
5
- export * from './restrict-input.directive';
@@ -1,12 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MaxValueDirective {
4
- private el;
5
- appMaxValue?: number;
6
- constructor(el: ElementRef);
7
- onInput(event: Event): void;
8
- onBlur(event: Event): void;
9
- private formatNumber;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MaxValueDirective, never>;
11
- static ɵdir: i0.ɵɵDirectiveDeclaration<MaxValueDirective, "[appMaxValue]", never, { "appMaxValue": { "alias": "appMaxValue"; "required": false; }; }, {}, never, never, true, never>;
12
- }
@@ -1,13 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import { ThousandSeparatorPipe } from '../../../pipes/thousand-separator.pipe';
3
- import * as i0 from "@angular/core";
4
- export declare class MinMaxValueDirective {
5
- private el;
6
- private thousandSeparatorPipe;
7
- minValue: number;
8
- maxValue: number;
9
- constructor(el: ElementRef, thousandSeparatorPipe: ThousandSeparatorPipe);
10
- onKeyPress(event: KeyboardEvent): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<MinMaxValueDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<MinMaxValueDirective, "[appMinMaxValue]", never, { "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; }, {}, never, never, true, never>;
13
- }
@@ -1,11 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PriceFormatDirective {
4
- private el;
5
- constructor(el: ElementRef);
6
- priceSeparator?: boolean;
7
- onInput(event: Event): void;
8
- private formatWithCommas;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<PriceFormatDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<PriceFormatDirective, "[priceFormat]", never, { "priceSeparator": { "alias": "priceSeparator"; "required": false; }; }, {}, never, never, true, never>;
11
- }
@@ -1,27 +0,0 @@
1
- import { ElementRef, Injector } from '@angular/core';
2
- import { ICaInput } from '../config';
3
- import { InputTransformStringEnum } from '../enums/input-text-transform.enum';
4
- import * as i0 from "@angular/core";
5
- declare const RestrictInputDirective_base: {
6
- new (...args: any[]): {
7
- checkRangeRegex(value: string): boolean;
8
- getTextTransformation(value: string, textTransform: InputTransformStringEnum | undefined): string | undefined;
9
- restrictInput: ICaInput;
10
- };
11
- } & {
12
- new (): {
13
- restrictInput: ICaInput;
14
- };
15
- };
16
- export declare class RestrictInputDirective extends RestrictInputDirective_base {
17
- private el;
18
- private injector;
19
- restrictInput: ICaInput;
20
- private inputPatternPipe;
21
- private lastValidInputValue;
22
- constructor(el: ElementRef, injector: Injector);
23
- onInput(event: InputEvent): void;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<RestrictInputDirective, never>;
25
- static ɵdir: i0.ɵɵDirectiveDeclaration<RestrictInputDirective, "[restrictInput]", never, { "restrictInput": { "alias": "restrictInput"; "required": false; }; }, {}, never, never, true, never>;
26
- }
27
- export {};
@@ -1,4 +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';
@@ -1,9 +0,0 @@
1
- export declare enum InputCommandsAction {
2
- DECREMENT = "decrement",
3
- INCREMENT = "increment",
4
- RESET = "reset",
5
- CONFIRM = "confirm",
6
- CANCEL = "cancel",
7
- MINUS = "minus",
8
- PLUS = "plus"
9
- }
@@ -1,6 +0,0 @@
1
- export declare enum InputCommandsType {
2
- PM_INCREMENT_DECREMENT = "pm-increment-decrement",
3
- INCREMENT_DECREMENT = "increment-decrement",
4
- CONFIRM_CANCEL = "confirm-cancel",
5
- MONTHS = "months"
6
- }
@@ -1,7 +0,0 @@
1
- export declare enum InputConfigNameStringEnum {
2
- DATE_PICKER = "datepicker",
3
- TIME_PICKER = "timepicker",
4
- DATE_PICKER_BANK_CARD = "datepickerBankCard",
5
- INPUT_DROPDOWN_BANK_NAME = "Input Dropdown Bank Name",
6
- ADDRESS = "Address"
7
- }
@@ -1,112 +0,0 @@
1
- export declare enum InputStringEnum {
2
- PHONE = "phone",
3
- CAPITALIZE = "capitalize",
4
- UPPERCASE = "uppercase",
5
- CAPITALIZED_CASE = "capitalizedcase",
6
- YEAR = "year",
7
- MONTHS = "months",
8
- AXLES = "axles",
9
- FULL_NAME = "full name",
10
- EMAIL = "email",
11
- INVOICE = "invoice",
12
- ADDRESS = "address",
13
- PERSONS = "persons",
14
- VEHICLES = "vehicles",
15
- PRICE_SEPARATOR = "price-separator",
16
- BUSINESS_NAME = "business name",
17
- SHOP_NAME = "shop name",
18
- FUEL_STOP = "fuel stop",
19
- PRODUCER_NAME = "producer name",
20
- TERMINAL_NAME = "terminal name",
21
- EIN = "ein",
22
- MC_FF = "mc/ff",
23
- PHONE_EXTENSION = "phone-extension",
24
- ACCOUNT_BANK = "account-bank",
25
- ROUTING_BANK = "routing-bank",
26
- SSN = "ssn",
27
- FUEL_CARD = "fuel-card",
28
- EMPTY_WEIGHT = "empty-weight",
29
- CREDIT_LIMIT = "credit limit",
30
- PO_BOX = "po box",
31
- PRICE = "price",
32
- TRAILER_VOLUME = "trailer-volume",
33
- REPAIR_ODOMETER = "repair-odometer",
34
- USDOT = "usdot",
35
- IRP = "irp",
36
- STARTING = "starting",
37
- CUSTOMER_PAY_TERM = "customer pay term",
38
- CUSTOMER_CREDIT = "customer credit",
39
- DEFAULT_BASE = "default base",
40
- EACH_OCCURRENCE = "each occurrence",
41
- DAMAGE = "damage",
42
- PERSONAL_ADVER_INJ = "personal-adver-inj",
43
- MEDICAL_EXPENSES = "medical expenses",
44
- BODILY_INJURY = "bodily injury",
45
- GENERAL_AGGREGATE = "general aggregate",
46
- PRODUCTS_COMP_OP_AGG = "products-comp-op-agg",
47
- COMBINED_SINGLE_LIMIT = "combined-single-limit",
48
- SINGLE_CONVEYANCE = "single-conveyance",
49
- DEDUCTABLE = "deductable",
50
- COMPREH_COLLISION = "compreh-collision",
51
- TRAILER_VALUE_INSURANCE_POLICY = "trailer-value-insurance-policy",
52
- RENT = "rent",
53
- SALARY = "salary",
54
- MILEAGE = "mileage",
55
- EMPTY_WEIGHT_SPACE = "empty weight",
56
- QTY = "qty",
57
- PURCHASE_PRICE = "purchase price",
58
- FUEL_TANK_SIZE = "fuel tank size",
59
- DEVICE_NO = "device no",
60
- WEIGHT = "weight",
61
- FUEL_PER_MILES = "fuel per miles",
62
- FUEL_PRICE_MAP = "fuel price map",
63
- AMOUNT = "amount",
64
- BOL_NO = "bol no.",
65
- SEAL_NO = "seal no.",
66
- PICKUP_NO = "pickup no.",
67
- CODE = "code",
68
- MULTI_FROM_FIRST_FROM = "multifromfirstfrom",
69
- MULTI_FROM_FIRST_TO = "multifromfirstto",
70
- MULTI_FORM_SECOND_FROM = "multiformsecondfrom",
71
- MULTI_FORM_SECOND_TO = "multiformsecondto",
72
- MULTI_FORM_THIRD_FROM = "multiformthirdfrom",
73
- MULTI_FORM_THIRD_TO = "multiformthirdto",
74
- ADDRESS_UNIT = "address-unit",
75
- DEPARTMENT = "department",
76
- VEHICLE_UNIT = "vehicle-unit",
77
- FIRST_NAME = "first name",
78
- LAST_NAME = "last name",
79
- BANK_NAME = "bank name",
80
- VIN_NUMBER = "vin-number",
81
- INSURANCE_POLICY = "insurance-policy",
82
- IFTA = "ifta",
83
- TRUCK_TRAILER_MODEL = "truck-trailer-model",
84
- LICENSE_PLATE = "license plate",
85
- DESCRIPTION = "description",
86
- ALLOW_ALL = "allow all",
87
- DBA_NAME = "dba name",
88
- PER_MILE = "per mile",
89
- PER_STOP = "per stop",
90
- FLAT_RATE = "flat rate",
91
- PER_LOAD = "per load",
92
- RELATIONSHIP = "relationship",
93
- SCAC = "scac",
94
- EMERGENCY_NAME = "emergency name",
95
- FULL_CONTACT_NAME = "full contact name",
96
- FUEL_STORE = "fuel-store",
97
- HOS = "hos",
98
- FULL_PARKING_SLOT = "full parking slot",
99
- PARKING_SLOT = "parking slot",
100
- CDL_NUMBER = "cdl-number",
101
- USERNAME = "username",
102
- NICKNAME = "nickname",
103
- PASSWORD = "password",
104
- TOLL_VALIDATION = "tollvalidation",
105
- PREFIX = "prefix",
106
- SUFFIX = "suffix",
107
- PARKING_NAME = "parking name",
108
- FILE_NAME = "file name",
109
- INSURER_NAME = "insurer name",
110
- OFFICE_NAME = "office name",
111
- INPUT_DROPDOWN_LABEL = "input dropdown label"
112
- }
@@ -1,6 +0,0 @@
1
- export declare enum InputTransformStringEnum {
2
- CAPITALIZE = "capitalize",
3
- UPPERCASE = "uppercase",
4
- CAPITALIZED_CASE = "capitalizedcase",
5
- LOWERCASE = "lowercase"
6
- }
@@ -1,12 +0,0 @@
1
- import { Constructor } from '../../../models/mixin.model';
2
- import { ICaInput } from '../config/ca-input.config';
3
- import { InputTransformStringEnum } from '../enums/input-text-transform.enum';
4
- export declare function RestrictionPipeMixin<T extends Constructor<{
5
- restrictInput: ICaInput;
6
- }>>(Base: T): {
7
- new (...args: any[]): {
8
- checkRangeRegex(value: string): boolean;
9
- getTextTransformation(value: string, textTransform: InputTransformStringEnum | undefined): string | undefined;
10
- restrictInput: ICaInput;
11
- };
12
- } & T;
@@ -1,5 +0,0 @@
1
- export interface CommandClick {
2
- event: Event;
3
- type: string;
4
- action: string;
5
- }
@@ -1,5 +0,0 @@
1
- export interface CommandsEvent {
2
- data?: string | number;
3
- action?: string;
4
- mode?: string;
5
- }