shared-ui-test-2 1.0.0

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 (747) hide show
  1. package/constants/breadcrumbs.const.d.ts +1 -0
  2. package/constants/class-name.constant.d.ts +1 -0
  3. package/constants/query-design-custom-class.constant.d.ts +1 -0
  4. package/core/auth-providers.module.d.ts +7 -0
  5. package/core/blank/blank.component.d.ts +5 -0
  6. package/core/components/horizontal-navigation/horizontal-navigation-menu-item/horizontal-navigation-menu-item.component.d.ts +9 -0
  7. package/core/components/horizontal-navigation/horizontal-navigation.component.d.ts +7 -0
  8. package/core/components/not-authorized/not-authorized.component.d.ts +6 -0
  9. package/core/components/sidebar/main-navigation/main-navigation.component.d.ts +28 -0
  10. package/core/components/sidebar/sidebar.component.d.ts +5 -0
  11. package/core/components/top-navigation/top-navigation.component.d.ts +6 -0
  12. package/core/components/user-info-menu/user-info-menu.component.d.ts +32 -0
  13. package/core/constants/active-statuses.d.ts +2 -0
  14. package/core/constants/availability.d.ts +2 -0
  15. package/core/constants/dashboard-portal-url.d.ts +1 -0
  16. package/core/constants/full-width-modal-config.d.ts +2 -0
  17. package/core/constants/horizontal-navigation.config.d.ts +2 -0
  18. package/core/constants/local-constants.d.ts +13 -0
  19. package/core/constants/pagination.const.d.ts +6 -0
  20. package/core/constants/privacy.d.ts +2 -0
  21. package/core/constants/request-context.d.ts +7 -0
  22. package/core/constants/yes-no.d.ts +2 -0
  23. package/core/core.module.d.ts +18 -0
  24. package/core/directive/authorize.directive.d.ts +14 -0
  25. package/core/enums/client-name.enum.d.ts +4 -0
  26. package/core/enums/object-properties.enum.d.ts +57 -0
  27. package/core/interceptors/error.interceptor.d.ts +13 -0
  28. package/core/interceptors/health-check-header.interceptor.d.ts +10 -0
  29. package/core/interfaces/business-rule.interface.d.ts +54 -0
  30. package/core/interfaces/filters.api.interface.d.ts +32 -0
  31. package/core/interfaces/horizontal-navigation.interface.d.ts +11 -0
  32. package/core/interfaces/navigation.interface.d.ts +5 -0
  33. package/core/interfaces/response-headers.interface.d.ts +5 -0
  34. package/core/models/auth-service-configuration.d.ts +4 -0
  35. package/core/models/menu-elements-dto.d.ts +21 -0
  36. package/core/models/refresh-tokens-response.d.ts +5 -0
  37. package/core/models/version-data.d.ts +3 -0
  38. package/core/resolvers/policy.resolver.d.ts +18 -0
  39. package/core/services/http.service.d.ts +75 -0
  40. package/core/services/loading.service.d.ts +10 -0
  41. package/core/services/local-storage.service.d.ts +35 -0
  42. package/core/services/nav-menu-data.service.d.ts +13 -0
  43. package/core/services/user-management.service.d.ts +39 -0
  44. package/core/services/user-policy.service.d.ts +15 -0
  45. package/core/site/services/support-util.service.d.ts +18 -0
  46. package/core/token/app-auth-config-injection-token.d.ts +9 -0
  47. package/core/token/app-env-injection.token.d.ts +8 -0
  48. package/core/token/policy-injection-token.d.ts +2 -0
  49. package/core/utils/service-url.util.d.ts +1 -0
  50. package/core/utils/sql-to-filter-datatype-converter.d.ts +2 -0
  51. package/core/utils/type-checks.utils.d.ts +10 -0
  52. package/core/utils/uuid-generator.utils.d.ts +1 -0
  53. package/directives/let.directive.d.ts +25 -0
  54. package/directives/remove-cancel-button.directive.d.ts +10 -0
  55. package/enums/access-types.enum.d.ts +5 -0
  56. package/enums/action-types.enum.d.ts +16 -0
  57. package/enums/active-status.enum.d.ts +4 -0
  58. package/enums/sort-direction.enum.d.ts +4 -0
  59. package/enums/source-types.enum.d.ts +4 -0
  60. package/enums/tooltips-prop.enum.d.ts +31 -0
  61. package/esm2022/constants/breadcrumbs.const.mjs +2 -0
  62. package/esm2022/constants/class-name.constant.mjs +2 -0
  63. package/esm2022/constants/query-design-custom-class.constant.mjs +2 -0
  64. package/esm2022/core/auth-providers.module.mjs +131 -0
  65. package/esm2022/core/blank/blank.component.mjs +12 -0
  66. package/esm2022/core/components/horizontal-navigation/horizontal-navigation-menu-item/horizontal-navigation-menu-item.component.mjs +29 -0
  67. package/esm2022/core/components/horizontal-navigation/horizontal-navigation.component.mjs +17 -0
  68. package/esm2022/core/components/not-authorized/not-authorized.component.mjs +17 -0
  69. package/esm2022/core/components/sidebar/main-navigation/main-navigation.component.mjs +88 -0
  70. package/esm2022/core/components/sidebar/sidebar.component.mjs +12 -0
  71. package/esm2022/core/components/top-navigation/top-navigation.component.mjs +15 -0
  72. package/esm2022/core/components/user-info-menu/user-info-menu.component.mjs +96 -0
  73. package/esm2022/core/constants/active-statuses.mjs +9 -0
  74. package/esm2022/core/constants/availability.mjs +9 -0
  75. package/esm2022/core/constants/dashboard-portal-url.mjs +2 -0
  76. package/esm2022/core/constants/full-width-modal-config.mjs +10 -0
  77. package/esm2022/core/constants/horizontal-navigation.config.mjs +29 -0
  78. package/esm2022/core/constants/local-constants.mjs +28 -0
  79. package/esm2022/core/constants/pagination.const.mjs +10 -0
  80. package/esm2022/core/constants/privacy.mjs +9 -0
  81. package/esm2022/core/constants/request-context.mjs +9 -0
  82. package/esm2022/core/constants/yes-no.mjs +5 -0
  83. package/esm2022/core/core.module.mjs +81 -0
  84. package/esm2022/core/directive/authorize.directive.mjs +37 -0
  85. package/esm2022/core/enums/client-name.enum.mjs +6 -0
  86. package/esm2022/core/enums/object-properties.enum.mjs +67 -0
  87. package/esm2022/core/interceptors/error.interceptor.mjs +61 -0
  88. package/esm2022/core/interceptors/health-check-header.interceptor.mjs +25 -0
  89. package/esm2022/core/interfaces/business-rule.interface.mjs +18 -0
  90. package/esm2022/core/interfaces/filters.api.interface.mjs +12 -0
  91. package/esm2022/core/interfaces/horizontal-navigation.interface.mjs +2 -0
  92. package/esm2022/core/interfaces/navigation.interface.mjs +2 -0
  93. package/esm2022/core/interfaces/response-headers.interface.mjs +2 -0
  94. package/esm2022/core/models/auth-service-configuration.mjs +3 -0
  95. package/esm2022/core/models/menu-elements-dto.mjs +2 -0
  96. package/esm2022/core/models/refresh-tokens-response.mjs +3 -0
  97. package/esm2022/core/models/version-data.mjs +2 -0
  98. package/esm2022/core/resolvers/policy.resolver.mjs +52 -0
  99. package/esm2022/core/services/http.service.mjs +111 -0
  100. package/esm2022/core/services/loading.service.mjs +24 -0
  101. package/esm2022/core/services/local-storage.service.mjs +55 -0
  102. package/esm2022/core/services/nav-menu-data.service.mjs +21 -0
  103. package/esm2022/core/services/user-management.service.mjs +97 -0
  104. package/esm2022/core/services/user-policy.service.mjs +31 -0
  105. package/esm2022/core/site/services/support-util.service.mjs +55 -0
  106. package/esm2022/core/token/app-auth-config-injection-token.mjs +3 -0
  107. package/esm2022/core/token/app-env-injection.token.mjs +3 -0
  108. package/esm2022/core/token/policy-injection-token.mjs +3 -0
  109. package/esm2022/core/utils/service-url.util.mjs +7 -0
  110. package/esm2022/core/utils/sql-to-filter-datatype-converter.mjs +37 -0
  111. package/esm2022/core/utils/type-checks.utils.mjs +34 -0
  112. package/esm2022/core/utils/uuid-generator.utils.mjs +8 -0
  113. package/esm2022/directives/let.directive.mjs +48 -0
  114. package/esm2022/directives/remove-cancel-button.directive.mjs +23 -0
  115. package/esm2022/enums/access-types.enum.mjs +7 -0
  116. package/esm2022/enums/action-types.enum.mjs +18 -0
  117. package/esm2022/enums/active-status.enum.mjs +6 -0
  118. package/esm2022/enums/sort-direction.enum.mjs +6 -0
  119. package/esm2022/enums/source-types.enum.mjs +6 -0
  120. package/esm2022/enums/tooltips-prop.enum.mjs +33 -0
  121. package/esm2022/models/auth-token.mjs +2 -0
  122. package/esm2022/modules/dynamic-cards/directives/flip-card.directive.mjs +44 -0
  123. package/esm2022/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.mjs +20 -0
  124. package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card/dynamic-card.component.mjs +19 -0
  125. package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-back/dynamic-card-back.component.mjs +16 -0
  126. package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.mjs +21 -0
  127. package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.mjs +18 -0
  128. package/esm2022/modules/dynamic-cards/dynamic-cards.module.mjs +60 -0
  129. package/esm2022/modules/dynamic-cards/interface/card-list.interface.mjs +2 -0
  130. package/esm2022/modules/dynamic-cards/interface/card.interface.mjs +2 -0
  131. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-button-control/dynamic-form-button-control.component.mjs +27 -0
  132. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component.mjs +19 -0
  133. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-control-label/dynamic-form-control-label.component.mjs +14 -0
  134. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component.mjs +43 -0
  135. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component.mjs +48 -0
  136. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component.mjs +96 -0
  137. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field.matcher.mjs +9 -0
  138. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-input-control/dynamic-form-input-control.component.mjs +22 -0
  139. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component.mjs +27 -0
  140. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component.mjs +31 -0
  141. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/enum/radio-group-orientation.enum.mjs +6 -0
  142. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-select-control/dynamic-form-select-control.component.mjs +29 -0
  143. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component.mjs +18 -0
  144. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component.mjs +22 -0
  145. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component.mjs +74 -0
  146. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component.mjs +30 -0
  147. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/base-form-actions.component.mjs +47 -0
  148. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/enums/base-form-action-types.mjs +7 -0
  149. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/interfaces/base-form-action.interface.mjs +2 -0
  150. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.mjs +64 -0
  151. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-array/dynamic-form-ui-array.component.mjs +26 -0
  152. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-group/dynamic-form-group.component.mjs +26 -0
  153. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component.mjs +65 -0
  154. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout.component.mjs +33 -0
  155. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/enums/form-field-css-class.enum.mjs +9 -0
  156. package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.mjs +25 -0
  157. package/esm2022/modules/dynamic-forms/dynamic-form-UI/dynamic-form-ui.module.mjs +117 -0
  158. package/esm2022/modules/dynamic-forms/dynamic-form-UI/index.mjs +6 -0
  159. package/esm2022/modules/dynamic-forms/dynamic-form-UI/providers/ui-form-control-map.provider.mjs +47 -0
  160. package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-array.component.mjs +16 -0
  161. package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-component.mjs +82 -0
  162. package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component.mjs +189 -0
  163. package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component.mjs +112 -0
  164. package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-layout.component.mjs +34 -0
  165. package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant.mjs +34 -0
  166. package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/matchers/matchers.constant.mjs +27 -0
  167. package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/reg-exp-error.constant.mjs +10 -0
  168. package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-id.directive.mjs +24 -0
  169. package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-list.directive.mjs +26 -0
  170. package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive.mjs +29 -0
  171. package/esm2022/modules/dynamic-forms/dynamic-forms-core/dynamic-form-core.module.mjs +49 -0
  172. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/autocomplete.enum.mjs +6 -0
  173. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/control-types.enum.mjs +22 -0
  174. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-control-events.enum.mjs +8 -0
  175. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-control-statuses.enum.mjs +8 -0
  176. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-hooks.enum.mjs +7 -0
  177. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/input-types.enum.mjs +20 -0
  178. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/matcher-operators.enum.mjs +6 -0
  179. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/matcher-types.enum.mjs +10 -0
  180. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/template-directive-alignment.mjs +6 -0
  181. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/textarea-wrap.enum.mjs +6 -0
  182. package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/validation-states.enum.mjs +6 -0
  183. package/esm2022/modules/dynamic-forms/dynamic-forms-core/index.mjs +39 -0
  184. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/dynamic-templateable-form-control.interface.mjs +2 -0
  185. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface.mjs +2 -0
  186. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control.interface.mjs +2 -0
  187. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface.mjs +2 -0
  188. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-control-layout.interface.mjs +2 -0
  189. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout-config.interface.mjs +2 -0
  190. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface.mjs +2 -0
  191. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/layout-render-template.interface.mjs +2 -0
  192. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/matchers/form-control-matcher.interface.mjs +2 -0
  193. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-array/form-array-model-config.interface.mjs +2 -0
  194. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-button-control/button-control-model-config.interface.mjs +2 -0
  195. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-check-control/check-control-model-config.interface.mjs +2 -0
  196. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-model-config.interface.mjs +2 -0
  197. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-relation.interface.mjs +2 -0
  198. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-date-control/date-control-model-config.interface.mjs +2 -0
  199. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-file-control/file-control-model-config.interface.mjs +2 -0
  200. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-group/form-group-model-config.interface.mjs +2 -0
  201. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-input-control/form-input-control-config.interface.mjs +2 -0
  202. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-number-control/form-number-control-config.interface.mjs +2 -0
  203. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option/form-option-config.interface.mjs +2 -0
  204. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option-control/form-option-control-config.interface.mjs +2 -0
  205. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/button-control-model-config.interface.mjs +2 -0
  206. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/checkbox-control-model-config.interface.mjs +2 -0
  207. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/colorpicker-control-model-config.interface.mjs +2 -0
  208. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/datepicker-control-model-config.interface.mjs +2 -0
  209. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/fileupload-control-model-config.interface.mjs +2 -0
  210. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/input-control-model-config.interface.mjs +2 -0
  211. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/radio-group-model-config.interface.mjs +2 -0
  212. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/rating-control-model-config.interface.mjs +2 -0
  213. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface.mjs +2 -0
  214. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/slider-control-model-config.interface.mjs +2 -0
  215. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/switch-control-model-config.interface.mjs +2 -0
  216. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/textarea-control-model-config.interface.mjs +2 -0
  217. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/timepicker-control-model-config.interface.mjs +2 -0
  218. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-value-control/form-value-control.interface.mjs +2 -0
  219. package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/validators/validators.interface.mjs +2 -0
  220. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.mjs +51 -0
  221. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-array/form-array-group/dynamic-form-array-group.model.mjs +15 -0
  222. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-button-control/dynamic-button-control.model.mjs +19 -0
  223. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-check-control/dynamic-check-control.model.mjs +19 -0
  224. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.mjs +23 -0
  225. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-date-control/dynamic-date-control.model.mjs +11 -0
  226. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-file-control/dynamic-file-control.model.mjs +9 -0
  227. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.mjs +37 -0
  228. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-input-control/dynamic-input-control.model.mjs +20 -0
  229. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-number-control/dynamic-number-control.model.mjs +15 -0
  230. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-option/form-option.model.mjs +15 -0
  231. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model.mjs +52 -0
  232. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-static-control/static-control.model.mjs +7 -0
  233. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model.mjs +13 -0
  234. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox-group.model.mjs +21 -0
  235. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model.mjs +12 -0
  236. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/colorpicker/dynamic-colorpicker.model.mjs +12 -0
  237. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/counter/dynamic-counter.model.mjs +11 -0
  238. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/datepicker/dynamic-datepicker.model.mjs +18 -0
  239. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/file-upload/dynamic-file-upload.model.mjs +17 -0
  240. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/input/dynamic-input.model.mjs +13 -0
  241. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/radio/dynamic-radio-group.model.mjs +13 -0
  242. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/rating/dynamic-rating.model.mjs +11 -0
  243. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/select/dynamic-select.model.mjs +18 -0
  244. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/slider/dynamic-slider.model.mjs +14 -0
  245. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model.mjs +11 -0
  246. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model.mjs +14 -0
  247. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/timepicker/dynamic-timepicker.model.mjs +12 -0
  248. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-value-control/form-value-control.model.mjs +25 -0
  249. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/col-control.model.mjs +10 -0
  250. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum.mjs +7 -0
  251. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-control.model.mjs +8 -0
  252. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-group-control.mjs +9 -0
  253. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/row-control.model.mjs +10 -0
  254. package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model.mjs +19 -0
  255. package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.mock.mjs +20 -0
  256. package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.pipe.mjs +38 -0
  257. package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/get-error-from-key-value.pipe.mjs +20 -0
  258. package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service.mjs +37 -0
  259. package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-layout.service.mjs +35 -0
  260. package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-relation.service.mjs +22 -0
  261. package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-validation.service.mjs +35 -0
  262. package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service.mjs +239 -0
  263. package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/static-form-service.mjs +111 -0
  264. package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/dynamic-matchers.token.mjs +3 -0
  265. package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/form-control-map.token.mjs +3 -0
  266. package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/validators.token.mjs +3 -0
  267. package/esm2022/modules/dynamic-forms/dynamic-forms-core/utils/events/form-control-events.utils.mjs +5 -0
  268. package/esm2022/modules/dynamic-forms/dynamic-forms-core/utils/json/json.utils.mjs +30 -0
  269. package/esm2022/modules/dynamic-forms/dynamic-forms.module.mjs +32 -0
  270. package/esm2022/modules/material/mat-cdk-module.mjs +17 -0
  271. package/esm2022/modules/material/material.module.mjs +201 -0
  272. package/esm2022/modules/query-builder/components/query-design/query-design.component.mjs +103 -0
  273. package/esm2022/modules/query-builder/components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component.mjs +150 -0
  274. package/esm2022/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component.mjs +102 -0
  275. package/esm2022/modules/query-builder/components/query-design/rule-line/components/date-control/date-control.component.mjs +76 -0
  276. package/esm2022/modules/query-builder/components/query-design/rule-line/components/numeric-control/numeric-control.component.mjs +168 -0
  277. package/esm2022/modules/query-builder/components/query-design/rule-line/constants/operators-sets.mjs +108 -0
  278. package/esm2022/modules/query-builder/components/query-design/rule-line/helpers/condition-operators.mapper.mjs +8 -0
  279. package/esm2022/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.mjs +78 -0
  280. package/esm2022/modules/query-builder/components/query-design/rule-line/rule-line.component.mjs +234 -0
  281. package/esm2022/modules/query-builder/directive/auto-complete-position.directive.mjs +30 -0
  282. package/esm2022/modules/query-builder/interfaces/query-builder.interface.mjs +39 -0
  283. package/esm2022/modules/query-builder/interfaces/select-custom-css-object.mjs +2 -0
  284. package/esm2022/modules/query-builder/query-builder.module.mjs +66 -0
  285. package/esm2022/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.mjs +16 -0
  286. package/esm2022/modules/ui-kit/components/accordion/accordion-trigger.directive.mjs +30 -0
  287. package/esm2022/modules/ui-kit/components/accordion/accordion.directive.mjs +19 -0
  288. package/esm2022/modules/ui-kit/components/banner/banner.component.mjs +53 -0
  289. package/esm2022/modules/ui-kit/components/banner/banner.service.mjs +64 -0
  290. package/esm2022/modules/ui-kit/components/breadcrumbs/breadcrumbs.component.mjs +25 -0
  291. package/esm2022/modules/ui-kit/components/breadcrumbs/model/breadCrumbItem.mjs +2 -0
  292. package/esm2022/modules/ui-kit/components/breadcrumbs/service/breadcrumb.service.mjs +63 -0
  293. package/esm2022/modules/ui-kit/components/breadcrumbs/utils/crumb-service.enum.mjs +8 -0
  294. package/esm2022/modules/ui-kit/components/buttons/button-control/button-control.component.mjs +46 -0
  295. package/esm2022/modules/ui-kit/components/buttons/buttons-list/buttons-list.component.mjs +11 -0
  296. package/esm2022/modules/ui-kit/components/buttons/circle-button/circle-button.component.mjs +37 -0
  297. package/esm2022/modules/ui-kit/components/card-container/card-container.component.mjs +11 -0
  298. package/esm2022/modules/ui-kit/components/common-breadcrumbs/common-breadcrumbs.component.mjs +30 -0
  299. package/esm2022/modules/ui-kit/components/common-breadcrumbs/interface/breadcrumb.interface.mjs +2 -0
  300. package/esm2022/modules/ui-kit/components/common-breadcrumbs/service/breadcrumb.service.mjs +65 -0
  301. package/esm2022/modules/ui-kit/components/data-pagination/data-pagination.component.mjs +155 -0
  302. package/esm2022/modules/ui-kit/components/data-table/api-classes/filter-manager.mjs +50 -0
  303. package/esm2022/modules/ui-kit/components/data-table/api-classes/grid-api.mjs +73 -0
  304. package/esm2022/modules/ui-kit/components/data-table/base-data-table-container/base-data-table-container.component.mjs +10 -0
  305. package/esm2022/modules/ui-kit/components/data-table/constants/change-type.enum.mjs +8 -0
  306. package/esm2022/modules/ui-kit/components/data-table/constants/column-id.mjs +13 -0
  307. package/esm2022/modules/ui-kit/components/data-table/constants/row.mjs +4 -0
  308. package/esm2022/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.mjs +93 -0
  309. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col/data-col.component.mjs +17 -0
  310. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-action-button/data-col-action-button.component.mjs +27 -0
  311. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-boolean/data-col-boolean.component.mjs +20 -0
  312. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-multivalue/data-col-multivalue.component.mjs +18 -0
  313. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.mjs +31 -0
  314. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-reference/data-col-reference.component.mjs +96 -0
  315. package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.mjs +75 -0
  316. package/esm2022/modules/ui-kit/components/data-table/data-col-disp/data-col-disp.component.mjs +248 -0
  317. package/esm2022/modules/ui-kit/components/data-table/data-col-filter/data-col-filter.component.mjs +323 -0
  318. package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-between-value.mjs +68 -0
  319. package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-contains-value.mjs +25 -0
  320. package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-in-value.mjs +64 -0
  321. package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-slider-value.mjs +42 -0
  322. package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider.mjs +42 -0
  323. package/esm2022/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.mjs +69 -0
  324. package/esm2022/modules/ui-kit/components/data-table/data-row/data-row.component.mjs +251 -0
  325. package/esm2022/modules/ui-kit/components/data-table/data-table/data-table.component.mjs +1534 -0
  326. package/esm2022/modules/ui-kit/components/data-table/data-table-actions/data-table-actions.component.mjs +153 -0
  327. package/esm2022/modules/ui-kit/components/data-table/data-table-body/data-table-body.component.mjs +205 -0
  328. package/esm2022/modules/ui-kit/components/data-table/data-table-check-rows/data-table-check-rows.component.mjs +61 -0
  329. package/esm2022/modules/ui-kit/components/data-table/data-table-row-actions/const/data-table-actions.enum.mjs +8 -0
  330. package/esm2022/modules/ui-kit/components/data-table/data-table-row-actions/data-table-row-actions.component.mjs +120 -0
  331. package/esm2022/modules/ui-kit/components/data-table/enums/col-filter-types.mjs +17 -0
  332. package/esm2022/modules/ui-kit/components/data-table/header-row/header-row.component.mjs +14 -0
  333. package/esm2022/modules/ui-kit/components/data-table/interfaces/data-table-component.interface.mjs +2 -0
  334. package/esm2022/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface.mjs +2 -0
  335. package/esm2022/modules/ui-kit/components/data-table/services/data-table-context.service.mjs +26 -0
  336. package/esm2022/modules/ui-kit/components/data-table-wrap/data-table-wrap.component.mjs +38 -0
  337. package/esm2022/modules/ui-kit/components/excel-table/excel-table.component.mjs +164 -0
  338. package/esm2022/modules/ui-kit/components/excel-table/interface/excel-table.interface.mjs +44 -0
  339. package/esm2022/modules/ui-kit/components/form/base-form-control/base-form-control.component.mjs +41 -0
  340. package/esm2022/modules/ui-kit/components/form/base-form-page/base-form-page.component.mjs +8 -0
  341. package/esm2022/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.mjs +21 -0
  342. package/esm2022/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.mjs +66 -0
  343. package/esm2022/modules/ui-kit/components/form/form-container/form-container.component.mjs +133 -0
  344. package/esm2022/modules/ui-kit/components/form/form-group-container/form-group-container.component.mjs +11 -0
  345. package/esm2022/modules/ui-kit/components/form/input-form-control/input-form-control.component.mjs +20 -0
  346. package/esm2022/modules/ui-kit/components/form/multivalue-form-control/custom-input/custom-input.component.mjs +35 -0
  347. package/esm2022/modules/ui-kit/components/form/multivalue-form-control/custom-input/old-new-value.interface.mjs +2 -0
  348. package/esm2022/modules/ui-kit/components/form/multivalue-form-control/multivalue-form-control.component.mjs +66 -0
  349. package/esm2022/modules/ui-kit/components/form/radio-form-control/radio-form-control.component.mjs +19 -0
  350. package/esm2022/modules/ui-kit/components/form/select-form-control/select-form-control.component.mjs +78 -0
  351. package/esm2022/modules/ui-kit/components/form/selection-group-container/selection-group-container.component.mjs +18 -0
  352. package/esm2022/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.mjs +20 -0
  353. package/esm2022/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.mjs +26 -0
  354. package/esm2022/modules/ui-kit/components/icon/icon/icon.component.mjs +35 -0
  355. package/esm2022/modules/ui-kit/components/icon/text-icon/text-icon.component.mjs +22 -0
  356. package/esm2022/modules/ui-kit/components/layouts/form-layout/form-layout.component.mjs +56 -0
  357. package/esm2022/modules/ui-kit/components/layouts/primary-layout/primary-layout.component.mjs +11 -0
  358. package/esm2022/modules/ui-kit/components/loader/loader.component.mjs +27 -0
  359. package/esm2022/modules/ui-kit/components/mat-actions-button/mat-actions-button.mjs +34 -0
  360. package/esm2022/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.mjs +53 -0
  361. package/esm2022/modules/ui-kit/components/modals/confirm-modal/confirm-modal.component.mjs +37 -0
  362. package/esm2022/modules/ui-kit/components/modals/delete-modal/delete-modal.component.mjs +41 -0
  363. package/esm2022/modules/ui-kit/components/modals/enums/confirmation-modal.enum.mjs +13 -0
  364. package/esm2022/modules/ui-kit/components/snackbar/snackbar.component.mjs +21 -0
  365. package/esm2022/modules/ui-kit/components/tabs/constants/index.mjs +2 -0
  366. package/esm2022/modules/ui-kit/components/tabs/interfaces/index.mjs +2 -0
  367. package/esm2022/modules/ui-kit/components/tabs/tab-group/tab-group.component.mjs +77 -0
  368. package/esm2022/modules/ui-kit/components/tabs/tab.directive.mjs +60 -0
  369. package/esm2022/modules/ui-kit/components/tree-view/tree-view.component.mjs +374 -0
  370. package/esm2022/modules/ui-kit/constants/data-table-icon-class.constant.mjs +2 -0
  371. package/esm2022/modules/ui-kit/constants/data-table.constants.mjs +7 -0
  372. package/esm2022/modules/ui-kit/constants/date-separator.constant.mjs +2 -0
  373. package/esm2022/modules/ui-kit/constants/snackbar.constants.mjs +4 -0
  374. package/esm2022/modules/ui-kit/enums/action-type.enum.mjs +14 -0
  375. package/esm2022/modules/ui-kit/enums/coderefs-prop.enum.mjs +26 -0
  376. package/esm2022/modules/ui-kit/enums/color-schemes.enum.mjs +13 -0
  377. package/esm2022/modules/ui-kit/enums/column-disable-mode.enum.mjs +7 -0
  378. package/esm2022/modules/ui-kit/enums/column-types.enum.mjs +10 -0
  379. package/esm2022/modules/ui-kit/enums/component-sizes.enum.mjs +6 -0
  380. package/esm2022/modules/ui-kit/enums/data-type.enum.mjs +13 -0
  381. package/esm2022/modules/ui-kit/enums/form-item-type.mjs +7 -0
  382. package/esm2022/modules/ui-kit/enums/form-types.enum.mjs +7 -0
  383. package/esm2022/modules/ui-kit/enums/form-url-params.enum.mjs +6 -0
  384. package/esm2022/modules/ui-kit/enums/icons.enum.mjs +24 -0
  385. package/esm2022/modules/ui-kit/enums/operator.enum.mjs +21 -0
  386. package/esm2022/modules/ui-kit/enums/position.enum.mjs +6 -0
  387. package/esm2022/modules/ui-kit/enums/select-option.enum.mjs +10 -0
  388. package/esm2022/modules/ui-kit/enums/snackbar.enum.mjs +8 -0
  389. package/esm2022/modules/ui-kit/enums/url-param-action.enum.mjs +6 -0
  390. package/esm2022/modules/ui-kit/enums/utils.enum.mjs +6 -0
  391. package/esm2022/modules/ui-kit/enums/viewType.enum.mjs +7 -0
  392. package/esm2022/modules/ui-kit/interfaces/api.interface.mjs +2 -0
  393. package/esm2022/modules/ui-kit/interfaces/confirm-modal-data.interface.mjs +2 -0
  394. package/esm2022/modules/ui-kit/interfaces/constants.interface.mjs +2 -0
  395. package/esm2022/modules/ui-kit/interfaces/data-table.interface.mjs +2 -0
  396. package/esm2022/modules/ui-kit/interfaces/form.interface.mjs +2 -0
  397. package/esm2022/modules/ui-kit/interfaces/generic.interface.mjs +2 -0
  398. package/esm2022/modules/ui-kit/interfaces/list-item.interface.mjs +2 -0
  399. package/esm2022/modules/ui-kit/interfaces/mat-action-buttons.interface.mjs +2 -0
  400. package/esm2022/modules/ui-kit/interfaces/row-selection-info.interface.mjs +2 -0
  401. package/esm2022/modules/ui-kit/interfaces/select.interface.mjs +2 -0
  402. package/esm2022/modules/ui-kit/interfaces/snackbar.interface.mjs +2 -0
  403. package/esm2022/modules/ui-kit/interfaces/tree-view.interface.mjs +2 -0
  404. package/esm2022/modules/ui-kit/models/storage-object.model.mjs +3 -0
  405. package/esm2022/modules/ui-kit/pipes/column-filter.pipe.mjs +21 -0
  406. package/esm2022/modules/ui-kit/pipes/filter-by-prop.pipe.mjs +27 -0
  407. package/esm2022/modules/ui-kit/pipes/first-letter-text.pipe.mjs +17 -0
  408. package/esm2022/modules/ui-kit/pipes/keys.pipe.mjs +17 -0
  409. package/esm2022/modules/ui-kit/pipes/paginate.pipe.mjs +29 -0
  410. package/esm2022/modules/ui-kit/pipes/search.pipe.mjs +50 -0
  411. package/esm2022/modules/ui-kit/services/api/api.service.mjs +72 -0
  412. package/esm2022/modules/ui-kit/services/api/rest-api.service.mjs +62 -0
  413. package/esm2022/modules/ui-kit/services/data-table.service.mjs +202 -0
  414. package/esm2022/modules/ui-kit/services/form.service.mjs +91 -0
  415. package/esm2022/modules/ui-kit/services/formatters/date-formatter.service.mjs +48 -0
  416. package/esm2022/modules/ui-kit/services/mappers/form-data-table-mapper.service.mjs +19 -0
  417. package/esm2022/modules/ui-kit/services/select.service.mjs +19 -0
  418. package/esm2022/modules/ui-kit/services/snackbar.service.mjs +43 -0
  419. package/esm2022/modules/ui-kit/services/url.service.mjs +17 -0
  420. package/esm2022/modules/ui-kit/types/basic.type.mjs +2 -0
  421. package/esm2022/modules/ui-kit/types/function.type.mjs +2 -0
  422. package/esm2022/modules/ui-kit/types/select.type.mjs +2 -0
  423. package/esm2022/modules/ui-kit/ui-kit.module.mjs +370 -0
  424. package/esm2022/public-api.mjs +373 -0
  425. package/esm2022/resolvers/null-value.resolver.mjs +16 -0
  426. package/esm2022/services/api/common-crud-api.service.mjs +59 -0
  427. package/esm2022/services/api/filter-api.service.mjs +30 -0
  428. package/esm2022/services/selectable.service.mjs +23 -0
  429. package/esm2022/shared-pipes/pipes/search.pipe.mjs +48 -0
  430. package/esm2022/shared-ui-test-2.mjs +5 -0
  431. package/esm2022/shared.module.mjs +57 -0
  432. package/esm2022/validators/debounce-async.validator.mjs +12 -0
  433. package/fesm2022/shared-ui-test-2.mjs +12538 -0
  434. package/fesm2022/shared-ui-test-2.mjs.map +1 -0
  435. package/index.d.ts +5 -0
  436. package/models/auth-token.d.ts +3 -0
  437. package/modules/dynamic-cards/directives/flip-card.directive.d.ts +15 -0
  438. package/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.d.ts +10 -0
  439. package/modules/dynamic-cards/dynamic-card/dynamic-card/dynamic-card.component.d.ts +7 -0
  440. package/modules/dynamic-cards/dynamic-card/dynamic-card-back/dynamic-card-back.component.d.ts +7 -0
  441. package/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.d.ts +10 -0
  442. package/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.d.ts +8 -0
  443. package/modules/dynamic-cards/dynamic-cards.module.d.ts +18 -0
  444. package/modules/dynamic-cards/interface/card-list.interface.d.ts +9 -0
  445. package/modules/dynamic-cards/interface/card.interface.d.ts +12 -0
  446. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-button-control/dynamic-form-button-control.component.d.ts +11 -0
  447. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component.d.ts +9 -0
  448. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-control-label/dynamic-form-control-label.component.d.ts +7 -0
  449. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component.d.ts +13 -0
  450. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component.d.ts +13 -0
  451. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component.d.ts +34 -0
  452. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field.matcher.d.ts +8 -0
  453. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-input-control/dynamic-form-input-control.component.d.ts +8 -0
  454. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component.d.ts +11 -0
  455. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component.d.ts +12 -0
  456. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/enum/radio-group-orientation.enum.d.ts +4 -0
  457. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-select-control/dynamic-form-select-control.component.d.ts +10 -0
  458. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component.d.ts +9 -0
  459. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component.d.ts +9 -0
  460. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component.d.ts +26 -0
  461. package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component.d.ts +14 -0
  462. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/base-form-actions.component.d.ts +19 -0
  463. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/enums/base-form-action-types.d.ts +5 -0
  464. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/interfaces/base-form-action.interface.d.ts +5 -0
  465. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.d.ts +26 -0
  466. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-array/dynamic-form-ui-array.component.d.ts +9 -0
  467. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-group/dynamic-form-group.component.d.ts +11 -0
  468. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component.d.ts +23 -0
  469. package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout.component.d.ts +21 -0
  470. package/modules/dynamic-forms/dynamic-form-UI/components/enums/form-field-css-class.enum.d.ts +7 -0
  471. package/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.d.ts +11 -0
  472. package/modules/dynamic-forms/dynamic-form-UI/dynamic-form-ui.module.d.ts +32 -0
  473. package/modules/dynamic-forms/dynamic-form-UI/index.d.ts +3 -0
  474. package/modules/dynamic-forms/dynamic-form-UI/providers/ui-form-control-map.provider.d.ts +6 -0
  475. package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-array.component.d.ts +10 -0
  476. package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-component.d.ts +26 -0
  477. package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component.d.ts +57 -0
  478. package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component.d.ts +42 -0
  479. package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-layout.component.d.ts +28 -0
  480. package/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant.d.ts +6 -0
  481. package/modules/dynamic-forms/dynamic-forms-core/constants/matchers/matchers.constant.d.ts +6 -0
  482. package/modules/dynamic-forms/dynamic-forms-core/constants/reg-exp-error.constant.d.ts +9 -0
  483. package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-id.directive.d.ts +11 -0
  484. package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-list.directive.d.ts +11 -0
  485. package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive.d.ts +13 -0
  486. package/modules/dynamic-forms/dynamic-forms-core/dynamic-form-core.module.d.ts +12 -0
  487. package/modules/dynamic-forms/dynamic-forms-core/enums/autocomplete.enum.d.ts +4 -0
  488. package/modules/dynamic-forms/dynamic-forms-core/enums/control-types.enum.d.ts +20 -0
  489. package/modules/dynamic-forms/dynamic-forms-core/enums/form-control-events.enum.d.ts +6 -0
  490. package/modules/dynamic-forms/dynamic-forms-core/enums/form-control-statuses.enum.d.ts +6 -0
  491. package/modules/dynamic-forms/dynamic-forms-core/enums/form-hooks.enum.d.ts +5 -0
  492. package/modules/dynamic-forms/dynamic-forms-core/enums/input-types.enum.d.ts +18 -0
  493. package/modules/dynamic-forms/dynamic-forms-core/enums/matcher-operators.enum.d.ts +4 -0
  494. package/modules/dynamic-forms/dynamic-forms-core/enums/matcher-types.enum.d.ts +8 -0
  495. package/modules/dynamic-forms/dynamic-forms-core/enums/template-directive-alignment.d.ts +4 -0
  496. package/modules/dynamic-forms/dynamic-forms-core/enums/textarea-wrap.enum.d.ts +4 -0
  497. package/modules/dynamic-forms/dynamic-forms-core/enums/validation-states.enum.d.ts +4 -0
  498. package/modules/dynamic-forms/dynamic-forms-core/index.d.ts +38 -0
  499. package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/dynamic-templateable-form-control.interface.d.ts +5 -0
  500. package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface.d.ts +15 -0
  501. package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control.interface.d.ts +19 -0
  502. package/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface.d.ts +4 -0
  503. package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-control-layout.interface.d.ts +3 -0
  504. package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout-config.interface.d.ts +6 -0
  505. package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface.d.ts +2 -0
  506. package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/layout-render-template.interface.d.ts +9 -0
  507. package/modules/dynamic-forms/dynamic-forms-core/interfaces/matchers/form-control-matcher.interface.d.ts +8 -0
  508. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-array/form-array-model-config.interface.d.ts +7 -0
  509. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-button-control/button-control-model-config.interface.d.ts +4 -0
  510. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-check-control/check-control-model-config.interface.d.ts +4 -0
  511. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-model-config.interface.d.ts +16 -0
  512. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-relation.interface.d.ts +8 -0
  513. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-date-control/date-control-model-config.interface.d.ts +8 -0
  514. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-file-control/file-control-model-config.interface.d.ts +4 -0
  515. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-group/form-group-model-config.interface.d.ts +6 -0
  516. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-input-control/form-input-control-config.interface.d.ts +14 -0
  517. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-number-control/form-number-control-config.interface.d.ts +7 -0
  518. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option/form-option-config.interface.d.ts +5 -0
  519. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option-control/form-option-control-config.interface.d.ts +6 -0
  520. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/button-control-model-config.interface.d.ts +6 -0
  521. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/checkbox-control-model-config.interface.d.ts +5 -0
  522. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/colorpicker-control-model-config.interface.d.ts +5 -0
  523. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/datepicker-control-model-config.interface.d.ts +11 -0
  524. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/fileupload-control-model-config.interface.d.ts +10 -0
  525. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/input-control-model-config.interface.d.ts +9 -0
  526. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/radio-group-model-config.interface.d.ts +4 -0
  527. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/rating-control-model-config.interface.d.ts +4 -0
  528. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface.d.ts +8 -0
  529. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/slider-control-model-config.interface.d.ts +7 -0
  530. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/switch-control-model-config.interface.d.ts +5 -0
  531. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/textarea-control-model-config.interface.d.ts +6 -0
  532. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/timepicker-control-model-config.interface.d.ts +5 -0
  533. package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-value-control/form-value-control.interface.d.ts +10 -0
  534. package/modules/dynamic-forms/dynamic-forms-core/interfaces/validators/validators.interface.d.ts +5 -0
  535. package/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.d.ts +19 -0
  536. package/modules/dynamic-forms/dynamic-forms-core/models/form-array/form-array-group/dynamic-form-array-group.model.d.ts +12 -0
  537. package/modules/dynamic-forms/dynamic-forms-core/models/form-button-control/dynamic-button-control.model.d.ts +9 -0
  538. package/modules/dynamic-forms/dynamic-forms-core/models/form-check-control/dynamic-check-control.model.d.ts +9 -0
  539. package/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.d.ts +24 -0
  540. package/modules/dynamic-forms/dynamic-forms-core/models/form-date-control/dynamic-date-control.model.d.ts +9 -0
  541. package/modules/dynamic-forms/dynamic-forms-core/models/form-file-control/dynamic-file-control.model.d.ts +6 -0
  542. package/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.d.ts +17 -0
  543. package/modules/dynamic-forms/dynamic-forms-core/models/form-input-control/dynamic-input-control.model.d.ts +16 -0
  544. package/modules/dynamic-forms/dynamic-forms-core/models/form-number-control/dynamic-number-control.model.d.ts +12 -0
  545. package/modules/dynamic-forms/dynamic-forms-core/models/form-option/form-option.model.d.ts +9 -0
  546. package/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model.d.ts +19 -0
  547. package/modules/dynamic-forms/dynamic-forms-core/models/form-static-control/static-control.model.d.ts +7 -0
  548. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model.d.ts +10 -0
  549. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox-group.model.d.ts +12 -0
  550. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model.d.ts +8 -0
  551. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/colorpicker/dynamic-colorpicker.model.d.ts +8 -0
  552. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/counter/dynamic-counter.model.d.ts +7 -0
  553. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/datepicker/dynamic-datepicker.model.d.ts +15 -0
  554. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/file-upload/dynamic-file-upload.model.d.ts +13 -0
  555. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/input/dynamic-input.model.d.ts +10 -0
  556. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/radio/dynamic-radio-group.model.d.ts +8 -0
  557. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/rating/dynamic-rating.model.d.ts +7 -0
  558. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/select/dynamic-select.model.d.ts +11 -0
  559. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/slider/dynamic-slider.model.d.ts +10 -0
  560. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model.d.ts +8 -0
  561. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model.d.ts +9 -0
  562. package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/timepicker/dynamic-timepicker.model.d.ts +8 -0
  563. package/modules/dynamic-forms/dynamic-forms-core/models/form-value-control/form-value-control.model.d.ts +17 -0
  564. package/modules/dynamic-forms/dynamic-forms-core/models/layout/col-control.model.d.ts +8 -0
  565. package/modules/dynamic-forms/dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum.d.ts +5 -0
  566. package/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-control.model.d.ts +9 -0
  567. package/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-group-control.d.ts +7 -0
  568. package/modules/dynamic-forms/dynamic-forms-core/models/layout/row-control.model.d.ts +8 -0
  569. package/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model.d.ts +12 -0
  570. package/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.mock.d.ts +11 -0
  571. package/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.pipe.d.ts +20 -0
  572. package/modules/dynamic-forms/dynamic-forms-core/pipes/get-error-from-key-value.pipe.d.ts +8 -0
  573. package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service.d.ts +14 -0
  574. package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-layout.service.d.ts +14 -0
  575. package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-relation.service.d.ts +8 -0
  576. package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-validation.service.d.ts +11 -0
  577. package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service.d.ts +30 -0
  578. package/modules/dynamic-forms/dynamic-forms-core/service/static-form-service.d.ts +17 -0
  579. package/modules/dynamic-forms/dynamic-forms-core/tokens/dynamic-matchers.token.d.ts +3 -0
  580. package/modules/dynamic-forms/dynamic-forms-core/tokens/form-control-map.token.d.ts +3 -0
  581. package/modules/dynamic-forms/dynamic-forms-core/tokens/validators.token.d.ts +3 -0
  582. package/modules/dynamic-forms/dynamic-forms-core/utils/events/form-control-events.utils.d.ts +2 -0
  583. package/modules/dynamic-forms/dynamic-forms-core/utils/json/json.utils.d.ts +5 -0
  584. package/modules/dynamic-forms/dynamic-forms.module.d.ts +9 -0
  585. package/modules/material/mat-cdk-module.d.ts +7 -0
  586. package/modules/material/material.module.d.ts +50 -0
  587. package/modules/query-builder/components/query-design/query-design.component.d.ts +35 -0
  588. package/modules/query-builder/components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component.d.ts +46 -0
  589. package/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component.d.ts +29 -0
  590. package/modules/query-builder/components/query-design/rule-line/components/date-control/date-control.component.d.ts +21 -0
  591. package/modules/query-builder/components/query-design/rule-line/components/numeric-control/numeric-control.component.d.ts +46 -0
  592. package/modules/query-builder/components/query-design/rule-line/constants/operators-sets.d.ts +12 -0
  593. package/modules/query-builder/components/query-design/rule-line/helpers/condition-operators.mapper.d.ts +6 -0
  594. package/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.d.ts +7 -0
  595. package/modules/query-builder/components/query-design/rule-line/rule-line.component.d.ts +64 -0
  596. package/modules/query-builder/directive/auto-complete-position.directive.d.ts +11 -0
  597. package/modules/query-builder/interfaces/query-builder.interface.d.ts +61 -0
  598. package/modules/query-builder/interfaces/select-custom-css-object.d.ts +7 -0
  599. package/modules/query-builder/query-builder.module.d.ts +18 -0
  600. package/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.d.ts +8 -0
  601. package/modules/ui-kit/components/accordion/accordion-trigger.directive.d.ts +10 -0
  602. package/modules/ui-kit/components/accordion/accordion.directive.d.ts +7 -0
  603. package/modules/ui-kit/components/banner/banner.component.d.ts +14 -0
  604. package/modules/ui-kit/components/banner/banner.service.d.ts +27 -0
  605. package/modules/ui-kit/components/breadcrumbs/breadcrumbs.component.d.ts +15 -0
  606. package/modules/ui-kit/components/breadcrumbs/model/breadCrumbItem.d.ts +4 -0
  607. package/modules/ui-kit/components/breadcrumbs/service/breadcrumb.service.d.ts +19 -0
  608. package/modules/ui-kit/components/breadcrumbs/utils/crumb-service.enum.d.ts +6 -0
  609. package/modules/ui-kit/components/buttons/button-control/button-control.component.d.ts +16 -0
  610. package/modules/ui-kit/components/buttons/buttons-list/buttons-list.component.d.ts +5 -0
  611. package/modules/ui-kit/components/buttons/circle-button/circle-button.component.d.ts +20 -0
  612. package/modules/ui-kit/components/card-container/card-container.component.d.ts +5 -0
  613. package/modules/ui-kit/components/common-breadcrumbs/common-breadcrumbs.component.d.ts +20 -0
  614. package/modules/ui-kit/components/common-breadcrumbs/interface/breadcrumb.interface.d.ts +6 -0
  615. package/modules/ui-kit/components/common-breadcrumbs/service/breadcrumb.service.d.ts +21 -0
  616. package/modules/ui-kit/components/data-pagination/data-pagination.component.d.ts +54 -0
  617. package/modules/ui-kit/components/data-table/api-classes/filter-manager.d.ts +13 -0
  618. package/modules/ui-kit/components/data-table/api-classes/grid-api.d.ts +31 -0
  619. package/modules/ui-kit/components/data-table/base-data-table-container/base-data-table-container.component.d.ts +7 -0
  620. package/modules/ui-kit/components/data-table/constants/change-type.enum.d.ts +6 -0
  621. package/modules/ui-kit/components/data-table/constants/column-id.d.ts +2 -0
  622. package/modules/ui-kit/components/data-table/constants/row.d.ts +2 -0
  623. package/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.d.ts +28 -0
  624. package/modules/ui-kit/components/data-table/data-col/data-col/data-col.component.d.ts +7 -0
  625. package/modules/ui-kit/components/data-table/data-col/data-col-action-button/data-col-action-button.component.d.ts +12 -0
  626. package/modules/ui-kit/components/data-table/data-col/data-col-boolean/data-col-boolean.component.d.ts +8 -0
  627. package/modules/ui-kit/components/data-table/data-col/data-col-multivalue/data-col-multivalue.component.d.ts +8 -0
  628. package/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.d.ts +13 -0
  629. package/modules/ui-kit/components/data-table/data-col/data-col-reference/data-col-reference.component.d.ts +29 -0
  630. package/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.d.ts +27 -0
  631. package/modules/ui-kit/components/data-table/data-col-disp/data-col-disp.component.d.ts +60 -0
  632. package/modules/ui-kit/components/data-table/data-col-filter/data-col-filter.component.d.ts +85 -0
  633. package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-between-value.d.ts +12 -0
  634. package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-contains-value.d.ts +9 -0
  635. package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-in-value.d.ts +13 -0
  636. package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-slider-value.d.ts +10 -0
  637. package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider.d.ts +11 -0
  638. package/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.d.ts +29 -0
  639. package/modules/ui-kit/components/data-table/data-row/data-row.component.d.ts +81 -0
  640. package/modules/ui-kit/components/data-table/data-table/data-table.component.d.ts +302 -0
  641. package/modules/ui-kit/components/data-table/data-table-actions/data-table-actions.component.d.ts +53 -0
  642. package/modules/ui-kit/components/data-table/data-table-body/data-table-body.component.d.ts +75 -0
  643. package/modules/ui-kit/components/data-table/data-table-check-rows/data-table-check-rows.component.d.ts +25 -0
  644. package/modules/ui-kit/components/data-table/data-table-row-actions/const/data-table-actions.enum.d.ts +6 -0
  645. package/modules/ui-kit/components/data-table/data-table-row-actions/data-table-row-actions.component.d.ts +42 -0
  646. package/modules/ui-kit/components/data-table/enums/col-filter-types.d.ts +14 -0
  647. package/modules/ui-kit/components/data-table/header-row/header-row.component.d.ts +7 -0
  648. package/modules/ui-kit/components/data-table/interfaces/data-table-component.interface.d.ts +28 -0
  649. package/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface.d.ts +12 -0
  650. package/modules/ui-kit/components/data-table/services/data-table-context.service.d.ts +12 -0
  651. package/modules/ui-kit/components/data-table-wrap/data-table-wrap.component.d.ts +13 -0
  652. package/modules/ui-kit/components/excel-table/excel-table.component.d.ts +28 -0
  653. package/modules/ui-kit/components/excel-table/interface/excel-table.interface.d.ts +29 -0
  654. package/modules/ui-kit/components/form/base-form-control/base-form-control.component.d.ts +17 -0
  655. package/modules/ui-kit/components/form/base-form-page/base-form-page.component.d.ts +14 -0
  656. package/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.d.ts +8 -0
  657. package/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.d.ts +21 -0
  658. package/modules/ui-kit/components/form/form-container/form-container.component.d.ts +45 -0
  659. package/modules/ui-kit/components/form/form-group-container/form-group-container.component.d.ts +5 -0
  660. package/modules/ui-kit/components/form/input-form-control/input-form-control.component.d.ts +8 -0
  661. package/modules/ui-kit/components/form/multivalue-form-control/custom-input/custom-input.component.d.ts +15 -0
  662. package/modules/ui-kit/components/form/multivalue-form-control/custom-input/old-new-value.interface.d.ts +4 -0
  663. package/modules/ui-kit/components/form/multivalue-form-control/multivalue-form-control.component.d.ts +26 -0
  664. package/modules/ui-kit/components/form/radio-form-control/radio-form-control.component.d.ts +8 -0
  665. package/modules/ui-kit/components/form/select-form-control/select-form-control.component.d.ts +32 -0
  666. package/modules/ui-kit/components/form/selection-group-container/selection-group-container.component.d.ts +7 -0
  667. package/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.d.ts +8 -0
  668. package/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.d.ts +11 -0
  669. package/modules/ui-kit/components/icon/icon/icon.component.d.ts +14 -0
  670. package/modules/ui-kit/components/icon/text-icon/text-icon.component.d.ts +10 -0
  671. package/modules/ui-kit/components/layouts/form-layout/form-layout.component.d.ts +29 -0
  672. package/modules/ui-kit/components/layouts/primary-layout/primary-layout.component.d.ts +5 -0
  673. package/modules/ui-kit/components/loader/loader.component.d.ts +12 -0
  674. package/modules/ui-kit/components/mat-actions-button/mat-actions-button.d.ts +14 -0
  675. package/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.d.ts +17 -0
  676. package/modules/ui-kit/components/modals/confirm-modal/confirm-modal.component.d.ts +13 -0
  677. package/modules/ui-kit/components/modals/delete-modal/delete-modal.component.d.ts +17 -0
  678. package/modules/ui-kit/components/modals/enums/confirmation-modal.enum.d.ts +11 -0
  679. package/modules/ui-kit/components/snackbar/snackbar.component.d.ts +10 -0
  680. package/modules/ui-kit/components/tabs/constants/index.d.ts +1 -0
  681. package/modules/ui-kit/components/tabs/interfaces/index.d.ts +3 -0
  682. package/modules/ui-kit/components/tabs/tab-group/tab-group.component.d.ts +25 -0
  683. package/modules/ui-kit/components/tabs/tab.directive.d.ts +16 -0
  684. package/modules/ui-kit/components/tree-view/tree-view.component.d.ts +67 -0
  685. package/modules/ui-kit/constants/data-table-icon-class.constant.d.ts +1 -0
  686. package/modules/ui-kit/constants/data-table.constants.d.ts +6 -0
  687. package/modules/ui-kit/constants/date-separator.constant.d.ts +1 -0
  688. package/modules/ui-kit/constants/snackbar.constants.d.ts +3 -0
  689. package/modules/ui-kit/enums/action-type.enum.d.ts +12 -0
  690. package/modules/ui-kit/enums/coderefs-prop.enum.d.ts +24 -0
  691. package/modules/ui-kit/enums/color-schemes.enum.d.ts +11 -0
  692. package/modules/ui-kit/enums/column-disable-mode.enum.d.ts +5 -0
  693. package/modules/ui-kit/enums/column-types.enum.d.ts +8 -0
  694. package/modules/ui-kit/enums/component-sizes.enum.d.ts +4 -0
  695. package/modules/ui-kit/enums/data-type.enum.d.ts +10 -0
  696. package/modules/ui-kit/enums/form-item-type.d.ts +5 -0
  697. package/modules/ui-kit/enums/form-types.enum.d.ts +5 -0
  698. package/modules/ui-kit/enums/form-url-params.enum.d.ts +4 -0
  699. package/modules/ui-kit/enums/icons.enum.d.ts +22 -0
  700. package/modules/ui-kit/enums/operator.enum.d.ts +19 -0
  701. package/modules/ui-kit/enums/position.enum.d.ts +4 -0
  702. package/modules/ui-kit/enums/select-option.enum.d.ts +8 -0
  703. package/modules/ui-kit/enums/snackbar.enum.d.ts +6 -0
  704. package/modules/ui-kit/enums/url-param-action.enum.d.ts +4 -0
  705. package/modules/ui-kit/enums/utils.enum.d.ts +4 -0
  706. package/modules/ui-kit/enums/viewType.enum.d.ts +5 -0
  707. package/modules/ui-kit/interfaces/api.interface.d.ts +45 -0
  708. package/modules/ui-kit/interfaces/confirm-modal-data.interface.d.ts +7 -0
  709. package/modules/ui-kit/interfaces/constants.interface.d.ts +4 -0
  710. package/modules/ui-kit/interfaces/data-table.interface.d.ts +253 -0
  711. package/modules/ui-kit/interfaces/form.interface.d.ts +21 -0
  712. package/modules/ui-kit/interfaces/generic.interface.d.ts +7 -0
  713. package/modules/ui-kit/interfaces/list-item.interface.d.ts +5 -0
  714. package/modules/ui-kit/interfaces/mat-action-buttons.interface.d.ts +14 -0
  715. package/modules/ui-kit/interfaces/row-selection-info.interface.d.ts +7 -0
  716. package/modules/ui-kit/interfaces/select.interface.d.ts +8 -0
  717. package/modules/ui-kit/interfaces/snackbar.interface.d.ts +4 -0
  718. package/modules/ui-kit/interfaces/tree-view.interface.d.ts +49 -0
  719. package/modules/ui-kit/models/storage-object.model.d.ts +6 -0
  720. package/modules/ui-kit/pipes/column-filter.pipe.d.ts +12 -0
  721. package/modules/ui-kit/pipes/filter-by-prop.pipe.d.ts +9 -0
  722. package/modules/ui-kit/pipes/first-letter-text.pipe.d.ts +7 -0
  723. package/modules/ui-kit/pipes/keys.pipe.d.ts +7 -0
  724. package/modules/ui-kit/pipes/paginate.pipe.d.ts +12 -0
  725. package/modules/ui-kit/pipes/search.pipe.d.ts +16 -0
  726. package/modules/ui-kit/services/api/api.service.d.ts +50 -0
  727. package/modules/ui-kit/services/api/rest-api.service.d.ts +28 -0
  728. package/modules/ui-kit/services/data-table.service.d.ts +37 -0
  729. package/modules/ui-kit/services/form.service.d.ts +26 -0
  730. package/modules/ui-kit/services/formatters/date-formatter.service.d.ts +13 -0
  731. package/modules/ui-kit/services/mappers/form-data-table-mapper.service.d.ts +8 -0
  732. package/modules/ui-kit/services/select.service.d.ts +7 -0
  733. package/modules/ui-kit/services/snackbar.service.d.ts +15 -0
  734. package/modules/ui-kit/services/url.service.d.ts +7 -0
  735. package/modules/ui-kit/types/basic.type.d.ts +2 -0
  736. package/modules/ui-kit/types/function.type.d.ts +20 -0
  737. package/modules/ui-kit/types/select.type.d.ts +2 -0
  738. package/modules/ui-kit/ui-kit.module.d.ts +79 -0
  739. package/package.json +45 -0
  740. package/public-api.d.ts +367 -0
  741. package/resolvers/null-value.resolver.d.ts +7 -0
  742. package/services/api/common-crud-api.service.d.ts +28 -0
  743. package/services/api/filter-api.service.d.ts +19 -0
  744. package/services/selectable.service.d.ts +10 -0
  745. package/shared-pipes/pipes/search.pipe.d.ts +15 -0
  746. package/shared.module.d.ts +13 -0
  747. package/validators/debounce-async.validator.d.ts +9 -0
