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
@@ -1,127 +0,0 @@
1
- import { InputCommandsAction, InputCommandsType } from '../enums';
2
- export function InputCommandMixin(Base) {
3
- return class extends Base {
4
- // #region OnCommands
5
- onCommands(e) {
6
- const { event, type, action } = e;
7
- event.stopPropagation();
8
- event.preventDefault();
9
- switch (type) {
10
- case InputCommandsType.PM_INCREMENT_DECREMENT:
11
- this.handlePmIncrementDecrement(action);
12
- break;
13
- case InputCommandsType.CONFIRM_CANCEL:
14
- this.handleConfirmCancel(action);
15
- break;
16
- case InputCommandsType.MONTHS:
17
- this.handleMonths(action);
18
- break;
19
- default:
20
- break;
21
- }
22
- }
23
- // #region
24
- handleMonths(action) {
25
- //clearTimeout(this.inputCommandsTimeout);
26
- switch (action) {
27
- case InputCommandsAction.MINUS:
28
- this.handleChangeInputAndUpdateControl((this.inputElement.nativeElement.value
29
- ? +this.inputElement.nativeElement.value
30
- : 0) - 1);
31
- break;
32
- case InputCommandsAction.PLUS:
33
- this.handleChangeInputAndUpdateControl((this.inputElement.nativeElement.value
34
- ? +this.inputElement.nativeElement.value
35
- : 0) + 1);
36
- break;
37
- default:
38
- break;
39
- }
40
- }
41
- // #endregion
42
- handleConfirmCancel(action) {
43
- switch (action) {
44
- case InputCommandsAction.CONFIRM:
45
- this.confirmCommand();
46
- break;
47
- case InputCommandsAction.CANCEL:
48
- this.cancelCommand();
49
- break;
50
- default:
51
- break;
52
- }
53
- // this.superControl.control?.setErrors(null);
54
- // this._inputConfig.dropdownLabelNew = false;
55
- // this._inputConfig.commands!.active = false;
56
- // this._inputConfig.blackInput = false;
57
- // this.isEditInput = false;
58
- // this.isVisibleCommands = false
59
- // this.isFocusInput = false;
60
- }
61
- cancelCommand() {
62
- //this.setCommandEvent.next({ action: InputCommandsAction.CANCEL });
63
- }
64
- confirmCommand() {
65
- // this.setCommandEvent.next({
66
- // data: this.superControl.control?.value,
67
- // action: InputCommandsAction.CONFIRM,
68
- // mode:
69
- // !this._inputConfig.dropdownLabelNew &&
70
- // this._inputConfig.name !== 'Input Dropdown Bank Name'
71
- // ? 'edit'
72
- // : 'new',
73
- // });
74
- }
75
- // #region HandlePmIncrementDecrement
76
- handlePmIncrementDecrement(action) {
77
- const numericValue = this.inputElement.nativeElement.value;
78
- // Remove thousands separators (`,`) before parsing
79
- let value = parseFloat(numericValue.replace(/,/g, ''));
80
- switch (action) {
81
- case InputCommandsAction.DECREMENT:
82
- case InputCommandsAction.INCREMENT:
83
- const incdecValue = this.decrementIncrementDecrementPmValue(value, action);
84
- this.handleChangeInputAndUpdateControl(action === InputCommandsAction.INCREMENT
85
- ? value + incdecValue
86
- : value - incdecValue);
87
- break;
88
- case InputCommandsAction.RESET:
89
- this.resetPmValue();
90
- break;
91
- default:
92
- break;
93
- }
94
- }
95
- // #region DecrementPmValue
96
- decrementIncrementDecrementPmValue(value, action) {
97
- if (value >= 10000 && value < 20000) {
98
- return 1000;
99
- }
100
- else if (value >= 20000 && value < 50000) {
101
- return 5000;
102
- }
103
- else if (value >= 50000 && value < 100000) {
104
- return 10000;
105
- }
106
- else if (value >= 500000 &&
107
- action === InputCommandsAction.INCREMENT) {
108
- return 0;
109
- }
110
- else if (value >= 100000) {
111
- return 20000;
112
- }
113
- else if (value <= 5000 &&
114
- action === InputCommandsAction.DECREMENT) {
115
- return 0;
116
- }
117
- return 500;
118
- }
119
- // #endregion
120
- // #region ResetPmValue
121
- resetPmValue() {
122
- if (this._inputConfig?.defaultValue)
123
- this.handleChangeInputAndUpdateControl(this._inputConfig?.defaultValue);
124
- }
125
- };
126
- }
127
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtY29tbWFuZC5taXhpbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0L21peGlucy9pbnB1dC1jb21tYW5kLm1peGluLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUdsRSxNQUFNLFVBQVUsaUJBQWlCLENBQW1DLElBQU87SUFDdkUsT0FBTyxLQUFNLFNBQVEsSUFBSTtRQUNyQixxQkFBcUI7UUFDZCxVQUFVLENBQUMsQ0FBTTtZQUNwQixNQUFNLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRSxNQUFNLEVBQUUsR0FBRyxDQUFDLENBQUM7WUFDbEMsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO1lBQ3hCLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUV2QixRQUFRLElBQUksRUFBRSxDQUFDO2dCQUNYLEtBQUssaUJBQWlCLENBQUMsc0JBQXNCO29CQUN6QyxJQUFJLENBQUMsMEJBQTBCLENBQUMsTUFBTSxDQUFDLENBQUM7b0JBQ3hDLE1BQU07Z0JBQ1YsS0FBSyxpQkFBaUIsQ0FBQyxjQUFjO29CQUNqQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTSxDQUFDLENBQUM7b0JBQ2pDLE1BQU07Z0JBQ1YsS0FBSyxpQkFBaUIsQ0FBQyxNQUFNO29CQUN6QixJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO29CQUMxQixNQUFNO2dCQUNWO29CQUNJLE1BQU07WUFDZCxDQUFDO1FBQ0wsQ0FBQztRQUVELFVBQVU7UUFFSCxZQUFZLENBQUMsTUFBYztZQUM5QiwwQ0FBMEM7WUFFMUMsUUFBUSxNQUFNLEVBQUUsQ0FBQztnQkFDYixLQUFLLG1CQUFtQixDQUFDLEtBQUs7b0JBQzFCLElBQUksQ0FBQyxpQ0FBaUMsQ0FDbEMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsQ0FBQyxLQUFLO3dCQUNsQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsQ0FBQyxLQUFLO3dCQUN4QyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUNmLENBQUM7b0JBQ0YsTUFBTTtnQkFDVixLQUFLLG1CQUFtQixDQUFDLElBQUk7b0JBQ3pCLElBQUksQ0FBQyxpQ0FBaUMsQ0FDbEMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsQ0FBQyxLQUFLO3dCQUNsQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsQ0FBQyxLQUFLO3dCQUN4QyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUNmLENBQUM7b0JBQ0YsTUFBTTtnQkFDVjtvQkFDSSxNQUFNO1lBQ2QsQ0FBQztRQUNMLENBQUM7UUFDRCxhQUFhO1FBRU4sbUJBQW1CLENBQUMsTUFBYztZQUNyQyxRQUFRLE1BQU0sRUFBRSxDQUFDO2dCQUNiLEtBQUssbUJBQW1CLENBQUMsT0FBTztvQkFDNUIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO29CQUN0QixNQUFNO2dCQUNWLEtBQUssbUJBQW1CLENBQUMsTUFBTTtvQkFDM0IsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO29CQUNyQixNQUFNO2dCQUNWO29CQUNJLE1BQU07WUFDZCxDQUFDO1lBRUQsOENBQThDO1lBQzlDLDhDQUE4QztZQUM5Qyw4Q0FBOEM7WUFDOUMsd0NBQXdDO1lBQ3hDLDRCQUE0QjtZQUM1QixpQ0FBaUM7WUFDakMsNkJBQTZCO1FBQ2pDLENBQUM7UUFFTSxhQUFhO1lBQ2hCLG9FQUFvRTtRQUN4RSxDQUFDO1FBRU0sY0FBYztZQUNqQiw4QkFBOEI7WUFDOUIsOENBQThDO1lBQzlDLDJDQUEyQztZQUMzQyxZQUFZO1lBQ1osaURBQWlEO1lBQ2pELGdFQUFnRTtZQUNoRSx1QkFBdUI7WUFDdkIsdUJBQXVCO1lBQ3ZCLE1BQU07UUFDVixDQUFDO1FBRUQscUNBQXFDO1FBQzlCLDBCQUEwQixDQUFDLE1BQWM7WUFDNUMsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDO1lBRTNELG1EQUFtRDtZQUNuRCxJQUFJLEtBQUssR0FBRyxVQUFVLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQztZQUV2RCxRQUFRLE1BQU0sRUFBRSxDQUFDO2dCQUNiLEtBQUssbUJBQW1CLENBQUMsU0FBUyxDQUFDO2dCQUNuQyxLQUFLLG1CQUFtQixDQUFDLFNBQVM7b0JBQzlCLE1BQU0sV0FBVyxHQUFHLElBQUksQ0FBQyxrQ0FBa0MsQ0FDdkQsS0FBSyxFQUNMLE1BQU0sQ0FDVCxDQUFDO29CQUNGLElBQUksQ0FBQyxpQ0FBaUMsQ0FDbEMsTUFBTSxLQUFLLG1CQUFtQixDQUFDLFNBQVM7d0JBQ3BDLENBQUMsQ0FBQyxLQUFLLEdBQUcsV0FBVzt3QkFDckIsQ0FBQyxDQUFDLEtBQUssR0FBRyxXQUFXLENBQzVCLENBQUM7b0JBQ0YsTUFBTTtnQkFDVixLQUFLLG1CQUFtQixDQUFDLEtBQUs7b0JBQzFCLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQztvQkFDcEIsTUFBTTtnQkFDVjtvQkFDSSxNQUFNO1lBQ2QsQ0FBQztRQUNMLENBQUM7UUFFRCwyQkFBMkI7UUFDcEIsa0NBQWtDLENBQ3JDLEtBQWEsRUFDYixNQUEyQjtZQUUzQixJQUFJLEtBQUssSUFBSSxLQUFLLElBQUksS0FBSyxHQUFHLEtBQUssRUFBRSxDQUFDO2dCQUNsQyxPQUFPLElBQUksQ0FBQztZQUNoQixDQUFDO2lCQUFNLElBQUksS0FBSyxJQUFJLEtBQUssSUFBSSxLQUFLLEdBQUcsS0FBSyxFQUFFLENBQUM7Z0JBQ3pDLE9BQU8sSUFBSSxDQUFDO1lBQ2hCLENBQUM7aUJBQU0sSUFBSSxLQUFLLElBQUksS0FBSyxJQUFJLEtBQUssR0FBRyxNQUFNLEVBQUUsQ0FBQztnQkFDMUMsT0FBTyxLQUFLLENBQUM7WUFDakIsQ0FBQztpQkFBTSxJQUNILEtBQUssSUFBSSxNQUFNO2dCQUNmLE1BQU0sS0FBSyxtQkFBbUIsQ0FBQyxTQUFTLEVBQzFDLENBQUM7Z0JBQ0MsT0FBTyxDQUFDLENBQUM7WUFDYixDQUFDO2lCQUFNLElBQUksS0FBSyxJQUFJLE1BQU0sRUFBRSxDQUFDO2dCQUN6QixPQUFPLEtBQUssQ0FBQztZQUNqQixDQUFDO2lCQUFNLElBQ0gsS0FBSyxJQUFJLElBQUk7Z0JBQ2IsTUFBTSxLQUFLLG1CQUFtQixDQUFDLFNBQVMsRUFDMUMsQ0FBQztnQkFDQyxPQUFPLENBQUMsQ0FBQztZQUNiLENBQUM7WUFFRCxPQUFPLEdBQUcsQ0FBQztRQUNmLENBQUM7UUFDRCxhQUFhO1FBRWIsdUJBQXVCO1FBQ2hCLFlBQVk7WUFDZixJQUFJLElBQUksQ0FBQyxZQUFZLEVBQUUsWUFBWTtnQkFDL0IsSUFBSSxDQUFDLGlDQUFpQyxDQUNsQyxJQUFJLENBQUMsWUFBWSxFQUFFLFlBQWEsQ0FDbkMsQ0FBQztRQUNWLENBQUM7S0FHSixDQUFDO0FBQ04sQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdG9yIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzL21peGluLm1vZGVsJztcbmltcG9ydCB7IElucHV0Q29tbWFuZHNBY3Rpb24sIElucHV0Q29tbWFuZHNUeXBlIH0gZnJvbSAnLi4vZW51bXMnO1xuaW1wb3J0IHsgSW5wdXRCYXNlIH0gZnJvbSAnLi4vbW9kZWxzL2Jhc2UubW9kZWwnO1xuXG5leHBvcnQgZnVuY3Rpb24gSW5wdXRDb21tYW5kTWl4aW48VCBleHRlbmRzIENvbnN0cnVjdG9yPElucHV0QmFzZT4+KEJhc2U6IFQpIHtcbiAgICByZXR1cm4gY2xhc3MgZXh0ZW5kcyBCYXNlIHtcbiAgICAgICAgLy8gI3JlZ2lvbiBPbkNvbW1hbmRzXG4gICAgICAgIHB1YmxpYyBvbkNvbW1hbmRzKGU6IGFueSk6IHZvaWQge1xuICAgICAgICAgICAgY29uc3QgeyBldmVudCwgdHlwZSwgYWN0aW9uIH0gPSBlO1xuICAgICAgICAgICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgICAgICAgICBldmVudC5wcmV2ZW50RGVmYXVsdCgpO1xuXG4gICAgICAgICAgICBzd2l0Y2ggKHR5cGUpIHtcbiAgICAgICAgICAgICAgICBjYXNlIElucHV0Q29tbWFuZHNUeXBlLlBNX0lOQ1JFTUVOVF9ERUNSRU1FTlQ6XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlUG1JbmNyZW1lbnREZWNyZW1lbnQoYWN0aW9uKTtcbiAgICAgICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICAgICAgY2FzZSBJbnB1dENvbW1hbmRzVHlwZS5DT05GSVJNX0NBTkNFTDpcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5oYW5kbGVDb25maXJtQ2FuY2VsKGFjdGlvbik7XG4gICAgICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgICAgIGNhc2UgSW5wdXRDb21tYW5kc1R5cGUuTU9OVEhTOlxuICAgICAgICAgICAgICAgICAgICB0aGlzLmhhbmRsZU1vbnRocyhhY3Rpb24pO1xuICAgICAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgICAgICBkZWZhdWx0OlxuICAgICAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICAgIC8vICNyZWdpb25cblxuICAgICAgICBwdWJsaWMgaGFuZGxlTW9udGhzKGFjdGlvbjogc3RyaW5nKTogdm9pZCB7XG4gICAgICAgICAgICAvL2NsZWFyVGltZW91dCh0aGlzLmlucHV0Q29tbWFuZHNUaW1lb3V0KTtcblxuICAgICAgICAgICAgc3dpdGNoIChhY3Rpb24pIHtcbiAgICAgICAgICAgICAgICBjYXNlIElucHV0Q29tbWFuZHNBY3Rpb24uTUlOVVM6XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlQ2hhbmdlSW5wdXRBbmRVcGRhdGVDb250cm9sKFxuICAgICAgICAgICAgICAgICAgICAgICAgKHRoaXMuaW5wdXRFbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA/ICt0aGlzLmlucHV0RWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgOiAwKSAtIDFcbiAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICAgICAgY2FzZSBJbnB1dENvbW1hbmRzQWN0aW9uLlBMVVM6XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlQ2hhbmdlSW5wdXRBbmRVcGRhdGVDb250cm9sKFxuICAgICAgICAgICAgICAgICAgICAgICAgKHRoaXMuaW5wdXRFbGVtZW50Lm5hdGl2ZUVsZW1lbnQudmFsdWVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA/ICt0aGlzLmlucHV0RWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgOiAwKSArIDFcbiAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICAgICAgZGVmYXVsdDpcbiAgICAgICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgICAgLy8gI2VuZHJlZ2lvblxuXG4gICAgICAgIHB1YmxpYyBoYW5kbGVDb25maXJtQ2FuY2VsKGFjdGlvbjogc3RyaW5nKTogdm9pZCB7XG4gICAgICAgICAgICBzd2l0Y2ggKGFjdGlvbikge1xuICAgICAgICAgICAgICAgIGNhc2UgSW5wdXRDb21tYW5kc0FjdGlvbi5DT05GSVJNOlxuICAgICAgICAgICAgICAgICAgICB0aGlzLmNvbmZpcm1Db21tYW5kKCk7XG4gICAgICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgICAgIGNhc2UgSW5wdXRDb21tYW5kc0FjdGlvbi5DQU5DRUw6XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuY2FuY2VsQ29tbWFuZCgpO1xuICAgICAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgICAgICBkZWZhdWx0OlxuICAgICAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgLy8gdGhpcy5zdXBlckNvbnRyb2wuY29udHJvbD8uc2V0RXJyb3JzKG51bGwpO1xuICAgICAgICAgICAgLy8gdGhpcy5faW5wdXRDb25maWcuZHJvcGRvd25MYWJlbE5ldyA9IGZhbHNlO1xuICAgICAgICAgICAgLy8gdGhpcy5faW5wdXRDb25maWcuY29tbWFuZHMhLmFjdGl2ZSA9IGZhbHNlO1xuICAgICAgICAgICAgLy8gdGhpcy5faW5wdXRDb25maWcuYmxhY2tJbnB1dCA9IGZhbHNlO1xuICAgICAgICAgICAgLy8gdGhpcy5pc0VkaXRJbnB1dCA9IGZhbHNlO1xuICAgICAgICAgICAgLy8gdGhpcy5pc1Zpc2libGVDb21tYW5kcyA9IGZhbHNlXG4gICAgICAgICAgICAvLyB0aGlzLmlzRm9jdXNJbnB1dCA9IGZhbHNlO1xuICAgICAgICB9XG5cbiAgICAgICAgcHVibGljIGNhbmNlbENvbW1hbmQoKTogdm9pZCB7XG4gICAgICAgICAgICAvL3RoaXMuc2V0Q29tbWFuZEV2ZW50Lm5leHQoeyBhY3Rpb246IElucHV0Q29tbWFuZHNBY3Rpb24uQ0FOQ0VMIH0pO1xuICAgICAgICB9XG5cbiAgICAgICAgcHVibGljIGNvbmZpcm1Db21tYW5kKCk6IHZvaWQge1xuICAgICAgICAgICAgLy8gdGhpcy5zZXRDb21tYW5kRXZlbnQubmV4dCh7XG4gICAgICAgICAgICAvLyAgICAgZGF0YTogdGhpcy5zdXBlckNvbnRyb2wuY29udHJvbD8udmFsdWUsXG4gICAgICAgICAgICAvLyAgICAgYWN0aW9uOiBJbnB1dENvbW1hbmRzQWN0aW9uLkNPTkZJUk0sXG4gICAgICAgICAgICAvLyAgICAgbW9kZTpcbiAgICAgICAgICAgIC8vICAgICAgICAgIXRoaXMuX2lucHV0Q29uZmlnLmRyb3Bkb3duTGFiZWxOZXcgJiZcbiAgICAgICAgICAgIC8vICAgICAgICAgdGhpcy5faW5wdXRDb25maWcubmFtZSAhPT0gJ0lucHV0IERyb3Bkb3duIEJhbmsgTmFtZSdcbiAgICAgICAgICAgIC8vICAgICAgICAgICAgID8gJ2VkaXQnXG4gICAgICAgICAgICAvLyAgICAgICAgICAgICA6ICduZXcnLFxuICAgICAgICAgICAgLy8gfSk7XG4gICAgICAgIH1cblxuICAgICAgICAvLyAjcmVnaW9uIEhhbmRsZVBtSW5jcmVtZW50RGVjcmVtZW50XG4gICAgICAgIHB1YmxpYyBoYW5kbGVQbUluY3JlbWVudERlY3JlbWVudChhY3Rpb246IHN0cmluZyk6IHZvaWQge1xuICAgICAgICAgICAgY29uc3QgbnVtZXJpY1ZhbHVlID0gdGhpcy5pbnB1dEVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZTtcblxuICAgICAgICAgICAgLy8gUmVtb3ZlIHRob3VzYW5kcyBzZXBhcmF0b3JzIChgLGApIGJlZm9yZSBwYXJzaW5nXG4gICAgICAgICAgICBsZXQgdmFsdWUgPSBwYXJzZUZsb2F0KG51bWVyaWNWYWx1ZS5yZXBsYWNlKC8sL2csICcnKSk7XG5cbiAgICAgICAgICAgIHN3aXRjaCAoYWN0aW9uKSB7XG4gICAgICAgICAgICAgICAgY2FzZSBJbnB1dENvbW1hbmRzQWN0aW9uLkRFQ1JFTUVOVDpcbiAgICAgICAgICAgICAgICBjYXNlIElucHV0Q29tbWFuZHNBY3Rpb24uSU5DUkVNRU5UOlxuICAgICAgICAgICAgICAgICAgICBjb25zdCBpbmNkZWNWYWx1ZSA9IHRoaXMuZGVjcmVtZW50SW5jcmVtZW50RGVjcmVtZW50UG1WYWx1ZShcbiAgICAgICAgICAgICAgICAgICAgICAgIHZhbHVlLFxuICAgICAgICAgICAgICAgICAgICAgICAgYWN0aW9uXG4gICAgICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlQ2hhbmdlSW5wdXRBbmRVcGRhdGVDb250cm9sKFxuICAgICAgICAgICAgICAgICAgICAgICAgYWN0aW9uID09PSBJbnB1dENvbW1hbmRzQWN0aW9uLklOQ1JFTUVOVFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgID8gdmFsdWUgKyBpbmNkZWNWYWx1ZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDogdmFsdWUgLSBpbmNkZWNWYWx1ZVxuICAgICAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgICAgICBjYXNlIElucHV0Q29tbWFuZHNBY3Rpb24uUkVTRVQ6XG4gICAgICAgICAgICAgICAgICAgIHRoaXMucmVzZXRQbVZhbHVlKCk7XG4gICAgICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgLy8gI3JlZ2lvbiBEZWNyZW1lbnRQbVZhbHVlXG4gICAgICAgIHB1YmxpYyBkZWNyZW1lbnRJbmNyZW1lbnREZWNyZW1lbnRQbVZhbHVlKFxuICAgICAgICAgICAgdmFsdWU6IG51bWJlcixcbiAgICAgICAgICAgIGFjdGlvbjogSW5wdXRDb21tYW5kc0FjdGlvblxuICAgICAgICApOiBudW1iZXIge1xuICAgICAgICAgICAgaWYgKHZhbHVlID49IDEwMDAwICYmIHZhbHVlIDwgMjAwMDApIHtcbiAgICAgICAgICAgICAgICByZXR1cm4gMTAwMDtcbiAgICAgICAgICAgIH0gZWxzZSBpZiAodmFsdWUgPj0gMjAwMDAgJiYgdmFsdWUgPCA1MDAwMCkge1xuICAgICAgICAgICAgICAgIHJldHVybiA1MDAwO1xuICAgICAgICAgICAgfSBlbHNlIGlmICh2YWx1ZSA+PSA1MDAwMCAmJiB2YWx1ZSA8IDEwMDAwMCkge1xuICAgICAgICAgICAgICAgIHJldHVybiAxMDAwMDtcbiAgICAgICAgICAgIH0gZWxzZSBpZiAoXG4gICAgICAgICAgICAgICAgdmFsdWUgPj0gNTAwMDAwICYmXG4gICAgICAgICAgICAgICAgYWN0aW9uID09PSBJbnB1dENvbW1hbmRzQWN0aW9uLklOQ1JFTUVOVFxuICAgICAgICAgICAgKSB7XG4gICAgICAgICAgICAgICAgcmV0dXJuIDA7XG4gICAgICAgICAgICB9IGVsc2UgaWYgKHZhbHVlID49IDEwMDAwMCkge1xuICAgICAgICAgICAgICAgIHJldHVybiAyMDAwMDtcbiAgICAgICAgICAgIH0gZWxzZSBpZiAoXG4gICAgICAgICAgICAgICAgdmFsdWUgPD0gNTAwMCAmJlxuICAgICAgICAgICAgICAgIGFjdGlvbiA9PT0gSW5wdXRDb21tYW5kc0FjdGlvbi5ERUNSRU1FTlRcbiAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgIHJldHVybiAwO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICByZXR1cm4gNTAwO1xuICAgICAgICB9XG4gICAgICAgIC8vICNlbmRyZWdpb25cblxuICAgICAgICAvLyAjcmVnaW9uIFJlc2V0UG1WYWx1ZVxuICAgICAgICBwdWJsaWMgcmVzZXRQbVZhbHVlKCk6IHZvaWQge1xuICAgICAgICAgICAgaWYgKHRoaXMuX2lucHV0Q29uZmlnPy5kZWZhdWx0VmFsdWUpXG4gICAgICAgICAgICAgICAgdGhpcy5oYW5kbGVDaGFuZ2VJbnB1dEFuZFVwZGF0ZUNvbnRyb2woXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX2lucHV0Q29uZmlnPy5kZWZhdWx0VmFsdWUhXG4gICAgICAgICAgICAgICAgKTtcbiAgICAgICAgfVxuXG4gICAgICAgIC8vICNlbmRyZWdpb25cbiAgICB9O1xufVxuIl19
@@ -1,49 +0,0 @@
1
- export function InputHelperMixin(Base) {
2
- return class extends Base {
3
- // Transform value after we get update from Angular
4
- transformValue(inputConfig, value) {
5
- if (value) {
6
- if (inputConfig.mask)
7
- return this.maskApplier.applyMask(value, inputConfig.mask);
8
- else if (inputConfig.priceSeparator)
9
- return this.thousandSeparatorPipe.transform(value);
10
- }
11
- else if (inputConfig.defaultValue) {
12
- return inputConfig.defaultValue;
13
- }
14
- return value;
15
- }
16
- // #region ToggleDropdownOptions
17
- toggleDropdownOptions() {
18
- this.handleToggleDropdownOptions.emit();
19
- if (this._inputConfig.isDisabled) {
20
- return;
21
- }
22
- this.isDropdownToggler = !this.isDropdownToggler;
23
- // this.setShowHideDropdown.next(this.isDropdownToggler);
24
- if (this.isDropdownToggler) {
25
- this.inputElement.nativeElement.focus();
26
- this.isFocusInput = true;
27
- }
28
- }
29
- // #endregion
30
- // #region onPlaceholderIconevent
31
- onPlaceholderIconEvent(event) {
32
- event.preventDefault();
33
- event.stopPropagation();
34
- if (this.isEditInput) {
35
- this.setCommandEvent.next({
36
- data: this.inputElement.nativeElement?.value,
37
- action: 'Toggle Dropdown',
38
- });
39
- }
40
- else {
41
- this.setCommandEvent.next({
42
- data: this.inputElement.nativeElement?.value,
43
- action: 'Placeholder Icon Event',
44
- });
45
- }
46
- }
47
- };
48
- }
49
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtaGVscGVyLm1peGluLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvbWl4aW5zL2lucHV0LWhlbHBlci5taXhpbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFLQSxNQUFNLFVBQVUsZ0JBQWdCLENBQW1DLElBQU87SUFDdEUsT0FBTyxLQUFNLFNBQVEsSUFBSTtRQUNyQixtREFBbUQ7UUFDNUMsY0FBYyxDQUFDLFdBQXFCLEVBQUUsS0FBdUI7WUFDaEUsSUFBSSxLQUFLLEVBQUUsQ0FBQztnQkFDUixJQUFJLFdBQVcsQ0FBQyxJQUFJO29CQUNoQixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsU0FBUyxDQUM3QixLQUFlLEVBQ2YsV0FBVyxDQUFDLElBQUksQ0FDbkIsQ0FBQztxQkFDRCxJQUFJLFdBQVcsQ0FBQyxjQUFjO29CQUMvQixPQUFPLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDM0QsQ0FBQztpQkFBTSxJQUFJLFdBQVcsQ0FBQyxZQUFZLEVBQUUsQ0FBQztnQkFDbEMsT0FBTyxXQUFXLENBQUMsWUFBWSxDQUFDO1lBQ3BDLENBQUM7WUFFRCxPQUFPLEtBQUssQ0FBQztRQUNqQixDQUFDO1FBRUQsZ0NBQWdDO1FBQ3pCLHFCQUFxQjtZQUN4QixJQUFJLENBQUMsMkJBQTJCLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDeEMsSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLFVBQVUsRUFBRSxDQUFDO2dCQUMvQixPQUFPO1lBQ1gsQ0FBQztZQUVELElBQUksQ0FBQyxpQkFBaUIsR0FBRyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQztZQUVqRCx5REFBeUQ7WUFFekQsSUFBSSxJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztnQkFDekIsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFLENBQUM7Z0JBQ3hDLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDO1lBQzdCLENBQUM7UUFDTCxDQUFDO1FBQ0QsYUFBYTtRQUViLGlDQUFpQztRQUMxQixzQkFBc0IsQ0FBQyxLQUFZO1lBQ3RDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUN2QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDeEIsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7Z0JBQ25CLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDO29CQUN0QixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLEVBQUUsS0FBSztvQkFDNUMsTUFBTSxFQUFFLGlCQUFpQjtpQkFDNUIsQ0FBQyxDQUFDO1lBQ1AsQ0FBQztpQkFBTSxDQUFDO2dCQUNKLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDO29CQUN0QixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLEVBQUUsS0FBSztvQkFDNUMsTUFBTSxFQUFFLHdCQUF3QjtpQkFDbkMsQ0FBQyxDQUFDO1lBQ1AsQ0FBQztRQUNMLENBQUM7S0FFSixDQUFDO0FBQ04sQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnN0cnVjdG9yIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzL21peGluLm1vZGVsJztcbmltcG9ydCB7IElDYUlucHV0IH0gZnJvbSAnLi4vY29uZmlnJztcbmltcG9ydCB7IElucHV0Q2hhbmdlVmFsdWUgfSBmcm9tICcuLi91dGlscyc7XG5pbXBvcnQgeyBJbnB1dEJhc2UgfSBmcm9tICcuLi9tb2RlbHMvYmFzZS5tb2RlbCc7XG5cbmV4cG9ydCBmdW5jdGlvbiBJbnB1dEhlbHBlck1peGluPFQgZXh0ZW5kcyBDb25zdHJ1Y3RvcjxJbnB1dEJhc2U+PihCYXNlOiBUKSB7XG4gICAgcmV0dXJuIGNsYXNzIGV4dGVuZHMgQmFzZSB7XG4gICAgICAgIC8vIFRyYW5zZm9ybSB2YWx1ZSBhZnRlciB3ZSBnZXQgdXBkYXRlIGZyb20gQW5ndWxhclxuICAgICAgICBwdWJsaWMgdHJhbnNmb3JtVmFsdWUoaW5wdXRDb25maWc6IElDYUlucHV0LCB2YWx1ZTogSW5wdXRDaGFuZ2VWYWx1ZSkge1xuICAgICAgICAgICAgaWYgKHZhbHVlKSB7XG4gICAgICAgICAgICAgICAgaWYgKGlucHV0Q29uZmlnLm1hc2spXG4gICAgICAgICAgICAgICAgICAgIHJldHVybiB0aGlzLm1hc2tBcHBsaWVyLmFwcGx5TWFzayhcbiAgICAgICAgICAgICAgICAgICAgICAgIHZhbHVlIGFzIHN0cmluZyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGlucHV0Q29uZmlnLm1hc2tcbiAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICBlbHNlIGlmIChpbnB1dENvbmZpZy5wcmljZVNlcGFyYXRvcilcbiAgICAgICAgICAgICAgICAgICAgcmV0dXJuIHRoaXMudGhvdXNhbmRTZXBhcmF0b3JQaXBlLnRyYW5zZm9ybSh2YWx1ZSk7XG4gICAgICAgICAgICB9IGVsc2UgaWYgKGlucHV0Q29uZmlnLmRlZmF1bHRWYWx1ZSkge1xuICAgICAgICAgICAgICAgIHJldHVybiBpbnB1dENvbmZpZy5kZWZhdWx0VmFsdWU7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIHJldHVybiB2YWx1ZTtcbiAgICAgICAgfVxuXG4gICAgICAgIC8vICNyZWdpb24gVG9nZ2xlRHJvcGRvd25PcHRpb25zXG4gICAgICAgIHB1YmxpYyB0b2dnbGVEcm9wZG93bk9wdGlvbnMoKTogdm9pZCB7XG4gICAgICAgICAgICB0aGlzLmhhbmRsZVRvZ2dsZURyb3Bkb3duT3B0aW9ucy5lbWl0KCk7XG4gICAgICAgICAgICBpZiAodGhpcy5faW5wdXRDb25maWcuaXNEaXNhYmxlZCkge1xuICAgICAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgdGhpcy5pc0Ryb3Bkb3duVG9nZ2xlciA9ICF0aGlzLmlzRHJvcGRvd25Ub2dnbGVyO1xuXG4gICAgICAgICAgICAvLyB0aGlzLnNldFNob3dIaWRlRHJvcGRvd24ubmV4dCh0aGlzLmlzRHJvcGRvd25Ub2dnbGVyKTtcblxuICAgICAgICAgICAgaWYgKHRoaXMuaXNEcm9wZG93blRvZ2dsZXIpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmlucHV0RWxlbWVudC5uYXRpdmVFbGVtZW50LmZvY3VzKCk7XG4gICAgICAgICAgICAgICAgdGhpcy5pc0ZvY3VzSW5wdXQgPSB0cnVlO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgIC8vICNlbmRyZWdpb25cblxuICAgICAgICAvLyAjcmVnaW9uIG9uUGxhY2Vob2xkZXJJY29uZXZlbnRcbiAgICAgICAgcHVibGljIG9uUGxhY2Vob2xkZXJJY29uRXZlbnQoZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG4gICAgICAgICAgICBldmVudC5wcmV2ZW50RGVmYXVsdCgpO1xuICAgICAgICAgICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgICAgICAgICBpZiAodGhpcy5pc0VkaXRJbnB1dCkge1xuICAgICAgICAgICAgICAgIHRoaXMuc2V0Q29tbWFuZEV2ZW50Lm5leHQoe1xuICAgICAgICAgICAgICAgICAgICBkYXRhOiB0aGlzLmlucHV0RWxlbWVudC5uYXRpdmVFbGVtZW50Py52YWx1ZSxcbiAgICAgICAgICAgICAgICAgICAgYWN0aW9uOiAnVG9nZ2xlIERyb3Bkb3duJyxcbiAgICAgICAgICAgICAgICB9KTtcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgdGhpcy5zZXRDb21tYW5kRXZlbnQubmV4dCh7XG4gICAgICAgICAgICAgICAgICAgIGRhdGE6IHRoaXMuaW5wdXRFbGVtZW50Lm5hdGl2ZUVsZW1lbnQ/LnZhbHVlLFxuICAgICAgICAgICAgICAgICAgICBhY3Rpb246ICdQbGFjZWhvbGRlciBJY29uIEV2ZW50JyxcbiAgICAgICAgICAgICAgICB9KTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAvLyAjZW5kcmVnaW9uXG4gICAgfTtcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWlucHV0L21vZGVscy9iYXNlLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFbGVtZW50UmVmLCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElDYUlucHV0IH0gZnJvbSAnLi4vY29uZmlnJztcbmltcG9ydCB7IElucHV0Q2hhbmdlVmFsdWUgfSBmcm9tICcuLi91dGlscyc7XG5pbXBvcnQgeyBOZ3hNYXNrU2VydmljZSB9IGZyb20gJ25neC1tYXNrJztcbmltcG9ydCB7IFRob3VzYW5kU2VwYXJhdG9yUGlwZSB9IGZyb20gJy4uLy4uLy4uL3BpcGVzJztcbmltcG9ydCB7IEV2ZW50SW5wdXRNYW5hZ2VyIH0gZnJvbSAnLi4vYmFzZS1jbGFzc2VzL2NhLWlucHV0LWV2ZW50LW1hbmFnZXInO1xuaW1wb3J0IHsgQ29tbWFuZHNFdmVudCB9IGZyb20gJy4vY29tbWFuZHMtZXZlbnQubW9kZWwnO1xuXG5leHBvcnQgdHlwZSBJbnB1dEJhc2UgPSB7XG4gICAgaW5wdXRFbGVtZW50OiBFbGVtZW50UmVmO1xuICAgIF9pbnB1dENvbmZpZzogSUNhSW5wdXQ7XG4gICAgb25Ub3VjaGVkOiAoKSA9PiB2b2lkO1xuICAgIG9uQ2hhbmdlKF86IGFueSk6IHZvaWQ7XG4gICAgaGFuZGxlQ2hhbmdlSW5wdXRBbmRVcGRhdGVDb250cm9sKF86IElucHV0Q2hhbmdlVmFsdWUpOiB2b2lkO1xuICAgIGlzVmlzaWJsZUNvbW1hbmRzOiBib29sZWFuO1xuICAgIG1hc2tBcHBsaWVyOiBOZ3hNYXNrU2VydmljZTtcbiAgICB0aG91c2FuZFNlcGFyYXRvclBpcGU6IFRob3VzYW5kU2VwYXJhdG9yUGlwZTtcbiAgICBoYW5kbGVUb2dnbGVEcm9wZG93bk9wdGlvbnM6IEV2ZW50RW1pdHRlcjx2b2lkPjtcbiAgICBpc0ZvY3VzSW5wdXQ6IGJvb2xlYW47XG4gICAgaXNFZGl0SW5wdXQ6IGJvb2xlYW47XG4gICAgaXNEcm9wZG93blRvZ2dsZXI6IGJvb2xlYW47XG4gICAgaXNUb3VjaGVkSW5wdXQ6IGJvb2xlYW47XG4gICAgc2V0Q29tbWFuZEV2ZW50OiBFdmVudElucHV0TWFuYWdlcjxDb21tYW5kc0V2ZW50Pjtcbn07XG4iXX0=