ca-components 1.3.34 → 1.3.36

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 (265) hide show
  1. package/assets/scss/background.scss +44 -0
  2. package/assets/scss/border-radius.scss +17 -0
  3. package/assets/scss/filters.scss +151 -0
  4. package/assets/scss/icons.scss +39 -0
  5. package/assets/scss/input-dropdown-test.scss +2030 -0
  6. package/assets/scss/spacing.scss +59 -0
  7. package/assets/scss/styles.scss +22 -1
  8. package/assets/scss/text-selection.scss +15 -0
  9. package/assets/theme/variables.scss +1 -1
  10. package/esm2022/lib/ca-components.module.mjs +26 -2
  11. package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +3 -3
  12. package/esm2022/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.mjs +6 -3
  13. package/esm2022/lib/components/ca-checkbox/ca-checkbox.component.mjs +2 -2
  14. package/esm2022/lib/components/ca-collapsible-filter/ca-collapsible-filter.component.mjs +2 -2
  15. package/esm2022/lib/components/ca-comment/ca-comment.component.mjs +2 -2
  16. package/esm2022/lib/components/ca-comment/modals/comment-modal/comment-modal.component.mjs +3 -3
  17. package/esm2022/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.mjs +3 -3
  18. package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +2 -2
  19. package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +2 -2
  20. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +4 -4
  21. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +3 -3
  22. package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +2 -2
  23. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +2 -2
  24. package/esm2022/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.mjs +2 -2
  25. package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +2 -2
  26. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +2 -2
  27. package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +4 -4
  28. package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +2 -2
  29. package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +2 -2
  30. package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +2 -2
  31. package/esm2022/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.mjs +2 -2
  32. package/esm2022/lib/components/ca-filters/pipes/index.mjs +7 -0
  33. package/esm2022/lib/components/ca-filters/utils/helpers/index.mjs +2 -1
  34. package/esm2022/lib/components/ca-filters/utils/helpers/time-filter.helper.mjs +117 -0
  35. package/esm2022/lib/components/ca-filters/utils/svg-routes/index.mjs +2 -0
  36. package/esm2022/lib/components/ca-input/ca-input.component.mjs +2 -2
  37. package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +3 -3
  38. package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
  39. package/esm2022/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +2 -2
  40. package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +2 -2
  41. package/esm2022/lib/components/ca-input-note/ca-input-note.component.mjs +2 -2
  42. package/esm2022/lib/components/ca-input-test/base-classes/ca-input-event-manager.mjs +24 -0
  43. package/esm2022/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.mjs +66 -0
  44. package/esm2022/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.mjs +48 -0
  45. package/esm2022/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.mjs +63 -0
  46. package/esm2022/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +85 -0
  47. package/esm2022/lib/components/ca-input-test/config/ca-input.config.mjs +2 -0
  48. package/esm2022/lib/components/ca-input-test/config/index.mjs +2 -0
  49. package/esm2022/lib/components/ca-input-test/directives/caps-lock.directive.mjs +50 -0
  50. package/esm2022/lib/components/ca-input-test/directives/command-visible.directive.mjs +48 -0
  51. package/esm2022/lib/components/ca-input-test/directives/index.mjs +6 -0
  52. package/esm2022/lib/components/ca-input-test/directives/input-max-value.directive.mjs +53 -0
  53. package/esm2022/lib/components/ca-input-test/directives/min-max-value.directive.mjs +41 -0
  54. package/esm2022/lib/components/ca-input-test/directives/price_format.directive.mjs +41 -0
  55. package/esm2022/lib/components/ca-input-test/directives/restrict-input.directive.mjs +94 -0
  56. package/esm2022/lib/components/ca-input-test/enums/index.mjs +5 -0
  57. package/esm2022/lib/components/ca-input-test/enums/input-commands-action.enum.mjs +11 -0
  58. package/esm2022/lib/components/ca-input-test/enums/input-commands-type.enum.mjs +8 -0
  59. package/esm2022/lib/components/ca-input-test/enums/input-config-name-string.enum.mjs +9 -0
  60. package/esm2022/lib/components/ca-input-test/enums/input-string.enum.mjs +114 -0
  61. package/esm2022/lib/components/ca-input-test/enums/input-text-transform.enum.mjs +9 -0
  62. package/esm2022/lib/components/ca-input-test/input-test.component.mjs +273 -0
  63. package/esm2022/lib/components/ca-input-test/mixins/input-command.mixin.mjs +124 -0
  64. package/esm2022/lib/components/ca-input-test/mixins/input-helper.mixin.mjs +49 -0
  65. package/esm2022/lib/components/ca-input-test/mixins/restriction-pipe.mixin.mjs +34 -0
  66. package/esm2022/lib/components/ca-input-test/models/base.model.mjs +2 -0
  67. package/esm2022/lib/components/ca-input-test/models/command-click.model.mjs +2 -0
  68. package/esm2022/lib/components/ca-input-test/models/commands-event.model.mjs +2 -0
  69. package/esm2022/lib/components/ca-input-test/models/index.mjs +4 -0
  70. package/esm2022/lib/components/ca-input-test/models/label-color.model.mjs +2 -0
  71. package/esm2022/lib/components/ca-input-test/pipes/color-finder.pipe.mjs +62 -0
  72. package/esm2022/lib/components/ca-input-test/pipes/form-control.pipe.mjs +17 -0
  73. package/esm2022/lib/components/ca-input-test/pipes/index.mjs +20 -0
  74. package/esm2022/lib/components/ca-input-test/pipes/input-class.pipe.mjs +155 -0
  75. package/esm2022/lib/components/ca-input-test/pipes/input-clear-class.pipe.mjs +87 -0
  76. package/esm2022/lib/components/ca-input-test/pipes/input-container-class.pipe.mjs +58 -0
  77. package/esm2022/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.mjs +77 -0
  78. package/esm2022/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.mjs +61 -0
  79. package/esm2022/lib/components/ca-input-test/pipes/input-error.pipe.mjs +88 -0
  80. package/esm2022/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.mjs +37 -0
  81. package/esm2022/lib/components/ca-input-test/pipes/input-pattern.pipe.mjs +326 -0
  82. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.mjs +46 -0
  83. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.mjs +58 -0
  84. package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.mjs +45 -0
  85. package/esm2022/lib/components/ca-input-test/pipes/input-type.pipe.mjs +25 -0
  86. package/esm2022/lib/components/ca-input-test/pipes/label-class.pipe.mjs +38 -0
  87. package/esm2022/lib/components/ca-input-test/pipes/show-clear.pipe.mjs +22 -0
  88. package/esm2022/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.mjs +26 -0
  89. package/esm2022/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
  90. package/esm2022/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.mjs +24 -0
  91. package/esm2022/lib/components/ca-input-test/pipes/show-valid-check.pipe.mjs +27 -0
  92. package/esm2022/lib/components/ca-input-test/utils/index.mjs +3 -0
  93. package/esm2022/lib/components/ca-input-test/utils/input-change-value.type.mjs +2 -0
  94. package/esm2022/lib/components/ca-input-test/utils/input-svg-routes.mjs +17 -0
  95. package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +3 -3
  96. package/esm2022/lib/components/ca-map/ca-map.component.mjs +2 -2
  97. package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +2 -2
  98. package/esm2022/lib/components/ca-modal/ca-modal.component.mjs +2 -2
  99. package/esm2022/lib/components/ca-modal-button/ca-modal-button.component.mjs +3 -3
  100. package/esm2022/lib/components/ca-new-filter/ca-filter-dropdown.component.mjs +98 -0
  101. package/esm2022/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.mjs +142 -0
  102. package/esm2022/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.mjs +131 -0
  103. package/esm2022/lib/components/ca-new-filter/components/ca-filter-time-dropdown/ca-filter-time-dropdown.component.mjs +131 -0
  104. package/esm2022/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.mjs +87 -0
  105. package/esm2022/lib/components/ca-new-filter/constant/index.mjs +2 -0
  106. package/esm2022/lib/components/ca-new-filter/enums/filter-dropdown-types.enum.mjs +15 -0
  107. package/esm2022/lib/components/ca-new-filter/enums/filter-sorting-key.enum.mjs +6 -0
  108. package/esm2022/lib/components/ca-new-filter/enums/filter-time.enum.mjs +37 -0
  109. package/esm2022/lib/components/ca-new-filter/enums/index.mjs +4 -0
  110. package/esm2022/lib/components/ca-new-filter/interface/country.interface.mjs +2 -0
  111. package/esm2022/lib/components/ca-new-filter/interface/filter-action.interface.mjs +2 -0
  112. package/esm2022/lib/components/ca-new-filter/interface/filter-dropdown-configuration.interface.mjs +2 -0
  113. package/esm2022/lib/components/ca-new-filter/interface/filter-dropdown-list.mjs +2 -0
  114. package/esm2022/lib/components/ca-new-filter/interface/index.mjs +7 -0
  115. package/esm2022/lib/components/ca-new-filter/interface/sorting-emmiter.interface.mjs +2 -0
  116. package/esm2022/lib/components/ca-new-filter/interface/time-options.interface.mjs +2 -0
  117. package/esm2022/lib/components/ca-new-filter/pipes/filter-search.pipe.mjs +31 -0
  118. package/esm2022/lib/components/ca-new-filter/types/filter-dropdown.types.mjs +2 -0
  119. package/esm2022/lib/components/ca-new-filter/types/filter-sorting-key.type.mjs +2 -0
  120. package/esm2022/lib/components/ca-new-filter/types/filter-time.types.mjs +2 -0
  121. package/esm2022/lib/components/ca-new-filter/types/index.mjs +4 -0
  122. package/esm2022/lib/components/ca-new-filter/utils/configs/filter-dropdown-fields.config.mjs +37 -0
  123. package/esm2022/lib/components/ca-new-filter/utils/configs/index.mjs +2 -0
  124. package/esm2022/lib/components/ca-new-filter/utils/helpers/index.mjs +2 -0
  125. package/esm2022/lib/components/ca-new-filter/utils/helpers/time-filter.helper.mjs +133 -0
  126. package/esm2022/lib/components/ca-ngx-slider/ca-ngx-slider.component.mjs +2 -2
  127. package/esm2022/lib/components/ca-note/ca-note.component.mjs +2 -2
  128. package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +2 -2
  129. package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +2 -2
  130. package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +2 -2
  131. package/esm2022/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.mjs +3 -3
  132. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +2 -2
  133. package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +3 -3
  134. package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +3 -3
  135. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +3 -3
  136. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +3 -3
  137. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +3 -3
  138. package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +3 -3
  139. package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +2 -2
  140. package/esm2022/lib/components/ca-progress-expiration/ca-progress-expiration.component.mjs +2 -2
  141. package/esm2022/lib/components/ca-rating-review/ca-rating-review.component.mjs +2 -2
  142. package/esm2022/lib/components/ca-rating-review/components/ca-rating-review-user/ca-rating-review-user.component.mjs +2 -2
  143. package/esm2022/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.mjs +2 -2
  144. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.mjs +3 -3
  145. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +3 -3
  146. 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
  147. package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +3 -3
  148. package/esm2022/lib/components/ca-search-multiple-states/models/tab-data.model.mjs +1 -1
  149. package/esm2022/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.mjs +21 -8
  150. package/esm2022/lib/components/ca-sort-dropdown/types/index.mjs +2 -0
  151. package/esm2022/lib/components/ca-sort-dropdown/types/sort-directions.type.mjs +2 -0
  152. package/esm2022/lib/components/ca-sort-dropdown/utils/svg-routes/ca-sort-dropdown-svg-routes.mjs +3 -2
  153. package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +2 -2
  154. package/esm2022/lib/components/ca-tab-switch/ca-tab-switch.component.mjs +3 -3
  155. package/esm2022/lib/components/ca-todo/ca-todo.component.mjs +3 -3
  156. package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +3 -3
  157. package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +3 -3
  158. package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +2 -2
  159. package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +3 -3
  160. package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +3 -3
  161. package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +2 -2
  162. package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +3 -3
  163. package/esm2022/public-api.mjs +9 -2
  164. package/fesm2022/ca-components.mjs +3411 -637
  165. package/fesm2022/ca-components.mjs.map +1 -1
  166. package/lib/ca-components.module.d.ts +38 -34
  167. package/lib/components/ca-autoclose-popover/ca-autoclose-popover.component.d.ts +2 -1
  168. package/lib/components/ca-filters/pipes/index.d.ts +6 -0
  169. package/lib/components/ca-filters/utils/helpers/index.d.ts +1 -0
  170. package/lib/components/ca-filters/utils/{constants/time-filter.constants.d.ts → helpers/time-filter.helper.d.ts} +14 -2
  171. package/lib/components/ca-filters/utils/svg-routes/index.d.ts +1 -0
  172. package/lib/components/ca-input-test/base-classes/ca-input-event-manager.d.ts +16 -0
  173. package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.d.ts +20 -0
  174. package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts +16 -0
  175. package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts +20 -0
  176. package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +26 -0
  177. package/lib/components/ca-input-test/config/ca-input.config.d.ts +168 -0
  178. package/lib/components/ca-input-test/config/index.d.ts +1 -0
  179. package/lib/components/ca-input-test/directives/caps-lock.directive.d.ts +14 -0
  180. package/lib/components/ca-input-test/directives/index.d.ts +5 -0
  181. package/lib/components/ca-input-test/directives/input-max-value.directive.d.ts +12 -0
  182. package/lib/components/ca-input-test/directives/min-max-value.directive.d.ts +13 -0
  183. package/lib/components/ca-input-test/directives/price_format.directive.d.ts +11 -0
  184. package/lib/components/ca-input-test/directives/restrict-input.directive.d.ts +27 -0
  185. package/lib/components/ca-input-test/enums/index.d.ts +4 -0
  186. package/lib/components/ca-input-test/enums/input-commands-action.enum.d.ts +9 -0
  187. package/lib/components/ca-input-test/enums/input-commands-type.enum.d.ts +6 -0
  188. package/lib/components/ca-input-test/enums/input-config-name-string.enum.d.ts +7 -0
  189. package/lib/components/ca-input-test/enums/input-string.enum.d.ts +112 -0
  190. package/lib/components/ca-input-test/enums/input-text-transform.enum.d.ts +6 -0
  191. package/lib/components/{ca-input/input-test → ca-input-test}/input-test.component.d.ts +13 -12
  192. package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.d.ts +12 -0
  193. package/lib/components/ca-input-test/models/command-click.model.d.ts +5 -0
  194. package/lib/components/ca-input-test/models/commands-event.model.d.ts +5 -0
  195. package/lib/components/ca-input-test/models/index.d.ts +3 -0
  196. package/lib/components/ca-input-test/models/label-color.model.d.ts +11 -0
  197. package/lib/components/ca-input-test/pipes/color-finder.pipe.d.ts +7 -0
  198. package/lib/components/ca-input-test/pipes/form-control.pipe.d.ts +8 -0
  199. package/lib/components/ca-input-test/pipes/index.d.ts +19 -0
  200. package/lib/components/ca-input-test/pipes/input-class.pipe.d.ts +13 -0
  201. package/lib/components/ca-input-test/pipes/input-clear-class.pipe.d.ts +11 -0
  202. package/lib/components/ca-input-test/pipes/input-container-class.pipe.d.ts +11 -0
  203. package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.d.ts +11 -0
  204. package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.d.ts +11 -0
  205. package/lib/components/ca-input-test/pipes/input-error.pipe.d.ts +7 -0
  206. package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.d.ts +11 -0
  207. package/lib/components/ca-input-test/pipes/input-pattern.pipe.d.ts +38 -0
  208. package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.d.ts +11 -0
  209. package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.d.ts +12 -0
  210. package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.d.ts +11 -0
  211. package/lib/components/ca-input-test/pipes/input-type.pipe.d.ts +7 -0
  212. package/lib/components/ca-input-test/pipes/label-class.pipe.d.ts +10 -0
  213. package/lib/components/ca-input-test/pipes/show-clear.pipe.d.ts +8 -0
  214. package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.d.ts +8 -0
  215. package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.d.ts +9 -0
  216. package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.d.ts +9 -0
  217. package/lib/components/ca-input-test/pipes/show-valid-check.pipe.d.ts +9 -0
  218. package/lib/components/ca-input-test/utils/index.d.ts +2 -0
  219. package/lib/components/ca-input-test/utils/input-change-value.type.d.ts +1 -0
  220. package/lib/components/ca-input-test/utils/input-svg-routes.d.ts +16 -0
  221. package/lib/components/ca-new-filter/ca-filter-dropdown.component.d.ts +35 -0
  222. package/lib/components/ca-new-filter/components/ca-filter-list-dropdown/ca-filter-list-dropdown.component.d.ts +43 -0
  223. package/lib/components/ca-new-filter/components/ca-filter-state-dropdown/ca-filter-state-dropdown.component.d.ts +35 -0
  224. package/lib/components/ca-new-filter/components/ca-filter-time-dropdown/ca-filter-time-dropdown.component.d.ts +43 -0
  225. package/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.d.ts +3 -0
  226. package/lib/components/ca-new-filter/constant/index.d.ts +1 -0
  227. package/lib/components/ca-new-filter/enums/filter-dropdown-types.enum.d.ts +13 -0
  228. package/lib/components/ca-new-filter/enums/filter-sorting-key.enum.d.ts +4 -0
  229. package/lib/components/ca-new-filter/enums/filter-time.enum.d.ts +35 -0
  230. package/lib/components/ca-new-filter/enums/index.d.ts +3 -0
  231. package/lib/components/ca-new-filter/interface/country.interface.d.ts +13 -0
  232. package/lib/components/ca-new-filter/interface/filter-action.interface.d.ts +18 -0
  233. package/lib/components/ca-new-filter/interface/filter-dropdown-configuration.interface.d.ts +13 -0
  234. package/lib/components/ca-new-filter/interface/filter-dropdown-list.d.ts +17 -0
  235. package/lib/components/ca-new-filter/interface/index.d.ts +6 -0
  236. package/lib/components/ca-new-filter/interface/sorting-emmiter.interface.d.ts +5 -0
  237. package/lib/components/ca-new-filter/interface/time-options.interface.d.ts +9 -0
  238. package/lib/components/ca-new-filter/pipes/filter-search.pipe.d.ts +8 -0
  239. package/lib/components/ca-new-filter/types/filter-dropdown.types.d.ts +2 -0
  240. package/lib/components/ca-new-filter/types/filter-sorting-key.type.d.ts +2 -0
  241. package/lib/components/ca-new-filter/types/filter-time.types.d.ts +2 -0
  242. package/lib/components/ca-new-filter/types/index.d.ts +3 -0
  243. package/lib/components/ca-new-filter/utils/configs/filter-dropdown-fields.config.d.ts +7 -0
  244. package/lib/components/ca-new-filter/utils/configs/index.d.ts +1 -0
  245. package/lib/components/ca-new-filter/utils/helpers/index.d.ts +1 -0
  246. package/lib/components/ca-new-filter/utils/helpers/time-filter.helper.d.ts +6 -0
  247. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +2 -2
  248. package/lib/components/ca-search-multiple-states/models/tab-data.model.d.ts +11 -11
  249. package/lib/components/ca-sort-dropdown/ca-sort-dropdown.component.d.ts +12 -5
  250. package/lib/components/ca-sort-dropdown/types/index.d.ts +1 -0
  251. package/lib/components/ca-sort-dropdown/types/sort-directions.type.d.ts +5 -0
  252. package/lib/components/ca-sort-dropdown/utils/svg-routes/ca-sort-dropdown-svg-routes.d.ts +2 -1
  253. package/package.json +1 -1
  254. package/public-api.d.ts +8 -1
  255. package/src/assets/ca-components/svg/common/ic_arrow_desc.svg +3 -0
  256. package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +0 -102
  257. package/esm2022/lib/components/ca-input/directives/command-visible.directive.mjs +0 -48
  258. package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +0 -266
  259. package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +0 -127
  260. package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +0 -49
  261. package/esm2022/lib/components/ca-input/models/base.model.mjs +0 -2
  262. /package/lib/components/{ca-input → ca-input-test}/directives/command-visible.directive.d.ts +0 -0
  263. /package/lib/components/{ca-input → ca-input-test}/mixins/input-command.mixin.d.ts +0 -0
  264. /package/lib/components/{ca-input → ca-input-test}/mixins/input-helper.mixin.d.ts +0 -0
  265. /package/lib/components/{ca-input → ca-input-test}/models/base.model.d.ts +0 -0