@@ -0,0 +1,59 @@
1
+ import { Injectable } from '@angular/core';
2
+ import { finalize, share } from 'rxjs/operators';
3
+ import { RestApiService } from '../../modules/ui-kit/services/api/rest-api.service';
4
+ import * as i0 from "@angular/core";
5
+ export class CommonCrudApiService extends RestApiService {
6
+ constructor() {
7
+ super(...arguments);
8
+ /**
9
+ * Entities cache
10
+ */
11
+ this._entities = new Map();
12
+ this._entityIds = new Map();
13
+ }
14
+ getItemsList(params, path) {
15
+ const paramsJSON = JSON.stringify(params);
16
+ this._entities.set(paramsJSON, this._entities.get(paramsJSON) || this.getList(params, path)
17
+ .pipe(share()));
18
+ return this._entities.get(paramsJSON);
19
+ }
20
+ getOnlyActiveItemsList(params, path) {
21
+ return this.getItemsList({
22
+ ...params,
23
+ activeOnly: true,
24
+ }, path);
25
+ }
26
+ /**
27
+ * Api methods
28
+ */
29
+ getSingleItem(id, params, path) {
30
+ this._entityIds[id] = this._entityIds[id] || this.getItemById(id, params, path)
31
+ .pipe(share());
32
+ return this._entityIds[id];
33
+ }
34
+ postNewItem(params, path) {
35
+ return this.postItem(params, undefined, path).pipe(finalize(() => this.clearAllCache()));
36
+ }
37
+ updateItem(params, path) {
38
+ return this.patchItem(params, path).pipe(finalize(() => this.clearAllCache()));
39
+ }
40
+ putItem(id, params, path) {
41
+ return this.putItemById(id, params, path).pipe(finalize(() => this.clearAllCache()));
42
+ }
43
+ deleteItem(id, params, path) {
44
+ return this.deleteItemById(id, params, path).pipe(finalize(() => this.clearAllCache()));
45
+ }
46
+ clearAllCache() {
47
+ this._entities.clear();
48
+ this._entityIds.clear();
49
+ }
50
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CommonCrudApiService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
51
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CommonCrudApiService, providedIn: 'root' }); }
52
+ }
53
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CommonCrudApiService, decorators: [{
54
+ type: Injectable,
55
+ args: [{
56
+ providedIn: 'root',
57
+ }]
58
+ }] });
59
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbW9uLWNydWQtYXBpLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWIvc3JjL3NlcnZpY2VzL2FwaS9jb21tb24tY3J1ZC1hcGkuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTNDLE9BQU8sRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHakQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9EQUFvRCxDQUFDOztBQVNwRixNQUFNLE9BQWdCLG9CQUF3QixTQUFRLGNBQWM7SUFIcEU7O1FBT0U7O1dBRUc7UUFFSyxjQUFTLEdBQXFCLElBQUksR0FBRyxFQUFzQyxDQUFDO1FBRTVFLGVBQVUsR0FBcUIsSUFBSSxHQUFHLEVBQXlCLENBQUM7S0EwRHpFO0lBeERRLFlBQVksQ0FBQyxNQUEwQixFQUFFLElBQWE7UUFDM0QsTUFBTSxVQUFVLEdBQVcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUVsRCxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxVQUFVLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBSSxNQUFNLEVBQUUsSUFBSSxDQUFDO2FBQzNGLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFFbEIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBRU0sc0JBQXNCLENBQUMsTUFBMEIsRUFBRSxJQUFhO1FBQ3JFLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQztZQUN2QixHQUFHLE1BQU07WUFDVCxVQUFVLEVBQUUsSUFBSTtTQUNqQixFQUFFLElBQUksQ0FBQyxDQUFDO0lBQ1gsQ0FBQztJQUVEOztPQUVHO0lBRUksYUFBYSxDQUFDLEVBQVUsRUFBRSxNQUFrQixFQUFFLElBQWE7UUFDaEUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEVBQUUsQ0FBQyxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUksRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLENBQUM7YUFDL0UsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7UUFFakIsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQzdCLENBQUM7SUFFTSxXQUFXLENBQUMsTUFBaUIsRUFBRSxJQUFhO1FBQ2pELE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBSSxNQUFNLEVBQUUsU0FBUyxFQUFFLElBQUksQ0FBQyxDQUFDLElBQUksQ0FDbkQsUUFBUSxDQUFJLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUN4QyxDQUFDO0lBQ0osQ0FBQztJQUVNLFVBQVUsQ0FBQyxNQUFpQixFQUFFLElBQWE7UUFDaEQsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFJLE1BQU0sRUFBRSxJQUFJLENBQUMsQ0FBQyxJQUFJLENBQ3pDLFFBQVEsQ0FBSSxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUMsQ0FDeEMsQ0FBQztJQUNKLENBQUM7SUFFTSxPQUFPLENBQUMsRUFBVSxFQUFFLE1BQWlCLEVBQUUsSUFBYTtRQUN6RCxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUksRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLENBQUMsQ0FBQyxJQUFJLENBQy9DLFFBQVEsQ0FBSSxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUMsQ0FDeEMsQ0FBQztJQUNKLENBQUM7SUFFTSxVQUFVLENBQUMsRUFBVSxFQUFFLE1BQWlCLEVBQUUsSUFBYTtRQUM1RCxPQUFPLElBQUksQ0FBQyxjQUFjLENBQUksRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLENBQUMsQ0FBQyxJQUFJLENBQ2xELFFBQVEsQ0FBSSxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUMsQ0FDeEMsQ0FBQztJQUNKLENBQUM7SUFFTSxhQUFhO1FBQ2xCLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxFQUFFLENBQUM7UUFDdkIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUMxQixDQUFDOytHQWxFbUIsb0JBQW9CO21IQUFwQixvQkFBb0IsY0FGNUIsTUFBTTs7NEZBRUUsb0JBQW9CO2tCQUh6QyxVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGZpbmFsaXplLCBzaGFyZSB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7IElMaXN0UmVxUGFyYW1zQXBpLCBJTGlzdFJlc0FwaSB9IGZyb20gJy4uLy4uL21vZHVsZXMvdWkta2l0L2ludGVyZmFjZXMvYXBpLmludGVyZmFjZSc7XG5pbXBvcnQgeyBJS2V5VmFsdWUgfSBmcm9tICcuLi8uLi9tb2R1bGVzL3VpLWtpdC9pbnRlcmZhY2VzL2dlbmVyaWMuaW50ZXJmYWNlJztcbmltcG9ydCB7IFJlc3RBcGlTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vbW9kdWxlcy91aS1raXQvc2VydmljZXMvYXBpL3Jlc3QtYXBpLnNlcnZpY2UnO1xuXG5leHBvcnQgdHlwZSBFbnRpdHlJZENhY2hlPFQ+ID0gTWFwPHN0cmluZywgT2JzZXJ2YWJsZTxUPj47XG5cbmV4cG9ydCB0eXBlIEVudGl0aWVzQ2FjaGU8VD4gPSBNYXA8c3RyaW5nLCBPYnNlcnZhYmxlPElMaXN0UmVzQXBpPFQ+Pj47XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBDb21tb25DcnVkQXBpU2VydmljZTxUPiBleHRlbmRzIFJlc3RBcGlTZXJ2aWNlIHtcblxuICBwcm90ZWN0ZWQgYWJzdHJhY3Qgb3ZlcnJpZGUgYmFzZVVybDogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBFbnRpdGllcyBjYWNoZVxuICAgKi9cblxuICBwcml2YXRlIF9lbnRpdGllczogRW50aXRpZXNDYWNoZTxUPiA9IG5ldyBNYXA8c3RyaW5nLCBPYnNlcnZhYmxlPElMaXN0UmVzQXBpPFQ+Pj4oKTtcblxuICBwcml2YXRlIF9lbnRpdHlJZHM6IEVudGl0eUlkQ2FjaGU8VD4gPSBuZXcgTWFwPHN0cmluZywgT2JzZXJ2YWJsZTxUPj4oKTtcblxuICBwdWJsaWMgZ2V0SXRlbXNMaXN0KHBhcmFtcz86IElMaXN0UmVxUGFyYW1zQXBpLCBwYXRoPzogc3RyaW5nKTogT2JzZXJ2YWJsZTxJTGlzdFJlc0FwaTxUPj4ge1xuICAgIGNvbnN0IHBhcmFtc0pTT046IHN0cmluZyA9IEpTT04uc3RyaW5naWZ5KHBhcmFtcyk7XG5cbiAgICB0aGlzLl9lbnRpdGllcy5zZXQocGFyYW1zSlNPTiwgdGhpcy5fZW50aXRpZXMuZ2V0KHBhcmFtc0pTT04pIHx8IHRoaXMuZ2V0TGlzdDxUPihwYXJhbXMsIHBhdGgpXG4gICAgICAucGlwZShzaGFyZSgpKSk7XG5cbiAgICByZXR1cm4gdGhpcy5fZW50aXRpZXMuZ2V0KHBhcmFtc0pTT04pO1xuICB9XG5cbiAgcHVibGljIGdldE9ubHlBY3RpdmVJdGVtc0xpc3QocGFyYW1zPzogSUxpc3RSZXFQYXJhbXNBcGksIHBhdGg/OiBzdHJpbmcpOiBPYnNlcnZhYmxlPElMaXN0UmVzQXBpPFQ+PiB7XG4gICAgcmV0dXJuIHRoaXMuZ2V0SXRlbXNMaXN0KHtcbiAgICAgIC4uLnBhcmFtcyxcbiAgICAgIGFjdGl2ZU9ubHk6IHRydWUsXG4gICAgfSwgcGF0aCk7XG4gIH1cblxuICAvKipcbiAgICogQXBpIG1ldGhvZHNcbiAgICovXG5cbiAgcHVibGljIGdldFNpbmdsZUl0ZW0oaWQ6IHN0cmluZywgcGFyYW1zPzogSUtleVZhbHVlLCBwYXRoPzogc3RyaW5nKTogT2JzZXJ2YWJsZTxUPiB7XG4gICAgdGhpcy5fZW50aXR5SWRzW2lkXSA9IHRoaXMuX2VudGl0eUlkc1tpZF0gfHwgdGhpcy5nZXRJdGVtQnlJZDxUPihpZCwgcGFyYW1zLCBwYXRoKVxuICAgICAgLnBpcGUoc2hhcmUoKSk7XG5cbiAgICByZXR1cm4gdGhpcy5fZW50aXR5SWRzW2lkXTtcbiAgfVxuXG4gIHB1YmxpYyBwb3N0TmV3SXRlbShwYXJhbXM6IElLZXlWYWx1ZSwgcGF0aD86IHN0cmluZyk6IE9ic2VydmFibGU8VD4ge1xuICAgIHJldHVybiB0aGlzLnBvc3RJdGVtPFQ+KHBhcmFtcywgdW5kZWZpbmVkLCBwYXRoKS5waXBlKFxuICAgICAgZmluYWxpemU8VD4oKCkgPT4gdGhpcy5jbGVhckFsbENhY2hlKCkpLFxuICAgICk7XG4gIH1cblxuICBwdWJsaWMgdXBkYXRlSXRlbShwYXJhbXM6IElLZXlWYWx1ZSwgcGF0aD86IHN0cmluZyk6IE9ic2VydmFibGU8VD4ge1xuICAgIHJldHVybiB0aGlzLnBhdGNoSXRlbTxUPihwYXJhbXMsIHBhdGgpLnBpcGUoXG4gICAgICBmaW5hbGl6ZTxUPigoKSA9PiB0aGlzLmNsZWFyQWxsQ2FjaGUoKSksXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyBwdXRJdGVtKGlkOiBzdHJpbmcsIHBhcmFtczogSUtleVZhbHVlLCBwYXRoPzogc3RyaW5nKTogT2JzZXJ2YWJsZTxUPiB7XG4gICAgcmV0dXJuIHRoaXMucHV0SXRlbUJ5SWQ8VD4oaWQsIHBhcmFtcywgcGF0aCkucGlwZShcbiAgICAgIGZpbmFsaXplPFQ+KCgpID0+IHRoaXMuY2xlYXJBbGxDYWNoZSgpKSxcbiAgICApO1xuICB9XG5cbiAgcHVibGljIGRlbGV0ZUl0ZW0oaWQ6IHN0cmluZywgcGFyYW1zOiBJS2V5VmFsdWUsIHBhdGg/OiBzdHJpbmcpOiBPYnNlcnZhYmxlPFQ+IHtcbiAgICByZXR1cm4gdGhpcy5kZWxldGVJdGVtQnlJZDxUPihpZCwgcGFyYW1zLCBwYXRoKS5waXBlKFxuICAgICAgZmluYWxpemU8VD4oKCkgPT4gdGhpcy5jbGVhckFsbENhY2hlKCkpLFxuICAgICk7XG4gIH1cblxuICBwdWJsaWMgY2xlYXJBbGxDYWNoZSgpOiB2b2lkIHtcbiAgICB0aGlzLl9lbnRpdGllcy5jbGVhcigpO1xuICAgIHRoaXMuX2VudGl0eUlkcy5jbGVhcigpO1xuICB9XG5cbn1cbiJdfQ==
@@ -0,0 +1,30 @@
1
+ import { Injectable } from '@angular/core';
2
+ import { BehaviorSubject, combineLatest } from 'rxjs';
3
+ import { filter, map } from 'rxjs/operators';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "./common-crud-api.service";
6
+ export class FilterApiService {
7
+ set filterState(filterFn) {
8
+ this._filterState.next(filterFn);
9
+ }
10
+ get filterState$() {
11
+ return this._filterState.asObservable();
12
+ }
13
+ get filteredEntities$() {
14
+ return this._filteredEntities$;
15
+ }
16
+ constructor(apiService) {
17
+ this.apiService = apiService;
18
+ /**
19
+ * Filter state
20
+ */
21
+ this._filterState = new BehaviorSubject(null);
22
+ this._filteredEntities$ = combineLatest(this.apiService.getItemsList(), this.filterState$).pipe(filter(([entities]) => !!entities), map(([entities, filterFn]) => filterFn ? ({ ...entities, resultSet: entities.resultSet.filter(filterFn) }) : entities));
23
+ }
24
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterApiService, deps: [{ token: i1.CommonCrudApiService }], target: i0.ɵɵFactoryTarget.Injectable }); }
25
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterApiService }); }
26
+ }
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterApiService, decorators: [{
28
+ type: Injectable
29
+ }], ctorParameters: () => [{ type: i1.CommonCrudApiService }] });
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsdGVyLWFwaS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGliL3NyYy9zZXJ2aWNlcy9hcGkvZmlsdGVyLWFwaS5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLGVBQWUsRUFBYyxhQUFhLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDbEUsT0FBTyxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7O0FBTzdDLE1BQU0sT0FBTyxnQkFBZ0I7SUFPM0IsSUFBSSxXQUFXLENBQUMsUUFBcUI7UUFDbkMsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELElBQUksWUFBWTtRQUNkLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUMxQyxDQUFDO0lBYUQsSUFBSSxpQkFBaUI7UUFDbkIsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUM7SUFDakMsQ0FBQztJQUVELFlBQXNCLFVBQW1DO1FBQW5DLGVBQVUsR0FBVixVQUFVLENBQXlCO1FBNUJ6RDs7V0FFRztRQUNLLGlCQUFZLEdBQXdDLElBQUksZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBVTlFLHVCQUFrQixHQUErQixhQUFhLENBQ3BFLElBQUksQ0FBQyxVQUFVLENBQUMsWUFBWSxFQUFFLEVBQzlCLElBQUksQ0FBQyxZQUFZLENBQ2xCLENBQUMsSUFBSSxDQUNKLE1BQU0sQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsRUFDbEMsR0FBRyxDQUNELENBQUMsQ0FBQyxRQUFRLEVBQUUsUUFBUSxDQUFDLEVBQUUsRUFBRSxDQUN2QixRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxHQUFHLFFBQVEsRUFBRSxTQUFTLEVBQUUsUUFBUSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQzFGLENBQ0YsQ0FBQztJQU0wRCxDQUFDOytHQTlCbEQsZ0JBQWdCO21IQUFoQixnQkFBZ0I7OzRGQUFoQixnQkFBZ0I7a0JBRDVCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QsIE9ic2VydmFibGUsIGNvbWJpbmVMYXRlc3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGZpbHRlciwgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0IHsgSUxpc3RSZXNBcGkgfSBmcm9tICcuLi8uLi9tb2R1bGVzL3VpLWtpdC9pbnRlcmZhY2VzL2FwaS5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgQ29tbW9uQ3J1ZEFwaVNlcnZpY2UgfSBmcm9tICcuL2NvbW1vbi1jcnVkLWFwaS5zZXJ2aWNlJztcblxuZXhwb3J0IHR5cGUgRmlsdGVyRm48VD4gPSAob2JqOiBUKSA9PiBib29sZWFuO1xuXG5ASW5qZWN0YWJsZSgpXG5leHBvcnQgY2xhc3MgRmlsdGVyQXBpU2VydmljZTxUPiB7XG5cbiAgLyoqXG4gICAqIEZpbHRlciBzdGF0ZVxuICAgKi9cbiAgcHJpdmF0ZSBfZmlsdGVyU3RhdGU6IEJlaGF2aW9yU3ViamVjdDxGaWx0ZXJGbjxUPiB8IG51bGw+ID0gbmV3IEJlaGF2aW9yU3ViamVjdChudWxsKTtcblxuICBzZXQgZmlsdGVyU3RhdGUoZmlsdGVyRm46IEZpbHRlckZuPFQ+KSB7XG4gICAgdGhpcy5fZmlsdGVyU3RhdGUubmV4dChmaWx0ZXJGbik7XG4gIH1cblxuICBnZXQgZmlsdGVyU3RhdGUkKCk6IE9ic2VydmFibGU8RmlsdGVyRm48VD4+IHtcbiAgICByZXR1cm4gdGhpcy5fZmlsdGVyU3RhdGUuYXNPYnNlcnZhYmxlKCk7XG4gIH1cblxuICBwcml2YXRlIF9maWx0ZXJlZEVudGl0aWVzJDogT2JzZXJ2YWJsZTxJTGlzdFJlc0FwaTxUPj4gPSBjb21iaW5lTGF0ZXN0KFxuICAgIHRoaXMuYXBpU2VydmljZS5nZXRJdGVtc0xpc3QoKSxcbiAgICB0aGlzLmZpbHRlclN0YXRlJCxcbiAgKS5waXBlKFxuICAgIGZpbHRlcigoW2VudGl0aWVzXSkgPT4gISFlbnRpdGllcyksXG4gICAgbWFwPFtJTGlzdFJlc0FwaTxUPiwgRmlsdGVyRm48VD4gfCBudWxsXSwgSUxpc3RSZXNBcGk8VD4+KFxuICAgICAgKFtlbnRpdGllcywgZmlsdGVyRm5dKSA9PlxuICAgICAgICBmaWx0ZXJGbiA/ICh7IC4uLmVudGl0aWVzLCByZXN1bHRTZXQ6IGVudGl0aWVzLnJlc3VsdFNldC5maWx0ZXIoZmlsdGVyRm4pIH0pIDogZW50aXRpZXMsXG4gICAgKSxcbiAgKTtcblxuICBnZXQgZmlsdGVyZWRFbnRpdGllcyQoKTogT2JzZXJ2YWJsZTxJTGlzdFJlc0FwaTxUPj4ge1xuICAgIHJldHVybiB0aGlzLl9maWx0ZXJlZEVudGl0aWVzJDtcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBhcGlTZXJ2aWNlOiBDb21tb25DcnVkQXBpU2VydmljZTxUPikge31cbn1cbiJdfQ==
@@ -0,0 +1,23 @@
1
+ import { Injectable } from '@angular/core';
2
+ import { BehaviorSubject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export class SelectableService {
5
+ constructor() {
6
+ this._activeItem$ = new BehaviorSubject(null);
7
+ }
8
+ get activeItem$() {
9
+ return this._activeItem$.asObservable();
10
+ }
11
+ get activeItem() {
12
+ return this._activeItem$.value;
13
+ }
14
+ set activeItem(item) {
15
+ this._activeItem$.next(item);
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SelectableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
18
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SelectableService }); }
19
+ }
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SelectableService, decorators: [{
21
+ type: Injectable
22
+ }] });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0YWJsZS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbGliL3NyYy9zZXJ2aWNlcy9zZWxlY3RhYmxlLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQWMsZUFBZSxFQUFFLE1BQU0sTUFBTSxDQUFDOztBQUduRCxNQUFNLE9BQU8saUJBQWlCO0lBRDlCO1FBR1UsaUJBQVksR0FBOEIsSUFBSSxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUM7S0FjN0U7SUFaQyxJQUFJLFdBQVc7UUFDYixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDMUMsQ0FBQztJQUVELElBQUksVUFBVTtRQUNaLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUM7SUFDakMsQ0FBQztJQUVELElBQUksVUFBVSxDQUFDLElBQWM7UUFDM0IsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDL0IsQ0FBQzsrR0FkVSxpQkFBaUI7bUhBQWpCLGlCQUFpQjs7NEZBQWpCLGlCQUFpQjtrQkFEN0IsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE9ic2VydmFibGUsIEJlaGF2aW9yU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuXG5ASW5qZWN0YWJsZSgpXG5leHBvcnQgY2xhc3MgU2VsZWN0YWJsZVNlcnZpY2U8VD4ge1xuXG4gIHByaXZhdGUgX2FjdGl2ZUl0ZW0kOiBCZWhhdmlvclN1YmplY3Q8VCB8IG51bGw+ID0gbmV3IEJlaGF2aW9yU3ViamVjdChudWxsKTtcblxuICBnZXQgYWN0aXZlSXRlbSQoKTogT2JzZXJ2YWJsZTxUPiB7XG4gICAgcmV0dXJuIHRoaXMuX2FjdGl2ZUl0ZW0kLmFzT2JzZXJ2YWJsZSgpO1xuICB9XG5cbiAgZ2V0IGFjdGl2ZUl0ZW0oKTogVCB7XG4gICAgcmV0dXJuIHRoaXMuX2FjdGl2ZUl0ZW0kLnZhbHVlO1xuICB9XG5cbiAgc2V0IGFjdGl2ZUl0ZW0oaXRlbTogVCB8IG51bGwpIHtcbiAgICB0aGlzLl9hY3RpdmVJdGVtJC5uZXh0KGl0ZW0pO1xuICB9XG5cbn1cbiJdfQ==
@@ -0,0 +1,48 @@
1
+ import { Pipe } from '@angular/core';
2
+ import { isUndefined, isNull } from 'lodash';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "../../modules/ui-kit/services/data-table.service";
5
+ export class SearchPipe {
6
+ constructor(dataTableService) {
7
+ this.dataTableService = dataTableService;
8
+ }
9
+ transform(items, search, columns) {
10
+ if (isUndefined(columns)) {
11
+ columns = [];
12
+ }
13
+ if (search) {
14
+ items = items.filter((item) => {
15
+ if (item.data) {
16
+ return this.findItem(item.data, search, columns);
17
+ }
18
+ return this.findItem(item, search, columns);
19
+ });
20
+ }
21
+ if (items) {
22
+ this.dataTableService.searchedRowCount$.next(items.length);
23
+ }
24
+ return items;
25
+ }
26
+ findItem(item, search, columns) {
27
+ if (columns.length === 0) {
28
+ columns = this.getAllProperties(item);
29
+ }
30
+ return columns.filter((column) => this.ifDefinedAndNotNull(item, column) && this.isMatched(item[column], search)).length > 0;
31
+ }
32
+ getAllProperties(item) {
33
+ return Object.keys(item);
34
+ }
35
+ isMatched(data, searchValue) {
36
+ return data.toString().toLocaleLowerCase().includes(searchValue.toLocaleLowerCase());
37
+ }
38
+ ifDefinedAndNotNull(data, propertyName) {
39
+ return !isUndefined(data[propertyName]) && !isNull(data[propertyName]);
40
+ }
41
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SearchPipe, deps: [{ token: i1.DataTableService }], target: i0.ɵɵFactoryTarget.Pipe }); }
42
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SearchPipe, name: "search" }); }
43
+ }
44
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SearchPipe, decorators: [{
45
+ type: Pipe,
46
+ args: [{ name: 'search' }]
47
+ }], ctorParameters: () => [{ type: i1.DataTableService }] });
48
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWIvc3JjL3NoYXJlZC1waXBlcy9waXBlcy9zZWFyY2gucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUNwRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxNQUFNLFFBQVEsQ0FBQzs7O0FBSzdDLE1BQU0sT0FBTyxVQUFVO0lBRXJCLFlBQW9CLGdCQUFrQztRQUFsQyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO0lBQUksQ0FBQztJQUVwRCxTQUFTLENBQUMsS0FBWSxFQUFFLE1BQWMsRUFBRSxPQUFrQjtRQUUvRCxJQUFJLFdBQVcsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDO1lBQ3pCLE9BQU8sR0FBRyxFQUFFLENBQUM7UUFDZixDQUFDO1FBRUQsSUFBSSxNQUFNLEVBQUUsQ0FBQztZQUNYLEtBQUssR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUU7Z0JBQzVCLElBQUksSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO29CQUNkLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLE1BQU0sRUFBRSxPQUFPLENBQUMsQ0FBQztnQkFDbkQsQ0FBQztnQkFDRCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLE1BQU0sRUFBRSxPQUFPLENBQUMsQ0FBQztZQUM5QyxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUM7UUFFRCxJQUFJLEtBQUssRUFBRSxDQUFDO1lBQ1YsSUFBSSxDQUFDLGdCQUFnQixDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDN0QsQ0FBQztRQUVELE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQztJQUVPLFFBQVEsQ0FBQyxJQUFTLEVBQUUsTUFBYyxFQUFFLE9BQWlCO1FBQzNELElBQUksT0FBTyxDQUFDLE1BQU0sS0FBSyxDQUFDLEVBQUUsQ0FBQztZQUN6QixPQUFPLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ3hDLENBQUM7UUFFRCxPQUFPLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUM3QixJQUFJLENBQUMsbUJBQW1CLENBQUMsSUFBSSxFQUFFLE1BQU0sQ0FBQyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFLE1BQU0sQ0FBQyxDQUMvRSxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUM7SUFDakIsQ0FBQztJQUVPLGdCQUFnQixDQUFDLElBQWU7UUFDdEMsT0FBTyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzNCLENBQUM7SUFFTyxTQUFTLENBQUMsSUFBUyxFQUFFLFdBQW1CO1FBQzlDLE9BQU8sSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLGlCQUFpQixFQUFFLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxpQkFBaUIsRUFBRSxDQUFDLENBQUM7SUFDdkYsQ0FBQztJQUVPLG1CQUFtQixDQUFDLElBQVMsRUFBRSxZQUFvQjtRQUN6RCxPQUFPLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDO0lBQ3pFLENBQUM7K0dBOUNVLFVBQVU7NkdBQVYsVUFBVTs7NEZBQVYsVUFBVTtrQkFEdEIsSUFBSTttQkFBQyxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBpc1VuZGVmaW5lZCwgaXNOdWxsIH0gZnJvbSAnbG9kYXNoJztcbmltcG9ydCB7IERhdGFUYWJsZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9tb2R1bGVzL3VpLWtpdC9zZXJ2aWNlcy9kYXRhLXRhYmxlLnNlcnZpY2UnO1xuaW1wb3J0IHsgSUtleVZhbHVlIH0gZnJvbSAnLi4vLi4vbW9kdWxlcy91aS1raXQvaW50ZXJmYWNlcy9nZW5lcmljLmludGVyZmFjZSc7XG5cbkBQaXBlKHsgbmFtZTogJ3NlYXJjaCcgfSlcbmV4cG9ydCBjbGFzcyBTZWFyY2hQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBkYXRhVGFibGVTZXJ2aWNlOiBEYXRhVGFibGVTZXJ2aWNlKSB7IH1cblxuICBwdWJsaWMgdHJhbnNmb3JtKGl0ZW1zOiBhbnlbXSwgc2VhcmNoOiBzdHJpbmcsIGNvbHVtbnM/OiBzdHJpbmdbXSk6IElLZXlWYWx1ZVtdIHtcblxuICAgIGlmIChpc1VuZGVmaW5lZChjb2x1bW5zKSkge1xuICAgICAgY29sdW1ucyA9IFtdO1xuICAgIH1cblxuICAgIGlmIChzZWFyY2gpIHtcbiAgICAgIGl0ZW1zID0gaXRlbXMuZmlsdGVyKChpdGVtKSA9PiB7XG4gICAgICAgIGlmIChpdGVtLmRhdGEpIHtcbiAgICAgICAgICByZXR1cm4gdGhpcy5maW5kSXRlbShpdGVtLmRhdGEsIHNlYXJjaCwgY29sdW1ucyk7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHRoaXMuZmluZEl0ZW0oaXRlbSwgc2VhcmNoLCBjb2x1bW5zKTtcbiAgICAgIH0pO1xuICAgIH1cblxuICAgIGlmIChpdGVtcykge1xuICAgICAgdGhpcy5kYXRhVGFibGVTZXJ2aWNlLnNlYXJjaGVkUm93Q291bnQkLm5leHQoaXRlbXMubGVuZ3RoKTtcbiAgICB9XG5cbiAgICByZXR1cm4gaXRlbXM7XG4gIH1cblxuICBwcml2YXRlIGZpbmRJdGVtKGl0ZW06IGFueSwgc2VhcmNoOiBzdHJpbmcsIGNvbHVtbnM6IHN0cmluZ1tdKTogYm9vbGVhbiB7XG4gICAgaWYgKGNvbHVtbnMubGVuZ3RoID09PSAwKSB7XG4gICAgICBjb2x1bW5zID0gdGhpcy5nZXRBbGxQcm9wZXJ0aWVzKGl0ZW0pO1xuICAgIH1cbiAgICBcbiAgICByZXR1cm4gY29sdW1ucy5maWx0ZXIoKGNvbHVtbikgPT4gXG4gICAgICAgIHRoaXMuaWZEZWZpbmVkQW5kTm90TnVsbChpdGVtLCBjb2x1bW4pICYmIHRoaXMuaXNNYXRjaGVkKGl0ZW1bY29sdW1uXSwgc2VhcmNoKSxcbiAgICAgICkubGVuZ3RoID4gMDtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0QWxsUHJvcGVydGllcyhpdGVtOiBJS2V5VmFsdWUpOiBzdHJpbmdbXSB7XG4gICAgcmV0dXJuIE9iamVjdC5rZXlzKGl0ZW0pO1xuICB9XG5cbiAgcHJpdmF0ZSBpc01hdGNoZWQoZGF0YTogYW55LCBzZWFyY2hWYWx1ZTogc3RyaW5nKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIGRhdGEudG9TdHJpbmcoKS50b0xvY2FsZUxvd2VyQ2FzZSgpLmluY2x1ZGVzKHNlYXJjaFZhbHVlLnRvTG9jYWxlTG93ZXJDYXNlKCkpO1xuICB9XG5cbiAgcHJpdmF0ZSBpZkRlZmluZWRBbmROb3ROdWxsKGRhdGE6IGFueSwgcHJvcGVydHlOYW1lOiBzdHJpbmcpOiBib29sZWFuIHtcbiAgICByZXR1cm4gIWlzVW5kZWZpbmVkKGRhdGFbcHJvcGVydHlOYW1lXSkgJiYgIWlzTnVsbChkYXRhW3Byb3BlcnR5TmFtZV0pO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hhcmVkLXVpLXRlc3QtMi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2xpYi9zcmMvc2hhcmVkLXVpLXRlc3QtMi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,57 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { NgLetModule } from './directives/let.directive';
4
+ import { DynamicCardsModule } from './modules/dynamic-cards/dynamic-cards.module';
5
+ import { DynamicFormsModule } from './modules/dynamic-forms/dynamic-forms.module';
6
+ import { UiKitModule } from './modules/ui-kit/ui-kit.module';
7
+ import { QueryBuilderModule } from './modules/query-builder/query-builder.module';
8
+ import { FlexLayoutModule } from '@angular/flex-layout';
9
+ import * as i0 from "@angular/core";
10
+ export class SharedModule {
11
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
12
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SharedModule, imports: [CommonModule,
13
+ NgLetModule,
14
+ DynamicFormsModule,
15
+ UiKitModule,
16
+ DynamicCardsModule,
17
+ QueryBuilderModule], exports: [NgLetModule,
18
+ DynamicFormsModule,
19
+ FlexLayoutModule,
20
+ UiKitModule,
21
+ DynamicCardsModule,
22
+ QueryBuilderModule] }); }
23
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SharedModule, imports: [CommonModule,
24
+ NgLetModule,
25
+ DynamicFormsModule,
26
+ UiKitModule,
27
+ DynamicCardsModule,
28
+ QueryBuilderModule, NgLetModule,
29
+ DynamicFormsModule,
30
+ FlexLayoutModule,
31
+ UiKitModule,
32
+ DynamicCardsModule,
33
+ QueryBuilderModule] }); }
34
+ }
35
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SharedModule, decorators: [{
36
+ type: NgModule,
37
+ args: [{
38
+ declarations: [],
39
+ imports: [
40
+ CommonModule,
41
+ NgLetModule,
42
+ DynamicFormsModule,
43
+ UiKitModule,
44
+ DynamicCardsModule,
45
+ QueryBuilderModule,
46
+ ],
47
+ exports: [
48
+ NgLetModule,
49
+ DynamicFormsModule,
50
+ FlexLayoutModule,
51
+ UiKitModule,
52
+ DynamicCardsModule,
53
+ QueryBuilderModule,
54
+ ],
55
+ }]
56
+ }] });
57
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hhcmVkLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2xpYi9zcmMvc2hhcmVkLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDekQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDbEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDbEYsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQzdELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhDQUE4QyxDQUFDO0FBQ2xGLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDOztBQXFCeEQsTUFBTSxPQUFPLFlBQVk7K0dBQVosWUFBWTtnSEFBWixZQUFZLFlBaEJyQixZQUFZO1lBQ1osV0FBVztZQUNYLGtCQUFrQjtZQUNsQixXQUFXO1lBQ1gsa0JBQWtCO1lBQ2xCLGtCQUFrQixhQUdsQixXQUFXO1lBQ1gsa0JBQWtCO1lBQ2xCLGdCQUFnQjtZQUNoQixXQUFXO1lBQ1gsa0JBQWtCO1lBQ2xCLGtCQUFrQjtnSEFHVCxZQUFZLFlBaEJyQixZQUFZO1lBQ1osV0FBVztZQUNYLGtCQUFrQjtZQUNsQixXQUFXO1lBQ1gsa0JBQWtCO1lBQ2xCLGtCQUFrQixFQUdsQixXQUFXO1lBQ1gsa0JBQWtCO1lBQ2xCLGdCQUFnQjtZQUNoQixXQUFXO1lBQ1gsa0JBQWtCO1lBQ2xCLGtCQUFrQjs7NEZBR1QsWUFBWTtrQkFuQnhCLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLEVBQUU7b0JBQ2hCLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsa0JBQWtCO3dCQUNsQixXQUFXO3dCQUNYLGtCQUFrQjt3QkFDbEIsa0JBQWtCO3FCQUNuQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsV0FBVzt3QkFDWCxrQkFBa0I7d0JBQ2xCLGdCQUFnQjt3QkFDaEIsV0FBVzt3QkFDWCxrQkFBa0I7d0JBQ2xCLGtCQUFrQjtxQkFDbkI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5nTGV0TW9kdWxlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL2xldC5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgRHluYW1pY0NhcmRzTW9kdWxlIH0gZnJvbSAnLi9tb2R1bGVzL2R5bmFtaWMtY2FyZHMvZHluYW1pYy1jYXJkcy5tb2R1bGUnO1xuaW1wb3J0IHsgRHluYW1pY0Zvcm1zTW9kdWxlIH0gZnJvbSAnLi9tb2R1bGVzL2R5bmFtaWMtZm9ybXMvZHluYW1pYy1mb3Jtcy5tb2R1bGUnO1xuaW1wb3J0IHsgVWlLaXRNb2R1bGUgfSBmcm9tICcuL21vZHVsZXMvdWkta2l0L3VpLWtpdC5tb2R1bGUnO1xuaW1wb3J0IHsgUXVlcnlCdWlsZGVyTW9kdWxlIH0gZnJvbSAnLi9tb2R1bGVzL3F1ZXJ5LWJ1aWxkZXIvcXVlcnktYnVpbGRlci5tb2R1bGUnO1xuaW1wb3J0IHsgRmxleExheW91dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBOZ0xldE1vZHVsZSxcbiAgICBEeW5hbWljRm9ybXNNb2R1bGUsXG4gICAgVWlLaXRNb2R1bGUsXG4gICAgRHluYW1pY0NhcmRzTW9kdWxlLFxuICAgIFF1ZXJ5QnVpbGRlck1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIE5nTGV0TW9kdWxlLFxuICAgIER5bmFtaWNGb3Jtc01vZHVsZSxcbiAgICBGbGV4TGF5b3V0TW9kdWxlLFxuICAgIFVpS2l0TW9kdWxlLFxuICAgIER5bmFtaWNDYXJkc01vZHVsZSxcbiAgICBRdWVyeUJ1aWxkZXJNb2R1bGUsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFNoYXJlZE1vZHVsZSB7XG59XG4iXX0=
@@ -0,0 +1,12 @@
1
+ import { Subject, timer } from 'rxjs';
2
+ import { takeUntil, switchMap } from 'rxjs/operators';
3
+ export class DebounceAsyncValidator {
4
+ constructor() {
5
+ this.cancelRequest = new Subject();
6
+ }
7
+ debounceRequest(...args) {
8
+ this.cancelRequest.next(null);
9
+ return timer(this.DEBOUNCE_TIME).pipe(takeUntil(this.cancelRequest), switchMap(() => this.sendRequest(...args)));
10
+ }
11
+ }
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVib3VuY2UtYXN5bmMudmFsaWRhdG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbGliL3NyYy92YWxpZGF0b3JzL2RlYm91bmNlLWFzeW5jLnZhbGlkYXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQWMsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUNsRCxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRXRELE1BQU0sT0FBZ0Isc0JBQXNCO0lBQTVDO1FBRVMsa0JBQWEsR0FBRyxJQUFJLE9BQU8sRUFBRSxDQUFDO0lBaUJ2QyxDQUFDO0lBVFcsZUFBZSxDQUFDLEdBQUcsSUFBSTtRQUMvQixJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUU5QixPQUFPLEtBQUssQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUNuQyxTQUFTLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUM3QixTQUFTLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQzNDLENBQUM7SUFDSixDQUFDO0NBRUYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1ZhbGlkYXRvciwgQWJzdHJhY3RDb250cm9sLCBWYWxpZGF0aW9uRXJyb3JzIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSwgU3ViamVjdCwgdGltZXIgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IHRha2VVbnRpbCwgc3dpdGNoTWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgRGVib3VuY2VBc3luY1ZhbGlkYXRvciBpbXBsZW1lbnRzIEFzeW5jVmFsaWRhdG9yIHtcblxuICBwdWJsaWMgY2FuY2VsUmVxdWVzdCA9IG5ldyBTdWJqZWN0KCk7XG5cbiAgcHVibGljIGFic3RyYWN0IHJlYWRvbmx5IERFQk9VTkNFX1RJTUU6IG51bWJlcjtcblxuICBwdWJsaWMgYWJzdHJhY3QgdmFsaWRhdGUoY29udHJvbDogQWJzdHJhY3RDb250cm9sKTogUHJvbWlzZTxWYWxpZGF0aW9uRXJyb3JzIHwgbnVsbD4gfCBPYnNlcnZhYmxlPFZhbGlkYXRpb25FcnJvcnMgfCBudWxsPjtcblxuICBwcm90ZWN0ZWQgYWJzdHJhY3Qgc2VuZFJlcXVlc3QoLi4uYXJncyk6IE9ic2VydmFibGU8VmFsaWRhdGlvbkVycm9ycyB8IG51bGw+O1xuXG4gIHByb3RlY3RlZCBkZWJvdW5jZVJlcXVlc3QoLi4uYXJncyk6IE9ic2VydmFibGU8VmFsaWRhdGlvbkVycm9ycyB8IG51bGw+IHtcbiAgICB0aGlzLmNhbmNlbFJlcXVlc3QubmV4dChudWxsKTtcblxuICAgIHJldHVybiB0aW1lcih0aGlzLkRFQk9VTkNFX1RJTUUpLnBpcGUoXG4gICAgICB0YWtlVW50aWwodGhpcy5jYW5jZWxSZXF1ZXN0KSxcbiAgICAgIHN3aXRjaE1hcCgoKSA9PiB0aGlzLnNlbmRSZXF1ZXN0KC4uLmFyZ3MpKSxcbiAgICApO1xuICB9XG5cbn1cbiJdfQ==