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,370 @@
1
+ import { NgxSliderModule } from '@angular-slider/ngx-slider';
2
+ import { CommonModule } from '@angular/common';
3
+ import { NgModule } from '@angular/core';
4
+ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
5
+ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
6
+ import { RouterModule } from '@angular/router';
7
+ import { NgSelectModule } from '@ng-select/ng-select';
8
+ import { NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
9
+ import { MatCdkModule } from 'idp-apps-shared-ui/modules/material/mat-cdk-module';
10
+ import { MatActionsButtonComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/mat-actions-button/mat-actions-button';
11
+ import { AuthorizedDirective } from '../../core/directive/authorize.directive';
12
+ import { SupportUtilService } from '../../core/site/services/support-util.service';
13
+ import { MaterialModule } from '../../modules/material/material.module';
14
+ import { ConfirmModalComponent } from '../../modules/ui-kit/components/modals/confirm-modal/confirm-modal.component';
15
+ import { AccordionContentComponent } from './components/accordion/accordion-content/accordion-content.component';
16
+ import { AccordionTriggerDirective } from './components/accordion/accordion-trigger.directive';
17
+ import { AccordionDirective } from './components/accordion/accordion.directive';
18
+ import { BannerComponent } from './components/banner/banner.component';
19
+ import { BreadcrumbsComponent } from './components/breadcrumbs/breadcrumbs.component';
20
+ import { BreadCrumbService } from './components/breadcrumbs/service/breadcrumb.service';
21
+ import { ButtonControlComponent } from './components/buttons/button-control/button-control.component';
22
+ import { ButtonsListComponent } from './components/buttons/buttons-list/buttons-list.component';
23
+ import { CardContainerComponent } from './components/card-container/card-container.component';
24
+ import { CommonBreadcrumbsComponent } from './components/common-breadcrumbs/common-breadcrumbs.component';
25
+ import { DataPaginationComponent } from './components/data-pagination/data-pagination.component';
26
+ import { DataTableWrapComponent } from './components/data-table-wrap/data-table-wrap.component';
27
+ import { DataColDispComponent } from './components/data-table/data-col-disp/data-col-disp.component';
28
+ import { DataColFilterComponent } from './components/data-table/data-col-filter/data-col-filter.component';
29
+ import { BaseDataColComponent } from './components/data-table/data-col/base-data-col/base-data-col.component';
30
+ import { DataColActionButtonComponent } from './components/data-table/data-col/data-col-action-button/data-col-action-button.component';
31
+ import { DataColBooleanComponent } from './components/data-table/data-col/data-col-boolean/data-col-boolean.component';
32
+ import { DataColMultivalueComponent } from './components/data-table/data-col/data-col-multivalue/data-col-multivalue.component';
33
+ import { DataColNestedComponent } from './components/data-table/data-col/data-col-nested/data-col-nested.component';
34
+ import { DataColReferenceComponent } from './components/data-table/data-col/data-col-reference/data-col-reference.component';
35
+ import { DataColViewComponent } from './components/data-table/data-col/data-col-view/data-col-view.component';
36
+ import { DataColComponent } from './components/data-table/data-col/data-col/data-col.component';
37
+ import { DataColumnFilterComponent } from './components/data-table/data-column-filter/data-column-filter.component';
38
+ import { DataRowComponent } from './components/data-table/data-row/data-row.component';
39
+ import { DataTableActionsComponent } from './components/data-table/data-table-actions/data-table-actions.component';
40
+ import { DataTableBodyComponent } from './components/data-table/data-table-body/data-table-body.component';
41
+ import { DataTableCheckRowsComponent } from './components/data-table/data-table-check-rows/data-table-check-rows.component';
42
+ import { DataTableRowActionsComponent } from './components/data-table/data-table-row-actions/data-table-row-actions.component';
43
+ import { DataTableComponent } from './components/data-table/data-table/data-table.component';
44
+ import { HeaderRowComponent } from './components/data-table/header-row/header-row.component';
45
+ import { ExcelTableComponent } from './components/excel-table/excel-table.component';
46
+ import { BaseFormControlComponent } from './components/form/base-form-control/base-form-control.component';
47
+ import { CheckboxFormControlComponent } from './components/form/checkbox-form-control/checkbox-form-control.component';
48
+ import { CounterFormControlComponent } from './components/form/counter-form-control/counter-form-control.component';
49
+ import { FormContainerComponent } from './components/form/form-container/form-container.component';
50
+ import { FormGroupContainerComponent } from './components/form/form-group-container/form-group-container.component';
51
+ import { InputFormControlComponent } from './components/form/input-form-control/input-form-control.component';
52
+ import { CustomInputComponent } from './components/form/multivalue-form-control/custom-input/custom-input.component';
53
+ import { MultivalueFormControlComponent } from './components/form/multivalue-form-control/multivalue-form-control.component';
54
+ import { RadioFormControlComponent } from './components/form/radio-form-control/radio-form-control.component';
55
+ import { SelectFormControlComponent } from './components/form/select-form-control/select-form-control.component';
56
+ import { SelectionGroupContainerComponent } from './components/form/selection-group-container/selection-group-container.component';
57
+ import { TextareaFormControlComponent } from './components/form/textarea-form-control/textarea-form-control.component';
58
+ import { ExpandCollapseIconComponent } from './components/icon/expand-collapse-icon/expand-collapse-icon.component';
59
+ import { IconComponent } from './components/icon/icon/icon.component';
60
+ import { TextIconComponent } from './components/icon/text-icon/text-icon.component';
61
+ import { FormLayoutComponent } from './components/layouts/form-layout/form-layout.component';
62
+ import { PrimaryLayoutComponent } from './components/layouts/primary-layout/primary-layout.component';
63
+ import { LoaderComponent } from './components/loader/loader.component';
64
+ import { CommonConfirmModalComponent } from './components/modals/common-confirm-modal/common-confirm-modal.component';
65
+ import { DeleteModalComponent } from './components/modals/delete-modal/delete-modal.component';
66
+ import { SnackbarComponent } from './components/snackbar/snackbar.component';
67
+ import { TabGroupComponent } from './components/tabs/tab-group/tab-group.component';
68
+ import { TabDirective } from './components/tabs/tab.directive';
69
+ import { TreeViewComponent } from './components/tree-view/tree-view.component';
70
+ import { ColumnFilterPipe } from './pipes/column-filter.pipe';
71
+ import { FilterByPropPipe } from './pipes/filter-by-prop.pipe';
72
+ import { FirstLetterTextPipe } from './pipes/first-letter-text.pipe';
73
+ import { KeysPipe } from './pipes/keys.pipe';
74
+ import { PaginatePipe } from './pipes/paginate.pipe';
75
+ import { SearchPipe } from './pipes/search.pipe';
76
+ import { FormService } from './services/form.service';
77
+ import { UrlService } from './services/url.service';
78
+ import { CircleButtonComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/buttons/circle-button/circle-button.component';
79
+ import { FlexLayoutModule } from '@angular/flex-layout';
80
+ import * as i0 from "@angular/core";
81
+ export class UiKitModule {
82
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UiKitModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
83
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: UiKitModule, declarations: [PrimaryLayoutComponent,
84
+ DataTableComponent,
85
+ DataPaginationComponent,
86
+ DeleteModalComponent,
87
+ ConfirmModalComponent,
88
+ CommonConfirmModalComponent,
89
+ LoaderComponent,
90
+ FormContainerComponent,
91
+ InputFormControlComponent,
92
+ BaseFormControlComponent,
93
+ TextareaFormControlComponent,
94
+ SelectFormControlComponent,
95
+ CheckboxFormControlComponent,
96
+ RadioFormControlComponent,
97
+ SelectionGroupContainerComponent,
98
+ FormGroupContainerComponent,
99
+ ButtonControlComponent,
100
+ ButtonsListComponent,
101
+ DataTableRowActionsComponent,
102
+ DataTableActionsComponent,
103
+ IconComponent,
104
+ TextIconComponent,
105
+ CardContainerComponent,
106
+ FormLayoutComponent,
107
+ DataRowComponent,
108
+ DataColComponent,
109
+ HeaderRowComponent,
110
+ DataColBooleanComponent,
111
+ DataColReferenceComponent,
112
+ TabGroupComponent,
113
+ DataColNestedComponent,
114
+ DataTableBodyComponent,
115
+ ExpandCollapseIconComponent,
116
+ DataColViewComponent,
117
+ BaseDataColComponent,
118
+ DataColDispComponent,
119
+ DataColActionButtonComponent,
120
+ AccordionContentComponent,
121
+ AccordionTriggerDirective,
122
+ AccordionDirective,
123
+ KeysPipe,
124
+ TabDirective,
125
+ KeysPipe,
126
+ BreadcrumbsComponent,
127
+ DataColMultivalueComponent,
128
+ MultivalueFormControlComponent,
129
+ CustomInputComponent,
130
+ DataTableCheckRowsComponent,
131
+ SearchPipe,
132
+ FilterByPropPipe,
133
+ ColumnFilterPipe,
134
+ PaginatePipe,
135
+ FirstLetterTextPipe,
136
+ CounterFormControlComponent,
137
+ DataColFilterComponent,
138
+ CommonBreadcrumbsComponent,
139
+ SnackbarComponent,
140
+ DataTableWrapComponent,
141
+ DataColumnFilterComponent,
142
+ ExcelTableComponent,
143
+ AuthorizedDirective,
144
+ TreeViewComponent,
145
+ BannerComponent,
146
+ ConfirmModalComponent,
147
+ MatActionsButtonComponent,
148
+ CircleButtonComponent], imports: [CommonModule,
149
+ MaterialModule,
150
+ FormsModule,
151
+ ReactiveFormsModule,
152
+ NgSelectModule,
153
+ RouterModule,
154
+ NgxSliderModule,
155
+ FlexLayoutModule,
156
+ NgbPopoverModule], exports: [PrimaryLayoutComponent,
157
+ DataTableComponent,
158
+ DataPaginationComponent,
159
+ DeleteModalComponent,
160
+ ConfirmModalComponent,
161
+ LoaderComponent,
162
+ FormContainerComponent,
163
+ InputFormControlComponent,
164
+ BaseFormControlComponent,
165
+ TextareaFormControlComponent,
166
+ SelectFormControlComponent,
167
+ CheckboxFormControlComponent,
168
+ RadioFormControlComponent,
169
+ SelectionGroupContainerComponent,
170
+ FormGroupContainerComponent,
171
+ ButtonControlComponent,
172
+ ButtonsListComponent,
173
+ IconComponent,
174
+ TextIconComponent,
175
+ CardContainerComponent,
176
+ ExpandCollapseIconComponent,
177
+ FormLayoutComponent,
178
+ AccordionContentComponent,
179
+ AccordionDirective,
180
+ AccordionTriggerDirective,
181
+ DataColDispComponent,
182
+ TabGroupComponent,
183
+ KeysPipe,
184
+ TabDirective,
185
+ BreadcrumbsComponent,
186
+ SearchPipe,
187
+ FilterByPropPipe,
188
+ ColumnFilterPipe,
189
+ PaginatePipe,
190
+ FirstLetterTextPipe,
191
+ CounterFormControlComponent,
192
+ MaterialModule,
193
+ MatCdkModule,
194
+ CommonBreadcrumbsComponent,
195
+ NgSelectModule,
196
+ DataTableWrapComponent,
197
+ ExcelTableComponent,
198
+ AuthorizedDirective,
199
+ DataColFilterComponent,
200
+ TreeViewComponent,
201
+ BannerComponent,
202
+ MatActionsButtonComponent,
203
+ CircleButtonComponent] }); }
204
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UiKitModule, providers: [
205
+ FormService,
206
+ UrlService,
207
+ BreadCrumbService,
208
+ SupportUtilService,
209
+ SearchPipe,
210
+ ColumnFilterPipe,
211
+ { provide: MatDialogRef, useValue: {} },
212
+ { provide: MAT_DIALOG_DATA, useValue: {} },
213
+ ], imports: [CommonModule,
214
+ MaterialModule,
215
+ FormsModule,
216
+ ReactiveFormsModule,
217
+ NgSelectModule,
218
+ RouterModule,
219
+ NgxSliderModule,
220
+ FlexLayoutModule,
221
+ NgbPopoverModule, MaterialModule,
222
+ MatCdkModule,
223
+ NgSelectModule] }); }
224
+ }
225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UiKitModule, decorators: [{
226
+ type: NgModule,
227
+ args: [{
228
+ providers: [
229
+ FormService,
230
+ UrlService,
231
+ BreadCrumbService,
232
+ SupportUtilService,
233
+ SearchPipe,
234
+ ColumnFilterPipe,
235
+ { provide: MatDialogRef, useValue: {} },
236
+ { provide: MAT_DIALOG_DATA, useValue: {} },
237
+ ],
238
+ //schemas: [CUSTOM_ELEMENTS_SCHEMA],
239
+ declarations: [
240
+ PrimaryLayoutComponent,
241
+ DataTableComponent,
242
+ DataPaginationComponent,
243
+ DeleteModalComponent,
244
+ ConfirmModalComponent,
245
+ CommonConfirmModalComponent,
246
+ LoaderComponent,
247
+ FormContainerComponent,
248
+ InputFormControlComponent,
249
+ BaseFormControlComponent,
250
+ TextareaFormControlComponent,
251
+ SelectFormControlComponent,
252
+ CheckboxFormControlComponent,
253
+ RadioFormControlComponent,
254
+ SelectionGroupContainerComponent,
255
+ FormGroupContainerComponent,
256
+ ButtonControlComponent,
257
+ ButtonsListComponent,
258
+ DataTableRowActionsComponent,
259
+ DataTableActionsComponent,
260
+ IconComponent,
261
+ TextIconComponent,
262
+ CardContainerComponent,
263
+ FormLayoutComponent,
264
+ DataRowComponent,
265
+ DataColComponent,
266
+ HeaderRowComponent,
267
+ DataColBooleanComponent,
268
+ DataColReferenceComponent,
269
+ TabGroupComponent,
270
+ DataColNestedComponent,
271
+ DataTableBodyComponent,
272
+ ExpandCollapseIconComponent,
273
+ DataColViewComponent,
274
+ BaseDataColComponent,
275
+ DataColDispComponent,
276
+ DataColActionButtonComponent,
277
+ AccordionContentComponent,
278
+ AccordionTriggerDirective,
279
+ AccordionDirective,
280
+ KeysPipe,
281
+ TabDirective,
282
+ KeysPipe,
283
+ BreadcrumbsComponent,
284
+ DataColMultivalueComponent,
285
+ MultivalueFormControlComponent,
286
+ CustomInputComponent,
287
+ DataTableCheckRowsComponent,
288
+ SearchPipe,
289
+ FilterByPropPipe,
290
+ ColumnFilterPipe,
291
+ PaginatePipe,
292
+ FirstLetterTextPipe,
293
+ CounterFormControlComponent,
294
+ DataColFilterComponent,
295
+ CommonBreadcrumbsComponent,
296
+ SnackbarComponent,
297
+ DataTableWrapComponent,
298
+ DataColumnFilterComponent,
299
+ ExcelTableComponent,
300
+ AuthorizedDirective,
301
+ TreeViewComponent,
302
+ BannerComponent,
303
+ ConfirmModalComponent,
304
+ MatActionsButtonComponent,
305
+ CircleButtonComponent,
306
+ ],
307
+ imports: [
308
+ CommonModule,
309
+ MaterialModule,
310
+ FormsModule,
311
+ ReactiveFormsModule,
312
+ NgSelectModule,
313
+ RouterModule,
314
+ NgxSliderModule,
315
+ FlexLayoutModule,
316
+ NgbPopoverModule
317
+ ],
318
+ exports: [
319
+ PrimaryLayoutComponent,
320
+ DataTableComponent,
321
+ DataPaginationComponent,
322
+ DeleteModalComponent,
323
+ ConfirmModalComponent,
324
+ LoaderComponent,
325
+ FormContainerComponent,
326
+ InputFormControlComponent,
327
+ BaseFormControlComponent,
328
+ TextareaFormControlComponent,
329
+ SelectFormControlComponent,
330
+ CheckboxFormControlComponent,
331
+ RadioFormControlComponent,
332
+ SelectionGroupContainerComponent,
333
+ FormGroupContainerComponent,
334
+ ButtonControlComponent,
335
+ ButtonsListComponent,
336
+ IconComponent,
337
+ TextIconComponent,
338
+ CardContainerComponent,
339
+ ExpandCollapseIconComponent,
340
+ FormLayoutComponent,
341
+ AccordionContentComponent,
342
+ AccordionDirective,
343
+ AccordionTriggerDirective,
344
+ DataColDispComponent,
345
+ TabGroupComponent,
346
+ KeysPipe,
347
+ TabDirective,
348
+ BreadcrumbsComponent,
349
+ SearchPipe,
350
+ FilterByPropPipe,
351
+ ColumnFilterPipe,
352
+ PaginatePipe,
353
+ FirstLetterTextPipe,
354
+ CounterFormControlComponent,
355
+ MaterialModule,
356
+ MatCdkModule,
357
+ CommonBreadcrumbsComponent,
358
+ NgSelectModule,
359
+ DataTableWrapComponent,
360
+ ExcelTableComponent,
361
+ AuthorizedDirective,
362
+ DataColFilterComponent,
363
+ TreeViewComponent,
364
+ BannerComponent,
365
+ MatActionsButtonComponent,
366
+ CircleButtonComponent,
367
+ ],
368
+ }]
369
+ }] });
370
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidWkta2l0Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvdWkta2l0Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDN0QsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxlQUFlLEVBQUUsWUFBWSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDekUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN0RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUM5RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sb0RBQW9ELENBQUM7QUFDbEYsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sb0ZBQW9GLENBQUM7QUFDL0gsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFDL0UsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sK0NBQStDLENBQUM7QUFDbkYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQ3hFLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDhFQUE4RSxDQUFDO0FBQ3JILE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHNFQUFzRSxDQUFDO0FBQ2pILE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLG9EQUFvRCxDQUFDO0FBQy9GLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDRD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Qix5QkFBeUI7d0JBQ3pCLGtCQUFrQjt3QkFDbEIseUJBQXlCO3dCQUN6QixvQkFBb0I7d0JBQ3BCLGlCQUFpQjt3QkFDakIsUUFBUTt3QkFDUixZQUFZO3dCQUNaLG9CQUFvQjt3QkFDcEIsVUFBVTt3QkFDVixnQkFBZ0I7d0JBQ2hCLGdCQUFnQjt3QkFDaEIsWUFBWTt3QkFDWixtQkFBbUI7d0JBQ25CLDJCQUEyQjt3QkFDM0IsY0FBYzt3QkFDZCxZQUFZO3dCQUNaLDBCQUEwQjt3QkFDMUIsY0FBYzt3QkFDZCxzQkFBc0I7d0JBQ3RCLG1CQUFtQjt3QkFDbkIsbUJBQW1CO3dCQUNuQixzQkFBc0I7d0JBQ3RCLGlCQUFpQjt3QkFDakIsZUFBZTt3QkFDZix5QkFBeUI7d0JBQ3pCLHFCQUFxQjtxQkFDdEI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ3hTbGlkZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci1zbGlkZXIvbmd4LXNsaWRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlLCBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgTUFUX0RJQUxPR19EQVRBLCBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IE5nU2VsZWN0TW9kdWxlIH0gZnJvbSAnQG5nLXNlbGVjdC9uZy1zZWxlY3QnO1xuaW1wb3J0IHsgTmdiUG9wb3Zlck1vZHVsZSB9IGZyb20gJ0BuZy1ib290c3RyYXAvbmctYm9vdHN0cmFwJztcbmltcG9ydCB7IE1hdENka01vZHVsZSB9IGZyb20gJ2lkcC1hcHBzLXNoYXJlZC11aS9tb2R1bGVzL21hdGVyaWFsL21hdC1jZGstbW9kdWxlJztcbmltcG9ydCB7IE1hdEFjdGlvbnNCdXR0b25Db21wb25lbnQgfSBmcm9tICdpZHAtYXBwcy1zaGFyZWQtdWkvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9tYXQtYWN0aW9ucy1idXR0b24vbWF0LWFjdGlvbnMtYnV0dG9uJztcbmltcG9ydCB7IEF1dGhvcml6ZWREaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9jb3JlL2RpcmVjdGl2ZS9hdXRob3JpemUuZGlyZWN0aXZlJztcbmltcG9ydCB7IFN1cHBvcnRVdGlsU2VydmljZSB9IGZyb20gJy4uLy4uL2NvcmUvc2l0ZS9zZXJ2aWNlcy9zdXBwb3J0LXV0aWwuc2VydmljZSc7XG5pbXBvcnQgeyBNYXRlcmlhbE1vZHVsZSB9IGZyb20gJy4uLy4uL21vZHVsZXMvbWF0ZXJpYWwvbWF0ZXJpYWwubW9kdWxlJztcbmltcG9ydCB7IENvbmZpcm1Nb2RhbENvbXBvbmVudCB9IGZyb20gJy4uLy4uL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvbW9kYWxzL2NvbmZpcm0tbW9kYWwvY29uZmlybS1tb2RhbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQWNjb3JkaW9uQ29udGVudENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9hY2NvcmRpb24vYWNjb3JkaW9uLWNvbnRlbnQvYWNjb3JkaW9uLWNvbnRlbnQuY29tcG9uZW50JztcbmltcG9ydCB7IEFjY29yZGlvblRyaWdnZXJEaXJlY3RpdmUgfSBmcm9tICcuL2NvbXBvbmVudHMvYWNjb3JkaW9uL2FjY29yZGlvbi10cmlnZ2VyLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBBY2NvcmRpb25EaXJlY3RpdmUgfSBmcm9tICcuL2NvbXBvbmVudHMvYWNjb3JkaW9uL2FjY29yZGlvbi5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgQmFubmVyQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2Jhbm5lci9iYW5uZXIuY29tcG9uZW50JztcbmltcG9ydCB7IEJyZWFkY3J1bWJzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2JyZWFkY3J1bWJzL2JyZWFkY3J1bWJzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBCcmVhZENydW1iU2VydmljZSB9IGZyb20gJy4vY29tcG9uZW50cy9icmVhZGNydW1icy9zZXJ2aWNlL2JyZWFkY3J1bWIuc2VydmljZSc7XG5pbXBvcnQgeyBCdXR0b25Db250cm9sQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2J1dHRvbnMvYnV0dG9uLWNvbnRyb2wvYnV0dG9uLWNvbnRyb2wuY29tcG9uZW50JztcbmltcG9ydCB7IEJ1dHRvbnNMaXN0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2J1dHRvbnMvYnV0dG9ucy1saXN0L2J1dHRvbnMtbGlzdC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FyZENvbnRhaW5lckNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jYXJkLWNvbnRhaW5lci9jYXJkLWNvbnRhaW5lci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29tbW9uQnJlYWRjcnVtYnNDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY29tbW9uLWJyZWFkY3J1bWJzL2NvbW1vbi1icmVhZGNydW1icy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YVBhZ2luYXRpb25Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS1wYWdpbmF0aW9uL2RhdGEtcGFnaW5hdGlvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YVRhYmxlV3JhcENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlLXdyYXAvZGF0YS10YWJsZS13cmFwLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhQ29sRGlzcENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtY29sLWRpc3AvZGF0YS1jb2wtZGlzcC5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YUNvbEZpbHRlckNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtY29sLWZpbHRlci9kYXRhLWNvbC1maWx0ZXIuY29tcG9uZW50JztcbmltcG9ydCB7IEJhc2VEYXRhQ29sQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvYmFzZS1kYXRhLWNvbC9iYXNlLWRhdGEtY29sLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhQ29sQWN0aW9uQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtYWN0aW9uLWJ1dHRvbi9kYXRhLWNvbC1hY3Rpb24tYnV0dG9uLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhQ29sQm9vbGVhbkNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtY29sL2RhdGEtY29sLWJvb2xlYW4vZGF0YS1jb2wtYm9vbGVhbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YUNvbE11bHRpdmFsdWVDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC1tdWx0aXZhbHVlL2RhdGEtY29sLW11bHRpdmFsdWUuY29tcG9uZW50JztcbmltcG9ydCB7IERhdGFDb2xOZXN0ZWRDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC1uZXN0ZWQvZGF0YS1jb2wtbmVzdGVkLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhQ29sUmVmZXJlbmNlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtcmVmZXJlbmNlL2RhdGEtY29sLXJlZmVyZW5jZS5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YUNvbFZpZXdDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC12aWV3L2RhdGEtY29sLXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IERhdGFDb2xDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC9kYXRhLWNvbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YUNvbHVtbkZpbHRlckNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtY29sdW1uLWZpbHRlci9kYXRhLWNvbHVtbi1maWx0ZXIuY29tcG9uZW50JztcbmltcG9ydCB7IERhdGFSb3dDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLXJvdy9kYXRhLXJvdy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGF0YVRhYmxlQWN0aW9uc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtdGFibGUtYWN0aW9ucy9kYXRhLXRhYmxlLWFjdGlvbnMuY29tcG9uZW50JztcbmltcG9ydCB7IERhdGFUYWJsZUJvZHlDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLXRhYmxlLWJvZHkvZGF0YS10YWJsZS1ib2R5LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhVGFibGVDaGVja1Jvd3NDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLXRhYmxlLWNoZWNrLXJvd3MvZGF0YS10YWJsZS1jaGVjay1yb3dzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhVGFibGVSb3dBY3Rpb25zQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS10YWJsZS1yb3ctYWN0aW9ucy9kYXRhLXRhYmxlLXJvdy1hY3Rpb25zLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRhVGFibGVDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLXRhYmxlL2RhdGEtdGFibGUuY29tcG9uZW50JztcbmltcG9ydCB7IEhlYWRlclJvd0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9kYXRhLXRhYmxlL2hlYWRlci1yb3cvaGVhZGVyLXJvdy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRXhjZWxUYWJsZUNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9leGNlbC10YWJsZS9leGNlbC10YWJsZS5jb21wb25lbnQnO1xuaW1wb3J0IHsgQmFzZUZvcm1Db250cm9sQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2Zvcm0vYmFzZS1mb3JtLWNvbnRyb2wvYmFzZS1mb3JtLWNvbnRyb2wuY29tcG9uZW50JztcbmltcG9ydCB7IENoZWNrYm94Rm9ybUNvbnRyb2xDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZm9ybS9jaGVja2JveC1mb3JtLWNvbnRyb2wvY2hlY2tib3gtZm9ybS1jb250cm9sLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDb3VudGVyRm9ybUNvbnRyb2xDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZm9ybS9jb3VudGVyLWZvcm0tY29udHJvbC9jb3VudGVyLWZvcm0tY29udHJvbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgRm9ybUNvbnRhaW5lckNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9mb3JtL2Zvcm0tY29udGFpbmVyL2Zvcm0tY29udGFpbmVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGb3JtR3JvdXBDb250YWluZXJDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZm9ybS9mb3JtLWdyb3VwLWNvbnRhaW5lci9mb3JtLWdyb3VwLWNvbnRhaW5lci5jb21wb25lbnQnO1xuaW1wb3J0IHsgSW5wdXRGb3JtQ29udHJvbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9mb3JtL2lucHV0LWZvcm0tY29udHJvbC9pbnB1dC1mb3JtLWNvbnRyb2wuY29tcG9uZW50JztcbmltcG9ydCB7IEN1c3RvbUlucHV0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2Zvcm0vbXVsdGl2YWx1ZS1mb3JtLWNvbnRyb2wvY3VzdG9tLWlucHV0L2N1c3RvbS1pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0IHsgTXVsdGl2YWx1ZUZvcm1Db250cm9sQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2Zvcm0vbXVsdGl2YWx1ZS1mb3JtLWNvbnRyb2wvbXVsdGl2YWx1ZS1mb3JtLWNvbnRyb2wuY29tcG9uZW50JztcbmltcG9ydCB7IFJhZGlvRm9ybUNvbnRyb2xDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZm9ybS9yYWRpby1mb3JtLWNvbnRyb2wvcmFkaW8tZm9ybS1jb250cm9sLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTZWxlY3RGb3JtQ29udHJvbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9mb3JtL3NlbGVjdC1mb3JtLWNvbnRyb2wvc2VsZWN0LWZvcm0tY29udHJvbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgU2VsZWN0aW9uR3JvdXBDb250YWluZXJDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZm9ybS9zZWxlY3Rpb24tZ3JvdXAtY29udGFpbmVyL3NlbGVjdGlvbi1ncm91cC1jb250YWluZXIuY29tcG9uZW50JztcbmltcG9ydCB7IFRleHRhcmVhRm9ybUNvbnRyb2xDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZm9ybS90ZXh0YXJlYS1mb3JtLWNvbnRyb2wvdGV4dGFyZWEtZm9ybS1jb250cm9sLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBFeHBhbmRDb2xsYXBzZUljb25Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvaWNvbi9leHBhbmQtY29sbGFwc2UtaWNvbi9leHBhbmQtY29sbGFwc2UtaWNvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgSWNvbkNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9pY29uL2ljb24vaWNvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGV4dEljb25Db21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvaWNvbi90ZXh0LWljb24vdGV4dC1pY29uLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGb3JtTGF5b3V0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2xheW91dHMvZm9ybS1sYXlvdXQvZm9ybS1sYXlvdXQuY29tcG9uZW50JztcbmltcG9ydCB7IFByaW1hcnlMYXlvdXRDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvbGF5b3V0cy9wcmltYXJ5LWxheW91dC9wcmltYXJ5LWxheW91dC5jb21wb25lbnQnO1xuaW1wb3J0IHsgTG9hZGVyQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2xvYWRlci9sb2FkZXIuY29tcG9uZW50JztcbmltcG9ydCB7IENvbW1vbkNvbmZpcm1Nb2RhbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9tb2RhbHMvY29tbW9uLWNvbmZpcm0tbW9kYWwvY29tbW9uLWNvbmZpcm0tbW9kYWwuY29tcG9uZW50JztcbmltcG9ydCB7IERlbGV0ZU1vZGFsQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL21vZGFscy9kZWxldGUtbW9kYWwvZGVsZXRlLW1vZGFsLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTbmFja2JhckNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9zbmFja2Jhci9zbmFja2Jhci5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGFiR3JvdXBDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvdGFicy90YWItZ3JvdXAvdGFiLWdyb3VwLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBUYWJEaXJlY3RpdmUgfSBmcm9tICcuL2NvbXBvbmVudHMvdGFicy90YWIuZGlyZWN0aXZlJztcbmltcG9ydCB7IFRyZWVWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3RyZWUtdmlldy90cmVlLXZpZXcuY29tcG9uZW50JztcbmltcG9ydCB7IENvbHVtbkZpbHRlclBpcGUgfSBmcm9tICcuL3BpcGVzL2NvbHVtbi1maWx0ZXIucGlwZSc7XG5pbXBvcnQgeyBGaWx0ZXJCeVByb3BQaXBlIH0gZnJvbSAnLi9waXBlcy9maWx0ZXItYnktcHJvcC5waXBlJztcbmltcG9ydCB7IEZpcnN0TGV0dGVyVGV4dFBpcGUgfSBmcm9tICcuL3BpcGVzL2ZpcnN0LWxldHRlci10ZXh0LnBpcGUnO1xuaW1wb3J0IHsgS2V5c1BpcGUgfSBmcm9tICcuL3BpcGVzL2tleXMucGlwZSc7XG5pbXBvcnQgeyBQYWdpbmF0ZVBpcGUgfSBmcm9tICcuL3BpcGVzL3BhZ2luYXRlLnBpcGUnO1xuaW1wb3J0IHsgU2VhcmNoUGlwZSB9IGZyb20gJy4vcGlwZXMvc2VhcmNoLnBpcGUnO1xuaW1wb3J0IHsgRm9ybVNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzL2Zvcm0uc2VydmljZSc7XG5pbXBvcnQgeyBVcmxTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlcy91cmwuc2VydmljZSc7XG5pbXBvcnQgeyBDaXJjbGVCdXR0b25Db21wb25lbnQgfSBmcm9tICdpZHAtYXBwcy1zaGFyZWQtdWkvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9idXR0b25zL2NpcmNsZS1idXR0b24vY2lyY2xlLWJ1dHRvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgRmxleExheW91dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcblxuQE5nTW9kdWxlKHtcbiAgcHJvdmlkZXJzOiBbXG4gICAgRm9ybVNlcnZpY2UsXG4gICAgVXJsU2VydmljZSxcbiAgICBCcmVhZENydW1iU2VydmljZSxcbiAgICBTdXBwb3J0VXRpbFNlcnZpY2UsXG4gICAgU2VhcmNoUGlwZSxcbiAgICBDb2x1bW5GaWx0ZXJQaXBlLFxuICAgIHsgcHJvdmlkZTogTWF0RGlhbG9nUmVmLCB1c2VWYWx1ZToge30gfSxcbiAgICB7IHByb3ZpZGU6IE1BVF9ESUFMT0dfREFUQSwgdXNlVmFsdWU6IHt9IH0sXG4gIF0sXG4gIC8vc2NoZW1hczogW0NVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBQcmltYXJ5TGF5b3V0Q29tcG9uZW50LFxuICAgIERhdGFUYWJsZUNvbXBvbmVudCxcbiAgICBEYXRhUGFnaW5hdGlvbkNvbXBvbmVudCxcbiAgICBEZWxldGVNb2RhbENvbXBvbmVudCxcbiAgICBDb25maXJtTW9kYWxDb21wb25lbnQsXG4gICAgQ29tbW9uQ29uZmlybU1vZGFsQ29tcG9uZW50LFxuICAgIExvYWRlckNvbXBvbmVudCxcbiAgICBGb3JtQ29udGFpbmVyQ29tcG9uZW50LFxuICAgIElucHV0Rm9ybUNvbnRyb2xDb21wb25lbnQsXG4gICAgQmFzZUZvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIFRleHRhcmVhRm9ybUNvbnRyb2xDb21wb25lbnQsXG4gICAgU2VsZWN0Rm9ybUNvbnRyb2xDb21wb25lbnQsXG4gICAgQ2hlY2tib3hGb3JtQ29udHJvbENvbXBvbmVudCxcbiAgICBSYWRpb0Zvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIFNlbGVjdGlvbkdyb3VwQ29udGFpbmVyQ29tcG9uZW50LFxuICAgIEZvcm1Hcm91cENvbnRhaW5lckNvbXBvbmVudCxcbiAgICBCdXR0b25Db250cm9sQ29tcG9uZW50LFxuICAgIEJ1dHRvbnNMaXN0Q29tcG9uZW50LFxuICAgIERhdGFUYWJsZVJvd0FjdGlvbnNDb21wb25lbnQsXG4gICAgRGF0YVRhYmxlQWN0aW9uc0NvbXBvbmVudCxcbiAgICBJY29uQ29tcG9uZW50LFxuICAgIFRleHRJY29uQ29tcG9uZW50LFxuICAgIENhcmRDb250YWluZXJDb21wb25lbnQsXG4gICAgRm9ybUxheW91dENvbXBvbmVudCxcbiAgICBEYXRhUm93Q29tcG9uZW50LFxuICAgIERhdGFDb2xDb21wb25lbnQsXG4gICAgSGVhZGVyUm93Q29tcG9uZW50LFxuICAgIERhdGFDb2xCb29sZWFuQ29tcG9uZW50LFxuICAgIERhdGFDb2xSZWZlcmVuY2VDb21wb25lbnQsXG4gICAgVGFiR3JvdXBDb21wb25lbnQsXG4gICAgRGF0YUNvbE5lc3RlZENvbXBvbmVudCxcbiAgICBEYXRhVGFibGVCb2R5Q29tcG9uZW50LFxuICAgIEV4cGFuZENvbGxhcHNlSWNvbkNvbXBvbmVudCxcbiAgICBEYXRhQ29sVmlld0NvbXBvbmVudCxcbiAgICBCYXNlRGF0YUNvbENvbXBvbmVudCxcbiAgICBEYXRhQ29sRGlzcENvbXBvbmVudCxcbiAgICBEYXRhQ29sQWN0aW9uQnV0dG9uQ29tcG9uZW50LFxuICAgIEFjY29yZGlvbkNvbnRlbnRDb21wb25lbnQsXG4gICAgQWNjb3JkaW9uVHJpZ2dlckRpcmVjdGl2ZSxcbiAgICBBY2NvcmRpb25EaXJlY3RpdmUsXG4gICAgS2V5c1BpcGUsXG4gICAgVGFiRGlyZWN0aXZlLFxuICAgIEtleXNQaXBlLFxuICAgIEJyZWFkY3J1bWJzQ29tcG9uZW50LFxuICAgIERhdGFDb2xNdWx0aXZhbHVlQ29tcG9uZW50LFxuICAgIE11bHRpdmFsdWVGb3JtQ29udHJvbENvbXBvbmVudCxcbiAgICBDdXN0b21JbnB1dENvbXBvbmVudCxcbiAgICBEYXRhVGFibGVDaGVja1Jvd3NDb21wb25lbnQsXG4gICAgU2VhcmNoUGlwZSxcbiAgICBGaWx0ZXJCeVByb3BQaXBlLFxuICAgIENvbHVtbkZpbHRlclBpcGUsXG4gICAgUGFnaW5hdGVQaXBlLFxuICAgIEZpcnN0TGV0dGVyVGV4dFBpcGUsXG4gICAgQ291bnRlckZvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIERhdGFDb2xGaWx0ZXJDb21wb25lbnQsXG4gICAgQ29tbW9uQnJlYWRjcnVtYnNDb21wb25lbnQsXG4gICAgU25hY2tiYXJDb21wb25lbnQsXG4gICAgRGF0YVRhYmxlV3JhcENvbXBvbmVudCxcbiAgICBEYXRhQ29sdW1uRmlsdGVyQ29tcG9uZW50LFxuICAgIEV4Y2VsVGFibGVDb21wb25lbnQsXG4gICAgQXV0aG9yaXplZERpcmVjdGl2ZSxcbiAgICBUcmVlVmlld0NvbXBvbmVudCxcbiAgICBCYW5uZXJDb21wb25lbnQsXG4gICAgQ29uZmlybU1vZGFsQ29tcG9uZW50LFxuICAgIE1hdEFjdGlvbnNCdXR0b25Db21wb25lbnQsXG4gICAgQ2lyY2xlQnV0dG9uQ29tcG9uZW50LFxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdGVyaWFsTW9kdWxlLFxuICAgIEZvcm1zTW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgTmdTZWxlY3RNb2R1bGUsXG4gICAgUm91dGVyTW9kdWxlLFxuICAgIE5neFNsaWRlck1vZHVsZSxcbiAgICBGbGV4TGF5b3V0TW9kdWxlLFxuICAgIE5nYlBvcG92ZXJNb2R1bGVcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIFByaW1hcnlMYXlvdXRDb21wb25lbnQsXG4gICAgRGF0YVRhYmxlQ29tcG9uZW50LFxuICAgIERhdGFQYWdpbmF0aW9uQ29tcG9uZW50LFxuICAgIERlbGV0ZU1vZGFsQ29tcG9uZW50LFxuICAgIENvbmZpcm1Nb2RhbENvbXBvbmVudCxcbiAgICBMb2FkZXJDb21wb25lbnQsXG4gICAgRm9ybUNvbnRhaW5lckNvbXBvbmVudCxcbiAgICBJbnB1dEZvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIEJhc2VGb3JtQ29udHJvbENvbXBvbmVudCxcbiAgICBUZXh0YXJlYUZvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIFNlbGVjdEZvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIENoZWNrYm94Rm9ybUNvbnRyb2xDb21wb25lbnQsXG4gICAgUmFkaW9Gb3JtQ29udHJvbENvbXBvbmVudCxcbiAgICBTZWxlY3Rpb25Hcm91cENvbnRhaW5lckNvbXBvbmVudCxcbiAgICBGb3JtR3JvdXBDb250YWluZXJDb21wb25lbnQsXG4gICAgQnV0dG9uQ29udHJvbENvbXBvbmVudCxcbiAgICBCdXR0b25zTGlzdENvbXBvbmVudCxcbiAgICBJY29uQ29tcG9uZW50LFxuICAgIFRleHRJY29uQ29tcG9uZW50LFxuICAgIENhcmRDb250YWluZXJDb21wb25lbnQsXG4gICAgRXhwYW5kQ29sbGFwc2VJY29uQ29tcG9uZW50LFxuICAgIEZvcm1MYXlvdXRDb21wb25lbnQsXG4gICAgQWNjb3JkaW9uQ29udGVudENvbXBvbmVudCxcbiAgICBBY2NvcmRpb25EaXJlY3RpdmUsXG4gICAgQWNjb3JkaW9uVHJpZ2dlckRpcmVjdGl2ZSxcbiAgICBEYXRhQ29sRGlzcENvbXBvbmVudCxcbiAgICBUYWJHcm91cENvbXBvbmVudCxcbiAgICBLZXlzUGlwZSxcbiAgICBUYWJEaXJlY3RpdmUsXG4gICAgQnJlYWRjcnVtYnNDb21wb25lbnQsXG4gICAgU2VhcmNoUGlwZSxcbiAgICBGaWx0ZXJCeVByb3BQaXBlLFxuICAgIENvbHVtbkZpbHRlclBpcGUsXG4gICAgUGFnaW5hdGVQaXBlLFxuICAgIEZpcnN0TGV0dGVyVGV4dFBpcGUsXG4gICAgQ291bnRlckZvcm1Db250cm9sQ29tcG9uZW50LFxuICAgIE1hdGVyaWFsTW9kdWxlLFxuICAgIE1hdENka01vZHVsZSxcbiAgICBDb21tb25CcmVhZGNydW1ic0NvbXBvbmVudCxcbiAgICBOZ1NlbGVjdE1vZHVsZSxcbiAgICBEYXRhVGFibGVXcmFwQ29tcG9uZW50LFxuICAgIEV4Y2VsVGFibGVDb21wb25lbnQsXG4gICAgQXV0aG9yaXplZERpcmVjdGl2ZSxcbiAgICBEYXRhQ29sRmlsdGVyQ29tcG9uZW50LFxuICAgIFRyZWVWaWV3Q29tcG9uZW50LFxuICAgIEJhbm5lckNvbXBvbmVudCxcbiAgICBNYXRBY3Rpb25zQnV0dG9uQ29tcG9uZW50LFxuICAgIENpcmNsZUJ1dHRvbkNvbXBvbmVudCxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVWlLaXRNb2R1bGUge1xufVxuIl19