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,27 @@
1
+ import { Component, ChangeDetectionStrategy, Output, EventEmitter, Input } from '@angular/core';
2
+ import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ export class DataColActionButtonComponent extends BaseDataColComponent {
6
+ constructor() {
7
+ super(...arguments);
8
+ this.disabled = false;
9
+ this.actionClick = new EventEmitter();
10
+ }
11
+ onActionClick(type) {
12
+ if (typeof type === 'string') {
13
+ this.actionClick.emit({ type, payload: this.row.data });
14
+ }
15
+ }
16
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColActionButtonComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
17
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DataColActionButtonComponent, selector: "[app-data-col-action-button]", inputs: { disabled: "disabled" }, outputs: { actionClick: "actionClick" }, usesInheritance: true, ngImport: i0, template: "<div class=\"btn-group\">\n <button\n *ngFor=\"let columnData of col?.constants | keyvalue\"\n class=\"btn btn-link p-0 btn-sm\"\n [disabled]=\"disabled\"\n (click)=\"onActionClick(columnData.value.value)\"\n >\n {{ columnData.value?.label }}\n </button>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "pipe", type: i1.KeyValuePipe, name: "keyvalue" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
18
+ }
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColActionButtonComponent, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: '[app-data-col-action-button]', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"btn-group\">\n <button\n *ngFor=\"let columnData of col?.constants | keyvalue\"\n class=\"btn btn-link p-0 btn-sm\"\n [disabled]=\"disabled\"\n (click)=\"onActionClick(columnData.value.value)\"\n >\n {{ columnData.value?.label }}\n </button>\n</div>\n" }]
22
+ }], propDecorators: { disabled: [{
23
+ type: Input
24
+ }], actionClick: [{
25
+ type: Output
26
+ }] } });
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1jb2wtYWN0aW9uLWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC1hY3Rpb24tYnV0dG9uL2RhdGEtY29sLWFjdGlvbi1idXR0b24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtYWN0aW9uLWJ1dHRvbi9kYXRhLWNvbC1hY3Rpb24tYnV0dG9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFaEcsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMENBQTBDLENBQUM7OztBQVNoRixNQUFNLE9BQU8sNEJBQTZCLFNBQVEsb0JBQW9CO0lBTnRFOztRQVFrQixhQUFRLEdBQVksS0FBSyxDQUFDO1FBQ3pCLGdCQUFXLEdBQUcsSUFBSSxZQUFZLEVBQW9CLENBQUM7S0FPckU7SUFMUSxhQUFhLENBQUMsSUFBdUI7UUFDMUMsSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLEVBQUUsQ0FBQztZQUM3QixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxFQUFFLElBQUksRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBQzFELENBQUM7SUFDSCxDQUFDOytHQVRVLDRCQUE0QjttR0FBNUIsNEJBQTRCLHNLQ1h6Qyw0UkFVQTs7NEZEQ2EsNEJBQTRCO2tCQU54QyxTQUFTOytCQUNFLDhCQUE4QixtQkFHdkIsdUJBQXVCLENBQUMsTUFBTTs4QkFJL0IsUUFBUTtzQkFBdkIsS0FBSztnQkFDVyxXQUFXO3NCQUEzQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgT3V0cHV0LCBFdmVudEVtaXR0ZXIsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJRGF0YVRhYmxlQWN0aW9uIH0gZnJvbSAnLi4vLi4vLi4vLi4vaW50ZXJmYWNlcy9kYXRhLXRhYmxlLmludGVyZmFjZSc7XG5pbXBvcnQgeyBCYXNlRGF0YUNvbENvbXBvbmVudCB9IGZyb20gJy4uL2Jhc2UtZGF0YS1jb2wvYmFzZS1kYXRhLWNvbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgU2VsZWN0T3B0aW9uVmFsdWUgfSBmcm9tICdpZHAtYXBwcy1zaGFyZWQtdWkvbW9kdWxlcy91aS1raXQvdHlwZXMvc2VsZWN0LnR5cGUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdbYXBwLWRhdGEtY29sLWFjdGlvbi1idXR0b25dJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGEtY29sLWFjdGlvbi1idXR0b24uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRhLWNvbC1hY3Rpb24tYnV0dG9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBEYXRhQ29sQWN0aW9uQnV0dG9uQ29tcG9uZW50IGV4dGVuZHMgQmFzZURhdGFDb2xDb21wb25lbnQge1xuXG4gIEBJbnB1dCgpIHB1YmxpYyBkaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBAT3V0cHV0KCkgcHVibGljIGFjdGlvbkNsaWNrID0gbmV3IEV2ZW50RW1pdHRlcjxJRGF0YVRhYmxlQWN0aW9uPigpO1xuXG4gIHB1YmxpYyBvbkFjdGlvbkNsaWNrKHR5cGU6IFNlbGVjdE9wdGlvblZhbHVlKTogdm9pZCB7XG4gICAgaWYgKHR5cGVvZiB0eXBlID09PSAnc3RyaW5nJykge1xuICAgICAgdGhpcy5hY3Rpb25DbGljay5lbWl0KHsgdHlwZSwgcGF5bG9hZDogdGhpcy5yb3cuZGF0YSB9KTtcbiAgICB9XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJidG4tZ3JvdXBcIj5cbiAgPGJ1dHRvblxuICAgICpuZ0Zvcj1cImxldCBjb2x1bW5EYXRhIG9mIGNvbD8uY29uc3RhbnRzIHwga2V5dmFsdWVcIlxuICAgIGNsYXNzPVwiYnRuIGJ0bi1saW5rIHAtMCBidG4tc21cIlxuICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4gICAgKGNsaWNrKT1cIm9uQWN0aW9uQ2xpY2soY29sdW1uRGF0YS52YWx1ZS52YWx1ZSlcIlxuICA+XG4gICAge3sgY29sdW1uRGF0YS52YWx1ZT8ubGFiZWwgfX1cbiAgPC9idXR0b24+XG48L2Rpdj5cbiJdfQ==
@@ -0,0 +1,20 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "@angular/flex-layout/extended";
6
+ import * as i3 from "../../../form/checkbox-form-control/checkbox-form-control.component";
7
+ export class DataColBooleanComponent extends BaseDataColComponent {
8
+ constructor() {
9
+ super();
10
+ }
11
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColBooleanComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DataColBooleanComponent, selector: "[app-data-col-boolean]", inputs: { editDisabled: "editDisabled" }, providers: [{ provide: BaseDataColComponent, useExisting: DataColBooleanComponent }], usesInheritance: true, ngImport: i0, template: "<app-checkbox-form-control *ngIf=\"!col.editTemplate\"\n [control]=\"control\"\n [id]=\"controlId\"\n [col]=\"col\"\n [isDisabled]=\"editDisabled\"\n></app-checkbox-form-control>\n<!-- <ng-container \n [ngClass]=\"{disabledSelect: isDisabled}\"\n *ngTemplateOutlet=\"col.editTemplate; context:{ $implicit:{id: id, name: name, placeholder: placeholder , control: control }}\">\n</ng-container> -->\n<ng-container *ngIf=\"col.editTemplate\">\n <ng-container\n [ngClass]=\"{disabledSelect: editDisabled}\"\n *ngTemplateOutlet=\"col.editTemplate; context:{ $implicit:{id: controlId, control:control, row: row, prop: col.prop, tableCell: getColumnItem() }}\">\n </ng-container>\n</ng-container> ", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "component", type: i3.CheckboxFormControlComponent, selector: "app-checkbox-form-control", inputs: ["isDisabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13
+ }
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColBooleanComponent, decorators: [{
15
+ type: Component,
16
+ args: [{ selector: '[app-data-col-boolean]', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: BaseDataColComponent, useExisting: DataColBooleanComponent }], template: "<app-checkbox-form-control *ngIf=\"!col.editTemplate\"\n [control]=\"control\"\n [id]=\"controlId\"\n [col]=\"col\"\n [isDisabled]=\"editDisabled\"\n></app-checkbox-form-control>\n<!-- <ng-container \n [ngClass]=\"{disabledSelect: isDisabled}\"\n *ngTemplateOutlet=\"col.editTemplate; context:{ $implicit:{id: id, name: name, placeholder: placeholder , control: control }}\">\n</ng-container> -->\n<ng-container *ngIf=\"col.editTemplate\">\n <ng-container\n [ngClass]=\"{disabledSelect: editDisabled}\"\n *ngTemplateOutlet=\"col.editTemplate; context:{ $implicit:{id: controlId, control:control, row: row, prop: col.prop, tableCell: getColumnItem() }}\">\n </ng-container>\n</ng-container> " }]
17
+ }], ctorParameters: () => [], propDecorators: { editDisabled: [{
18
+ type: Input
19
+ }] } });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1jb2wtYm9vbGVhbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC1ib29sZWFuL2RhdGEtY29sLWJvb2xlYW4uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtYm9vbGVhbi9kYXRhLWNvbC1ib29sZWFuLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBDQUEwQyxDQUFDOzs7OztBQVNoRixNQUFNLE9BQU8sdUJBQXdCLFNBQVEsb0JBQW9CO0lBRy9EO1FBQ0UsS0FBSyxFQUFFLENBQUM7SUFDVixDQUFDOytHQUxVLHVCQUF1QjttR0FBdkIsdUJBQXVCLDJGQUZ2QixDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsRUFBRSx1QkFBdUIsRUFBRSxDQUFDLGlEQ1J0Rixtc0JBZWdCOzs0RkRMSCx1QkFBdUI7a0JBUG5DLFNBQVM7K0JBQ0Usd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDLENBQUMsRUFBRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsV0FBVyx5QkFBeUIsRUFBRSxDQUFDO3dEQUdwRSxZQUFZO3NCQUEzQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEJhc2VEYXRhQ29sQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1kYXRhLWNvbC9iYXNlLWRhdGEtY29sLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ1thcHAtZGF0YS1jb2wtYm9vbGVhbl0nLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0YS1jb2wtYm9vbGVhbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2RhdGEtY29sLWJvb2xlYW4uY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogQmFzZURhdGFDb2xDb21wb25lbnQsIHVzZUV4aXN0aW5nOiBEYXRhQ29sQm9vbGVhbkNvbXBvbmVudCB9XSxcbn0pXG5leHBvcnQgY2xhc3MgRGF0YUNvbEJvb2xlYW5Db21wb25lbnQgZXh0ZW5kcyBCYXNlRGF0YUNvbENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHB1YmxpYyBlZGl0RGlzYWJsZWQ6IGJvb2xlYW47XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gICAgc3VwZXIoKTtcbiAgfVxufVxuIiwiPGFwcC1jaGVja2JveC1mb3JtLWNvbnRyb2wgKm5nSWY9XCIhY29sLmVkaXRUZW1wbGF0ZVwiXG4gIFtjb250cm9sXT1cImNvbnRyb2xcIlxuICBbaWRdPVwiY29udHJvbElkXCJcbiAgW2NvbF09XCJjb2xcIlxuICBbaXNEaXNhYmxlZF09XCJlZGl0RGlzYWJsZWRcIlxuPjwvYXBwLWNoZWNrYm94LWZvcm0tY29udHJvbD5cbjwhLS0gPG5nLWNvbnRhaW5lciBcbiAgW25nQ2xhc3NdPVwie2Rpc2FibGVkU2VsZWN0OiBpc0Rpc2FibGVkfVwiXG4gICpuZ1RlbXBsYXRlT3V0bGV0PVwiY29sLmVkaXRUZW1wbGF0ZTsgY29udGV4dDp7ICRpbXBsaWNpdDp7aWQ6IGlkLCBuYW1lOiBuYW1lLCBwbGFjZWhvbGRlcjogcGxhY2Vob2xkZXIgLCBjb250cm9sOiBjb250cm9sICB9fVwiPlxuPC9uZy1jb250YWluZXI+IC0tPlxuPG5nLWNvbnRhaW5lciAqbmdJZj1cImNvbC5lZGl0VGVtcGxhdGVcIj5cbiAgPG5nLWNvbnRhaW5lclxuICAgIFtuZ0NsYXNzXT1cIntkaXNhYmxlZFNlbGVjdDogZWRpdERpc2FibGVkfVwiXG4gICAgKm5nVGVtcGxhdGVPdXRsZXQ9XCJjb2wuZWRpdFRlbXBsYXRlOyBjb250ZXh0OnsgJGltcGxpY2l0OntpZDogY29udHJvbElkLCBjb250cm9sOmNvbnRyb2wsIHJvdzogcm93LCBwcm9wOiBjb2wucHJvcCwgdGFibGVDZWxsOiBnZXRDb2x1bW5JdGVtKCkgfX1cIj5cbiAgPC9uZy1jb250YWluZXI+XG48L25nLWNvbnRhaW5lcj4gIl19
@@ -0,0 +1,18 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import { BaseDataColComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "../../../form/multivalue-form-control/multivalue-form-control.component";
5
+ export class DataColMultivalueComponent extends BaseDataColComponent {
6
+ constructor() {
7
+ super();
8
+ }
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColMultivalueComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DataColMultivalueComponent, selector: "[app-data-col-multivalue]", inputs: { viewOnly: "viewOnly" }, usesInheritance: true, ngImport: i0, template: "<app-multivalue-form-control\n [control]=\"control\"\n [id]=\"controlId\"\n [viewOnly]=\"viewOnly\"\n [row]=\"row\"\n [viewColumn]=\"col\"\n></app-multivalue-form-control>\n", styles: [""], dependencies: [{ kind: "component", type: i1.MultivalueFormControlComponent, selector: "app-multivalue-form-control", inputs: ["viewOnly", "row", "viewColumn"] }] }); }
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColMultivalueComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: '[app-data-col-multivalue]', template: "<app-multivalue-form-control\n [control]=\"control\"\n [id]=\"controlId\"\n [viewOnly]=\"viewOnly\"\n [row]=\"row\"\n [viewColumn]=\"col\"\n></app-multivalue-form-control>\n" }]
15
+ }], ctorParameters: () => [], propDecorators: { viewOnly: [{
16
+ type: Input
17
+ }] } });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1jb2wtbXVsdGl2YWx1ZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC1tdWx0aXZhbHVlL2RhdGEtY29sLW11bHRpdmFsdWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtbXVsdGl2YWx1ZS9kYXRhLWNvbC1tdWx0aXZhbHVlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHdHQUF3RyxDQUFDOzs7QUFPOUksTUFBTSxPQUFPLDBCQUEyQixTQUFRLG9CQUFvQjtJQUlsRTtRQUNFLEtBQUssRUFBRSxDQUFDO0lBQ1YsQ0FBQzsrR0FOVSwwQkFBMEI7bUdBQTFCLDBCQUEwQiwwSENSdkMsb0xBT0E7OzRGRENhLDBCQUEwQjtrQkFMdEMsU0FBUzsrQkFDRSwyQkFBMkI7d0RBTXJCLFFBQVE7c0JBQXZCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCYXNlRGF0YUNvbENvbXBvbmVudCB9IGZyb20gJ2lkcC1hcHBzLXNoYXJlZC11aS9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvYmFzZS1kYXRhLWNvbC9iYXNlLWRhdGEtY29sLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ1thcHAtZGF0YS1jb2wtbXVsdGl2YWx1ZV0nLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0YS1jb2wtbXVsdGl2YWx1ZS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2RhdGEtY29sLW11bHRpdmFsdWUuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgRGF0YUNvbE11bHRpdmFsdWVDb21wb25lbnQgZXh0ZW5kcyBCYXNlRGF0YUNvbENvbXBvbmVudHtcblxuICBASW5wdXQoKSBwdWJsaWMgdmlld09ubHk6IGJvb2xlYW47XG5cbiAgY29uc3RydWN0b3IoKSB7IFxuICAgIHN1cGVyKCk7XG4gIH1cblxufVxuIiwiPGFwcC1tdWx0aXZhbHVlLWZvcm0tY29udHJvbFxuICBbY29udHJvbF09XCJjb250cm9sXCJcbiAgW2lkXT1cImNvbnRyb2xJZFwiXG4gIFt2aWV3T25seV09XCJ2aWV3T25seVwiXG4gIFtyb3ddPVwicm93XCJcbiAgW3ZpZXdDb2x1bW5dPVwiY29sXCJcbj48L2FwcC1tdWx0aXZhbHVlLWZvcm0tY29udHJvbD5cbiJdfQ==
@@ -0,0 +1,31 @@
1
+ import { ChangeDetectionStrategy, Component, Input, Output, EventEmitter } from '@angular/core';
2
+ import { BaseDataColComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component';
3
+ import { UrlParamActionEnum } from '../../../../enums/url-param-action.enum';
4
+ import * as i0 from "@angular/core";
5
+ export class DataColNestedComponent extends BaseDataColComponent {
6
+ constructor() {
7
+ super();
8
+ this.options = [];
9
+ this.complexDetailClicked = new EventEmitter();
10
+ }
11
+ // TODO: needs to be refactored.
12
+ nestedDetailsButtonClicked() {
13
+ const eventData = {
14
+ rowEventData: { row: this.row },
15
+ column: this.col,
16
+ urlActionType: UrlParamActionEnum.Nested,
17
+ };
18
+ this.complexDetailClicked.emit(eventData);
19
+ }
20
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColNestedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
21
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DataColNestedComponent, selector: "[app-data-col-nested]", inputs: { options: "options" }, outputs: { complexDetailClicked: "complexDetailClicked" }, providers: [{ provide: BaseDataColComponent, useExisting: DataColNestedComponent }], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <a (click)=\"nestedDetailsButtonClicked()\">Nested</a>\n</ng-container>", styles: ["a{color:#007bff!important;text-decoration:underline!important}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
22
+ }
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColNestedComponent, decorators: [{
24
+ type: Component,
25
+ args: [{ selector: '[app-data-col-nested]', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: BaseDataColComponent, useExisting: DataColNestedComponent }], template: "<ng-container>\n <a (click)=\"nestedDetailsButtonClicked()\">Nested</a>\n</ng-container>", styles: ["a{color:#007bff!important;text-decoration:underline!important}\n"] }]
26
+ }], ctorParameters: () => [], propDecorators: { options: [{
27
+ type: Input
28
+ }], complexDetailClicked: [{
29
+ type: Output
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1jb2wtbmVzdGVkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtY29sL2RhdGEtY29sLW5lc3RlZC9kYXRhLWNvbC1uZXN0ZWQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtbmVzdGVkL2RhdGEtY29sLW5lc3RlZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2hHLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHdHQUF3RyxDQUFDO0FBRTlJLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHlDQUF5QyxDQUFDOztBQVU3RSxNQUFNLE9BQU8sc0JBQXVCLFNBQVEsb0JBQW9CO0lBSzlEO1FBQ0UsS0FBSyxFQUFFLENBQUM7UUFKTSxZQUFPLEdBQW9CLEVBQUUsQ0FBQztRQUM3Qix5QkFBb0IsR0FBb0MsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQUk1RixDQUFDO0lBRUQsZ0NBQWdDO0lBQ3pCLDBCQUEwQjtRQUMvQixNQUFNLFNBQVMsR0FBc0I7WUFDbkMsWUFBWSxFQUFFLEVBQUUsR0FBRyxFQUFFLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDL0IsTUFBTSxFQUFFLElBQUksQ0FBQyxHQUFHO1lBQ2hCLGFBQWEsRUFBRSxrQkFBa0IsQ0FBQyxNQUFNO1NBQ3pDLENBQUM7UUFDRixJQUFJLENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQzVDLENBQUM7K0dBakJVLHNCQUFzQjttR0FBdEIsc0JBQXNCLDJJQUZ0QixDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsRUFBRSxzQkFBc0IsRUFBRSxDQUFDLGlEQ1hyRiw0RkFFZTs7NEZEV0Ysc0JBQXNCO2tCQVBsQyxTQUFTOytCQUNFLHVCQUF1QixtQkFHaEIsdUJBQXVCLENBQUMsTUFBTSxhQUNwQyxDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsd0JBQXdCLEVBQUUsQ0FBQzt3REFJbkUsT0FBTztzQkFBdEIsS0FBSztnQkFDVyxvQkFBb0I7c0JBQXBDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCwgT3V0cHV0LCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEJhc2VEYXRhQ29sQ29tcG9uZW50IH0gZnJvbSAnaWRwLWFwcHMtc2hhcmVkLXVpL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9iYXNlLWRhdGEtY29sL2Jhc2UtZGF0YS1jb2wuY29tcG9uZW50JztcbmltcG9ydCB7IElTZWxlY3RPcHRpb24gfSBmcm9tICdpZHAtYXBwcy1zaGFyZWQtdWkvbW9kdWxlcy91aS1raXQvaW50ZXJmYWNlcy9zZWxlY3QuaW50ZXJmYWNlJztcbmltcG9ydCB7IFVybFBhcmFtQWN0aW9uRW51bSB9IGZyb20gJy4uLy4uLy4uLy4uL2VudW1zL3VybC1wYXJhbS1hY3Rpb24uZW51bSc7XG5pbXBvcnQgeyBJQ2xpY2tlZEV2ZW50RGF0YSB9IGZyb20gJy4uLy4uLy4uLy4uL2ludGVyZmFjZXMvZGF0YS10YWJsZS5pbnRlcmZhY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdbYXBwLWRhdGEtY29sLW5lc3RlZF0nLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0YS1jb2wtbmVzdGVkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGF0YS1jb2wtbmVzdGVkLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IEJhc2VEYXRhQ29sQ29tcG9uZW50LCB1c2VFeGlzdGluZzogRGF0YUNvbE5lc3RlZENvbXBvbmVudCB9XSxcbn0pXG5leHBvcnQgY2xhc3MgRGF0YUNvbE5lc3RlZENvbXBvbmVudCBleHRlbmRzIEJhc2VEYXRhQ29sQ29tcG9uZW50IHtcblxuICBASW5wdXQoKSBwdWJsaWMgb3B0aW9uczogSVNlbGVjdE9wdGlvbltdID0gW107XG4gIEBPdXRwdXQoKSBwdWJsaWMgY29tcGxleERldGFpbENsaWNrZWQ6IEV2ZW50RW1pdHRlcjxJQ2xpY2tlZEV2ZW50RGF0YT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIC8vIFRPRE86IG5lZWRzIHRvIGJlIHJlZmFjdG9yZWQuXG4gIHB1YmxpYyBuZXN0ZWREZXRhaWxzQnV0dG9uQ2xpY2tlZCgpOiB2b2lkIHtcbiAgICBjb25zdCBldmVudERhdGE6IElDbGlja2VkRXZlbnREYXRhID0ge1xuICAgICAgcm93RXZlbnREYXRhOiB7IHJvdzogdGhpcy5yb3cgfSxcbiAgICAgIGNvbHVtbjogdGhpcy5jb2wsXG4gICAgICB1cmxBY3Rpb25UeXBlOiBVcmxQYXJhbUFjdGlvbkVudW0uTmVzdGVkLFxuICAgIH07XG4gICAgdGhpcy5jb21wbGV4RGV0YWlsQ2xpY2tlZC5lbWl0KGV2ZW50RGF0YSk7XG4gIH1cblxufVxuIiwiPG5nLWNvbnRhaW5lcj5cbiAgIDxhIChjbGljayk9XCJuZXN0ZWREZXRhaWxzQnV0dG9uQ2xpY2tlZCgpXCI+TmVzdGVkPC9hPlxuPC9uZy1jb250YWluZXI+Il19
@@ -0,0 +1,96 @@
1
+ import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
2
+ import { Subject } from 'rxjs';
3
+ import { takeUntil } from 'rxjs/operators';
4
+ import { UrlParamActionEnum } from '../../../../../../modules/ui-kit/enums/url-param-action.enum';
5
+ import { SupportUtilService } from '../../../../../../core/site/services/support-util.service';
6
+ import { ViewTypeEnum } from '../../../../enums/viewType.enum';
7
+ import { SelectFormControlComponent } from '../../../form/select-form-control/select-form-control.component';
8
+ import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
9
+ import * as i0 from "@angular/core";
10
+ import * as i1 from "@angular/common";
11
+ import * as i2 from "../../../form/select-form-control/select-form-control.component";
12
+ import * as i3 from "../data-col-view/data-col-view.component";
13
+ export class DataColReferenceComponent extends BaseDataColComponent {
14
+ set setSelectControl(control) {
15
+ this.selectControl = control;
16
+ }
17
+ constructor(changeDetector) {
18
+ super();
19
+ this.changeDetector = changeDetector;
20
+ this.options = [];
21
+ this.complexDetailClicked = new EventEmitter();
22
+ this.viewType = ViewTypeEnum;
23
+ this.isDisplayOptionsAvailable = false;
24
+ this.clearSubs$ = new Subject();
25
+ }
26
+ get getOptionsFn() {
27
+ if (this.col.getDropDownData) {
28
+ return this.col.getDropDownData;
29
+ }
30
+ return null;
31
+ }
32
+ setData(newData) {
33
+ this.setOptionsData(newData.options);
34
+ }
35
+ // To Do refactor later
36
+ referenceDetailsButtonClicked() {
37
+ const eventData = {
38
+ rowEventData: { row: this.row },
39
+ column: this.col,
40
+ urlActionType: UrlParamActionEnum.Reference,
41
+ };
42
+ this.complexDetailClicked.emit(eventData);
43
+ }
44
+ ngOnInit() {
45
+ if (this.col.getDropDownData) {
46
+ this.col.getDropDownData
47
+ .pipe(takeUntil(this.clearSubs$))
48
+ .subscribe((response) => {
49
+ this.setOptionsData(response);
50
+ });
51
+ }
52
+ else if (this.col.getDropDownOptions) {
53
+ this.col.getDropDownOptions(this.row.data)
54
+ .pipe(takeUntil(this.clearSubs$))
55
+ .subscribe((response) => {
56
+ this.setOptionsData(response);
57
+ });
58
+ }
59
+ else {
60
+ this.isDisplayOptionsAvailable = true;
61
+ }
62
+ if (this.col.optionsForViewMode === false) {
63
+ this.isDisplayOptionsAvailable = true;
64
+ }
65
+ }
66
+ ngOnDestroy() {
67
+ this.clearSubs$.next(null);
68
+ this.clearSubs$.complete();
69
+ }
70
+ setOptionsData(options) {
71
+ this.isDisplayOptionsAvailable = true;
72
+ this.options = options;
73
+ this.col.constants = { ...this.col.constants, ...SupportUtilService.mapArrayResponseToObject(options) };
74
+ this.changeDetector.detectChanges();
75
+ }
76
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColReferenceComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
77
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DataColReferenceComponent, selector: "[app-data-col-reference]", inputs: { isEditing: "isEditing", optionTemplate: "optionTemplate", options: "options", editDisabled: "editDisabled" }, outputs: { complexDetailClicked: "complexDetailClicked" }, providers: [{ provide: BaseDataColComponent, useExisting: DataColReferenceComponent }], viewQueries: [{ propertyName: "setSelectControl", first: true, predicate: SelectFormControlComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ng-container *ngIf=\"col.viewType == viewType.Link\">\n <a (click)=\"referenceDetailsButtonClicked()\">Reference</a>\n</ng-container>\n\n<ng-container *ngIf=\"!col.viewType || (col.viewType == viewType.DropDown) || (col.viewType == viewType.AutoComplete)\">\n <app-select-form-control\n *ngIf=\"(isEditing||col.isDisplayValueAsFormControl) && !col.editTemplate\"\n [control]=\"control\"\n [optionTemplate] = \"col.optionTemplate\"\n [id]=\"controlId\"\n [options]=\"options\"\n (valueChanged)=\"ValueChanged()\"\n (onFirstValueSet)=\"firstValueSet()\"\n [isDisabled]=\"editDisabled\"\n [isAddEnabled]=\"col.viewType == viewType.AutoComplete\"\n [isMultiple]=\"col.allowMultiple\"\n ></app-select-form-control>\n\n <app-data-col-view\n *ngIf=\"!isEditing && !col.isDisplayValueAsFormControl && isDisplayOptionsAvailable\"\n [row]=\"row\"\n [col]=\"col\"\n [gridOptions]=\"gridOptions\"\n ></app-data-col-view>\n\n</ng-container>\n<ng-container *ngIf=\"isEditing && col.editTemplate\">\n <ng-container *ngTemplateOutlet=\"col.editTemplate;context:{ $implicit:{id: controlId, control:control, row: row }}\"></ng-container>\n</ng-container> \n", styles: ["a{color:#007bff!important;text-decoration:underline!important}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2.SelectFormControlComponent, selector: "app-select-form-control", inputs: ["ngSelectCustomCssObject", "isMultiple", "isDisabled", "isAddEnabled", "searchable", "optionTemplate", "getOptionsFn", "shouldCloseOnSelect", "options"], outputs: ["valueChanged", "onFirstValueSet"] }, { kind: "component", type: i3.DataColViewComponent, selector: "app-data-col-view,[app-data-col-view]", inputs: ["row", "rowIndex", "columnIndex", "col", "gridOptions", "isFirstVisibleCol", "isTreeGrid", "rowDepth", "hasExpandCollapse", "isRowExpanded"], outputs: ["changeExpandCollapse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
78
+ }
79
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColReferenceComponent, decorators: [{
80
+ type: Component,
81
+ args: [{ selector: '[app-data-col-reference]', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: BaseDataColComponent, useExisting: DataColReferenceComponent }], template: "<ng-container *ngIf=\"col.viewType == viewType.Link\">\n <a (click)=\"referenceDetailsButtonClicked()\">Reference</a>\n</ng-container>\n\n<ng-container *ngIf=\"!col.viewType || (col.viewType == viewType.DropDown) || (col.viewType == viewType.AutoComplete)\">\n <app-select-form-control\n *ngIf=\"(isEditing||col.isDisplayValueAsFormControl) && !col.editTemplate\"\n [control]=\"control\"\n [optionTemplate] = \"col.optionTemplate\"\n [id]=\"controlId\"\n [options]=\"options\"\n (valueChanged)=\"ValueChanged()\"\n (onFirstValueSet)=\"firstValueSet()\"\n [isDisabled]=\"editDisabled\"\n [isAddEnabled]=\"col.viewType == viewType.AutoComplete\"\n [isMultiple]=\"col.allowMultiple\"\n ></app-select-form-control>\n\n <app-data-col-view\n *ngIf=\"!isEditing && !col.isDisplayValueAsFormControl && isDisplayOptionsAvailable\"\n [row]=\"row\"\n [col]=\"col\"\n [gridOptions]=\"gridOptions\"\n ></app-data-col-view>\n\n</ng-container>\n<ng-container *ngIf=\"isEditing && col.editTemplate\">\n <ng-container *ngTemplateOutlet=\"col.editTemplate;context:{ $implicit:{id: controlId, control:control, row: row }}\"></ng-container>\n</ng-container> \n", styles: ["a{color:#007bff!important;text-decoration:underline!important}\n"] }]
82
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { isEditing: [{
83
+ type: Input
84
+ }], optionTemplate: [{
85
+ type: Input
86
+ }], options: [{
87
+ type: Input
88
+ }], editDisabled: [{
89
+ type: Input
90
+ }], complexDetailClicked: [{
91
+ type: Output
92
+ }], setSelectControl: [{
93
+ type: ViewChild,
94
+ args: [SelectFormControlComponent]
95
+ }] } });
96
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1jb2wtcmVmZXJlbmNlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9kYXRhLXRhYmxlL2RhdGEtY29sL2RhdGEtY29sLXJlZmVyZW5jZS9kYXRhLWNvbC1yZWZlcmVuY2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtcmVmZXJlbmNlL2RhdGEtY29sLXJlZmVyZW5jZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQXFCLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUNsRSxNQUFNLEVBQUUsU0FBUyxFQUMxQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQWMsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSw4REFBOEQsQ0FBQztBQUVsRyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwyREFBMkQsQ0FBQztBQUMvRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFFL0QsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0saUVBQWlFLENBQUM7QUFDN0csT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMENBQTBDLENBQUM7Ozs7O0FBU2hGLE1BQU0sT0FBTyx5QkFBMEIsU0FBUSxvQkFBb0I7SUFjakUsSUFBa0QsZ0JBQWdCLENBQUMsT0FBbUM7UUFDcEcsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLENBQUM7SUFDL0IsQ0FBQztJQUVELFlBQ1UsY0FBaUM7UUFFekMsS0FBSyxFQUFFLENBQUM7UUFGQSxtQkFBYyxHQUFkLGNBQWMsQ0FBbUI7UUFkM0IsWUFBTyxHQUFvQixFQUFFLENBQUM7UUFFN0IseUJBQW9CLEdBQW9DLElBQUksWUFBWSxFQUFFLENBQUM7UUFHckYsYUFBUSxHQUFRLFlBQVksQ0FBQztRQUM3Qiw4QkFBeUIsR0FBWSxLQUFLLENBQUM7UUFDMUMsZUFBVSxHQUFHLElBQUksT0FBTyxFQUFFLENBQUM7SUFVbkMsQ0FBQztJQUVELElBQVcsWUFBWTtRQUNyQixJQUFJLElBQUksQ0FBQyxHQUFHLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDN0IsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDLGVBQWUsQ0FBQztRQUNsQyxDQUFDO1FBQ0QsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBRWUsT0FBTyxDQUFDLE9BQVk7UUFDbEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDdkMsQ0FBQztJQUVELHVCQUF1QjtJQUNoQiw2QkFBNkI7UUFDbEMsTUFBTSxTQUFTLEdBQXNCO1lBQ25DLFlBQVksRUFBRSxFQUFFLEdBQUcsRUFBRSxJQUFJLENBQUMsR0FBRyxFQUFFO1lBQy9CLE1BQU0sRUFBRSxJQUFJLENBQUMsR0FBRztZQUNoQixhQUFhLEVBQUUsa0JBQWtCLENBQUMsU0FBUztTQUM1QyxDQUFDO1FBQ0YsSUFBSSxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUU1QyxDQUFDO0lBRU0sUUFBUTtRQUNiLElBQUksSUFBSSxDQUFDLEdBQUcsQ0FBQyxlQUFlLEVBQUUsQ0FBQztZQUM3QixJQUFJLENBQUMsR0FBRyxDQUFDLGVBQWU7aUJBQ3JCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO2lCQUNoQyxTQUFTLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRTtnQkFDdEIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQztZQUNoQyxDQUFDLENBQUMsQ0FBQztRQUNQLENBQUM7YUFBTSxJQUFJLElBQUksQ0FBQyxHQUFHLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztZQUN2QyxJQUFJLENBQUMsR0FBRyxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDO2lCQUN2QyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztpQkFDaEMsU0FBUyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUU7Z0JBQ3RCLElBQUksQ0FBQyxjQUFjLENBQUMsUUFBUSxDQUFDLENBQUM7WUFDaEMsQ0FBQyxDQUFDLENBQUM7UUFFUCxDQUFDO2FBQU0sQ0FBQztZQUNOLElBQUksQ0FBQyx5QkFBeUIsR0FBRyxJQUFJLENBQUM7UUFDeEMsQ0FBQztRQUNELElBQUksSUFBSSxDQUFDLEdBQUcsQ0FBQyxrQkFBa0IsS0FBSyxLQUFLLEVBQUUsQ0FBQztZQUMxQyxJQUFJLENBQUMseUJBQXlCLEdBQUcsSUFBSSxDQUFDO1FBQ3hDLENBQUM7SUFDSCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUMzQixJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFTyxjQUFjLENBQUMsT0FBd0I7UUFDN0MsSUFBSSxDQUFDLHlCQUF5QixHQUFHLElBQUksQ0FBQztRQUN0QyxJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQztRQUN2QixJQUFJLENBQUMsR0FBRyxDQUFDLFNBQVMsR0FBRyxFQUFFLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxTQUFTLEVBQUUsR0FBRyxrQkFBa0IsQ0FBQyx3QkFBd0IsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDO1FBQ3hHLElBQUksQ0FBQyxjQUFjLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDdEMsQ0FBQzsrR0E5RVUseUJBQXlCO21HQUF6Qix5QkFBeUIsc09BRnpCLENBQUMsRUFBRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsV0FBVyxFQUFFLHlCQUF5QixFQUFFLENBQUMsNEVBZ0IzRSwwQkFBMEIsdUVDbkN2QyxzcUNBNkJBOzs0RkRSYSx5QkFBeUI7a0JBUHJDLFNBQVM7K0JBQ0UsMEJBQTBCLG1CQUduQix1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDLENBQUMsRUFBRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsV0FBVywyQkFBMkIsRUFBRSxDQUFDO3NGQUt0RSxTQUFTO3NCQUF4QixLQUFLO2dCQUNVLGNBQWM7c0JBQTdCLEtBQUs7Z0JBQ1UsT0FBTztzQkFBdEIsS0FBSztnQkFDVSxZQUFZO3NCQUEzQixLQUFLO2dCQUNXLG9CQUFvQjtzQkFBcEMsTUFBTTtnQkFPMkMsZ0JBQWdCO3NCQUFqRSxTQUFTO3VCQUFDLDBCQUEwQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDaGFuZ2VEZXRlY3RvclJlZiwgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkRlc3Ryb3ksXG4gIE9uSW5pdCwgT3V0cHV0LCBWaWV3Q2hpbGQsIFRlbXBsYXRlUmVmXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSwgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgdGFrZVVudGlsIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0IHsgVXJsUGFyYW1BY3Rpb25FbnVtIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbW9kdWxlcy91aS1raXQvZW51bXMvdXJsLXBhcmFtLWFjdGlvbi5lbnVtJztcbmltcG9ydCB7IElDbGlja2VkRXZlbnREYXRhIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbW9kdWxlcy91aS1raXQvaW50ZXJmYWNlcy9kYXRhLXRhYmxlLmludGVyZmFjZSc7XG5pbXBvcnQgeyBTdXBwb3J0VXRpbFNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9jb3JlL3NpdGUvc2VydmljZXMvc3VwcG9ydC11dGlsLnNlcnZpY2UnO1xuaW1wb3J0IHsgVmlld1R5cGVFbnVtIH0gZnJvbSAnLi4vLi4vLi4vLi4vZW51bXMvdmlld1R5cGUuZW51bSc7XG5pbXBvcnQgeyBJU2VsZWN0T3B0aW9uIH0gZnJvbSAnLi4vLi4vLi4vLi4vaW50ZXJmYWNlcy9zZWxlY3QuaW50ZXJmYWNlJztcbmltcG9ydCB7IFNlbGVjdEZvcm1Db250cm9sQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vZm9ybS9zZWxlY3QtZm9ybS1jb250cm9sL3NlbGVjdC1mb3JtLWNvbnRyb2wuY29tcG9uZW50JztcbmltcG9ydCB7IEJhc2VEYXRhQ29sQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1kYXRhLWNvbC9iYXNlLWRhdGEtY29sLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ1thcHAtZGF0YS1jb2wtcmVmZXJlbmNlXScsXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRhLWNvbC1yZWZlcmVuY2UuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRhLWNvbC1yZWZlcmVuY2UuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogQmFzZURhdGFDb2xDb21wb25lbnQsIHVzZUV4aXN0aW5nOiBEYXRhQ29sUmVmZXJlbmNlQ29tcG9uZW50IH1dLFxufSlcbmV4cG9ydCBjbGFzcyBEYXRhQ29sUmVmZXJlbmNlQ29tcG9uZW50IGV4dGVuZHMgQmFzZURhdGFDb2xDb21wb25lbnRcbiAgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG5cbiAgQElucHV0KCkgcHVibGljIGlzRWRpdGluZzogYm9vbGVhbjtcbiAgQElucHV0KCkgcHVibGljIG9wdGlvblRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxhbnk+O1xuICBASW5wdXQoKSBwdWJsaWMgb3B0aW9uczogSVNlbGVjdE9wdGlvbltdID0gW107XG4gIEBJbnB1dCgpIHB1YmxpYyBlZGl0RGlzYWJsZWQ6IGJvb2xlYW47XG4gIEBPdXRwdXQoKSBwdWJsaWMgY29tcGxleERldGFpbENsaWNrZWQ6IEV2ZW50RW1pdHRlcjxJQ2xpY2tlZEV2ZW50RGF0YT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgcHVibGljIHNlbGVjdENvbnRyb2w6IFNlbGVjdEZvcm1Db250cm9sQ29tcG9uZW50O1xuICBwdWJsaWMgdmlld1R5cGU6IGFueSA9IFZpZXdUeXBlRW51bTtcbiAgcHVibGljIGlzRGlzcGxheU9wdGlvbnNBdmFpbGFibGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHJpdmF0ZSBjbGVhclN1YnMkID0gbmV3IFN1YmplY3QoKTtcblxuICBAVmlld0NoaWxkKFNlbGVjdEZvcm1Db250cm9sQ29tcG9uZW50KSBwdWJsaWMgc2V0IHNldFNlbGVjdENvbnRyb2woY29udHJvbDogU2VsZWN0Rm9ybUNvbnRyb2xDb21wb25lbnQpIHtcbiAgICB0aGlzLnNlbGVjdENvbnRyb2wgPSBjb250cm9sO1xuICB9XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBjaGFuZ2VEZXRlY3RvcjogQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICkge1xuICAgIHN1cGVyKCk7XG4gIH1cblxuICBwdWJsaWMgZ2V0IGdldE9wdGlvbnNGbigpOiBPYnNlcnZhYmxlPElTZWxlY3RPcHRpb25bXT4ge1xuICAgIGlmICh0aGlzLmNvbC5nZXREcm9wRG93bkRhdGEpIHtcbiAgICAgIHJldHVybiB0aGlzLmNvbC5nZXREcm9wRG93bkRhdGE7XG4gICAgfVxuICAgIHJldHVybiBudWxsO1xuICB9XG5cbiAgcHVibGljIG92ZXJyaWRlIHNldERhdGEobmV3RGF0YTogYW55KTogdm9pZCB7XG4gICAgdGhpcy5zZXRPcHRpb25zRGF0YShuZXdEYXRhLm9wdGlvbnMpO1xuICB9XG5cbiAgLy8gVG8gRG8gcmVmYWN0b3IgbGF0ZXJcbiAgcHVibGljIHJlZmVyZW5jZURldGFpbHNCdXR0b25DbGlja2VkKCk6IHZvaWQge1xuICAgIGNvbnN0IGV2ZW50RGF0YTogSUNsaWNrZWRFdmVudERhdGEgPSB7XG4gICAgICByb3dFdmVudERhdGE6IHsgcm93OiB0aGlzLnJvdyB9LFxuICAgICAgY29sdW1uOiB0aGlzLmNvbCxcbiAgICAgIHVybEFjdGlvblR5cGU6IFVybFBhcmFtQWN0aW9uRW51bS5SZWZlcmVuY2UsXG4gICAgfTtcbiAgICB0aGlzLmNvbXBsZXhEZXRhaWxDbGlja2VkLmVtaXQoZXZlbnREYXRhKTtcblxuICB9XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmNvbC5nZXREcm9wRG93bkRhdGEpIHtcbiAgICAgIHRoaXMuY29sLmdldERyb3BEb3duRGF0YVxuICAgICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5jbGVhclN1YnMkKSlcbiAgICAgICAgLnN1YnNjcmliZSgocmVzcG9uc2UpID0+IHtcbiAgICAgICAgICB0aGlzLnNldE9wdGlvbnNEYXRhKHJlc3BvbnNlKTtcbiAgICAgICAgfSk7XG4gICAgfSBlbHNlIGlmICh0aGlzLmNvbC5nZXREcm9wRG93bk9wdGlvbnMpIHtcbiAgICAgIHRoaXMuY29sLmdldERyb3BEb3duT3B0aW9ucyh0aGlzLnJvdy5kYXRhKVxuICAgICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5jbGVhclN1YnMkKSlcbiAgICAgICAgLnN1YnNjcmliZSgocmVzcG9uc2UpID0+IHtcbiAgICAgICAgICB0aGlzLnNldE9wdGlvbnNEYXRhKHJlc3BvbnNlKTtcbiAgICAgICAgfSk7XG5cbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5pc0Rpc3BsYXlPcHRpb25zQXZhaWxhYmxlID0gdHJ1ZTtcbiAgICB9XG4gICAgaWYgKHRoaXMuY29sLm9wdGlvbnNGb3JWaWV3TW9kZSA9PT0gZmFsc2UpIHtcbiAgICAgIHRoaXMuaXNEaXNwbGF5T3B0aW9uc0F2YWlsYWJsZSA9IHRydWU7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuY2xlYXJTdWJzJC5uZXh0KG51bGwpO1xuICAgIHRoaXMuY2xlYXJTdWJzJC5jb21wbGV0ZSgpO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRPcHRpb25zRGF0YShvcHRpb25zOiBJU2VsZWN0T3B0aW9uW10pOiB2b2lkIHtcbiAgICB0aGlzLmlzRGlzcGxheU9wdGlvbnNBdmFpbGFibGUgPSB0cnVlO1xuICAgIHRoaXMub3B0aW9ucyA9IG9wdGlvbnM7XG4gICAgdGhpcy5jb2wuY29uc3RhbnRzID0geyAuLi50aGlzLmNvbC5jb25zdGFudHMsIC4uLlN1cHBvcnRVdGlsU2VydmljZS5tYXBBcnJheVJlc3BvbnNlVG9PYmplY3Qob3B0aW9ucykgfTtcbiAgICB0aGlzLmNoYW5nZURldGVjdG9yLmRldGVjdENoYW5nZXMoKTtcbiAgfVxuXG59XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwiY29sLnZpZXdUeXBlID09IHZpZXdUeXBlLkxpbmtcIj5cbiAgPGEgKGNsaWNrKT1cInJlZmVyZW5jZURldGFpbHNCdXR0b25DbGlja2VkKClcIj5SZWZlcmVuY2U8L2E+XG48L25nLWNvbnRhaW5lcj5cblxuPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFjb2wudmlld1R5cGUgfHwgKGNvbC52aWV3VHlwZSA9PSB2aWV3VHlwZS5Ecm9wRG93bikgfHwgKGNvbC52aWV3VHlwZSA9PSB2aWV3VHlwZS5BdXRvQ29tcGxldGUpXCI+XG4gIDxhcHAtc2VsZWN0LWZvcm0tY29udHJvbFxuICAgICpuZ0lmPVwiKGlzRWRpdGluZ3x8Y29sLmlzRGlzcGxheVZhbHVlQXNGb3JtQ29udHJvbCkgJiYgIWNvbC5lZGl0VGVtcGxhdGVcIlxuICAgIFtjb250cm9sXT1cImNvbnRyb2xcIlxuICAgIFtvcHRpb25UZW1wbGF0ZV0gPSBcImNvbC5vcHRpb25UZW1wbGF0ZVwiXG4gICAgW2lkXT1cImNvbnRyb2xJZFwiXG4gICAgW29wdGlvbnNdPVwib3B0aW9uc1wiXG4gICAgKHZhbHVlQ2hhbmdlZCk9XCJWYWx1ZUNoYW5nZWQoKVwiXG4gICAgKG9uRmlyc3RWYWx1ZVNldCk9XCJmaXJzdFZhbHVlU2V0KClcIlxuICAgIFtpc0Rpc2FibGVkXT1cImVkaXREaXNhYmxlZFwiXG4gICAgW2lzQWRkRW5hYmxlZF09XCJjb2wudmlld1R5cGUgPT0gdmlld1R5cGUuQXV0b0NvbXBsZXRlXCJcbiAgICBbaXNNdWx0aXBsZV09XCJjb2wuYWxsb3dNdWx0aXBsZVwiXG4gID48L2FwcC1zZWxlY3QtZm9ybS1jb250cm9sPlxuXG4gIDxhcHAtZGF0YS1jb2wtdmlld1xuICAgICpuZ0lmPVwiIWlzRWRpdGluZyAmJiAhY29sLmlzRGlzcGxheVZhbHVlQXNGb3JtQ29udHJvbCAmJiBpc0Rpc3BsYXlPcHRpb25zQXZhaWxhYmxlXCJcbiAgICBbcm93XT1cInJvd1wiXG4gICAgW2NvbF09XCJjb2xcIlxuICAgIFtncmlkT3B0aW9uc109XCJncmlkT3B0aW9uc1wiXG4gID48L2FwcC1kYXRhLWNvbC12aWV3PlxuXG48L25nLWNvbnRhaW5lcj5cbjxuZy1jb250YWluZXIgKm5nSWY9XCJpc0VkaXRpbmcgJiYgY29sLmVkaXRUZW1wbGF0ZVwiPlxuICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiY29sLmVkaXRUZW1wbGF0ZTtjb250ZXh0OnsgJGltcGxpY2l0OntpZDogY29udHJvbElkLCBjb250cm9sOmNvbnRyb2wsIHJvdzogcm93IH19XCI+PC9uZy1jb250YWluZXI+XG48L25nLWNvbnRhaW5lcj4gXG4iXX0=
@@ -0,0 +1,75 @@
1
+ import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
2
+ import { ColumnTypes } from '../../../../../../modules/ui-kit/enums/column-types.enum';
3
+ import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@angular/flex-layout/extended";
7
+ import * as i3 from "../../../icon/expand-collapse-icon/expand-collapse-icon.component";
8
+ export class DataColViewComponent extends BaseDataColComponent {
9
+ constructor() {
10
+ super(...arguments);
11
+ this.changeExpandCollapse = new EventEmitter();
12
+ this.TREE_SHIFT_STEP = 15;
13
+ this.NO_TREE_SHIFT_STEP = 0;
14
+ }
15
+ get cellDisplayValue() {
16
+ let colValue = this.row.data[this.col.prop];
17
+ if (!Array.isArray(colValue)) {
18
+ colValue = [colValue];
19
+ }
20
+ const values = colValue.map(val => {
21
+ let returnValue = val;
22
+ if (this.col.constants && !this.isEmptyObject(this.col.constants)) {
23
+ returnValue = this.findCellDisplayValue(this.col.constants, val);
24
+ }
25
+ return this.formatValue(returnValue);
26
+ });
27
+ const newValues = values.join(', ');
28
+ return this.col.type === ColumnTypes.Date && newValues && !isNaN(Number(newValues)) ?
29
+ new Date(Number(newValues)).toISOString() : newValues;
30
+ }
31
+ onClickExpandCollapse(shouldExpand) {
32
+ this.changeExpandCollapse.emit(shouldExpand);
33
+ }
34
+ get treeShift() {
35
+ if (this.isFirstVisibleCol) {
36
+ return this.rowDepth * this.TREE_SHIFT_STEP;
37
+ }
38
+ return this.NO_TREE_SHIFT_STEP;
39
+ }
40
+ get getWrapperStyle() {
41
+ return this.gridOptions.customColumnStyle ? this.gridOptions.customColumnStyle : {};
42
+ }
43
+ isEmptyObject(obj) {
44
+ return (obj && (Object.keys(obj).length === 0));
45
+ }
46
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
47
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DataColViewComponent, selector: "app-data-col-view,[app-data-col-view]", inputs: { row: "row", rowIndex: "rowIndex", columnIndex: "columnIndex", col: "col", gridOptions: "gridOptions", isFirstVisibleCol: "isFirstVisibleCol", isTreeGrid: "isTreeGrid", rowDepth: "rowDepth", hasExpandCollapse: "hasExpandCollapse", isRowExpanded: "isRowExpanded" }, outputs: { changeExpandCollapse: "changeExpandCollapse" }, providers: [{ provide: BaseDataColComponent, useExisting: DataColViewComponent }], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <div *ngIf=\"!col.rendererTemplate\" [ngStyle]=\"getWrapperStyle\"\n [ngClass]=\"{ 'data-max-width': gridOptions.fixedWidthData }\">\n <div class=\"shift\" [ngStyle]=\"{ 'width.px': treeShift }\"></div>\n\n <app-expand-collapse-icon *ngIf=\"hasExpandCollapse\" class=\"expandCollapse\" [isExpanded]=\"isRowExpanded\"\n (clickIcon)=\"onClickExpandCollapse($event)\"></app-expand-collapse-icon>\n\n <span [ngClass]=\"col.customCssClass\" [title]=\"cellDisplayValue\">{{ cellDisplayValue }}</span>\n </div>\n</ng-container>\n\n<ng-container\n *ngTemplateOutlet=\"col.rendererTemplate; context: { $implicit: { cellDisplayValue: cellDisplayValue, row: row, col: col } }\"></ng-container>", styles: [".expandCollapse{display:inline-block;width:10px}.expandCollapse+.value{margin-left:5px}.shift{display:inline-block}.mat-cell,.mat-header-cell{flex:1;word-wrap:break-word;font-family:Proxima-Nova-Regular,arial,sans-serif!important;font-size:14px;color:#000;padding-right:10px}.mat-cell div{display:inline-block}.mat-cell.first-cell{min-width:280px}.mat-cell.checkboxRow{max-width:40px}.mat-cell a{font-family:Proxima-Nova-Regular,arial,sans-serif!important;font-size:14px;color:#000}.drag-column{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px}.data-max-width{max-width:170px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "directive", type: i2.DefaultStyleDirective, selector: " [ngStyle], [ngStyle.xs], [ngStyle.sm], [ngStyle.md], [ngStyle.lg], [ngStyle.xl], [ngStyle.lt-sm], [ngStyle.lt-md], [ngStyle.lt-lg], [ngStyle.lt-xl], [ngStyle.gt-xs], [ngStyle.gt-sm], [ngStyle.gt-md], [ngStyle.gt-lg]", inputs: ["ngStyle", "ngStyle.xs", "ngStyle.sm", "ngStyle.md", "ngStyle.lg", "ngStyle.xl", "ngStyle.lt-sm", "ngStyle.lt-md", "ngStyle.lt-lg", "ngStyle.lt-xl", "ngStyle.gt-xs", "ngStyle.gt-sm", "ngStyle.gt-md", "ngStyle.gt-lg"] }, { kind: "component", type: i3.ExpandCollapseIconComponent, selector: "app-expand-collapse-icon", inputs: ["isExpanded"], outputs: ["clickIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
48
+ }
49
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataColViewComponent, decorators: [{
50
+ type: Component,
51
+ args: [{ selector: 'app-data-col-view,[app-data-col-view]', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: BaseDataColComponent, useExisting: DataColViewComponent }], template: "<ng-container>\n <div *ngIf=\"!col.rendererTemplate\" [ngStyle]=\"getWrapperStyle\"\n [ngClass]=\"{ 'data-max-width': gridOptions.fixedWidthData }\">\n <div class=\"shift\" [ngStyle]=\"{ 'width.px': treeShift }\"></div>\n\n <app-expand-collapse-icon *ngIf=\"hasExpandCollapse\" class=\"expandCollapse\" [isExpanded]=\"isRowExpanded\"\n (clickIcon)=\"onClickExpandCollapse($event)\"></app-expand-collapse-icon>\n\n <span [ngClass]=\"col.customCssClass\" [title]=\"cellDisplayValue\">{{ cellDisplayValue }}</span>\n </div>\n</ng-container>\n\n<ng-container\n *ngTemplateOutlet=\"col.rendererTemplate; context: { $implicit: { cellDisplayValue: cellDisplayValue, row: row, col: col } }\"></ng-container>", styles: [".expandCollapse{display:inline-block;width:10px}.expandCollapse+.value{margin-left:5px}.shift{display:inline-block}.mat-cell,.mat-header-cell{flex:1;word-wrap:break-word;font-family:Proxima-Nova-Regular,arial,sans-serif!important;font-size:14px;color:#000;padding-right:10px}.mat-cell div{display:inline-block}.mat-cell.first-cell{min-width:280px}.mat-cell.checkboxRow{max-width:40px}.mat-cell a{font-family:Proxima-Nova-Regular,arial,sans-serif!important;font-size:14px;color:#000}.drag-column{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px}.data-max-width{max-width:170px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"] }]
52
+ }], propDecorators: { row: [{
53
+ type: Input
54
+ }], rowIndex: [{
55
+ type: Input
56
+ }], columnIndex: [{
57
+ type: Input
58
+ }], col: [{
59
+ type: Input
60
+ }], gridOptions: [{
61
+ type: Input
62
+ }], isFirstVisibleCol: [{
63
+ type: Input
64
+ }], isTreeGrid: [{
65
+ type: Input
66
+ }], rowDepth: [{
67
+ type: Input
68
+ }], hasExpandCollapse: [{
69
+ type: Input
70
+ }], isRowExpanded: [{
71
+ type: Input
72
+ }], changeExpandCollapse: [{
73
+ type: Output
74
+ }] } });
75
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1jb2wtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLWNvbC9kYXRhLWNvbC12aWV3L2RhdGEtY29sLXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2RhdGEtdGFibGUvZGF0YS1jb2wvZGF0YS1jb2wtdmlldy9kYXRhLWNvbC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFaEcsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDBEQUEwRCxDQUFDO0FBR3ZGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBDQUEwQyxDQUFDOzs7OztBQVVoRixNQUFNLE9BQU8sb0JBQXFCLFNBQVEsb0JBQW9CO0lBUDlEOztRQW9CNEIseUJBQW9CLEdBQTBCLElBQUksWUFBWSxFQUFFLENBQUM7UUFFMUUsb0JBQWUsR0FBRyxFQUFFLENBQUM7UUFDckIsdUJBQWtCLEdBQUcsQ0FBQyxDQUFDO0tBMEN6QztJQXhDQyxJQUFXLGdCQUFnQjtRQUV6QixJQUFJLFFBQVEsR0FBc0IsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUUvRCxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDO1lBQzdCLFFBQVEsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ3hCLENBQUM7UUFFRCxNQUFNLE1BQU0sR0FBRyxRQUFRLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1lBQ2hDLElBQUksV0FBVyxHQUFVLEdBQUcsQ0FBQztZQUM3QixJQUFJLElBQUksQ0FBQyxHQUFHLENBQUMsU0FBUyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxFQUFFLENBQUM7Z0JBQ2xFLFdBQVcsR0FBRyxJQUFJLENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxTQUFTLEVBQUUsR0FBRyxDQUFDLENBQUM7WUFDbkUsQ0FBQztZQUNELE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUN2QyxDQUFDLENBQUMsQ0FBQztRQUNILE1BQU0sU0FBUyxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDcEMsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksS0FBSyxXQUFXLENBQUMsSUFBSSxJQUFJLFNBQVMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3BGLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7SUFDekQsQ0FBQztJQUVNLHFCQUFxQixDQUFDLFlBQXFCO1FBQ2hELElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDL0MsQ0FBQztJQUVELElBQVcsU0FBUztRQUNsQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1lBQzNCLE9BQU8sSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsZUFBZSxDQUFDO1FBQzlDLENBQUM7UUFFRCxPQUFPLElBQUksQ0FBQyxrQkFBa0IsQ0FBQztJQUNqQyxDQUFDO0lBR0QsSUFBVyxlQUFlO1FBQ3RCLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsRUFBRyxDQUFDO0lBQ3pGLENBQUM7SUFFTyxhQUFhLENBQUMsR0FBRztRQUN2QixPQUFPLENBQUMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxNQUFNLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUNsRCxDQUFDOytHQXpEVSxvQkFBb0I7bUdBQXBCLG9CQUFvQiw2WUFGcEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQyxpRENibkYsaXRCQWE4STs7NEZERWpJLG9CQUFvQjtrQkFQaEMsU0FBUzsrQkFDRSx1Q0FBdUMsbUJBR2hDLHVCQUF1QixDQUFDLE1BQU0sYUFDcEMsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLHNCQUFzQixFQUFFLENBQUM7OEJBR3hELEdBQUc7c0JBQTNCLEtBQUs7Z0JBQ21CLFFBQVE7c0JBQWhDLEtBQUs7Z0JBQ21CLFdBQVc7c0JBQW5DLEtBQUs7Z0JBQ21CLEdBQUc7c0JBQTNCLEtBQUs7Z0JBQ21CLFdBQVc7c0JBQW5DLEtBQUs7Z0JBQ1UsaUJBQWlCO3NCQUFoQyxLQUFLO2dCQUNVLFVBQVU7c0JBQXpCLEtBQUs7Z0JBQ1UsUUFBUTtzQkFBdkIsS0FBSztnQkFDVSxpQkFBaUI7c0JBQWhDLEtBQUs7Z0JBQ1UsYUFBYTtzQkFBNUIsS0FBSztnQkFHb0Isb0JBQW9CO3NCQUE3QyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCYXNpYyB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uL21vZHVsZXMvdWkta2l0L3R5cGVzL2Jhc2ljLnR5cGUnO1xuaW1wb3J0IHsgQ29sdW1uVHlwZXMgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9tb2R1bGVzL3VpLWtpdC9lbnVtcy9jb2x1bW4tdHlwZXMuZW51bSc7XG5pbXBvcnQgeyBTZWxlY3RPcHRpb25WYWx1ZSB9IGZyb20gJy4uLy4uLy4uLy4uL3R5cGVzL3NlbGVjdC50eXBlJztcbmltcG9ydCB7IEdyaWRPcHRpb25zLCBJRGF0YVRhYmxlQ29sdW1uLCBJRGF0YVRhYmxlUm93IH0gZnJvbSAnLi4vLi4vLi4vLi4vaW50ZXJmYWNlcy9kYXRhLXRhYmxlLmludGVyZmFjZSc7XG5pbXBvcnQgeyBCYXNlRGF0YUNvbENvbXBvbmVudCB9IGZyb20gJy4uL2Jhc2UtZGF0YS1jb2wvYmFzZS1kYXRhLWNvbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgSUtleVZhbHVlIH0gZnJvbSAnaWRwLWFwcHMtc2hhcmVkLXVpL21vZHVsZXMvdWkta2l0L2ludGVyZmFjZXMvZ2VuZXJpYy5pbnRlcmZhY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtZGF0YS1jb2wtdmlldyxbYXBwLWRhdGEtY29sLXZpZXddJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGEtY29sLXZpZXcuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRhLWNvbC12aWV3LmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IEJhc2VEYXRhQ29sQ29tcG9uZW50LCB1c2VFeGlzdGluZzogRGF0YUNvbFZpZXdDb21wb25lbnQgfV0sXG59KVxuZXhwb3J0IGNsYXNzIERhdGFDb2xWaWV3Q29tcG9uZW50IGV4dGVuZHMgQmFzZURhdGFDb2xDb21wb25lbnQge1xuICBASW5wdXQoKSBwdWJsaWMgb3ZlcnJpZGUgcm93OiBJRGF0YVRhYmxlUm93O1xuICBASW5wdXQoKSBwdWJsaWMgb3ZlcnJpZGUgcm93SW5kZXg6IG51bWJlcjtcbiAgQElucHV0KCkgcHVibGljIG92ZXJyaWRlIGNvbHVtbkluZGV4OiBudW1iZXI7XG4gIEBJbnB1dCgpIHB1YmxpYyBvdmVycmlkZSBjb2w6IElEYXRhVGFibGVDb2x1bW47XG4gIEBJbnB1dCgpIHB1YmxpYyBvdmVycmlkZSBncmlkT3B0aW9uczogR3JpZE9wdGlvbnM7XG4gIEBJbnB1dCgpIHB1YmxpYyBpc0ZpcnN0VmlzaWJsZUNvbDogYm9vbGVhbjtcbiAgQElucHV0KCkgcHVibGljIGlzVHJlZUdyaWQ6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHB1YmxpYyByb3dEZXB0aDogbnVtYmVyO1xuICBASW5wdXQoKSBwdWJsaWMgaGFzRXhwYW5kQ29sbGFwc2U6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHB1YmxpYyBpc1Jvd0V4cGFuZGVkOiBib29sZWFuO1xuXG5cbiAgQE91dHB1dCgpIHB1YmxpYyBvdmVycmlkZSBjaGFuZ2VFeHBhbmRDb2xsYXBzZTogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgVFJFRV9TSElGVF9TVEVQID0gMTU7XG4gIHByaXZhdGUgcmVhZG9ubHkgTk9fVFJFRV9TSElGVF9TVEVQID0gMDtcblxuICBwdWJsaWMgZ2V0IGNlbGxEaXNwbGF5VmFsdWUoKTogc3RyaW5nIHtcbiAgICBcbiAgICBsZXQgY29sVmFsdWU6IFNlbGVjdE9wdGlvblZhbHVlID0gdGhpcy5yb3cuZGF0YVt0aGlzLmNvbC5wcm9wXTtcblxuICAgIGlmICghQXJyYXkuaXNBcnJheShjb2xWYWx1ZSkpIHtcbiAgICAgIGNvbFZhbHVlID0gW2NvbFZhbHVlXTtcbiAgICB9XG5cbiAgICBjb25zdCB2YWx1ZXMgPSBjb2xWYWx1ZS5tYXAodmFsID0+IHtcbiAgICAgIGxldCByZXR1cm5WYWx1ZTogQmFzaWMgPSB2YWw7XG4gICAgICBpZiAodGhpcy5jb2wuY29uc3RhbnRzICYmICF0aGlzLmlzRW1wdHlPYmplY3QodGhpcy5jb2wuY29uc3RhbnRzKSkge1xuICAgICAgICByZXR1cm5WYWx1ZSA9IHRoaXMuZmluZENlbGxEaXNwbGF5VmFsdWUodGhpcy5jb2wuY29uc3RhbnRzLCB2YWwpO1xuICAgICAgfVxuICAgICAgcmV0dXJuIHRoaXMuZm9ybWF0VmFsdWUocmV0dXJuVmFsdWUpO1xuICAgIH0pO1xuICAgIGNvbnN0IG5ld1ZhbHVlcyA9IHZhbHVlcy5qb2luKCcsICcpO1xuICAgIHJldHVybiB0aGlzLmNvbC50eXBlID09PSBDb2x1bW5UeXBlcy5EYXRlICYmIG5ld1ZhbHVlcyAmJiAhaXNOYU4oTnVtYmVyKG5ld1ZhbHVlcykpID9cbiAgICAgbmV3IERhdGUoTnVtYmVyKG5ld1ZhbHVlcykpLnRvSVNPU3RyaW5nKCkgOiBuZXdWYWx1ZXM7XG4gIH1cblxuICBwdWJsaWMgb25DbGlja0V4cGFuZENvbGxhcHNlKHNob3VsZEV4cGFuZDogYm9vbGVhbik6IHZvaWQge1xuICAgIHRoaXMuY2hhbmdlRXhwYW5kQ29sbGFwc2UuZW1pdChzaG91bGRFeHBhbmQpO1xuICB9XG5cbiAgcHVibGljIGdldCB0cmVlU2hpZnQoKTogbnVtYmVyIHtcbiAgICBpZiAodGhpcy5pc0ZpcnN0VmlzaWJsZUNvbCkge1xuICAgICAgcmV0dXJuIHRoaXMucm93RGVwdGggKiB0aGlzLlRSRUVfU0hJRlRfU1RFUDtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcy5OT19UUkVFX1NISUZUX1NURVA7XG4gIH1cblxuICBcbiAgcHVibGljIGdldCBnZXRXcmFwcGVyU3R5bGUoKTogSUtleVZhbHVlIHtcbiAgICAgIHJldHVybiB0aGlzLmdyaWRPcHRpb25zLmN1c3RvbUNvbHVtblN0eWxlID8gdGhpcy5ncmlkT3B0aW9ucy5jdXN0b21Db2x1bW5TdHlsZSA6IHsgfTtcbiAgfVxuXG4gIHByaXZhdGUgaXNFbXB0eU9iamVjdChvYmopOiBib29sZWFuIHtcbiAgICByZXR1cm4gKG9iaiAmJiAoT2JqZWN0LmtleXMob2JqKS5sZW5ndGggPT09IDApKTtcbiAgfVxufVxuIiwiPG5nLWNvbnRhaW5lcj5cbiAgPGRpdiAqbmdJZj1cIiFjb2wucmVuZGVyZXJUZW1wbGF0ZVwiIFtuZ1N0eWxlXT1cImdldFdyYXBwZXJTdHlsZVwiXG4gICAgW25nQ2xhc3NdPVwieyAnZGF0YS1tYXgtd2lkdGgnOiBncmlkT3B0aW9ucy5maXhlZFdpZHRoRGF0YSB9XCI+XG4gICAgPGRpdiBjbGFzcz1cInNoaWZ0XCIgW25nU3R5bGVdPVwieyAnd2lkdGgucHgnOiB0cmVlU2hpZnQgfVwiPjwvZGl2PlxuXG4gICAgPGFwcC1leHBhbmQtY29sbGFwc2UtaWNvbiAqbmdJZj1cImhhc0V4cGFuZENvbGxhcHNlXCIgY2xhc3M9XCJleHBhbmRDb2xsYXBzZVwiIFtpc0V4cGFuZGVkXT1cImlzUm93RXhwYW5kZWRcIlxuICAgICAgKGNsaWNrSWNvbik9XCJvbkNsaWNrRXhwYW5kQ29sbGFwc2UoJGV2ZW50KVwiPjwvYXBwLWV4cGFuZC1jb2xsYXBzZS1pY29uPlxuXG4gICAgPHNwYW4gW25nQ2xhc3NdPVwiY29sLmN1c3RvbUNzc0NsYXNzXCIgW3RpdGxlXT1cImNlbGxEaXNwbGF5VmFsdWVcIj57eyBjZWxsRGlzcGxheVZhbHVlIH19PC9zcGFuPlxuICA8L2Rpdj5cbjwvbmctY29udGFpbmVyPlxuXG48bmctY29udGFpbmVyXG4gICpuZ1RlbXBsYXRlT3V0bGV0PVwiY29sLnJlbmRlcmVyVGVtcGxhdGU7IGNvbnRleHQ6IHsgJGltcGxpY2l0OiB7IGNlbGxEaXNwbGF5VmFsdWU6IGNlbGxEaXNwbGF5VmFsdWUsIHJvdzogcm93LCBjb2w6IGNvbCB9IH1cIj48L25nLWNvbnRhaW5lcj4iXX0=