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,16 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "../accordion.directive";
4
+ import * as i2 from "@angular/common";
5
+ export class AccordionContentComponent {
6
+ constructor(accordion) {
7
+ this.accordion = accordion;
8
+ }
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccordionContentComponent, deps: [{ token: i1.AccordionDirective }], target: i0.ɵɵFactoryTarget.Component }); }
10
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: AccordionContentComponent, selector: "app-accordion-content", ngImport: i0, template: "<ng-content *ngIf=\"accordion.isOpen\"></ng-content>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccordionContentComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'app-accordion-content', template: "<ng-content *ngIf=\"accordion.isOpen\"></ng-content>\n" }]
15
+ }], ctorParameters: () => [{ type: i1.AccordionDirective }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLWNvbnRlbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2FjY29yZGlvbi9hY2NvcmRpb24tY29udGVudC9hY2NvcmRpb24tY29udGVudC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvYWNjb3JkaW9uL2FjY29yZGlvbi1jb250ZW50L2FjY29yZGlvbi1jb250ZW50LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7QUFRMUMsTUFBTSxPQUFPLHlCQUF5QjtJQUNwQyxZQUFtQixTQUE2QjtRQUE3QixjQUFTLEdBQVQsU0FBUyxDQUFvQjtJQUFJLENBQUM7K0dBRDFDLHlCQUF5QjttR0FBekIseUJBQXlCLDZEQ1J0Qyx3REFDQTs7NEZET2EseUJBQXlCO2tCQUxyQyxTQUFTOytCQUNFLHVCQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWNjb3JkaW9uRGlyZWN0aXZlIH0gZnJvbSAnLi4vYWNjb3JkaW9uLmRpcmVjdGl2ZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1hY2NvcmRpb24tY29udGVudCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9hY2NvcmRpb24tY29udGVudC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2FjY29yZGlvbi1jb250ZW50LmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIEFjY29yZGlvbkNvbnRlbnRDb21wb25lbnQge1xuICBjb25zdHJ1Y3RvcihwdWJsaWMgYWNjb3JkaW9uOiBBY2NvcmRpb25EaXJlY3RpdmUpIHsgfVxufVxuIiwiPG5nLWNvbnRlbnQgKm5nSWY9XCJhY2NvcmRpb24uaXNPcGVuXCI+PC9uZy1jb250ZW50PlxuIl19
@@ -0,0 +1,30 @@
1
+ import { Directive, HostListener, HostBinding } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./accordion.directive";
4
+ export class AccordionTriggerDirective {
5
+ constructor(accordion) {
6
+ this.accordion = accordion;
7
+ this.cursor = 'pointer';
8
+ }
9
+ onClick() {
10
+ if (!this.accordion) {
11
+ return;
12
+ }
13
+ this.accordion.toggleOpen();
14
+ }
15
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccordionTriggerDirective, deps: [{ token: i1.AccordionDirective }], target: i0.ɵɵFactoryTarget.Directive }); }
16
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: AccordionTriggerDirective, selector: "[appAccordionTrigger]", host: { listeners: { "click": "onClick()" }, properties: { "style.cursor": "this.cursor" } }, ngImport: i0 }); }
17
+ }
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccordionTriggerDirective, decorators: [{
19
+ type: Directive,
20
+ args: [{
21
+ selector: '[appAccordionTrigger]',
22
+ }]
23
+ }], ctorParameters: () => [{ type: i1.AccordionDirective }], propDecorators: { cursor: [{
24
+ type: HostBinding,
25
+ args: ['style.cursor']
26
+ }], onClick: [{
27
+ type: HostListener,
28
+ args: ['click']
29
+ }] } });
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLXRyaWdnZXIuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2FjY29yZGlvbi9hY2NvcmRpb24tdHJpZ2dlci5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFNckUsTUFBTSxPQUFPLHlCQUF5QjtJQUtwQyxZQUFvQixTQUE2QjtRQUE3QixjQUFTLEdBQVQsU0FBUyxDQUFvQjtRQUZqQyxXQUFNLEdBQUcsU0FBUyxDQUFDO0lBR25DLENBQUM7SUFHTSxPQUFPO1FBQ1osSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQztZQUNwQixPQUFPO1FBQ1QsQ0FBQztRQUNELElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDOUIsQ0FBQzsrR0FkVSx5QkFBeUI7bUdBQXpCLHlCQUF5Qjs7NEZBQXpCLHlCQUF5QjtrQkFIckMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsdUJBQXVCO2lCQUNsQzt1RkFJaUIsTUFBTTtzQkFEckIsV0FBVzt1QkFBQyxjQUFjO2dCQU9wQixPQUFPO3NCQURiLFlBQVk7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSG9zdExpc3RlbmVyLCBIb3N0QmluZGluZyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWNjb3JkaW9uRGlyZWN0aXZlIH0gZnJvbSAnLi9hY2NvcmRpb24uZGlyZWN0aXZlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2FwcEFjY29yZGlvblRyaWdnZXJdJyxcbn0pXG5leHBvcnQgY2xhc3MgQWNjb3JkaW9uVHJpZ2dlckRpcmVjdGl2ZSB7XG5cbiAgQEhvc3RCaW5kaW5nKCdzdHlsZS5jdXJzb3InKVxuICBwdWJsaWMgcmVhZG9ubHkgY3Vyc29yID0gJ3BvaW50ZXInO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgYWNjb3JkaW9uOiBBY2NvcmRpb25EaXJlY3RpdmUpIHtcbiAgfVxuXG4gIEBIb3N0TGlzdGVuZXIoJ2NsaWNrJylcbiAgcHVibGljIG9uQ2xpY2soKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLmFjY29yZGlvbikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cbiAgICB0aGlzLmFjY29yZGlvbi50b2dnbGVPcGVuKCk7XG4gIH1cblxufVxuIl19
@@ -0,0 +1,19 @@
1
+ import { Directive } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class AccordionDirective {
4
+ constructor() {
5
+ this.isOpen = false;
6
+ }
7
+ toggleOpen() {
8
+ this.isOpen = !this.isOpen;
9
+ }
10
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccordionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
11
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: AccordionDirective, selector: "[appAccordion]", ngImport: i0 }); }
12
+ }
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccordionDirective, decorators: [{
14
+ type: Directive,
15
+ args: [{
16
+ selector: '[appAccordion]',
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9hY2NvcmRpb24vYWNjb3JkaW9uLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUsxQyxNQUFNLE9BQU8sa0JBQWtCO0lBSC9CO1FBS1MsV0FBTSxHQUFHLEtBQUssQ0FBQztLQUt2QjtJQUhRLFVBQVU7UUFDZixJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUM3QixDQUFDOytHQU5VLGtCQUFrQjttR0FBbEIsa0JBQWtCOzs0RkFBbEIsa0JBQWtCO2tCQUg5QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxnQkFBZ0I7aUJBQzNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1thcHBBY2NvcmRpb25dJyxcbn0pXG5leHBvcnQgY2xhc3MgQWNjb3JkaW9uRGlyZWN0aXZlIHtcblxuICBwdWJsaWMgaXNPcGVuID0gZmFsc2U7XG5cbiAgcHVibGljIHRvZ2dsZU9wZW4oKTogdm9pZCB7XG4gICAgdGhpcy5pc09wZW4gPSAhdGhpcy5pc09wZW47XG4gIH1cbn1cbiJdfQ==
@@ -0,0 +1,53 @@
1
+ import { Component } from '@angular/core';
2
+ import { NavigationStart } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "idp-apps-shared-ui/modules/ui-kit/components/banner/banner.service";
5
+ import * as i2 from "@angular/router";
6
+ import * as i3 from "@angular/common";
7
+ import * as i4 from "@angular/material/icon";
8
+ import * as i5 from "@angular/flex-layout/flex";
9
+ import * as i6 from "@angular/flex-layout/extended";
10
+ export class BannerComponent {
11
+ constructor(bannerService, router) {
12
+ this.bannerService = bannerService;
13
+ this.router = router;
14
+ }
15
+ ngOnInit() {
16
+ this.router.events
17
+ .subscribe((event) => {
18
+ if (event instanceof NavigationStart) {
19
+ this.bannerStack = [];
20
+ this.bannerService.bannerStack = [];
21
+ }
22
+ });
23
+ this.bannerService.latestBannerStack$
24
+ .subscribe(banners => {
25
+ this.bannerStack = banners;
26
+ banners.forEach(ban => {
27
+ if (ban.config && ban.config.closeAfterInMs) {
28
+ setTimeout(() => {
29
+ this.close(ban);
30
+ }, ban.config.closeAfterInMs);
31
+ }
32
+ else if (ban.type !== 'error') {
33
+ setTimeout(() => {
34
+ this.close(ban);
35
+ }, 5000);
36
+ }
37
+ });
38
+ });
39
+ }
40
+ close(banner) {
41
+ this.bannerService.closeById(banner.id);
42
+ if (banner.config && banner.config.afterCloseFunc) {
43
+ banner.config.afterCloseFunc(banner);
44
+ }
45
+ }
46
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BannerComponent, deps: [{ token: i1.BannerService }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component }); }
47
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: BannerComponent, selector: "app-banner", ngImport: i0, template: "<div fxLayout=\"row\" fxLayoutAlign=\"start center\" \n class=\"background alert animate__animated animate__fadeInDown\" \n *ngFor=\"let banner of bannerStack\" \n [ngStyle]=\"{'background': banner.bgColor}\">\n <div align=\"center\" class=\"justify-content-center px-3\" fxFlex [ngStyle]=\"{'color': banner.type === 'info' ? '#404040' : '#FFF'}\">\n <span><i class=\"fas {{banner.icon}} mr-2\"></i></span>{{banner.message}}\n </div>\n <mat-icon (click)=\"close(banner)\" class=\"mr-20 cursor-pointer close-icon\" [ngStyle]=\"{'color': banner.type === 'info' ? '#595959' : '#FFF'}\">close</mat-icon>\n</div>\n", styles: [".background{font-size:16px;box-sizing:border-box;min-height:48px;border:1px solid #D9D9D9;margin-bottom:20px;box-shadow:0 4px 24px #00000029}.alert{position:relative}.close-icon{position:absolute;top:10px;right:10px}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i5.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i6.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"] }] }); }
48
+ }
49
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BannerComponent, decorators: [{
50
+ type: Component,
51
+ args: [{ selector: 'app-banner', template: "<div fxLayout=\"row\" fxLayoutAlign=\"start center\" \n class=\"background alert animate__animated animate__fadeInDown\" \n *ngFor=\"let banner of bannerStack\" \n [ngStyle]=\"{'background': banner.bgColor}\">\n <div align=\"center\" class=\"justify-content-center px-3\" fxFlex [ngStyle]=\"{'color': banner.type === 'info' ? '#404040' : '#FFF'}\">\n <span><i class=\"fas {{banner.icon}} mr-2\"></i></span>{{banner.message}}\n </div>\n <mat-icon (click)=\"close(banner)\" class=\"mr-20 cursor-pointer close-icon\" [ngStyle]=\"{'color': banner.type === 'info' ? '#595959' : '#FFF'}\">close</mat-icon>\n</div>\n", styles: [".background{font-size:16px;box-sizing:border-box;min-height:48px;border:1px solid #D9D9D9;margin-bottom:20px;box-shadow:0 4px 24px #00000029}.alert{position:relative}.close-icon{position:absolute;top:10px;right:10px}\n"] }]
52
+ }], ctorParameters: () => [{ type: i1.BannerService }, { type: i2.Router }] });
53
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFubmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9iYW5uZXIvYmFubmVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9iYW5uZXIvYmFubmVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDbEQsT0FBTyxFQUFFLGVBQWUsRUFBVSxNQUFNLGlCQUFpQixDQUFDOzs7Ozs7OztBQVExRCxNQUFNLE9BQU8sZUFBZTtJQUcxQixZQUNVLGFBQTRCLEVBQzVCLE1BQWM7UUFEZCxrQkFBYSxHQUFiLGFBQWEsQ0FBZTtRQUM1QixXQUFNLEdBQU4sTUFBTSxDQUFRO0lBQ3BCLENBQUM7SUFFRSxRQUFRO1FBQ2IsSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNO2FBQ2YsU0FBUyxDQUNSLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDUixJQUFJLEtBQUssWUFBWSxlQUFlLEVBQUUsQ0FBQztnQkFDckMsSUFBSSxDQUFDLFdBQVcsR0FBRyxFQUFFLENBQUM7Z0JBQ3RCLElBQUksQ0FBQyxhQUFhLENBQUMsV0FBVyxHQUFHLEVBQUUsQ0FBQztZQUN0QyxDQUFDO1FBQ0gsQ0FBQyxDQUFDLENBQUM7UUFDUCxJQUFJLENBQUMsYUFBYSxDQUFDLGtCQUFrQjthQUNsQyxTQUFTLENBQUMsT0FBTyxDQUFDLEVBQUU7WUFDbkIsSUFBSSxDQUFDLFdBQVcsR0FBRyxPQUFPLENBQUM7WUFDM0IsT0FBTyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRTtnQkFDcEIsSUFBSSxHQUFHLENBQUMsTUFBTSxJQUFJLEdBQUcsQ0FBQyxNQUFNLENBQUMsY0FBYyxFQUFFLENBQUM7b0JBQzVDLFVBQVUsQ0FBQyxHQUFHLEVBQUU7d0JBQ2QsSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztvQkFDbEIsQ0FBQyxFQUFFLEdBQUcsQ0FBQyxNQUFNLENBQUMsY0FBYyxDQUFDLENBQUM7Z0JBQ2hDLENBQUM7cUJBQU0sSUFBSSxHQUFHLENBQUMsSUFBSSxLQUFLLE9BQU8sRUFBRSxDQUFDO29CQUNoQyxVQUFVLENBQUMsR0FBRyxFQUFFO3dCQUNkLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUM7b0JBQ2xCLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQztnQkFDWCxDQUFDO1lBRUgsQ0FBQyxDQUFDLENBQUM7UUFDTCxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFTSxLQUFLLENBQUMsTUFBZTtRQUMxQixJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDeEMsSUFBSSxNQUFNLENBQUMsTUFBTSxJQUFJLE1BQU0sQ0FBQyxNQUFNLENBQUMsY0FBYyxFQUFFLENBQUM7WUFDbEQsTUFBTSxDQUFDLE1BQU0sQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDdkMsQ0FBQztJQUNILENBQUM7K0dBeENVLGVBQWU7bUdBQWYsZUFBZSxrRENUNUIsNG5CQVNBOzs0RkRBYSxlQUFlO2tCQUwzQixTQUFTOytCQUNFLFlBQVkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTmF2aWdhdGlvblN0YXJ0LCBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHsgQmFubmVyU2VydmljZSwgSUJhbm5lciB9IGZyb20gJ2lkcC1hcHBzLXNoYXJlZC11aS9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2Jhbm5lci9iYW5uZXIuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1iYW5uZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vYmFubmVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYmFubmVyLmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIEJhbm5lckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIHB1YmxpYyBiYW5uZXJTdGFjazogSUJhbm5lcltdO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgYmFubmVyU2VydmljZTogQmFubmVyU2VydmljZSxcbiAgICBwcml2YXRlIHJvdXRlcjogUm91dGVyLFxuICApIHsgfVxuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnJvdXRlci5ldmVudHNcbiAgICAgIC5zdWJzY3JpYmUoXG4gICAgICAgIChldmVudCkgPT4ge1xuICAgICAgICAgIGlmIChldmVudCBpbnN0YW5jZW9mIE5hdmlnYXRpb25TdGFydCkge1xuICAgICAgICAgICAgdGhpcy5iYW5uZXJTdGFjayA9IFtdO1xuICAgICAgICAgICAgdGhpcy5iYW5uZXJTZXJ2aWNlLmJhbm5lclN0YWNrID0gW107XG4gICAgICAgICAgfVxuICAgICAgICB9KTtcbiAgICB0aGlzLmJhbm5lclNlcnZpY2UubGF0ZXN0QmFubmVyU3RhY2skXG4gICAgICAuc3Vic2NyaWJlKGJhbm5lcnMgPT4ge1xuICAgICAgICB0aGlzLmJhbm5lclN0YWNrID0gYmFubmVycztcbiAgICAgICAgYmFubmVycy5mb3JFYWNoKGJhbiA9PiB7XG4gICAgICAgICAgaWYgKGJhbi5jb25maWcgJiYgYmFuLmNvbmZpZy5jbG9zZUFmdGVySW5Ncykge1xuICAgICAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgIHRoaXMuY2xvc2UoYmFuKTtcbiAgICAgICAgICAgIH0sIGJhbi5jb25maWcuY2xvc2VBZnRlckluTXMpO1xuICAgICAgICAgIH0gZWxzZSBpZiAoYmFuLnR5cGUgIT09ICdlcnJvcicpIHtcbiAgICAgICAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgICB0aGlzLmNsb3NlKGJhbik7XG4gICAgICAgICAgICB9LCA1MDAwKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgfSk7XG4gICAgICB9KTtcbiAgfVxuXG4gIHB1YmxpYyBjbG9zZShiYW5uZXI6IElCYW5uZXIpOiB2b2lkIHtcbiAgICB0aGlzLmJhbm5lclNlcnZpY2UuY2xvc2VCeUlkKGJhbm5lci5pZCk7XG4gICAgaWYgKGJhbm5lci5jb25maWcgJiYgYmFubmVyLmNvbmZpZy5hZnRlckNsb3NlRnVuYykge1xuICAgICAgYmFubmVyLmNvbmZpZy5hZnRlckNsb3NlRnVuYyhiYW5uZXIpO1xuICAgIH1cbiAgfVxuXG59XG4iLCI8ZGl2IGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cInN0YXJ0IGNlbnRlclwiIFxuICAgIGNsYXNzPVwiYmFja2dyb3VuZCBhbGVydCBhbmltYXRlX19hbmltYXRlZCBhbmltYXRlX19mYWRlSW5Eb3duXCIgXG4gICAgKm5nRm9yPVwibGV0IGJhbm5lciBvZiBiYW5uZXJTdGFja1wiIFxuICAgIFtuZ1N0eWxlXT1cInsnYmFja2dyb3VuZCc6IGJhbm5lci5iZ0NvbG9yfVwiPlxuICAgIDxkaXYgYWxpZ249XCJjZW50ZXJcIiBjbGFzcz1cImp1c3RpZnktY29udGVudC1jZW50ZXIgcHgtM1wiIGZ4RmxleCBbbmdTdHlsZV09XCJ7J2NvbG9yJzogYmFubmVyLnR5cGUgPT09ICdpbmZvJyA/ICcjNDA0MDQwJyA6ICcjRkZGJ31cIj5cbiAgICAgICAgPHNwYW4+PGkgY2xhc3M9XCJmYXMge3tiYW5uZXIuaWNvbn19IG1yLTJcIj48L2k+PC9zcGFuPnt7YmFubmVyLm1lc3NhZ2V9fVxuICAgIDwvZGl2PlxuICAgIDxtYXQtaWNvbiAoY2xpY2spPVwiY2xvc2UoYmFubmVyKVwiIGNsYXNzPVwibXItMjAgY3Vyc29yLXBvaW50ZXIgY2xvc2UtaWNvblwiIFtuZ1N0eWxlXT1cInsnY29sb3InOiBiYW5uZXIudHlwZSA9PT0gJ2luZm8nID8gJyM1OTU5NTknIDogJyNGRkYnfVwiPmNsb3NlPC9tYXQtaWNvbj5cbjwvZGl2PlxuIl19
@@ -0,0 +1,64 @@
1
+ import { Injectable } from '@angular/core';
2
+ import { Subject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export class BannerService {
5
+ constructor() {
6
+ this.latestBannerStack$ = new Subject();
7
+ this.bannerStack = [];
8
+ }
9
+ info(message, config) {
10
+ if (config && config.returnBanner) {
11
+ return this.addOnBannerStack(message, 'info', 'fa-exclamation-circle', '#ffffff', config);
12
+ }
13
+ return this.addOnBannerStack(message, 'info', 'fa-exclamation-circle', '#ffffff', config);
14
+ }
15
+ success(message, config) {
16
+ if (config && config.returnBanner) {
17
+ return this.addOnBannerStack(message, 'success', 'fa-check-circle', '#00c221', config);
18
+ }
19
+ this.addOnBannerStack(message, 'success', 'fa-check-circle', '#00c221', config);
20
+ }
21
+ warning(message, config) {
22
+ if (config && config.returnBanner) {
23
+ return this.addOnBannerStack(message, 'warning', 'fa-exclamation-triangle', '#ff9300', config);
24
+ }
25
+ this.addOnBannerStack(message, 'warning', 'fa-exclamation-triangle', '#ff9300', config);
26
+ }
27
+ error(message, config) {
28
+ if (config && config.returnBanner) {
29
+ return this.addOnBannerStack(message, 'error', 'fa-minus-circle', '#e20000', config);
30
+ }
31
+ this.addOnBannerStack(message, 'error', 'fa-minus-circle', '#e20000', config);
32
+ }
33
+ closeById(id) {
34
+ const idx = this.bannerStack.findIndex(ban => ban.id === id);
35
+ if (idx > -1) {
36
+ this.bannerStack.splice(idx, 1);
37
+ }
38
+ }
39
+ addOnBannerStack(message, type, icon, bgColor, config) {
40
+ const banner = {
41
+ id: this.bannerStack.length + 1,
42
+ message: message,
43
+ type: type,
44
+ icon: icon,
45
+ bgColor: bgColor,
46
+ config: config,
47
+ };
48
+ this.bannerStack.unshift(banner);
49
+ this.latestBannerStack$.next(this.bannerStack);
50
+ if (config && config.returnBanner) {
51
+ return banner;
52
+ }
53
+ return [];
54
+ }
55
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BannerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
56
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BannerService, providedIn: 'root' }); }
57
+ }
58
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BannerService, decorators: [{
59
+ type: Injectable,
60
+ args: [{
61
+ providedIn: 'root',
62
+ }]
63
+ }] });
64
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFubmVyLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvYmFubmVyL2Jhbm5lci5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQzs7QUFtQi9CLE1BQU0sT0FBTyxhQUFhO0lBSDFCO1FBSVMsdUJBQWtCLEdBQUcsSUFBSSxPQUFPLEVBQWEsQ0FBQztRQUM5QyxnQkFBVyxHQUFjLEVBQUUsQ0FBQztLQXlEcEM7SUF2RFEsSUFBSSxDQUFDLE9BQWUsRUFBRSxNQUFzQjtRQUNqRCxJQUFJLE1BQU0sSUFBSSxNQUFNLENBQUMsWUFBWSxFQUFFLENBQUM7WUFDbEMsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxFQUFFLE1BQU0sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxDQUFDLENBQUM7UUFDNUYsQ0FBQztRQUVELE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQzVGLENBQUM7SUFFTSxPQUFPLENBQUMsT0FBZSxFQUFFLE1BQXNCO1FBQ3BELElBQUksTUFBTSxJQUFJLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUNsQyxPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLFNBQVMsRUFBRSxNQUFNLENBQUMsQ0FBQztRQUN6RixDQUFDO1FBRUQsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUUsU0FBUyxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ2xGLENBQUM7SUFFTSxPQUFPLENBQUMsT0FBZSxFQUFFLE1BQXNCO1FBQ3BELElBQUksTUFBTSxJQUFJLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUNsQyxPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLEVBQUUsU0FBUyxFQUFFLHlCQUF5QixFQUFFLFNBQVMsRUFBRSxNQUFNLENBQUMsQ0FBQztRQUNqRyxDQUFDO1FBRUQsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxTQUFTLEVBQUUseUJBQXlCLEVBQUUsU0FBUyxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQzFGLENBQUM7SUFFTSxLQUFLLENBQUMsT0FBZSxFQUFFLE1BQXNCO1FBQ2xELElBQUksTUFBTSxJQUFJLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUNsQyxPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLEVBQUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFNBQVMsRUFBRSxNQUFNLENBQUMsQ0FBQztRQUN2RixDQUFDO1FBRUQsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsU0FBUyxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ2hGLENBQUM7SUFFTSxTQUFTLENBQUMsRUFBVTtRQUN6QixNQUFNLEdBQUcsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUM7UUFDN0QsSUFBSSxHQUFHLEdBQUcsQ0FBQyxDQUFDLEVBQUUsQ0FBQztZQUNiLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNsQyxDQUFDO0lBQ0gsQ0FBQztJQUVPLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLE9BQU8sRUFBRSxNQUFxQjtRQUMxRSxNQUFNLE1BQU0sR0FBRztZQUNiLEVBQUUsRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLE1BQU0sR0FBRyxDQUFDO1lBQy9CLE9BQU8sRUFBRSxPQUFPO1lBQ2hCLElBQUksRUFBRSxJQUFJO1lBQ1YsSUFBSSxFQUFFLElBQUk7WUFDVixPQUFPLEVBQUUsT0FBTztZQUNoQixNQUFNLEVBQUUsTUFBTTtTQUNmLENBQUM7UUFDRixJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUNqQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUMvQyxJQUFJLE1BQU0sSUFBSSxNQUFNLENBQUMsWUFBWSxFQUFFLENBQUM7WUFDbEMsT0FBYSxNQUFNLENBQUM7UUFDdEIsQ0FBQztRQUNELE9BQU8sRUFBRSxDQUFDO0lBQ1osQ0FBQzsrR0ExRFUsYUFBYTttSEFBYixhQUFhLGNBRlosTUFBTTs7NEZBRVAsYUFBYTtrQkFIekIsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdWJqZWN0IH0gZnJvbSAncnhqcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUJhbm5lckNvbmZpZyB7XG4gIGFmdGVyQ2xvc2VGdW5jPzogKGJhbm5lcjogSUJhbm5lcikgPT4gdm9pZDtcbiAgY2xvc2VBZnRlckluTXM/OiBudW1iZXI7XG4gIHJldHVybkJhbm5lcj86IGJvb2xlYW47XG59XG5leHBvcnQgaW50ZXJmYWNlIElCYW5uZXIge1xuICBpZDogbnVtYmVyO1xuICBtZXNzYWdlOiBzdHJpbmc7XG4gIHR5cGU6IHN0cmluZztcbiAgYmdDb2xvcjogc3RyaW5nO1xuICBpY29uOiBzdHJpbmc7XG4gIGNvbmZpZz86IElCYW5uZXJDb25maWc7XG59XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBCYW5uZXJTZXJ2aWNlIHtcbiAgcHVibGljIGxhdGVzdEJhbm5lclN0YWNrJCA9IG5ldyBTdWJqZWN0PElCYW5uZXJbXT4oKTtcbiAgcHVibGljIGJhbm5lclN0YWNrOiBJQmFubmVyW10gPSBbXTtcbiAgXG4gIHB1YmxpYyBpbmZvKG1lc3NhZ2U6IHN0cmluZywgY29uZmlnPzogSUJhbm5lckNvbmZpZyk6IElCYW5uZXJbXSB7XG4gICAgaWYgKGNvbmZpZyAmJiBjb25maWcucmV0dXJuQmFubmVyKSB7XG4gICAgICByZXR1cm4gdGhpcy5hZGRPbkJhbm5lclN0YWNrKG1lc3NhZ2UsICdpbmZvJywgJ2ZhLWV4Y2xhbWF0aW9uLWNpcmNsZScsICcjZmZmZmZmJywgY29uZmlnKTtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcy5hZGRPbkJhbm5lclN0YWNrKG1lc3NhZ2UsICdpbmZvJywgJ2ZhLWV4Y2xhbWF0aW9uLWNpcmNsZScsICcjZmZmZmZmJywgY29uZmlnKTtcbiAgfVxuXG4gIHB1YmxpYyBzdWNjZXNzKG1lc3NhZ2U6IHN0cmluZywgY29uZmlnPzogSUJhbm5lckNvbmZpZyk6IHZvaWQgfCBJQmFubmVyW10ge1xuICAgIGlmIChjb25maWcgJiYgY29uZmlnLnJldHVybkJhbm5lcikge1xuICAgICAgcmV0dXJuIHRoaXMuYWRkT25CYW5uZXJTdGFjayhtZXNzYWdlLCAnc3VjY2VzcycsICdmYS1jaGVjay1jaXJjbGUnLCAnIzAwYzIyMScsIGNvbmZpZyk7XG4gICAgfVxuXG4gICAgdGhpcy5hZGRPbkJhbm5lclN0YWNrKG1lc3NhZ2UsICdzdWNjZXNzJywgJ2ZhLWNoZWNrLWNpcmNsZScsICcjMDBjMjIxJywgY29uZmlnKTtcbiAgfVxuXG4gIHB1YmxpYyB3YXJuaW5nKG1lc3NhZ2U6IHN0cmluZywgY29uZmlnPzogSUJhbm5lckNvbmZpZyk6IHZvaWQgfCBJQmFubmVyW10ge1xuICAgIGlmIChjb25maWcgJiYgY29uZmlnLnJldHVybkJhbm5lcikge1xuICAgICAgcmV0dXJuIHRoaXMuYWRkT25CYW5uZXJTdGFjayhtZXNzYWdlLCAnd2FybmluZycsICdmYS1leGNsYW1hdGlvbi10cmlhbmdsZScsICcjZmY5MzAwJywgY29uZmlnKTtcbiAgICB9XG5cbiAgICB0aGlzLmFkZE9uQmFubmVyU3RhY2sobWVzc2FnZSwgJ3dhcm5pbmcnLCAnZmEtZXhjbGFtYXRpb24tdHJpYW5nbGUnLCAnI2ZmOTMwMCcsIGNvbmZpZyk7XG4gIH1cblxuICBwdWJsaWMgZXJyb3IobWVzc2FnZTogc3RyaW5nLCBjb25maWc/OiBJQmFubmVyQ29uZmlnKTogdm9pZCB8IElCYW5uZXJbXSB7XG4gICAgaWYgKGNvbmZpZyAmJiBjb25maWcucmV0dXJuQmFubmVyKSB7XG4gICAgICByZXR1cm4gdGhpcy5hZGRPbkJhbm5lclN0YWNrKG1lc3NhZ2UsICdlcnJvcicsICdmYS1taW51cy1jaXJjbGUnLCAnI2UyMDAwMCcsIGNvbmZpZyk7XG4gICAgfVxuXG4gICAgdGhpcy5hZGRPbkJhbm5lclN0YWNrKG1lc3NhZ2UsICdlcnJvcicsICdmYS1taW51cy1jaXJjbGUnLCAnI2UyMDAwMCcsIGNvbmZpZyk7XG4gIH1cblxuICBwdWJsaWMgY2xvc2VCeUlkKGlkOiBudW1iZXIpIHtcbiAgICBjb25zdCBpZHggPSB0aGlzLmJhbm5lclN0YWNrLmZpbmRJbmRleChiYW4gPT4gYmFuLmlkID09PSBpZCk7XG4gICAgaWYgKGlkeCA+IC0xKSB7XG4gICAgICB0aGlzLmJhbm5lclN0YWNrLnNwbGljZShpZHgsIDEpO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgYWRkT25CYW5uZXJTdGFjayhtZXNzYWdlLCB0eXBlLCBpY29uLCBiZ0NvbG9yLCBjb25maWc6IElCYW5uZXJDb25maWcpOiBJQmFubmVyW10ge1xuICAgIGNvbnN0IGJhbm5lciA9IHtcbiAgICAgIGlkOiB0aGlzLmJhbm5lclN0YWNrLmxlbmd0aCArIDEsXG4gICAgICBtZXNzYWdlOiBtZXNzYWdlLFxuICAgICAgdHlwZTogdHlwZSxcbiAgICAgIGljb246IGljb24sXG4gICAgICBiZ0NvbG9yOiBiZ0NvbG9yLFxuICAgICAgY29uZmlnOiBjb25maWcsXG4gICAgfTtcbiAgICB0aGlzLmJhbm5lclN0YWNrLnVuc2hpZnQoYmFubmVyKTtcbiAgICB0aGlzLmxhdGVzdEJhbm5lclN0YWNrJC5uZXh0KHRoaXMuYmFubmVyU3RhY2spO1xuICAgIGlmIChjb25maWcgJiYgY29uZmlnLnJldHVybkJhbm5lcikge1xuICAgICAgcmV0dXJuIDxhbnk+IGJhbm5lcjtcbiAgICB9XG4gICAgcmV0dXJuIFtdO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,25 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/router";
4
+ import * as i2 from "./service/breadcrumb.service";
5
+ import * as i3 from "@angular/common";
6
+ export class BreadcrumbsComponent {
7
+ constructor(router, breadCrumbService) {
8
+ this.router = router;
9
+ this.breadCrumbService = breadCrumbService;
10
+ }
11
+ crumbLinkClicked(index) {
12
+ this.breadCrumbService.removeBreadCrumbItems(index);
13
+ this.router.navigateByUrl(this.breadCrumbService.getRedirectionUrl(index), { skipLocationChange: false });
14
+ }
15
+ ngOnInit() {
16
+ this.breadCrumbItems = this.breadCrumbService.getBreadCrumbItems();
17
+ }
18
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BreadcrumbsComponent, deps: [{ token: i1.Router }, { token: i2.BreadCrumbService }], target: i0.ɵɵFactoryTarget.Component }); }
19
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: BreadcrumbsComponent, selector: "app-breadcrumbs", ngImport: i0, template: "<div class=\"breadcrumb-container\">\n <i class=\"fa-solid fa-house breadcrumb-home\"></i>\n <span>\n <i class=\"material-icons\">keyboard_arrow_right</i>\n </span>\n <nav aria-label=\"breadcrumb\">\n <ol class=\"breadcrumb\">\n <ng-container *ngFor=\"let item of breadCrumbItems; let i = index;\">\n <span *ngIf=\"i === breadCrumbItems.length - 1\" class=\"active\">\n {{ item.value }}\n </span>\n <ng-container *ngIf=\"i !== breadCrumbItems.length - 1\">\n <a (click)=\"crumbLinkClicked(i)\">\n {{ item.value }}\n </a>\n <span><i class=\"material-icons\">keyboard_arrow_right</i></span>\n </ng-container>\n </ng-container>\n </ol>\n </nav>\n</div>", styles: ["span>a{color:#42a5f5}.breadcrumb-container{padding:0;color:#6c6c6c}.breadcrumb-item.active{color:#090909!important;font-weight:600}.breadcrumb-container .breadcrumb{background:transparent;padding:0;margin:15px 0}.breadcrumb-container nav{display:inline-block}.breadcrumb-container i{color:#999;font-size:17px;position:relative;top:4px;padding:0 5px}.breadcrumb-home{top:1px!important}.active{font-weight:700}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
20
+ }
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BreadcrumbsComponent, decorators: [{
22
+ type: Component,
23
+ args: [{ selector: 'app-breadcrumbs', template: "<div class=\"breadcrumb-container\">\n <i class=\"fa-solid fa-house breadcrumb-home\"></i>\n <span>\n <i class=\"material-icons\">keyboard_arrow_right</i>\n </span>\n <nav aria-label=\"breadcrumb\">\n <ol class=\"breadcrumb\">\n <ng-container *ngFor=\"let item of breadCrumbItems; let i = index;\">\n <span *ngIf=\"i === breadCrumbItems.length - 1\" class=\"active\">\n {{ item.value }}\n </span>\n <ng-container *ngIf=\"i !== breadCrumbItems.length - 1\">\n <a (click)=\"crumbLinkClicked(i)\">\n {{ item.value }}\n </a>\n <span><i class=\"material-icons\">keyboard_arrow_right</i></span>\n </ng-container>\n </ng-container>\n </ol>\n </nav>\n</div>", styles: ["span>a{color:#42a5f5}.breadcrumb-container{padding:0;color:#6c6c6c}.breadcrumb-item.active{color:#090909!important;font-weight:600}.breadcrumb-container .breadcrumb{background:transparent;padding:0;margin:15px 0}.breadcrumb-container nav{display:inline-block}.breadcrumb-container i{color:#999;font-size:17px;position:relative;top:4px;padding:0 5px}.breadcrumb-home{top:1px!important}.active{font-weight:700}\n"] }]
24
+ }], ctorParameters: () => [{ type: i1.Router }, { type: i2.BreadCrumbService }] });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2JyZWFkY3J1bWJzL2JyZWFkY3J1bWJzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9icmVhZGNydW1icy9icmVhZGNydW1icy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOzs7OztBQVVsRCxNQUFNLE9BQU8sb0JBQW9CO0lBSS9CLFlBQW9CLE1BQWMsRUFDZCxpQkFBb0M7UUFEcEMsV0FBTSxHQUFOLE1BQU0sQ0FBUTtRQUNkLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBbUI7SUFBSSxDQUFDO0lBRXRELGdCQUFnQixDQUFDLEtBQWE7UUFDbkMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHFCQUFxQixDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3BELElBQUksQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsRUFBRSxFQUFFLGtCQUFrQixFQUFFLEtBQUssRUFBRSxDQUFDLENBQUM7SUFDNUcsQ0FBQztJQUVNLFFBQVE7UUFDYixJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO0lBQ3JFLENBQUM7K0dBZFUsb0JBQW9CO21HQUFwQixvQkFBb0IsdURDVmpDLDh1QkFvQk07OzRGRFZPLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IEJyZWFkQ3J1bWJTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlL2JyZWFkY3J1bWIuc2VydmljZSc7XG5pbXBvcnQgeyBCcmVhZENydW1iSXRlbSB9IGZyb20gJy4vbW9kZWwvYnJlYWRDcnVtYkl0ZW0nO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtYnJlYWRjcnVtYnMnLFxuICB0ZW1wbGF0ZVVybDogJy4vYnJlYWRjcnVtYnMuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9icmVhZGNydW1icy5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBCcmVhZGNydW1ic0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgcHVibGljIGJyZWFkQ3J1bWJJdGVtczogQXJyYXk8QnJlYWRDcnVtYkl0ZW0+O1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcm91dGVyOiBSb3V0ZXIsXG4gICAgICAgICAgICAgIHByaXZhdGUgYnJlYWRDcnVtYlNlcnZpY2U6IEJyZWFkQ3J1bWJTZXJ2aWNlKSB7IH1cblxuICBwdWJsaWMgY3J1bWJMaW5rQ2xpY2tlZChpbmRleDogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5icmVhZENydW1iU2VydmljZS5yZW1vdmVCcmVhZENydW1iSXRlbXMoaW5kZXgpO1xuICAgIHRoaXMucm91dGVyLm5hdmlnYXRlQnlVcmwodGhpcy5icmVhZENydW1iU2VydmljZS5nZXRSZWRpcmVjdGlvblVybChpbmRleCksIHsgc2tpcExvY2F0aW9uQ2hhbmdlOiBmYWxzZSB9KTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmJyZWFkQ3J1bWJJdGVtcyA9IHRoaXMuYnJlYWRDcnVtYlNlcnZpY2UuZ2V0QnJlYWRDcnVtYkl0ZW1zKCk7XG4gIH1cblxufVxuIiwiPGRpdiBjbGFzcz1cImJyZWFkY3J1bWItY29udGFpbmVyXCI+XG4gIDxpIGNsYXNzPVwiZmEtc29saWQgZmEtaG91c2UgYnJlYWRjcnVtYi1ob21lXCI+PC9pPlxuICA8c3Bhbj5cbiAgICA8aSBjbGFzcz1cIm1hdGVyaWFsLWljb25zXCI+a2V5Ym9hcmRfYXJyb3dfcmlnaHQ8L2k+XG4gIDwvc3Bhbj5cbiAgPG5hdiBhcmlhLWxhYmVsPVwiYnJlYWRjcnVtYlwiPlxuICAgIDxvbCBjbGFzcz1cImJyZWFkY3J1bWJcIj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGl0ZW0gb2YgYnJlYWRDcnVtYkl0ZW1zOyBsZXQgaSA9IGluZGV4O1wiPlxuICAgICAgICA8c3BhbiAqbmdJZj1cImkgPT09IGJyZWFkQ3J1bWJJdGVtcy5sZW5ndGggLSAxXCIgY2xhc3M9XCJhY3RpdmVcIj5cbiAgICAgICAgICB7eyBpdGVtLnZhbHVlIH19XG4gICAgICAgIDwvc3Bhbj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImkgIT09IGJyZWFkQ3J1bWJJdGVtcy5sZW5ndGggLSAxXCI+XG4gICAgICAgICAgPGEgKGNsaWNrKT1cImNydW1iTGlua0NsaWNrZWQoaSlcIj5cbiAgICAgICAgICAgIHt7IGl0ZW0udmFsdWUgfX1cbiAgICAgICAgICA8L2E+XG4gICAgICAgICAgPHNwYW4+PGkgY2xhc3M9XCJtYXRlcmlhbC1pY29uc1wiPmtleWJvYXJkX2Fycm93X3JpZ2h0PC9pPjwvc3Bhbj5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L29sPlxuICA8L25hdj5cbjwvZGl2PiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRDcnVtYkl0ZW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvYnJlYWRjcnVtYnMvbW9kZWwvYnJlYWRDcnVtYkl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgQnJlYWRDcnVtYkl0ZW0ge1xuICAgIGtleTogc3RyaW5nO1xuICAgIHZhbHVlOiBzdHJpbmc7XG59XG4iXX0=
@@ -0,0 +1,63 @@
1
+ import { Injectable, Inject } from '@angular/core';
2
+ import { LOCAL_STORAGE } from 'ngx-webstorage-service';
3
+ import { isUndefined } from '../../../../../core/utils/type-checks.utils';
4
+ import { CrumbServiceEnum } from '../utils/crumb-service.enum';
5
+ import * as i0 from "@angular/core";
6
+ export class BreadCrumbService {
7
+ constructor(storage) {
8
+ this.storage = storage;
9
+ this.breadCrumbItems = new Array();
10
+ }
11
+ getBreadCrumbItems() {
12
+ return this.breadCrumbItems;
13
+ }
14
+ initializeBreadCrumb() {
15
+ this.clearBreadCrumb();
16
+ }
17
+ clearBreadCrumb() {
18
+ if (this.breadCrumbItems) {
19
+ this.breadCrumbItems.length = 0;
20
+ }
21
+ this.setMapToStorage(this.breadCrumbItems);
22
+ }
23
+ triggerOnPageRefresh(object) {
24
+ this.addItemToBreadCrumb(object);
25
+ }
26
+ getRedirectionUrl(index) {
27
+ return this.breadCrumbItems[index].key;
28
+ }
29
+ removeBreadCrumbItems(index) {
30
+ this.breadCrumbItems = this.breadCrumbItems.slice(0, index + 1);
31
+ }
32
+ addItemToBreadCrumb(object) {
33
+ const item = this.findItem(object);
34
+ if (!isUndefined(item)) {
35
+ item.value = object.value;
36
+ }
37
+ else {
38
+ this.breadCrumbItems.push(object);
39
+ }
40
+ this.setMapToStorage(this.breadCrumbItems);
41
+ }
42
+ findItem(object) {
43
+ if (object.value) {
44
+ return this.breadCrumbItems.find((item) => (item.key === object.key));
45
+ }
46
+ return undefined;
47
+ }
48
+ setMapToStorage(breadCrumbItems) {
49
+ this.storage.set(CrumbServiceEnum.MAPKEY, breadCrumbItems);
50
+ }
51
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BreadCrumbService, deps: [{ token: LOCAL_STORAGE }], target: i0.ɵɵFactoryTarget.Injectable }); }
52
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BreadCrumbService, providedIn: 'root' }); }
53
+ }
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BreadCrumbService, decorators: [{
55
+ type: Injectable,
56
+ args: [{
57
+ providedIn: 'root',
58
+ }]
59
+ }], ctorParameters: () => [{ type: undefined, decorators: [{
60
+ type: Inject,
61
+ args: [LOCAL_STORAGE]
62
+ }] }] });
63
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2JyZWFkY3J1bWJzL3NlcnZpY2UvYnJlYWRjcnVtYi5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ25ELE9BQU8sRUFBRSxhQUFhLEVBQWtCLE1BQU0sd0JBQXdCLENBQUM7QUFDdkUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDZDQUE2QyxDQUFDO0FBQzFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDZCQUE2QixDQUFDOztBQU0vRCxNQUFNLE9BQU8saUJBQWlCO0lBSTVCLFlBQTJDLE9BQXVCO1FBQXZCLFlBQU8sR0FBUCxPQUFPLENBQWdCO1FBRjFELG9CQUFlLEdBQTBCLElBQUksS0FBSyxFQUFrQixDQUFDO0lBRVAsQ0FBQztJQUVoRSxrQkFBa0I7UUFDdkIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDO0lBQzlCLENBQUM7SUFFTSxvQkFBb0I7UUFDekIsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFTSxlQUFlO1FBQ3BCLElBQUksSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1lBQ3pCLElBQUksQ0FBQyxlQUFlLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQztRQUNsQyxDQUFDO1FBQ0QsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVNLG9CQUFvQixDQUFDLE1BQXNCO1FBQ2hELElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRU0saUJBQWlCLENBQUMsS0FBYTtRQUNwQyxPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUMsR0FBRyxDQUFDO0lBQ3pDLENBQUM7SUFFTSxxQkFBcUIsQ0FBQyxLQUFhO1FBQ3hDLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxFQUFFLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQztJQUNsRSxDQUFDO0lBRU0sbUJBQW1CLENBQUMsTUFBc0I7UUFDL0MsTUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUM7WUFDdkIsSUFBSSxDQUFDLEtBQUssR0FBRyxNQUFNLENBQUMsS0FBSyxDQUFDO1FBQzVCLENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDcEMsQ0FBQztRQUNELElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFTyxRQUFRLENBQUMsTUFBc0I7UUFDckMsSUFBSSxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7WUFDakIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDLElBQW9CLEVBQUUsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsS0FBSyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztRQUN4RixDQUFDO1FBQ0QsT0FBTyxTQUFTLENBQUM7SUFDbkIsQ0FBQztJQUVPLGVBQWUsQ0FBQyxlQUFzQztRQUM1RCxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLEVBQUUsZUFBZSxDQUFDLENBQUM7SUFDN0QsQ0FBQzsrR0FwRFUsaUJBQWlCLGtCQUlSLGFBQWE7bUhBSnRCLGlCQUFpQixjQUZoQixNQUFNOzs0RkFFUCxpQkFBaUI7a0JBSDdCLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25COzswQkFLYyxNQUFNOzJCQUFDLGFBQWEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlLCBJbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IExPQ0FMX1NUT1JBR0UsIFN0b3JhZ2VTZXJ2aWNlIH0gZnJvbSAnbmd4LXdlYnN0b3JhZ2Utc2VydmljZSc7XG5pbXBvcnQgeyBpc1VuZGVmaW5lZCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uL2NvcmUvdXRpbHMvdHlwZS1jaGVja3MudXRpbHMnO1xuaW1wb3J0IHsgQ3J1bWJTZXJ2aWNlRW51bSB9IGZyb20gJy4uL3V0aWxzL2NydW1iLXNlcnZpY2UuZW51bSc7XG5pbXBvcnQgeyBCcmVhZENydW1iSXRlbSB9IGZyb20gJy4uL21vZGVsL2JyZWFkQ3J1bWJJdGVtJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIEJyZWFkQ3J1bWJTZXJ2aWNlIHtcblxuICBwcml2YXRlIGJyZWFkQ3J1bWJJdGVtczogQXJyYXk8QnJlYWRDcnVtYkl0ZW0+ID0gbmV3IEFycmF5PEJyZWFkQ3J1bWJJdGVtPigpO1xuXG4gIGNvbnN0cnVjdG9yKEBJbmplY3QoTE9DQUxfU1RPUkFHRSkgcHJpdmF0ZSBzdG9yYWdlOiBTdG9yYWdlU2VydmljZSkgeyB9XG5cbiAgcHVibGljIGdldEJyZWFkQ3J1bWJJdGVtcygpOiBBcnJheTxCcmVhZENydW1iSXRlbT4ge1xuICAgIHJldHVybiB0aGlzLmJyZWFkQ3J1bWJJdGVtcztcbiAgfVxuXG4gIHB1YmxpYyBpbml0aWFsaXplQnJlYWRDcnVtYigpOiB2b2lkIHtcbiAgICB0aGlzLmNsZWFyQnJlYWRDcnVtYigpO1xuICB9XG5cbiAgcHVibGljIGNsZWFyQnJlYWRDcnVtYigpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5icmVhZENydW1iSXRlbXMpIHtcbiAgICAgIHRoaXMuYnJlYWRDcnVtYkl0ZW1zLmxlbmd0aCA9IDA7XG4gICAgfVxuICAgIHRoaXMuc2V0TWFwVG9TdG9yYWdlKHRoaXMuYnJlYWRDcnVtYkl0ZW1zKTtcbiAgfVxuXG4gIHB1YmxpYyB0cmlnZ2VyT25QYWdlUmVmcmVzaChvYmplY3Q6IEJyZWFkQ3J1bWJJdGVtKTogdm9pZCB7XG4gICAgdGhpcy5hZGRJdGVtVG9CcmVhZENydW1iKG9iamVjdCk7XG4gIH1cblxuICBwdWJsaWMgZ2V0UmVkaXJlY3Rpb25VcmwoaW5kZXg6IG51bWJlcik6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuYnJlYWRDcnVtYkl0ZW1zW2luZGV4XS5rZXk7XG4gIH1cblxuICBwdWJsaWMgcmVtb3ZlQnJlYWRDcnVtYkl0ZW1zKGluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICB0aGlzLmJyZWFkQ3J1bWJJdGVtcyA9IHRoaXMuYnJlYWRDcnVtYkl0ZW1zLnNsaWNlKDAsIGluZGV4ICsgMSk7XG4gIH1cblxuICBwdWJsaWMgYWRkSXRlbVRvQnJlYWRDcnVtYihvYmplY3Q6IEJyZWFkQ3J1bWJJdGVtKTogdm9pZCB7XG4gICAgY29uc3QgaXRlbSA9IHRoaXMuZmluZEl0ZW0ob2JqZWN0KTtcbiAgICBpZiAoIWlzVW5kZWZpbmVkKGl0ZW0pKSB7XG4gICAgICBpdGVtLnZhbHVlID0gb2JqZWN0LnZhbHVlO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmJyZWFkQ3J1bWJJdGVtcy5wdXNoKG9iamVjdCk7XG4gICAgfVxuICAgIHRoaXMuc2V0TWFwVG9TdG9yYWdlKHRoaXMuYnJlYWRDcnVtYkl0ZW1zKTtcbiAgfVxuXG4gIHByaXZhdGUgZmluZEl0ZW0ob2JqZWN0OiBCcmVhZENydW1iSXRlbSk6IEJyZWFkQ3J1bWJJdGVtIHwgdW5kZWZpbmVkIHtcbiAgICBpZiAob2JqZWN0LnZhbHVlKSB7XG4gICAgICByZXR1cm4gdGhpcy5icmVhZENydW1iSXRlbXMuZmluZCgoaXRlbTogQnJlYWRDcnVtYkl0ZW0pID0+IChpdGVtLmtleSA9PT0gb2JqZWN0LmtleSkpO1xuICAgIH1cbiAgICByZXR1cm4gdW5kZWZpbmVkO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRNYXBUb1N0b3JhZ2UoYnJlYWRDcnVtYkl0ZW1zOiBBcnJheTxCcmVhZENydW1iSXRlbT4pOiB2b2lkIHtcbiAgICB0aGlzLnN0b3JhZ2Uuc2V0KENydW1iU2VydmljZUVudW0uTUFQS0VZLCBicmVhZENydW1iSXRlbXMpO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,8 @@
1
+ export var CrumbServiceEnum;
2
+ (function (CrumbServiceEnum) {
3
+ CrumbServiceEnum["MAPKEY"] = "mapkey";
4
+ CrumbServiceEnum["KEYS"] = "keyArray";
5
+ CrumbServiceEnum["KEY"] = "key";
6
+ CrumbServiceEnum["VALUE"] = "value";
7
+ })(CrumbServiceEnum || (CrumbServiceEnum = {}));
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3J1bWItc2VydmljZS5lbnVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2JyZWFkY3J1bWJzL3V0aWxzL2NydW1iLXNlcnZpY2UuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxnQkFLWDtBQUxELFdBQVksZ0JBQWdCO0lBQ3ZCLHFDQUFpQixDQUFBO0lBQ2pCLHFDQUFpQixDQUFBO0lBQ2pCLCtCQUFXLENBQUE7SUFDWCxtQ0FBZSxDQUFBO0FBQ3BCLENBQUMsRUFMVyxnQkFBZ0IsS0FBaEIsZ0JBQWdCLFFBSzNCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gQ3J1bWJTZXJ2aWNlRW51bSB7XG4gICAgIE1BUEtFWSA9ICdtYXBrZXknLFxuICAgICBLRVlTID0gJ2tleUFycmF5JyxcbiAgICAgS0VZID0gJ2tleScsXG4gICAgIFZBTFVFID0gJ3ZhbHVlJyxcbn1cbiJdfQ==
@@ -0,0 +1,46 @@
1
+ import { ChangeDetectionStrategy, Component, Input, HostBinding } from '@angular/core';
2
+ import { ComponentSizes } from '../../../enums/component-sizes.enum';
3
+ import { ColorSchemes } from '../../../enums/color-schemes.enum';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "../../loader/loader.component";
7
+ export class ButtonControlComponent {
8
+ constructor() {
9
+ this.COMPONENT_SIZES = ComponentSizes;
10
+ }
11
+ get isDisableAttr() {
12
+ return this.isDisabled ? true : null;
13
+ }
14
+ get colorSchemeClass() {
15
+ if (this.isLink) {
16
+ return `btn-link`;
17
+ }
18
+ return `btn-${this.colorScheme}`;
19
+ }
20
+ get loaderColorScheme() {
21
+ if (this.colorScheme === ColorSchemes.Primary) {
22
+ return ColorSchemes.Light;
23
+ }
24
+ return ColorSchemes.Dark;
25
+ }
26
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ButtonControlComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
27
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ButtonControlComponent, selector: "app-button-control", inputs: { title: "title", colorScheme: "colorScheme", isLoading: "isLoading", isLink: "isLink", isDisabled: "isDisabled" }, host: { properties: { "attr.disabled": "this.isDisableAttr" } }, ngImport: i0, template: "<button\n class=\"button-control btn {{colorSchemeClass}}\"\n role=\"button\"\n title=\"{{title}}\"\n [disabled]=\"isDisabled\"\n>\n <span\n *ngIf=\"!isLoading\"\n class=\"title\"\n >{{ title }}</span>\n\n <app-loader\n *ngIf=\"isLoading\"\n [colorScheme]=\"loaderColorScheme\"\n [componentSize]=\"COMPONENT_SIZES.Small\"\n ></app-loader>\n</button>\n", styles: [":host[disabled]{pointer-events:none}.button-control{min-width:130px;text-transform:none}.btn.btn-link.btn-link{color:#007bff!important}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.LoaderComponent, selector: "app-loader", inputs: ["colorScheme", "componentSize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
28
+ }
29
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ButtonControlComponent, decorators: [{
30
+ type: Component,
31
+ args: [{ selector: 'app-button-control', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button\n class=\"button-control btn {{colorSchemeClass}}\"\n role=\"button\"\n title=\"{{title}}\"\n [disabled]=\"isDisabled\"\n>\n <span\n *ngIf=\"!isLoading\"\n class=\"title\"\n >{{ title }}</span>\n\n <app-loader\n *ngIf=\"isLoading\"\n [colorScheme]=\"loaderColorScheme\"\n [componentSize]=\"COMPONENT_SIZES.Small\"\n ></app-loader>\n</button>\n", styles: [":host[disabled]{pointer-events:none}.button-control{min-width:130px;text-transform:none}.btn.btn-link.btn-link{color:#007bff!important}\n"] }]
32
+ }], propDecorators: { title: [{
33
+ type: Input
34
+ }], colorScheme: [{
35
+ type: Input
36
+ }], isLoading: [{
37
+ type: Input
38
+ }], isLink: [{
39
+ type: Input
40
+ }], isDisabled: [{
41
+ type: Input
42
+ }], isDisableAttr: [{
43
+ type: HostBinding,
44
+ args: ['attr.disabled']
45
+ }] } });
46
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLWNvbnRyb2wuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2J1dHRvbnMvYnV0dG9uLWNvbnRyb2wvYnV0dG9uLWNvbnRyb2wuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2J1dHRvbnMvYnV0dG9uLWNvbnRyb2wvYnV0dG9uLWNvbnRyb2wuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sbUNBQW1DLENBQUM7Ozs7QUFRakUsTUFBTSxPQUFPLHNCQUFzQjtJQU5uQztRQWtCa0Isb0JBQWUsR0FBMEIsY0FBYyxDQUFDO0tBa0J6RTtJQXZCQyxJQUNJLGFBQWE7UUFDZixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO0lBQ3ZDLENBQUM7SUFJRCxJQUFXLGdCQUFnQjtRQUN6QixJQUFJLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQztZQUNoQixPQUFPLFVBQVUsQ0FBQztRQUNwQixDQUFDO1FBRUQsT0FBTyxPQUFPLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUNuQyxDQUFDO0lBRUQsSUFBVyxpQkFBaUI7UUFDMUIsSUFBSSxJQUFJLENBQUMsV0FBVyxLQUFLLFlBQVksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUM5QyxPQUFPLFlBQVksQ0FBQyxLQUFLLENBQUM7UUFDNUIsQ0FBQztRQUVELE9BQU8sWUFBWSxDQUFDLElBQUksQ0FBQztJQUUzQixDQUFDOytHQTdCVSxzQkFBc0I7bUdBQXRCLHNCQUFzQix1UENWbkMsd1hBaUJBOzs0RkRQYSxzQkFBc0I7a0JBTmxDLFNBQVM7K0JBQ0Usb0JBQW9CLG1CQUdiLHVCQUF1QixDQUFDLE1BQU07OEJBRy9CLEtBQUs7c0JBQXBCLEtBQUs7Z0JBQ1UsV0FBVztzQkFBMUIsS0FBSztnQkFDVSxTQUFTO3NCQUF4QixLQUFLO2dCQUNVLE1BQU07c0JBQXJCLEtBQUs7Z0JBQ1UsVUFBVTtzQkFBekIsS0FBSztnQkFHRixhQUFhO3NCQURoQixXQUFXO3VCQUFDLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCwgSG9zdEJpbmRpbmcgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbXBvbmVudFNpemVzIH0gZnJvbSAnLi4vLi4vLi4vZW51bXMvY29tcG9uZW50LXNpemVzLmVudW0nO1xuaW1wb3J0IHsgQ29sb3JTY2hlbWVzIH0gZnJvbSAnLi4vLi4vLi4vZW51bXMvY29sb3Itc2NoZW1lcy5lbnVtJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWJ1dHRvbi1jb250cm9sJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2J1dHRvbi1jb250cm9sLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYnV0dG9uLWNvbnRyb2wuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEJ1dHRvbkNvbnRyb2xDb21wb25lbnQge1xuICBASW5wdXQoKSBwdWJsaWMgdGl0bGU6IHN0cmluZztcbiAgQElucHV0KCkgcHVibGljIGNvbG9yU2NoZW1lOiBDb2xvclNjaGVtZXM7XG4gIEBJbnB1dCgpIHB1YmxpYyBpc0xvYWRpbmc6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHB1YmxpYyBpc0xpbms6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHB1YmxpYyBpc0Rpc2FibGVkOiBib29sZWFuO1xuXG4gIEBIb3N0QmluZGluZygnYXR0ci5kaXNhYmxlZCcpXG4gIGdldCBpc0Rpc2FibGVBdHRyKCk6IGJvb2xlYW4gfCBudWxsIHtcbiAgICByZXR1cm4gdGhpcy5pc0Rpc2FibGVkID8gdHJ1ZSA6IG51bGw7XG4gIH1cblxuICBwdWJsaWMgcmVhZG9ubHkgQ09NUE9ORU5UX1NJWkVTOiB0eXBlb2YgQ29tcG9uZW50U2l6ZXMgPSBDb21wb25lbnRTaXplcztcblxuICBwdWJsaWMgZ2V0IGNvbG9yU2NoZW1lQ2xhc3MoKTogc3RyaW5nIHtcbiAgICBpZiAodGhpcy5pc0xpbmspIHtcbiAgICAgIHJldHVybiBgYnRuLWxpbmtgO1xuICAgIH1cblxuICAgIHJldHVybiBgYnRuLSR7dGhpcy5jb2xvclNjaGVtZX1gO1xuICB9XG5cbiAgcHVibGljIGdldCBsb2FkZXJDb2xvclNjaGVtZSgpOiBDb2xvclNjaGVtZXMge1xuICAgIGlmICh0aGlzLmNvbG9yU2NoZW1lID09PSBDb2xvclNjaGVtZXMuUHJpbWFyeSkge1xuICAgICAgcmV0dXJuIENvbG9yU2NoZW1lcy5MaWdodDtcbiAgICB9XG5cbiAgICByZXR1cm4gQ29sb3JTY2hlbWVzLkRhcms7XG5cbiAgfVxufVxuIiwiPGJ1dHRvblxuICBjbGFzcz1cImJ1dHRvbi1jb250cm9sIGJ0biB7e2NvbG9yU2NoZW1lQ2xhc3N9fVwiXG4gIHJvbGU9XCJidXR0b25cIlxuICB0aXRsZT1cInt7dGl0bGV9fVwiXG4gIFtkaXNhYmxlZF09XCJpc0Rpc2FibGVkXCJcbj5cbiAgPHNwYW5cbiAgICAqbmdJZj1cIiFpc0xvYWRpbmdcIlxuICAgIGNsYXNzPVwidGl0bGVcIlxuICA+e3sgdGl0bGUgfX08L3NwYW4+XG5cbiAgPGFwcC1sb2FkZXJcbiAgICAqbmdJZj1cImlzTG9hZGluZ1wiXG4gICAgW2NvbG9yU2NoZW1lXT1cImxvYWRlckNvbG9yU2NoZW1lXCJcbiAgICBbY29tcG9uZW50U2l6ZV09XCJDT01QT05FTlRfU0laRVMuU21hbGxcIlxuICA+PC9hcHAtbG9hZGVyPlxuPC9idXR0b24+XG4iXX0=
@@ -0,0 +1,11 @@
1
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class ButtonsListComponent {
4
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ButtonsListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ButtonsListComponent, selector: "app-buttons-list", ngImport: i0, template: "<section class=\"buttons-list\">\n <ng-content></ng-content>\n</section>\n", styles: [":host ::ng-deep .buttons-list{display:inline-flex}:host ::ng-deep .buttons-list>app-button-control{margin-left:.7rem}:host ::ng-deep .buttons-list>app-button-control:first-child{margin-left:0}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
+ }
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ButtonsListComponent, decorators: [{
8
+ type: Component,
9
+ args: [{ selector: 'app-buttons-list', changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"buttons-list\">\n <ng-content></ng-content>\n</section>\n", styles: [":host ::ng-deep .buttons-list{display:inline-flex}:host ::ng-deep .buttons-list>app-button-control{margin-left:.7rem}:host ::ng-deep .buttons-list>app-button-control:first-child{margin-left:0}\n"] }]
10
+ }] });
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9ucy1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9idXR0b25zL2J1dHRvbnMtbGlzdC9idXR0b25zLWxpc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2J1dHRvbnMvYnV0dG9ucy1saXN0L2J1dHRvbnMtbGlzdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVFuRSxNQUFNLE9BQU8sb0JBQW9COytHQUFwQixvQkFBb0I7bUdBQXBCLG9CQUFvQix3RENSakMsNkVBR0E7OzRGREthLG9CQUFvQjtrQkFOaEMsU0FBUzsrQkFDRSxrQkFBa0IsbUJBR1gsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWJ1dHRvbnMtbGlzdCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9idXR0b25zLWxpc3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9idXR0b25zLWxpc3QuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEJ1dHRvbnNMaXN0Q29tcG9uZW50IHt9XG4iLCI8c2VjdGlvbiBjbGFzcz1cImJ1dHRvbnMtbGlzdFwiPlxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48L3NlY3Rpb24+XG4iXX0=
@@ -0,0 +1,37 @@
1
+ import { ChangeDetectionStrategy, Component, Input, Output, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/button";
5
+ import * as i3 from "@angular/material/icon";
6
+ import * as i4 from "@angular/flex-layout/extended";
7
+ export class CircleButtonComponent {
8
+ constructor() {
9
+ this.customStyle = {};
10
+ this.onClick = new EventEmitter();
11
+ }
12
+ onButtonClick() {
13
+ this.onClick.emit();
14
+ }
15
+ get getCassClass() {
16
+ return this.disabled ? 'btn-disabled' : 'btn-enabled';
17
+ }
18
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CircleButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
19
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: CircleButtonComponent, selector: "app-circle-button", inputs: { name: "name", tooltip: "tooltip", disabled: "disabled", customStyle: "customStyle", customClass: "customClass" }, outputs: { onClick: "onClick" }, ngImport: i0, template: "<button \n [disabled]=\"disabled\" \n [ngStyle]=\"customStyle\" \n [title]=\"tooltip\" \n mat-stroked-button \n color=\"primary\" \n (click)=\"onButtonClick()\"\n [ngClass]=\"{ 'circle-button': true, 'customClass': true, 'grey-background': disabled }\">\n <span class=\"add-icon\">\n <mat-icon class=\"plus-button\">add</mat-icon>\n </span>\n <span>{{name}}</span>\n\n</button>", styles: ["button.circle-button.mat-mdc-outlined-button.mat-primary{height:32px;font-size:16px;line-height:33px;color:#fff;border-radius:16px;border:none;padding:0 17px;background-color:#015ff1;box-shadow:0 4px 10px #0000001a;font-family:Proxima-Nova-Regular,arial,sans-serif;margin:0;display:flex;align-items:center}button.circle-button .add-icon{position:relative;top:5px;left:-4px;margin-right:0}.btn-enabled{background-color:#015ff1;pointer-events:all}.btn-disabled{background-color:#b5b5b5;pointer-events:none}.grey-background{background-color:#a9a9a9!important;vertical-align:middle}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i4.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: i4.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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
20
+ }
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CircleButtonComponent, decorators: [{
22
+ type: Component,
23
+ args: [{ selector: 'app-circle-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button \n [disabled]=\"disabled\" \n [ngStyle]=\"customStyle\" \n [title]=\"tooltip\" \n mat-stroked-button \n color=\"primary\" \n (click)=\"onButtonClick()\"\n [ngClass]=\"{ 'circle-button': true, 'customClass': true, 'grey-background': disabled }\">\n <span class=\"add-icon\">\n <mat-icon class=\"plus-button\">add</mat-icon>\n </span>\n <span>{{name}}</span>\n\n</button>", styles: ["button.circle-button.mat-mdc-outlined-button.mat-primary{height:32px;font-size:16px;line-height:33px;color:#fff;border-radius:16px;border:none;padding:0 17px;background-color:#015ff1;box-shadow:0 4px 10px #0000001a;font-family:Proxima-Nova-Regular,arial,sans-serif;margin:0;display:flex;align-items:center}button.circle-button .add-icon{position:relative;top:5px;left:-4px;margin-right:0}.btn-enabled{background-color:#015ff1;pointer-events:all}.btn-disabled{background-color:#b5b5b5;pointer-events:none}.grey-background{background-color:#a9a9a9!important;vertical-align:middle}\n"] }]
24
+ }], propDecorators: { name: [{
25
+ type: Input
26
+ }], tooltip: [{
27
+ type: Input
28
+ }], disabled: [{
29
+ type: Input
30
+ }], customStyle: [{
31
+ type: Input
32
+ }], customClass: [{
33
+ type: Input
34
+ }], onClick: [{
35
+ type: Output
36
+ }] } });
37
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2lyY2xlLWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvYnV0dG9ucy9jaXJjbGUtYnV0dG9uL2NpcmNsZS1idXR0b24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2J1dHRvbnMvY2lyY2xlLWJ1dHRvbi9jaXJjbGUtYnV0dG9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFlLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7OztBQVE3RyxNQUFNLE9BQU8scUJBQXFCO0lBTmxDO1FBVWtCLGdCQUFXLEdBQWMsRUFBRSxDQUFDO1FBRTNCLFlBQU8sR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO0tBUS9DO0lBUFEsYUFBYTtRQUNsQixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3RCLENBQUM7SUFFRCxJQUFJLFlBQVk7UUFDZCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFBO0lBQ3ZELENBQUM7K0dBYlUscUJBQXFCO21HQUFyQixxQkFBcUIsc05DUmxDLHdZQWFTOzs0RkRMSSxxQkFBcUI7a0JBTmpDLFNBQVM7K0JBQ0UsbUJBQW1CLG1CQUdaLHVCQUF1QixDQUFDLE1BQU07OEJBRy9CLElBQUk7c0JBQW5CLEtBQUs7Z0JBQ1UsT0FBTztzQkFBdEIsS0FBSztnQkFDVSxRQUFRO3NCQUF2QixLQUFLO2dCQUNVLFdBQVc7c0JBQTFCLEtBQUs7Z0JBQ1UsV0FBVztzQkFBMUIsS0FBSztnQkFDVyxPQUFPO3NCQUF2QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQsIEhvc3RCaW5kaW5nLCBPdXRwdXQsIEV2ZW50RW1pdHRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSUtleVZhbHVlfSBmcm9tICdpZHAtYXBwcy1zaGFyZWQtdWkvbW9kdWxlcy91aS1raXQvaW50ZXJmYWNlcy9nZW5lcmljLmludGVyZmFjZSc7XG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtY2lyY2xlLWJ1dHRvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9jaXJjbGUtYnV0dG9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY2lyY2xlLWJ1dHRvbi5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgQ2lyY2xlQnV0dG9uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgcHVibGljIG5hbWU6IHN0cmluZztcbiAgQElucHV0KCkgcHVibGljIHRvb2x0aXA6IHN0cmluZztcbiAgQElucHV0KCkgcHVibGljIGRpc2FibGVkOiBib29sZWFuO1xuICBASW5wdXQoKSBwdWJsaWMgY3VzdG9tU3R5bGU6IElLZXlWYWx1ZSA9IHt9O1xuICBASW5wdXQoKSBwdWJsaWMgY3VzdG9tQ2xhc3M6IHN0cmluZztcbiAgQE91dHB1dCgpIHB1YmxpYyBvbkNsaWNrID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuICBwdWJsaWMgb25CdXR0b25DbGljaygpOiB2b2lkIHtcbiAgICB0aGlzLm9uQ2xpY2suZW1pdCgpO1xuICB9XG5cbiAgZ2V0IGdldENhc3NDbGFzcygpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLmRpc2FibGVkID8gJ2J0bi1kaXNhYmxlZCcgOiAnYnRuLWVuYWJsZWQnXG4gIH1cbn1cblxuZXhwb3J0IGludGVyZmFjZSBJSWNvblByb3Age1xuICBuYW1lPzogc3RyaW5nO1xuICBpY29uQ2xhc3M/OiBzdHJpbmc7XG4gIHRvb2x0aXA/OiBzdHJpbmc7XG59XG4iLCI8YnV0dG9uIFxuICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiBcbiAgW25nU3R5bGVdPVwiY3VzdG9tU3R5bGVcIiBcbiAgW3RpdGxlXT1cInRvb2x0aXBcIiBcbiAgbWF0LXN0cm9rZWQtYnV0dG9uIFxuICBjb2xvcj1cInByaW1hcnlcIiBcbiAgKGNsaWNrKT1cIm9uQnV0dG9uQ2xpY2soKVwiXG4gIFtuZ0NsYXNzXT1cInsgJ2NpcmNsZS1idXR0b24nOiB0cnVlLCAnY3VzdG9tQ2xhc3MnOiB0cnVlLCAnZ3JleS1iYWNrZ3JvdW5kJzogZGlzYWJsZWQgfVwiPlxuICA8c3BhbiBjbGFzcz1cImFkZC1pY29uXCI+XG4gICAgPG1hdC1pY29uIGNsYXNzPVwicGx1cy1idXR0b25cIj5hZGQ8L21hdC1pY29uPlxuICA8L3NwYW4+XG4gIDxzcGFuPnt7bmFtZX19PC9zcGFuPlxuXG48L2J1dHRvbj4iXX0=
@@ -0,0 +1,11 @@
1
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class CardContainerComponent {
4
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CardContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: CardContainerComponent, selector: "app-card-container", ngImport: i0, template: "<section class=\"card\">\n <div class=\"card-body\">\n <h5 class=\"card-title\">\n <ng-content select=\"card-container-title\"></ng-content>\n </h5>\n <h6 class=\"card-subtitle text-muted\">\n <ng-content select=\"card-container-subtitle\"></ng-content>\n </h6>\n <section class=\"body\">\n <ng-content select=\"card-container-body\"></ng-content>\n </section>\n </div>\n</section>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
+ }
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CardContainerComponent, decorators: [{
8
+ type: Component,
9
+ args: [{ selector: 'app-card-container', changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"card\">\n <div class=\"card-body\">\n <h5 class=\"card-title\">\n <ng-content select=\"card-container-title\"></ng-content>\n </h5>\n <h6 class=\"card-subtitle text-muted\">\n <ng-content select=\"card-container-subtitle\"></ng-content>\n </h6>\n <section class=\"body\">\n <ng-content select=\"card-container-body\"></ng-content>\n </section>\n </div>\n</section>\n" }]
10
+ }] });
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1jb250YWluZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGliL3NyYy9tb2R1bGVzL3VpLWtpdC9jb21wb25lbnRzL2NhcmQtY29udGFpbmVyL2NhcmQtY29udGFpbmVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9jYXJkLWNvbnRhaW5lci9jYXJkLWNvbnRhaW5lci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVFuRSxNQUFNLE9BQU8sc0JBQXNCOytHQUF0QixzQkFBc0I7bUdBQXRCLHNCQUFzQiwwRENSbkMsb2FBYUE7OzRGRExhLHNCQUFzQjtrQkFObEMsU0FBUzsrQkFDRSxvQkFBb0IsbUJBR2IsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWNhcmQtY29udGFpbmVyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NhcmQtY29udGFpbmVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY2FyZC1jb250YWluZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIENhcmRDb250YWluZXJDb21wb25lbnQge1xuXG59XG4iLCI8c2VjdGlvbiBjbGFzcz1cImNhcmRcIj5cbiAgPGRpdiBjbGFzcz1cImNhcmQtYm9keVwiPlxuICAgIDxoNSBjbGFzcz1cImNhcmQtdGl0bGVcIj5cbiAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImNhcmQtY29udGFpbmVyLXRpdGxlXCI+PC9uZy1jb250ZW50PlxuICAgIDwvaDU+XG4gICAgPGg2IGNsYXNzPVwiY2FyZC1zdWJ0aXRsZSB0ZXh0LW11dGVkXCI+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJjYXJkLWNvbnRhaW5lci1zdWJ0aXRsZVwiPjwvbmctY29udGVudD5cbiAgICA8L2g2PlxuICAgIDxzZWN0aW9uIGNsYXNzPVwiYm9keVwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiY2FyZC1jb250YWluZXItYm9keVwiPjwvbmctY29udGVudD5cbiAgICA8L3NlY3Rpb24+XG4gIDwvZGl2PlxuPC9zZWN0aW9uPlxuIl19
@@ -0,0 +1,30 @@
1
+ import { Component, Input, ChangeDetectionStrategy } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./service/breadcrumb.service";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@angular/router";
6
+ import * as i4 from "@angular/flex-layout/extended";
7
+ export class CommonBreadcrumbsComponent {
8
+ constructor(breadcrumbService) {
9
+ this.breadcrumbService = breadcrumbService;
10
+ this.HomeHref = `/portal`;
11
+ /**
12
+ * separator between breadcrumbs
13
+ * defaults to '/'. Other options could be '.' or '-' or '>' etc.
14
+ *
15
+ */
16
+ this.separator = '/';
17
+ }
18
+ ngOnInit() {
19
+ this.breadcrumbs$ = this.breadcrumbService.breadcrumbs$;
20
+ }
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CommonBreadcrumbsComponent, deps: [{ token: i1.BreadcrumbService }], target: i0.ɵɵFactoryTarget.Component }); }
22
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: CommonBreadcrumbsComponent, selector: "app-common-breadcrumbs", inputs: { separator: "separator" }, ngImport: i0, template: "<div class=\"breadcrumb-container\">\n\n <a [href]=\"HomeHref\">\n <em class=\"breadcrumb-ico fa-solid fa-house\"></em>\n </a>\n\n <span>\n <i class=\"material-icons\">keyboard_arrow_right</i>\n </span>\n <nav aria-label=\"breadcrumb\">\n <ol class=\"breadcrumb\">\n <ng-container *ngFor=\"let breadcrumb of breadcrumbs$ | async; last as isLast\">\n <li [ngClass]=\"{ active: isLast }\" [attr.aria-current]=\"isLast ? 'page' : null\" *ngIf=\"!breadcrumb.skip\">\n <a class=\"link-decoration\" *ngIf=\"!isLast; else lastRoute\" [routerLink]=\"[breadcrumb.route]\"\n routerLinkActive=\"active\">\n {{ breadcrumb.label }}\n <span><i class=\"material-icons\">keyboard_arrow_right</i></span>\n </a>\n <ng-template #lastRoute>\n <label class=\"current-path\">{{ breadcrumb.label }}</label>\n </ng-template>\n </li>\n </ng-container>\n </ol>\n </nav>\n</div>\n", styles: ["span>a{color:#e9e9e9}.breadcrumb-container{padding:0;color:#6c6c6c;margin-bottom:32px}.breadcrumb-item.active{color:#090909!important;font-weight:600}.breadcrumb-container .breadcrumb{background:transparent;padding:0;margin:0}.breadcrumb-container nav{display:inline-block}.breadcrumb-container i{color:#999;font-size:17px;position:relative;top:4px;padding:0 5px}.breadcrumb-home{top:1px!important}a{color:#ccc!important;text-decoration:none!important}.breadcrumb-ico{position:relative;top:-1px;color:#999;font-size:13px}.current-path{font-family:Proxima-Nova-Semibold,arial,sans-serif;color:#000;font-size:14px;line-height:27px;margin-bottom:0}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "directive", type: i4.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: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
23
+ }
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CommonBreadcrumbsComponent, decorators: [{
25
+ type: Component,
26
+ args: [{ selector: 'app-common-breadcrumbs', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"breadcrumb-container\">\n\n <a [href]=\"HomeHref\">\n <em class=\"breadcrumb-ico fa-solid fa-house\"></em>\n </a>\n\n <span>\n <i class=\"material-icons\">keyboard_arrow_right</i>\n </span>\n <nav aria-label=\"breadcrumb\">\n <ol class=\"breadcrumb\">\n <ng-container *ngFor=\"let breadcrumb of breadcrumbs$ | async; last as isLast\">\n <li [ngClass]=\"{ active: isLast }\" [attr.aria-current]=\"isLast ? 'page' : null\" *ngIf=\"!breadcrumb.skip\">\n <a class=\"link-decoration\" *ngIf=\"!isLast; else lastRoute\" [routerLink]=\"[breadcrumb.route]\"\n routerLinkActive=\"active\">\n {{ breadcrumb.label }}\n <span><i class=\"material-icons\">keyboard_arrow_right</i></span>\n </a>\n <ng-template #lastRoute>\n <label class=\"current-path\">{{ breadcrumb.label }}</label>\n </ng-template>\n </li>\n </ng-container>\n </ol>\n </nav>\n</div>\n", styles: ["span>a{color:#e9e9e9}.breadcrumb-container{padding:0;color:#6c6c6c;margin-bottom:32px}.breadcrumb-item.active{color:#090909!important;font-weight:600}.breadcrumb-container .breadcrumb{background:transparent;padding:0;margin:0}.breadcrumb-container nav{display:inline-block}.breadcrumb-container i{color:#999;font-size:17px;position:relative;top:4px;padding:0 5px}.breadcrumb-home{top:1px!important}a{color:#ccc!important;text-decoration:none!important}.breadcrumb-ico{position:relative;top:-1px;color:#999;font-size:13px}.current-path{font-family:Proxima-Nova-Semibold,arial,sans-serif;color:#000;font-size:14px;line-height:27px;margin-bottom:0}\n"] }]
27
+ }], ctorParameters: () => [{ type: i1.BreadcrumbService }], propDecorators: { separator: [{
28
+ type: Input
29
+ }] } });
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbW9uLWJyZWFkY3J1bWJzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9jb21tb24tYnJlYWRjcnVtYnMvY29tbW9uLWJyZWFkY3J1bWJzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9zcmMvbW9kdWxlcy91aS1raXQvY29tcG9uZW50cy9jb21tb24tYnJlYWRjcnVtYnMvY29tbW9uLWJyZWFkY3J1bWJzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsS0FBSyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7QUFXbEYsTUFBTSxPQUFPLDBCQUEwQjtJQVdyQyxZQUFvQixpQkFBb0M7UUFBcEMsc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFtQjtRQVRqRCxhQUFRLEdBQVEsU0FBUyxDQUFDO1FBRWpDOzs7O1dBSUc7UUFDYSxjQUFTLEdBQUcsR0FBRyxDQUFDO0lBRTJCLENBQUM7SUFFckQsUUFBUTtRQUNiLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFlBQVksQ0FBQztJQUMxRCxDQUFDOytHQWZVLDBCQUEwQjttR0FBMUIsMEJBQTBCLGtHQ1h2QyxpOUJBMEJBOzs0RkRmYSwwQkFBMEI7a0JBTnRDLFNBQVM7K0JBQ0Usd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNO3NGQVcvQixTQUFTO3NCQUF4QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIElucHV0LCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSUJyZWFkY3J1bWJJdGVtIH0gZnJvbSAnLi9pbnRlcmZhY2UvYnJlYWRjcnVtYi5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgQnJlYWRjcnVtYlNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2UvYnJlYWRjcnVtYi5zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWNvbW1vbi1icmVhZGNydW1icycsXG4gIHRlbXBsYXRlVXJsOiAnLi9jb21tb24tYnJlYWRjcnVtYnMuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jb21tb24tYnJlYWRjcnVtYnMuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIENvbW1vbkJyZWFkY3J1bWJzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgcHVibGljIGJyZWFkY3J1bWJzJDogT2JzZXJ2YWJsZTxJQnJlYWRjcnVtYkl0ZW1bXT47XG4gIHB1YmxpYyBIb21lSHJlZjpzdHJpbmc9YC9wb3J0YWxgO1xuXG4gIC8qKlxuICAgKiBzZXBhcmF0b3IgYmV0d2VlbiBicmVhZGNydW1ic1xuICAgKiBkZWZhdWx0cyB0byAnLycuIE90aGVyIG9wdGlvbnMgY291bGQgYmUgJy4nIG9yICctJyBvciAnPicgZXRjLlxuICAgKlxuICAgKi9cbiAgQElucHV0KCkgcHVibGljIHNlcGFyYXRvciA9ICcvJztcblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGJyZWFkY3J1bWJTZXJ2aWNlOiBCcmVhZGNydW1iU2VydmljZSkge31cblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5icmVhZGNydW1icyQgPSB0aGlzLmJyZWFkY3J1bWJTZXJ2aWNlLmJyZWFkY3J1bWJzJDtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImJyZWFkY3J1bWItY29udGFpbmVyXCI+XG5cbiAgPGEgW2hyZWZdPVwiSG9tZUhyZWZcIj5cbiAgICA8ZW0gY2xhc3M9XCJicmVhZGNydW1iLWljbyBmYS1zb2xpZCBmYS1ob3VzZVwiPjwvZW0+XG4gIDwvYT5cblxuICA8c3Bhbj5cbiAgICA8aSBjbGFzcz1cIm1hdGVyaWFsLWljb25zXCI+a2V5Ym9hcmRfYXJyb3dfcmlnaHQ8L2k+XG4gIDwvc3Bhbj5cbiAgPG5hdiBhcmlhLWxhYmVsPVwiYnJlYWRjcnVtYlwiPlxuICAgIDxvbCBjbGFzcz1cImJyZWFkY3J1bWJcIj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGJyZWFkY3J1bWIgb2YgYnJlYWRjcnVtYnMkIHwgYXN5bmM7IGxhc3QgYXMgaXNMYXN0XCI+XG4gICAgICAgIDxsaSBbbmdDbGFzc109XCJ7IGFjdGl2ZTogaXNMYXN0IH1cIiBbYXR0ci5hcmlhLWN1cnJlbnRdPVwiaXNMYXN0ID8gJ3BhZ2UnIDogbnVsbFwiICpuZ0lmPVwiIWJyZWFkY3J1bWIuc2tpcFwiPlxuICAgICAgICAgIDxhIGNsYXNzPVwibGluay1kZWNvcmF0aW9uXCIgKm5nSWY9XCIhaXNMYXN0OyBlbHNlIGxhc3RSb3V0ZVwiIFtyb3V0ZXJMaW5rXT1cIlticmVhZGNydW1iLnJvdXRlXVwiXG4gICAgICAgICAgICByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCI+XG4gICAgICAgICAgICB7eyBicmVhZGNydW1iLmxhYmVsIH19XG4gICAgICAgICAgICA8c3Bhbj48aSBjbGFzcz1cIm1hdGVyaWFsLWljb25zXCI+a2V5Ym9hcmRfYXJyb3dfcmlnaHQ8L2k+PC9zcGFuPlxuICAgICAgICAgIDwvYT5cbiAgICAgICAgICA8bmctdGVtcGxhdGUgI2xhc3RSb3V0ZT5cbiAgICAgICAgICAgIDxsYWJlbCBjbGFzcz1cImN1cnJlbnQtcGF0aFwiPnt7IGJyZWFkY3J1bWIubGFiZWwgfX08L2xhYmVsPlxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDwvbGk+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L29sPlxuICA8L25hdj5cbjwvZGl2PlxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvc3JjL21vZHVsZXMvdWkta2l0L2NvbXBvbmVudHMvY29tbW9uLWJyZWFkY3J1bWJzL2ludGVyZmFjZS9icmVhZGNydW1iLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJQnJlYWRjcnVtYkl0ZW0ge1xuICBsYWJlbDogc3RyaW5nO1xuICByb3V0ZTogc3RyaW5nO1xuICBjaGlsZD86IElCcmVhZGNydW1iSXRlbVtdO1xuICBza2lwPzogYm9vbGVhbjtcbn1cbiJdfQ==