@@ -0,0 +1,44 @@
1
+ @import 'theme/variables.scss';
2
+
3
+ @mixin hover($color) {
4
+ transition: background-color $transitionDuration;
5
+
6
+ &:hover {
7
+ background-color: $color !important;
8
+ }
9
+ }
10
+
11
+ .background {
12
+ &-black {
13
+ background-color: $ta-black;
14
+
15
+ &-2 {
16
+ background-color: $ta-black-2;
17
+ }
18
+ }
19
+ &-blue {
20
+ &-13 {
21
+ background-color: $ta-blue-13;
22
+ }
23
+ &-14 {
24
+ background-color: $ta-blue-14;
25
+ }
26
+ }
27
+ &-dark {
28
+ &-2 {
29
+ background-color: $dark-2;
30
+ }
31
+ }
32
+
33
+ &-hover {
34
+ &-bw2 {
35
+ @include hover($bw2);
36
+ }
37
+
38
+ &-blue {
39
+ &-15 {
40
+ @include hover($ta-blue-15);
41
+ }
42
+ }
43
+ }
44
+ }
@@ -0,0 +1,17 @@
1
+ @mixin border-radius($size) {
2
+ border-radius: $size;
3
+ }
4
+
5
+ $border-radius-sizes: 1, 2, 3, 10;
6
+
7
+ .br {
8
+ @each $size in $border-radius-sizes {
9
+ &-#{$size} {
10
+ @include border-radius(#{$size}px);
11
+ }
12
+ }
13
+
14
+ &-circle {
15
+ @include border-radius(50%);
16
+ }
17
+ }
@@ -0,0 +1,151 @@
1
+ @import 'theme/variables.scss';
2
+
3
+ .filter-dropdown {
4
+ &-popover {
5
+ width: 260px;
6
+
7
+ &-max-height {
8
+ max-height: 360px;
9
+ }
10
+ }
11
+
12
+ &-list {
13
+ max-height: 260px;
14
+ overflow-y: auto;
15
+
16
+ &-icon {
17
+ height: 26px;
18
+ transition: background-color $transitionDuration;
19
+
20
+ &-value {
21
+ height: 14px;
22
+ width: 14px;
23
+ }
24
+
25
+ &-remove {
26
+ display: none;
27
+ }
28
+
29
+ &:hover {
30
+ background-color: $ta-black;
31
+
32
+ .filter-dropdown-icon-count {
33
+ display: none;
34
+ }
35
+ }
36
+
37
+ &-selected {
38
+ &:hover {
39
+ background-color: $blue-9;
40
+ }
41
+ }
42
+ }
43
+
44
+ &-item {
45
+ &-icons {
46
+ transition: opacity $transitionDuration;
47
+ opacity: 0;
48
+ }
49
+
50
+ &-status-circle {
51
+ height: 10px;
52
+ width: 10px;
53
+ }
54
+
55
+ &-remove {
56
+ display: none;
57
+ }
58
+
59
+ &:hover {
60
+ background-color: $black;
61
+
62
+ .filter-dropdown-list-item-icons {
63
+ opacity: 1;
64
+
65
+ svg path {
66
+ fill: var(--svg-fill-color, $ta-red-10);
67
+ }
68
+ }
69
+ }
70
+
71
+ &-hover {
72
+ &:hover {
73
+ .filter-dropdown-list-item-remove {
74
+ display: flex;
75
+
76
+ svg path {
77
+ fill: $ta-red-10 !important;
78
+ }
79
+ }
80
+
81
+ .filter-dropdown-list-item-count {
82
+ display: none !important;
83
+ }
84
+ }
85
+ }
86
+ }
87
+ }
88
+
89
+ &-icon {
90
+ height: 26px;
91
+ width: 26px;
92
+ }
93
+
94
+ &-count {
95
+ height: 14px;
96
+ width: 14px;
97
+
98
+ &-remove {
99
+ display: none;
100
+ }
101
+
102
+ &-hover {
103
+ &:hover {
104
+ .filter-dropdown-count {
105
+ &-value {
106
+ display: none;
107
+ }
108
+ &-remove {
109
+ display: flex;
110
+ }
111
+ }
112
+ }
113
+ }
114
+ }
115
+
116
+ &-button {
117
+ height: 26px;
118
+ }
119
+
120
+ &-footer {
121
+ &-button {
122
+ color: $bw-9;
123
+ transition: color $transitionDuration, background-color $transitionDuration;
124
+
125
+ &-set {
126
+ color: $white-2;
127
+ background-color: $ta-blue-14;
128
+
129
+ &:hover {
130
+ background-color: $ta-blue-16;
131
+ color: $blue-9;
132
+ }
133
+ }
134
+ &-clear {
135
+ color: $bw-9;
136
+
137
+ &:hover {
138
+ background-color: $grey-12;
139
+ color: $ta-black;
140
+ }
141
+ }
142
+
143
+ height: 18px;
144
+ width: 50%;
145
+ }
146
+ }
147
+ }
148
+
149
+ .filter-dropdown-list-badge {
150
+ min-width: 18px;
151
+ }
@@ -31,6 +31,12 @@
31
31
  &-black {
32
32
  @include svg-fill($black);
33
33
  }
34
+ &-white {
35
+ @include svg-fill($white);
36
+ }
37
+ &-white-2 {
38
+ @include svg-fill($white-2);
39
+ }
34
40
  &-muted {
35
41
  @include svg-fill($muted);
36
42
  }
@@ -43,15 +49,27 @@
43
49
  &-light-grey-6 {
44
50
  @include svg-fill($ta-light-grey-6);
45
51
  }
52
+ &-blue-8 {
53
+ @include svg-fill($blue-8);
54
+ }
46
55
  &-blue-13 {
47
56
  @include svg-fill($ta-blue-13);
48
57
  }
58
+ &-blue-17 {
59
+ @include svg-fill($ta-blue-17);
60
+ }
49
61
  &-blue-19 {
50
62
  @include svg-fill($ta-blue-19);
51
63
  }
52
64
  &-blue-26 {
53
65
  @include svg-fill($ta-blue-26);
54
66
  }
67
+ &-red-10 {
68
+ @include svg-fill($ta-red-10);
69
+ }
70
+ &-white-4 {
71
+ @include svg-fill($white-4);
72
+ }
55
73
  &-grey {
56
74
  @include svg-fill($bw5);
57
75
  }
@@ -65,15 +83,30 @@
65
83
 
66
84
  // Hovers
67
85
  &-hover {
86
+ &-white {
87
+ @include svg-hover($white);
88
+ }
89
+ &-white-2 {
90
+ @include svg-hover($white-2);
91
+ }
68
92
  &-muted {
69
93
  @include svg-hover($muted);
70
94
  }
95
+ &-grey-4 {
96
+ @include svg-hover($grey-4);
97
+ }
71
98
  &-black {
72
99
  @include svg-hover($ta-black);
73
100
  }
101
+ &-blue-10 {
102
+ @include svg-hover($blue-10);
103
+ }
74
104
  &-blue-15 {
75
105
  @include svg-hover($ta-blue-15);
76
106
  }
107
+ &-blue-19 {
108
+ @include svg-hover($ta-blue-19);
109
+ }
77
110
  &-bw6-2 {
78
111
  @include svg-hover($bw6-2);
79
112
  }
@@ -87,6 +120,9 @@
87
120
 
88
121
  // Sizes
89
122
  &-size {
123
+ &-10 {
124
+ @include svg-size(10px, 10px);
125
+ }
90
126
  &-12 {
91
127
  @include svg-size(12px, 12px);
92
128
  }
@@ -102,6 +138,9 @@
102
138
  &-22 {
103
139
  @include svg-size(22px, 22px);
104
140
  }
141
+ &-26 {
142
+ @include svg-size(26px, 26px);
143
+ }
105
144
  &-44-16 {
106
145
  @include svg-size(44px, 16px);
107
146
  }