@mediusinc/mng-commons 4.2.0 → 5.0.0-rc.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 (1373) hide show
  1. package/README.md +1 -0
  2. package/core/README.md +8 -0
  3. package/core/action/action-data.model.d.ts +3 -0
  4. package/core/action/action-parameters.model.d.ts +17 -0
  5. package/core/components/pages/error/error.page.component.d.ts +8 -0
  6. package/core/components/pages/not-found/not-found.page.component.d.ts +8 -0
  7. package/core/data-list/data-list-params.util.d.ts +84 -0
  8. package/core/data-list/data-list.model.d.ts +27 -0
  9. package/core/data-list/filter-match.model.d.ts +36 -0
  10. package/core/data-providers/base.data-provider.d.ts +32 -0
  11. package/core/data-providers/lookup.data-provider.d.ts +10 -0
  12. package/core/descriptors/action.descriptor.d.ts +12 -0
  13. package/core/descriptors/column.descriptor.d.ts +3 -0
  14. package/core/descriptors/editor.descriptor.d.ts +11 -0
  15. package/core/descriptors/filter.descriptor.d.ts +3 -0
  16. package/core/descriptors/lookup.descriptor.d.ts +12 -0
  17. package/core/descriptors/model.descriptor.d.ts +8 -0
  18. package/core/descriptors/table.descriptor.d.ts +9 -0
  19. package/core/descriptors/tableview.descriptor.d.ts +11 -0
  20. package/core/directives/component.directive.d.ts +20 -0
  21. package/core/directives/dialog-keydown-handler.directive.d.ts +12 -0
  22. package/core/directives/template.directive.d.ts +12 -0
  23. package/core/enum/enum.model.d.ts +8 -0
  24. package/core/enum/enum.util.d.ts +51 -0
  25. package/core/error/error-handler.d.ts +6 -0
  26. package/core/error/error.model.d.ts +47 -0
  27. package/core/error/error.util.d.ts +116 -0
  28. package/core/helpers/coercion.d.ts +9 -0
  29. package/core/helpers/notification.d.ts +2 -0
  30. package/core/helpers/type-helpers.d.ts +16 -0
  31. package/core/index.d.ts +77 -0
  32. package/core/log/log-publisher-console.service.d.ts +4 -0
  33. package/core/log/log.model.d.ts +40 -0
  34. package/core/log/logger.service.d.ts +33 -0
  35. package/core/models/class-service.model.d.ts +7 -0
  36. package/core/models/getter.model.d.ts +2 -0
  37. package/core/models/i18n.model.d.ts +1 -0
  38. package/core/models/menu.model.d.ts +32 -0
  39. package/core/models/user.model.d.ts +8 -0
  40. package/core/pipes/boolean.pipe.d.ts +7 -0
  41. package/core/pipes/class-map.pipe.d.ts +7 -0
  42. package/core/pipes/enumerate-async.pipe.d.ts +9 -0
  43. package/core/pipes/enumerate.pipe.d.ts +16 -0
  44. package/core/pipes/getter.pipe.d.ts +8 -0
  45. package/core/pipes/json-path.pipe.d.ts +13 -0
  46. package/core/pipes/parametrize.pipe.d.ts +12 -0
  47. package/core/pipes/template.pipe.d.ts +10 -0
  48. package/core/provide.d.ts +12 -0
  49. package/core/reflect/type-enum-metadata.d.ts +32 -0
  50. package/core/registry/registry.model.d.ts +8 -0
  51. package/core/registry/type-registry.d.ts +27 -0
  52. package/core/router/route-builder.d.ts +67 -0
  53. package/core/router/router.model.d.ts +13 -0
  54. package/core/router/routes-builder.d.ts +19 -0
  55. package/core/rxjs/map-data-list-result-operator.d.ts +9 -0
  56. package/core/security/permission.guard.d.ts +2 -0
  57. package/core/security/permission.service.d.ts +16 -0
  58. package/core/security/permission.util.d.ts +5 -0
  59. package/core/security/permissions.model.d.ts +55 -0
  60. package/core/services/commons-configuration.service.d.ts +69 -0
  61. package/core/services/commons-init.service.d.ts +30 -0
  62. package/core/services/commons-router.service.d.ts +37 -0
  63. package/core/services/commons.service.d.ts +66 -0
  64. package/core/services/local-storage-config.service.d.ts +11 -0
  65. package/core/services/providers/commons-init.provider.d.ts +4 -0
  66. package/core/services/tokens/browser-storage.token.d.ts +2 -0
  67. package/core/services/tokens/commons-init.token.d.ts +3 -0
  68. package/core/services/tokens/log-publisher.token.d.ts +3 -0
  69. package/core/services/tokens/module-config.token.d.ts +34 -0
  70. package/core/styles/style-constants.d.ts +10 -0
  71. package/core/styles/style.model.d.ts +17 -0
  72. package/core/utils/date.util.d.ts +20 -0
  73. package/core/utils/i18n.util.d.ts +36 -0
  74. package/core/utils/object.util.d.ts +31 -0
  75. package/core/utils/route.util.d.ts +37 -0
  76. package/dev-scripts/version-info.js +1 -1
  77. package/esm2022/core/action/action-data.model.mjs +2 -0
  78. package/esm2022/core/action/action-parameters.model.mjs +2 -0
  79. package/esm2022/core/components/notification/notification-wrapper.component.mjs +50 -0
  80. package/esm2022/core/components/pages/error/error.page.component.mjs +21 -0
  81. package/esm2022/core/components/pages/not-found/not-found.page.component.mjs +21 -0
  82. package/esm2022/core/data-list/data-list-params.util.mjs +417 -0
  83. package/esm2022/core/data-list/data-list.model.mjs +2 -0
  84. package/esm2022/core/data-list/filter-match.model.mjs +105 -0
  85. package/esm2022/core/data-providers/base.data-provider.mjs +48 -0
  86. package/esm2022/core/data-providers/lookup.data-provider.mjs +2 -0
  87. package/esm2022/core/descriptors/action.descriptor.mjs +2 -0
  88. package/esm2022/core/descriptors/column.descriptor.mjs +2 -0
  89. package/esm2022/core/descriptors/editor.descriptor.mjs +2 -0
  90. package/esm2022/core/descriptors/filter.descriptor.mjs +2 -0
  91. package/esm2022/core/descriptors/lookup.descriptor.mjs +2 -0
  92. package/esm2022/core/descriptors/model.descriptor.mjs +2 -0
  93. package/esm2022/core/descriptors/table.descriptor.mjs +2 -0
  94. package/esm2022/core/descriptors/tableview.descriptor.mjs +2 -0
  95. package/esm2022/core/directives/component.directive.mjs +72 -0
  96. package/esm2022/core/directives/dialog-keydown-handler.directive.mjs +49 -0
  97. package/esm2022/core/directives/template.directive.mjs +29 -0
  98. package/esm2022/core/enum/enum.model.mjs +2 -0
  99. package/esm2022/core/enum/enum.util.mjs +83 -0
  100. package/esm2022/core/error/error-handler.mjs +20 -0
  101. package/esm2022/core/error/error.model.mjs +32 -0
  102. package/esm2022/core/error/error.util.mjs +249 -0
  103. package/esm2022/core/helpers/coercion.mjs +52 -0
  104. package/esm2022/core/helpers/notification.mjs +6 -0
  105. package/esm2022/core/helpers/type-helpers.mjs +2 -0
  106. package/esm2022/core/index.mjs +99 -0
  107. package/esm2022/core/log/log-publisher-console.service.mjs +40 -0
  108. package/esm2022/core/log/log.model.mjs +10 -0
  109. package/esm2022/core/log/logger.service.mjs +131 -0
  110. package/esm2022/core/mediusinc-mng-commons-core.mjs +5 -0
  111. package/esm2022/core/models/class-attribute.model.mjs +2 -0
  112. package/esm2022/core/models/class-service.model.mjs +2 -0
  113. package/esm2022/core/models/getter.model.mjs +2 -0
  114. package/esm2022/core/models/i18n.model.mjs +2 -0
  115. package/esm2022/core/models/menu.model.mjs +2 -0
  116. package/esm2022/core/models/user.model.mjs +2 -0
  117. package/esm2022/core/models/version.model.mjs +2 -0
  118. package/esm2022/core/pipes/boolean.pipe.mjs +28 -0
  119. package/esm2022/core/pipes/class-map.pipe.mjs +23 -0
  120. package/esm2022/core/pipes/enumerate-async.pipe.mjs +36 -0
  121. package/esm2022/core/pipes/enumerate.pipe.mjs +49 -0
  122. package/esm2022/core/pipes/getter.pipe.mjs +21 -0
  123. package/esm2022/core/pipes/json-path.pipe.mjs +25 -0
  124. package/esm2022/core/pipes/parametrize.pipe.mjs +86 -0
  125. package/esm2022/core/pipes/template.pipe.mjs +26 -0
  126. package/esm2022/core/provide.mjs +98 -0
  127. package/esm2022/core/reflect/type-enum-decorator.mjs +12 -0
  128. package/esm2022/core/reflect/type-enum-metadata.mjs +62 -0
  129. package/esm2022/core/registry/registry.model.mjs +2 -0
  130. package/esm2022/core/registry/type-registry.mjs +106 -0
  131. package/esm2022/core/router/route-builder.mjs +336 -0
  132. package/esm2022/core/router/router.model.mjs +2 -0
  133. package/esm2022/core/router/routes-builder.mjs +53 -0
  134. package/esm2022/core/rxjs/map-data-list-result-operator.mjs +19 -0
  135. package/esm2022/core/security/permission.guard.mjs +15 -0
  136. package/esm2022/core/security/permission.service.mjs +49 -0
  137. package/esm2022/core/security/permission.util.mjs +16 -0
  138. package/esm2022/core/security/permissions.model.mjs +93 -0
  139. package/esm2022/core/services/commons-configuration.service.mjs +174 -0
  140. package/esm2022/core/services/commons-init.service.mjs +111 -0
  141. package/esm2022/core/services/commons-router.service.mjs +180 -0
  142. package/esm2022/core/services/commons.service.mjs +390 -0
  143. package/esm2022/core/services/local-storage-config.service.mjs +29 -0
  144. package/esm2022/core/services/providers/commons-init.provider.mjs +4 -0
  145. package/esm2022/core/services/tokens/browser-storage.token.mjs +3 -0
  146. package/esm2022/core/services/tokens/commons-init.token.mjs +3 -0
  147. package/esm2022/core/services/tokens/log-publisher.token.mjs +3 -0
  148. package/esm2022/core/services/tokens/module-config.token.mjs +3 -0
  149. package/esm2022/core/styles/style-constants.mjs +11 -0
  150. package/esm2022/core/styles/style.model.mjs +20 -0
  151. package/esm2022/core/utils/date.util.mjs +136 -0
  152. package/esm2022/core/utils/i18n.util.mjs +137 -0
  153. package/esm2022/core/utils/object.util.mjs +147 -0
  154. package/esm2022/core/utils/route.util.mjs +60 -0
  155. package/esm2022/core/utils/string.util.mjs +59 -0
  156. package/esm2022/filter/descriptors/filter-lookup.descriptor.mjs +186 -0
  157. package/esm2022/filter/descriptors/filter.descriptor.mjs +197 -0
  158. package/esm2022/filter/index.mjs +6 -0
  159. package/esm2022/filter/mediusinc-mng-commons-filter.mjs +5 -0
  160. package/esm2022/filter/models/filter.model.mjs +15 -0
  161. package/esm2022/form/api/data-providers/lookup.data-provider.mjs +45 -0
  162. package/esm2022/form/api/descriptors/action-button.descriptor.mjs +68 -0
  163. package/esm2022/form/api/descriptors/button-style.builder.mjs +174 -0
  164. package/esm2022/form/api/index.mjs +8 -0
  165. package/esm2022/form/api/mediusinc-mng-commons-form-api.mjs +5 -0
  166. package/esm2022/form/api/models/trim.model.mjs +2 -0
  167. package/esm2022/form/components/autocomplete/autocomplete.component.mjs +404 -0
  168. package/esm2022/form/components/date-range/date-range.component.mjs +110 -0
  169. package/esm2022/form/components/dropdown/dropdown.component.mjs +213 -0
  170. package/esm2022/form/directives/input-trim.directive.mjs +55 -0
  171. package/esm2022/form/index.mjs +7 -0
  172. package/esm2022/form/mediusinc-mng-commons-form.mjs +5 -0
  173. package/esm2022/index.mjs +2 -77
  174. package/esm2022/model/descriptors/enum.descriptor.mjs +31 -0
  175. package/esm2022/model/descriptors/model.descriptor.mjs +78 -0
  176. package/esm2022/model/descriptors/type.descriptor.mjs +21 -0
  177. package/esm2022/model/index.mjs +11 -0
  178. package/esm2022/model/mediusinc-mng-commons-model.mjs +5 -0
  179. package/esm2022/model/pipes/enum.pipe.mjs +26 -0
  180. package/esm2022/model/pipes/i18n-property.pipe.mjs +19 -0
  181. package/esm2022/model/utils/i18n.util.mjs +51 -0
  182. package/esm2022/model/utils/model.util.mjs +73 -0
  183. package/esm2022/provide.mjs +6 -0
  184. package/esm2022/table/api/data-providers/table.data-provider.mjs +63 -0
  185. package/esm2022/table/api/descriptors/column.descriptor.mjs +359 -0
  186. package/esm2022/table/api/descriptors/sort.descriptor.mjs +45 -0
  187. package/esm2022/table/api/descriptors/table.descriptor.mjs +750 -0
  188. package/esm2022/table/api/helpers/class-attribute-converter.mjs +104 -0
  189. package/esm2022/table/api/index.mjs +16 -0
  190. package/esm2022/table/api/mediusinc-mng-commons-table-api.mjs +5 -0
  191. package/esm2022/table/api/models/class-table-attribute.model.mjs +2 -0
  192. package/esm2022/table/api/models/column-value.model.mjs +2 -0
  193. package/esm2022/table/api/models/column.model.mjs +21 -0
  194. package/esm2022/table/api/models/table-columns.model.mjs +2 -0
  195. package/esm2022/table/api/models/table-event.model.mjs +2 -0
  196. package/esm2022/table/api/models/table.model.mjs +22 -0
  197. package/esm2022/table/components/column-filter-full/column-filter-full.component.mjs +594 -0
  198. package/esm2022/table/components/column-value/column-value.component.mjs +88 -0
  199. package/esm2022/table/components/table/table.component.mjs +647 -0
  200. package/esm2022/table/helpers/notification.mjs +15 -0
  201. package/esm2022/table/helpers/table-layout-prefs.mjs +10 -0
  202. package/esm2022/table/index.mjs +13 -0
  203. package/esm2022/table/mediusinc-mng-commons-table.mjs +5 -0
  204. package/esm2022/table/models/column-preferences.model.mjs +2 -0
  205. package/esm2022/table/pipes/locale-default-row-class.pipe.mjs +27 -0
  206. package/esm2022/table/pipes/table-column-filter-class.pipe.mjs +25 -0
  207. package/esm2022/table/services/data-list.service.mjs +23 -0
  208. package/esm2022/tableview/action/components/action/action.component.mjs +323 -0
  209. package/esm2022/tableview/action/components/editor/action-editor.component.mjs +97 -0
  210. package/esm2022/tableview/action/components/editor/injector-context/action-editor-injector-context.component.mjs +398 -0
  211. package/esm2022/tableview/action/components/localization/data-language-dropdown.component.mjs +53 -0
  212. package/esm2022/tableview/action/components/route/action-route.component.mjs +152 -0
  213. package/esm2022/tableview/action/components/table/action-table.component.mjs +158 -0
  214. package/esm2022/tableview/action/guards/unsaved-changes.guard.mjs +4 -0
  215. package/esm2022/tableview/action/helpers/notification.mjs +17 -0
  216. package/esm2022/tableview/action/helpers/styles.mjs +32 -0
  217. package/esm2022/tableview/action/models/action-editor-dialog-data.model.mjs +2 -0
  218. package/esm2022/tableview/action/models/can-component-deactivate.model.mjs +2 -0
  219. package/esm2022/tableview/action/models/execution/action-context.model.mjs +56 -0
  220. package/esm2022/tableview/action/models/execution/action-instance-state.model.mjs +32 -0
  221. package/esm2022/tableview/action/models/execution/action-instance.model.mjs +170 -0
  222. package/esm2022/tableview/action/services/action-error-mapper.service.mjs +20 -0
  223. package/esm2022/tableview/action/services/action-executor.service.mjs +766 -0
  224. package/esm2022/tableview/action/services/component-action-executor.service.mjs +19 -0
  225. package/esm2022/tableview/action/services/data-provider-executor.service.mjs +26 -0
  226. package/esm2022/tableview/action/services/navigation.service.mjs +52 -0
  227. package/esm2022/tableview/action/services/providers/provide-action-executor.mjs +9 -0
  228. package/esm2022/tableview/action/services/providers/provide-view-container.mjs +17 -0
  229. package/esm2022/tableview/action/services/root-action-executor.service.mjs +18 -0
  230. package/esm2022/tableview/action/services/tokens/action-editor.token.mjs +3 -0
  231. package/esm2022/tableview/action/services/view-container.service.mjs +56 -0
  232. package/esm2022/tableview/action/utils/i18n.util.mjs +126 -0
  233. package/esm2022/tableview/api/action/descriptors/action-confirmation.descriptor.mjs +76 -0
  234. package/esm2022/tableview/api/action/descriptors/action-editor.descriptor.mjs +264 -0
  235. package/esm2022/tableview/api/action/descriptors/action-link.descriptor.mjs +89 -0
  236. package/esm2022/tableview/api/action/descriptors/action.descriptor.mjs +385 -0
  237. package/esm2022/tableview/api/action/helpers/data-provider-executors.mjs +80 -0
  238. package/esm2022/tableview/api/action/models/action-component.model.mjs +2 -0
  239. package/esm2022/tableview/api/action/models/action-descriptor.types.mjs +2 -0
  240. package/esm2022/tableview/api/action/models/action-editor.model.mjs +2 -0
  241. package/esm2022/tableview/api/action/models/action-error.model.mjs +14 -0
  242. package/esm2022/tableview/api/action/models/action.type.mjs +26 -0
  243. package/esm2022/tableview/api/action/models/execution/action-context-validation.model.mjs +2 -0
  244. package/esm2022/tableview/api/action/models/execution/action-context.model.mjs +2 -0
  245. package/esm2022/tableview/api/action/models/execution/action-execution-error.model.mjs +2 -0
  246. package/esm2022/tableview/api/action/models/execution/action-instance-state.model.mjs +32 -0
  247. package/esm2022/tableview/api/action/models/execution/action-instance.model.mjs +2 -0
  248. package/esm2022/tableview/api/action/models/execution/view-container.model.mjs +2 -0
  249. package/esm2022/tableview/api/action/models/tableview-action-default-categories.model.mjs +11 -0
  250. package/esm2022/tableview/api/action/services/data-provider-executor.service.mjs +28 -0
  251. package/esm2022/tableview/api/action/services/tokens/data-language-dropdown.token.mjs +3 -0
  252. package/esm2022/tableview/api/editor/data-providers/editor.data-provider.mjs +104 -0
  253. package/esm2022/tableview/api/editor/descriptors/editor.descriptor.mjs +626 -0
  254. package/esm2022/tableview/api/editor/descriptors/field-action.descriptor.mjs +49 -0
  255. package/esm2022/tableview/api/editor/descriptors/field-base.descriptor.mjs +288 -0
  256. package/esm2022/tableview/api/editor/descriptors/field-group.descriptor.mjs +97 -0
  257. package/esm2022/tableview/api/editor/descriptors/field-lookup.descriptor.mjs +213 -0
  258. package/esm2022/tableview/api/editor/descriptors/field-many.descriptor.mjs +153 -0
  259. package/esm2022/tableview/api/editor/descriptors/field-validation.descriptor.mjs +25 -0
  260. package/esm2022/tableview/api/editor/descriptors/field.descriptor.mjs +343 -0
  261. package/esm2022/tableview/api/editor/helpers/class-attribute-converter.mjs +85 -0
  262. package/esm2022/tableview/api/editor/helpers/field-validators.mjs +33 -0
  263. package/esm2022/tableview/api/editor/models/class-tableview-attribute.model.mjs +2 -0
  264. package/esm2022/tableview/api/editor/models/editor-fields.model.mjs +2 -0
  265. package/esm2022/tableview/api/editor/models/editor.model.mjs +9 -0
  266. package/esm2022/tableview/api/editor/models/field-action-context.model.mjs +2 -0
  267. package/esm2022/tableview/api/editor/models/field.model.mjs +56 -0
  268. package/esm2022/tableview/api/editor/models/form-editor.event.mjs +27 -0
  269. package/esm2022/tableview/api/editor/models/form-editor.interface.mjs +2 -0
  270. package/esm2022/tableview/api/editor/models/formly-custom-field.model.mjs +69 -0
  271. package/esm2022/tableview/api/editor/models/formly-field.model.mjs +2 -0
  272. package/esm2022/tableview/api/editor/models/radio.model.mjs +2 -0
  273. package/esm2022/tableview/api/index.mjs +64 -0
  274. package/esm2022/tableview/api/mediusinc-mng-commons-tableview-api.mjs +5 -0
  275. package/esm2022/tableview/api/tableview/data-providers/tableview.data-provider.mjs +105 -0
  276. package/esm2022/tableview/api/tableview/descriptors/tableview.descriptor.mjs +672 -0
  277. package/esm2022/tableview/api/tableview/helpers/class-attribute-converter.mjs +34 -0
  278. package/esm2022/tableview/api/tableview/helpers/files-export.mjs +34 -0
  279. package/esm2022/tableview/api/tableview/helpers/tableview-create.mjs +24 -0
  280. package/esm2022/tableview/api/tableview/helpers/tableview-default-actions.mjs +240 -0
  281. package/esm2022/tableview/api/tableview/helpers/tableview-input-builder.mjs +162 -0
  282. package/esm2022/tableview/api/tableview/models/class-tableview-attribute.model.mjs +2 -0
  283. package/esm2022/tableview/api/tableview/models/tableview-input.model.mjs +2 -0
  284. package/esm2022/tableview/api/tableview/models/tableview-route.model.mjs +2 -0
  285. package/esm2022/tableview/editor/components/editor/form-editor.component.mjs +285 -0
  286. package/esm2022/tableview/editor/components/formly/fields/formly-field-action/formly-field-action.component.mjs +61 -0
  287. package/esm2022/tableview/editor/components/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +54 -0
  288. package/esm2022/tableview/editor/components/formly/fields/formly-field-custom/formly-field-custom.component.mjs +39 -0
  289. package/esm2022/tableview/editor/components/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +49 -0
  290. package/esm2022/tableview/editor/components/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +27 -0
  291. package/esm2022/tableview/editor/components/formly/fields/formly-field-input/formly-field-input.component.mjs +220 -0
  292. package/esm2022/tableview/editor/components/formly/fields/formly-field-label/formly-field-label.component.mjs +24 -0
  293. package/esm2022/tableview/editor/components/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +215 -0
  294. package/esm2022/tableview/editor/components/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +217 -0
  295. package/esm2022/tableview/editor/components/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +196 -0
  296. package/esm2022/tableview/editor/components/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +18 -0
  297. package/esm2022/tableview/editor/components/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.mjs +33 -0
  298. package/esm2022/tableview/editor/components/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +30 -0
  299. package/esm2022/tableview/editor/helpers/formly-config.mjs +260 -0
  300. package/esm2022/tableview/editor/helpers/notification.mjs +11 -0
  301. package/esm2022/tableview/editor/models/formly-config.model.mjs +2 -0
  302. package/esm2022/tableview/editor/services/formly-config.provider.mjs +31 -0
  303. package/esm2022/tableview/editor/utils/editor-formly.util.mjs +337 -0
  304. package/esm2022/tableview/index.mjs +64 -0
  305. package/esm2022/tableview/mediusinc-mng-commons-tableview.mjs +5 -0
  306. package/esm2022/tableview/provide.mjs +61 -0
  307. package/esm2022/tableview/tableview/components/route/tableview-route.component.mjs +15 -0
  308. package/esm2022/tableview/tableview/components/tableview/tableview.component.mjs +84 -0
  309. package/esm2022/tableview/tableview/router/tableview-route-builder.mjs +201 -0
  310. package/esm2022/tableview/tableview/services/tableview-feature-config.token.mjs +3 -0
  311. package/fesm2022/mediusinc-mng-commons-core.mjs +3904 -0
  312. package/fesm2022/mediusinc-mng-commons-core.mjs.map +1 -0
  313. package/fesm2022/mediusinc-mng-commons-filter.mjs +403 -0
  314. package/fesm2022/mediusinc-mng-commons-filter.mjs.map +1 -0
  315. package/fesm2022/mediusinc-mng-commons-form-api.mjs +294 -0
  316. package/fesm2022/mediusinc-mng-commons-form-api.mjs.map +1 -0
  317. package/fesm2022/mediusinc-mng-commons-form.mjs +770 -0
  318. package/fesm2022/mediusinc-mng-commons-form.mjs.map +1 -0
  319. package/fesm2022/mediusinc-mng-commons-model.mjs +300 -0
  320. package/fesm2022/mediusinc-mng-commons-model.mjs.map +1 -0
  321. package/fesm2022/mediusinc-mng-commons-table-api.mjs +1363 -0
  322. package/fesm2022/mediusinc-mng-commons-table-api.mjs.map +1 -0
  323. package/fesm2022/mediusinc-mng-commons-table.mjs +1393 -0
  324. package/fesm2022/mediusinc-mng-commons-table.mjs.map +1 -0
  325. package/fesm2022/mediusinc-mng-commons-tableview-api.mjs +4372 -0
  326. package/fesm2022/mediusinc-mng-commons-tableview-api.mjs.map +1 -0
  327. package/fesm2022/mediusinc-mng-commons-tableview.mjs +4756 -0
  328. package/fesm2022/mediusinc-mng-commons-tableview.mjs.map +1 -0
  329. package/fesm2022/mediusinc-mng-commons.mjs +5 -18545
  330. package/fesm2022/mediusinc-mng-commons.mjs.map +1 -1
  331. package/filter/README.md +9 -0
  332. package/filter/descriptors/filter-lookup.descriptor.d.ts +67 -0
  333. package/filter/descriptors/filter.descriptor.d.ts +67 -0
  334. package/filter/index.d.ts +3 -0
  335. package/filter/models/filter.model.d.ts +12 -0
  336. package/form/README.md +8 -0
  337. package/form/api/README.md +7 -0
  338. package/form/api/data-providers/lookup.data-provider.d.ts +19 -0
  339. package/form/api/descriptors/action-button.descriptor.d.ts +25 -0
  340. package/form/api/descriptors/button-style.builder.d.ts +68 -0
  341. package/form/api/index.d.ts +4 -0
  342. package/form/components/autocomplete/autocomplete.component.d.ts +82 -0
  343. package/form/components/date-range/date-range.component.d.ts +28 -0
  344. package/form/components/dropdown/dropdown.component.d.ts +55 -0
  345. package/form/directives/input-trim.directive.d.ts +14 -0
  346. package/form/index.d.ts +4 -0
  347. package/i18n/en.json +234 -0
  348. package/i18n/sl.json +231 -0
  349. package/index.d.ts +1 -52
  350. package/model/README.md +7 -0
  351. package/model/descriptors/enum.descriptor.d.ts +14 -0
  352. package/model/descriptors/model.descriptor.d.ts +31 -0
  353. package/model/descriptors/type.descriptor.d.ts +10 -0
  354. package/model/index.d.ts +7 -0
  355. package/model/pipes/enum.pipe.d.ts +8 -0
  356. package/model/pipes/i18n-property.pipe.d.ts +8 -0
  357. package/model/utils/i18n.util.d.ts +15 -0
  358. package/model/utils/model.util.d.ts +8 -0
  359. package/package.json +56 -2
  360. package/provide.d.ts +7 -0
  361. package/table/README.md +11 -0
  362. package/table/api/README.md +9 -0
  363. package/table/api/data-providers/table.data-provider.d.ts +38 -0
  364. package/table/api/descriptors/column.descriptor.d.ts +148 -0
  365. package/table/api/descriptors/sort.descriptor.d.ts +17 -0
  366. package/table/api/descriptors/table.descriptor.d.ts +271 -0
  367. package/table/api/helpers/class-attribute-converter.d.ts +22 -0
  368. package/table/api/index.d.ts +11 -0
  369. package/table/api/models/class-table-attribute.model.d.ts +8 -0
  370. package/table/api/models/column-value.model.d.ts +7 -0
  371. package/table/api/models/table-columns.model.d.ts +42 -0
  372. package/table/api/models/table-event.model.d.ts +17 -0
  373. package/table/api/models/table.model.d.ts +35 -0
  374. package/table/components/column-filter-full/column-filter-full.component.d.ts +100 -0
  375. package/table/components/column-value/column-value.component.d.ts +33 -0
  376. package/table/components/table/table.component.d.ts +114 -0
  377. package/table/helpers/notification.d.ts +4 -0
  378. package/table/helpers/table-layout-prefs.d.ts +7 -0
  379. package/table/index.d.ts +8 -0
  380. package/table/models/column-preferences.model.d.ts +12 -0
  381. package/table/pipes/locale-default-row-class.pipe.d.ts +10 -0
  382. package/table/pipes/table-column-filter-class.pipe.d.ts +8 -0
  383. package/table/services/data-list.service.d.ts +16 -0
  384. package/tableview/README.md +13 -0
  385. package/tableview/action/components/action/action.component.d.ts +73 -0
  386. package/tableview/action/components/editor/action-editor.component.d.ts +31 -0
  387. package/tableview/action/components/editor/injector-context/action-editor-injector-context.component.d.ts +76 -0
  388. package/tableview/action/components/localization/data-language-dropdown.component.d.ts +22 -0
  389. package/tableview/action/components/route/action-route.component.d.ts +31 -0
  390. package/tableview/action/components/table/action-table.component.d.ts +48 -0
  391. package/tableview/action/guards/unsaved-changes.guard.d.ts +3 -0
  392. package/tableview/action/helpers/notification.d.ts +6 -0
  393. package/tableview/action/helpers/styles.d.ts +5 -0
  394. package/tableview/action/models/action-editor-dialog-data.model.d.ts +11 -0
  395. package/tableview/action/models/execution/action-context.model.d.ts +36 -0
  396. package/tableview/action/models/execution/action-instance-state.model.d.ts +30 -0
  397. package/tableview/action/models/execution/action-instance.model.d.ts +56 -0
  398. package/tableview/action/services/action-error-mapper.service.d.ts +18 -0
  399. package/tableview/action/services/action-executor.service.d.ts +175 -0
  400. package/tableview/action/services/component-action-executor.service.d.ts +9 -0
  401. package/tableview/action/services/data-provider-executor.service.d.ts +23 -0
  402. package/tableview/action/services/navigation.service.d.ts +15 -0
  403. package/tableview/action/services/root-action-executor.service.d.ts +9 -0
  404. package/tableview/action/services/tokens/action-editor.token.d.ts +2 -0
  405. package/tableview/action/services/view-container.service.d.ts +30 -0
  406. package/tableview/action/utils/i18n.util.d.ts +48 -0
  407. package/tableview/api/README.md +11 -0
  408. package/tableview/api/action/descriptors/action-confirmation.descriptor.d.ts +36 -0
  409. package/tableview/api/action/descriptors/action-editor.descriptor.d.ts +117 -0
  410. package/tableview/api/action/descriptors/action-link.descriptor.d.ts +34 -0
  411. package/tableview/api/action/descriptors/action.descriptor.d.ts +151 -0
  412. package/tableview/api/action/helpers/data-provider-executors.d.ts +18 -0
  413. package/tableview/api/action/models/action-component.model.d.ts +12 -0
  414. package/tableview/api/action/models/action-descriptor.types.d.ts +5 -0
  415. package/tableview/api/action/models/action-editor.model.d.ts +4 -0
  416. package/tableview/api/action/models/action-error.model.d.ts +14 -0
  417. package/tableview/api/action/models/execution/action-context-validation.model.d.ts +11 -0
  418. package/tableview/api/action/models/execution/action-context.model.d.ts +24 -0
  419. package/tableview/api/action/models/execution/action-execution-error.model.d.ts +4 -0
  420. package/tableview/api/action/models/execution/action-instance-state.model.d.ts +30 -0
  421. package/tableview/api/action/models/execution/action-instance.model.d.ts +31 -0
  422. package/tableview/api/action/models/execution/view-container.model.d.ts +38 -0
  423. package/tableview/api/action/services/data-provider-executor.service.d.ts +38 -0
  424. package/tableview/api/action/services/tokens/data-language-dropdown.token.d.ts +2 -0
  425. package/tableview/api/editor/data-providers/editor.data-provider.d.ts +87 -0
  426. package/tableview/api/editor/descriptors/editor.descriptor.d.ts +366 -0
  427. package/tableview/api/editor/descriptors/field-action.descriptor.d.ts +22 -0
  428. package/tableview/api/editor/descriptors/field-base.descriptor.d.ts +120 -0
  429. package/tableview/api/editor/descriptors/field-group.descriptor.d.ts +41 -0
  430. package/tableview/api/editor/descriptors/field-lookup.descriptor.d.ts +80 -0
  431. package/tableview/api/editor/descriptors/field-many.descriptor.d.ts +61 -0
  432. package/tableview/api/editor/descriptors/field-validation.descriptor.d.ts +19 -0
  433. package/tableview/api/editor/descriptors/field.descriptor.d.ts +168 -0
  434. package/tableview/api/editor/helpers/class-attribute-converter.d.ts +21 -0
  435. package/tableview/api/editor/helpers/field-validators.d.ts +3 -0
  436. package/tableview/api/editor/models/class-tableview-attribute.model.d.ts +7 -0
  437. package/tableview/api/editor/models/editor-fields.model.d.ts +34 -0
  438. package/tableview/api/editor/models/editor.model.d.ts +7 -0
  439. package/tableview/api/editor/models/field-action-context.model.d.ts +24 -0
  440. package/tableview/api/editor/models/field.model.d.ts +66 -0
  441. package/tableview/api/editor/models/form-editor.event.d.ts +55 -0
  442. package/tableview/api/editor/models/formly-custom-field.model.d.ts +27 -0
  443. package/tableview/api/editor/models/formly-field.model.d.ts +18 -0
  444. package/tableview/api/index.d.ts +50 -0
  445. package/tableview/api/tableview/data-providers/tableview.data-provider.d.ts +43 -0
  446. package/tableview/api/tableview/descriptors/tableview.descriptor.d.ts +296 -0
  447. package/tableview/api/tableview/helpers/class-attribute-converter.d.ts +8 -0
  448. package/tableview/api/tableview/helpers/files-export.d.ts +4 -0
  449. package/tableview/api/tableview/helpers/tableview-create.d.ts +16 -0
  450. package/tableview/api/tableview/helpers/tableview-default-actions.d.ts +38 -0
  451. package/tableview/api/tableview/helpers/tableview-input-builder.d.ts +114 -0
  452. package/tableview/api/tableview/models/class-tableview-attribute.model.d.ts +3 -0
  453. package/tableview/api/tableview/models/tableview-input.model.d.ts +8 -0
  454. package/tableview/api/tableview/models/tableview-route.model.d.ts +20 -0
  455. package/tableview/editor/components/editor/form-editor.component.d.ts +50 -0
  456. package/tableview/editor/components/formly/fields/formly-field-action/formly-field-action.component.d.ts +14 -0
  457. package/tableview/editor/components/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +15 -0
  458. package/tableview/editor/components/formly/fields/formly-field-custom/formly-field-custom.component.d.ts +11 -0
  459. package/tableview/editor/components/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +14 -0
  460. package/tableview/editor/components/formly/fields/formly-field-fieldset/formly-field-fieldset.component.d.ts +12 -0
  461. package/tableview/editor/components/formly/fields/formly-field-input/formly-field-input.component.d.ts +37 -0
  462. package/tableview/editor/components/formly/fields/formly-field-label/formly-field-label.component.d.ts +11 -0
  463. package/tableview/editor/components/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.d.ts +43 -0
  464. package/tableview/editor/components/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +23 -0
  465. package/tableview/editor/components/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +41 -0
  466. package/tableview/editor/components/formly/fields/formly-field-tabs/formly-field-tabs.component.d.ts +7 -0
  467. package/tableview/editor/components/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.d.ts +11 -0
  468. package/tableview/editor/components/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +9 -0
  469. package/tableview/editor/helpers/formly-config.d.ts +18 -0
  470. package/tableview/editor/helpers/notification.d.ts +4 -0
  471. package/tableview/editor/models/formly-config.model.d.ts +5 -0
  472. package/tableview/editor/services/formly-config.provider.d.ts +5 -0
  473. package/tableview/editor/utils/editor-formly.util.d.ts +12 -0
  474. package/tableview/index.d.ts +48 -0
  475. package/tableview/provide.d.ts +8 -0
  476. package/tableview/tableview/components/route/tableview-route.component.d.ts +7 -0
  477. package/tableview/tableview/components/tableview/tableview.component.d.ts +26 -0
  478. package/tableview/tableview/router/tableview-route-builder.d.ts +42 -0
  479. package/tableview/tableview/services/tableview-feature-config.token.d.ts +18 -0
  480. package/assets/fonts/poppins-v20-latin-500.woff +0 -0
  481. package/assets/fonts/poppins-v20-latin-500.woff2 +0 -0
  482. package/assets/fonts/poppins-v20-latin-600.woff +0 -0
  483. package/assets/fonts/poppins-v20-latin-600.woff2 +0 -0
  484. package/assets/fonts/poppins-v20-latin-700.woff +0 -0
  485. package/assets/fonts/poppins-v20-latin-700.woff2 +0 -0
  486. package/assets/fonts/poppins-v20-latin-regular.woff +0 -0
  487. package/assets/fonts/poppins-v20-latin-regular.woff2 +0 -0
  488. package/assets/i18n/en.json +0 -287
  489. package/assets/i18n/sl.json +0 -286
  490. package/assets/images/effect-ondark.png +0 -0
  491. package/assets/images/effect-ondark.svg +0 -38
  492. package/assets/images/effect-ondark@2x.png +0 -0
  493. package/assets/images/effect-onlight.png +0 -0
  494. package/assets/images/effect-onlight.svg +0 -38
  495. package/assets/images/effect-onlight@2x.png +0 -0
  496. package/assets/images/pages/exception-ondark.png +0 -0
  497. package/assets/images/pages/exception-onlight.png +0 -0
  498. package/assets/images/pages/login-ondark.png +0 -0
  499. package/assets/images/pages/login-onlight.png +0 -0
  500. package/esm2022/lib/api/models/builders/query-param.builder.mjs +0 -59
  501. package/esm2022/lib/api/models/filter-match-type.model.mjs +0 -27
  502. package/esm2022/lib/api/models/filter-param.model.mjs +0 -33
  503. package/esm2022/lib/api/models/index.mjs +0 -7
  504. package/esm2022/lib/api/models/query-mode.model.mjs +0 -18
  505. package/esm2022/lib/api/models/query-param.model.mjs +0 -68
  506. package/esm2022/lib/api/models/query-result.model.mjs +0 -35
  507. package/esm2022/lib/api/services/api.abstract.service.mjs +0 -58
  508. package/esm2022/lib/api/services/crud-api.abstract.service.mjs +0 -75
  509. package/esm2022/lib/api/services/get-all-api.abstract.service.mjs +0 -30
  510. package/esm2022/lib/api/services/index.mjs +0 -4
  511. package/esm2022/lib/api/utils/index.mjs +0 -3
  512. package/esm2022/lib/api/utils/medius-rest.util.mjs +0 -293
  513. package/esm2022/lib/api/utils/object-serializer.util.mjs +0 -185
  514. package/esm2022/lib/components/action/action.component.mjs +0 -315
  515. package/esm2022/lib/components/action/editor/action-editor.component.mjs +0 -98
  516. package/esm2022/lib/components/action/editor/injector-context/action-editor-injector-context.component.mjs +0 -394
  517. package/esm2022/lib/components/action/index.mjs +0 -6
  518. package/esm2022/lib/components/action/localization/data-language-dropdown.component.mjs +0 -53
  519. package/esm2022/lib/components/action/models/action-component.model.mjs +0 -2
  520. package/esm2022/lib/components/action/models/action-execution.model.mjs +0 -322
  521. package/esm2022/lib/components/action/models/index.mjs +0 -4
  522. package/esm2022/lib/components/action/models/tableview-action-default-categories.model.mjs +0 -11
  523. package/esm2022/lib/components/action/route/action-route.component.mjs +0 -142
  524. package/esm2022/lib/components/action/table/action-table.component.mjs +0 -154
  525. package/esm2022/lib/components/form/autocomplete/autocomplete.component.mjs +0 -396
  526. package/esm2022/lib/components/form/date-range/date-range.component.mjs +0 -110
  527. package/esm2022/lib/components/form/dropdown/dropdown.component.mjs +0 -221
  528. package/esm2022/lib/components/form/editor/form-editor.component.mjs +0 -281
  529. package/esm2022/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +0 -61
  530. package/esm2022/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +0 -54
  531. package/esm2022/lib/components/form/formly/fields/formly-field-custom/formly-custom-field-base.model.mjs +0 -69
  532. package/esm2022/lib/components/form/formly/fields/formly-field-custom/formly-field-custom.component.mjs +0 -39
  533. package/esm2022/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +0 -49
  534. package/esm2022/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +0 -27
  535. package/esm2022/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +0 -220
  536. package/esm2022/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.mjs +0 -24
  537. package/esm2022/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +0 -217
  538. package/esm2022/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +0 -221
  539. package/esm2022/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +0 -201
  540. package/esm2022/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +0 -18
  541. package/esm2022/lib/components/form/formly/fields/index.mjs +0 -13
  542. package/esm2022/lib/components/form/formly/formly.config.mjs +0 -250
  543. package/esm2022/lib/components/form/formly/index.mjs +0 -2
  544. package/esm2022/lib/components/form/formly/models/formly-config.model.mjs +0 -2
  545. package/esm2022/lib/components/form/formly/models/formly-field.model.mjs +0 -2
  546. package/esm2022/lib/components/form/formly/models/index.mjs +0 -3
  547. package/esm2022/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.mjs +0 -33
  548. package/esm2022/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +0 -31
  549. package/esm2022/lib/components/form/formly/wrappers/index.mjs +0 -3
  550. package/esm2022/lib/components/form/index.mjs +0 -5
  551. package/esm2022/lib/components/form/models/field-action-context.model.mjs +0 -2
  552. package/esm2022/lib/components/form/models/form-editor.event.mjs +0 -49
  553. package/esm2022/lib/components/form/models/form-editor.interface.mjs +0 -2
  554. package/esm2022/lib/components/form/models/index.mjs +0 -4
  555. package/esm2022/lib/components/layout/breadcrumb.component.mjs +0 -34
  556. package/esm2022/lib/components/layout/footer.component.mjs +0 -19
  557. package/esm2022/lib/components/layout/index.mjs +0 -9
  558. package/esm2022/lib/components/layout/main-layout.component.mjs +0 -53
  559. package/esm2022/lib/components/layout/menu-item.component.mjs +0 -296
  560. package/esm2022/lib/components/layout/menu.component.mjs +0 -34
  561. package/esm2022/lib/components/layout/services/index.mjs +0 -2
  562. package/esm2022/lib/components/layout/services/main-layout.component.service.mjs +0 -196
  563. package/esm2022/lib/components/layout/topbar-user.component.mjs +0 -46
  564. package/esm2022/lib/components/layout/topbar.component.mjs +0 -66
  565. package/esm2022/lib/components/layout/version.component.mjs +0 -60
  566. package/esm2022/lib/components/layoutV2/breadcrumb.component.mjs +0 -30
  567. package/esm2022/lib/components/layoutV2/footer.component.mjs +0 -29
  568. package/esm2022/lib/components/layoutV2/index.mjs +0 -8
  569. package/esm2022/lib/components/layoutV2/main-layout.component.mjs +0 -95
  570. package/esm2022/lib/components/layoutV2/menu-item.component.mjs +0 -275
  571. package/esm2022/lib/components/layoutV2/menu.component.mjs +0 -39
  572. package/esm2022/lib/components/layoutV2/model/index.mjs +0 -3
  573. package/esm2022/lib/components/layoutV2/model/layout-state.model.mjs +0 -2
  574. package/esm2022/lib/components/layoutV2/model/menu.model.mjs +0 -2
  575. package/esm2022/lib/components/layoutV2/services/index.mjs +0 -3
  576. package/esm2022/lib/components/layoutV2/services/main-layout.component.service.mjs +0 -71
  577. package/esm2022/lib/components/layoutV2/services/menu.service.mjs +0 -122
  578. package/esm2022/lib/components/layoutV2/sidebar.component.mjs +0 -62
  579. package/esm2022/lib/components/layoutV2/topbar-user.component.mjs +0 -40
  580. package/esm2022/lib/components/layoutV2/topbar.component.mjs +0 -69
  581. package/esm2022/lib/components/layoutV2/version.component.mjs +0 -63
  582. package/esm2022/lib/components/notification/notification-wrapper.component.mjs +0 -50
  583. package/esm2022/lib/components/pages/error/error.page.component.mjs +0 -21
  584. package/esm2022/lib/components/pages/index.mjs +0 -3
  585. package/esm2022/lib/components/pages/not-found/not-found.page.component.mjs +0 -21
  586. package/esm2022/lib/components/table/column-filter-full/column-filter-full.component.mjs +0 -468
  587. package/esm2022/lib/components/table/column-value/column-value.component.mjs +0 -90
  588. package/esm2022/lib/components/table/models/table.event.mjs +0 -16
  589. package/esm2022/lib/components/table/models/table.interface.mjs +0 -2
  590. package/esm2022/lib/components/table/table-column-filter-class/table-column-filter-class.pipe.mjs +0 -25
  591. package/esm2022/lib/components/table/table.component.mjs +0 -735
  592. package/esm2022/lib/components/tableview/index.mjs +0 -4
  593. package/esm2022/lib/components/tableview/route/tableview-route.abstract.component.mjs +0 -158
  594. package/esm2022/lib/components/tableview/route/tableview-route.component.mjs +0 -47
  595. package/esm2022/lib/components/tableview/tableview.component.mjs +0 -82
  596. package/esm2022/lib/data-providers/base.data-provider.mjs +0 -48
  597. package/esm2022/lib/data-providers/editor.data-provider.mjs +0 -105
  598. package/esm2022/lib/data-providers/index.mjs +0 -7
  599. package/esm2022/lib/data-providers/lookup.data-provider.mjs +0 -45
  600. package/esm2022/lib/data-providers/table.data-provider.mjs +0 -65
  601. package/esm2022/lib/data-providers/tableview-crud.data-provider.mjs +0 -32
  602. package/esm2022/lib/data-providers/tableview.data-provider.mjs +0 -105
  603. package/esm2022/lib/descriptors/action/action-button.descriptor.mjs +0 -68
  604. package/esm2022/lib/descriptors/action/action-confirmation.descriptor.mjs +0 -77
  605. package/esm2022/lib/descriptors/action/action-editor.descriptor.mjs +0 -262
  606. package/esm2022/lib/descriptors/action/action-link.descriptor.mjs +0 -89
  607. package/esm2022/lib/descriptors/action/action.descriptor.mjs +0 -384
  608. package/esm2022/lib/descriptors/action/index.mjs +0 -6
  609. package/esm2022/lib/descriptors/editor/editor.descriptor.mjs +0 -514
  610. package/esm2022/lib/descriptors/editor/field-action.descriptor.mjs +0 -50
  611. package/esm2022/lib/descriptors/editor/field-base.descriptor.mjs +0 -285
  612. package/esm2022/lib/descriptors/editor/field-group.descriptor.mjs +0 -97
  613. package/esm2022/lib/descriptors/editor/field-lookup.descriptor.mjs +0 -217
  614. package/esm2022/lib/descriptors/editor/field-many.descriptor.mjs +0 -153
  615. package/esm2022/lib/descriptors/editor/field-validation.descriptor.mjs +0 -25
  616. package/esm2022/lib/descriptors/editor/field.descriptor.mjs +0 -346
  617. package/esm2022/lib/descriptors/editor/index.mjs +0 -9
  618. package/esm2022/lib/descriptors/editor/internal/editor-fields.model.mjs +0 -2
  619. package/esm2022/lib/descriptors/editor/internal/editor.model.mjs +0 -2
  620. package/esm2022/lib/descriptors/filter/filter-lookup.descriptor.mjs +0 -210
  621. package/esm2022/lib/descriptors/filter/filter.descriptor.mjs +0 -181
  622. package/esm2022/lib/descriptors/filter/index.mjs +0 -3
  623. package/esm2022/lib/descriptors/interfaces/field-config.interface.mjs +0 -2
  624. package/esm2022/lib/descriptors/interfaces/index.mjs +0 -3
  625. package/esm2022/lib/descriptors/interfaces/lookup-descriptor.interface.mjs +0 -2
  626. package/esm2022/lib/descriptors/model/index.mjs +0 -2
  627. package/esm2022/lib/descriptors/model/model.descriptor.mjs +0 -70
  628. package/esm2022/lib/descriptors/table/column.descriptor.mjs +0 -454
  629. package/esm2022/lib/descriptors/table/index.mjs +0 -3
  630. package/esm2022/lib/descriptors/table/internal/table-columns.model.mjs +0 -2
  631. package/esm2022/lib/descriptors/table/internal/table.model.mjs +0 -2
  632. package/esm2022/lib/descriptors/table/table.descriptor.mjs +0 -600
  633. package/esm2022/lib/descriptors/tableview/index.mjs +0 -2
  634. package/esm2022/lib/descriptors/tableview/internal/tableview.model.mjs +0 -2
  635. package/esm2022/lib/descriptors/tableview/tableview.descriptor.mjs +0 -461
  636. package/esm2022/lib/descriptors/types/action.type.mjs +0 -26
  637. package/esm2022/lib/descriptors/types/column.type.mjs +0 -21
  638. package/esm2022/lib/descriptors/types/editor.type.mjs +0 -8
  639. package/esm2022/lib/descriptors/types/field.type.mjs +0 -56
  640. package/esm2022/lib/descriptors/types/filter.type.mjs +0 -33
  641. package/esm2022/lib/descriptors/types/index.mjs +0 -8
  642. package/esm2022/lib/descriptors/types/table.type.mjs +0 -26
  643. package/esm2022/lib/descriptors/types/trim.type.mjs +0 -2
  644. package/esm2022/lib/directives/component.directive.mjs +0 -66
  645. package/esm2022/lib/directives/dialog-keydown-handler.directive.mjs +0 -49
  646. package/esm2022/lib/directives/index.mjs +0 -5
  647. package/esm2022/lib/directives/input-trim.directive.mjs +0 -55
  648. package/esm2022/lib/directives/template.directive.mjs +0 -29
  649. package/esm2022/lib/error/error.handler.mjs +0 -20
  650. package/esm2022/lib/error/index.mjs +0 -2
  651. package/esm2022/lib/guards/index.mjs +0 -2
  652. package/esm2022/lib/guards/unsaved-changes.guard.mjs +0 -4
  653. package/esm2022/lib/helpers/coercion.mjs +0 -52
  654. package/esm2022/lib/models/action-editor.model.mjs +0 -2
  655. package/esm2022/lib/models/can-component-deactivate.model.mjs +0 -2
  656. package/esm2022/lib/models/class.model.mjs +0 -2
  657. package/esm2022/lib/models/column-value.model.mjs +0 -2
  658. package/esm2022/lib/models/common-init-event-enum.model.mjs +0 -11
  659. package/esm2022/lib/models/config.model.mjs +0 -2
  660. package/esm2022/lib/models/enum.model.mjs +0 -2
  661. package/esm2022/lib/models/error.model.mjs +0 -44
  662. package/esm2022/lib/models/index.mjs +0 -18
  663. package/esm2022/lib/models/layout-config.model.mjs +0 -2
  664. package/esm2022/lib/models/log.model.mjs +0 -10
  665. package/esm2022/lib/models/menu.model.mjs +0 -2
  666. package/esm2022/lib/models/radio.model.mjs +0 -2
  667. package/esm2022/lib/models/tableview-attr.model.mjs +0 -2
  668. package/esm2022/lib/models/type-registry.model.mjs +0 -2
  669. package/esm2022/lib/models/user.model.mjs +0 -2
  670. package/esm2022/lib/models/version.model.mjs +0 -2
  671. package/esm2022/lib/models/view-container.model.mjs +0 -2
  672. package/esm2022/lib/pipes/boolean.pipe.mjs +0 -28
  673. package/esm2022/lib/pipes/class-map.pipe.mjs +0 -23
  674. package/esm2022/lib/pipes/enum.pipe.mjs +0 -26
  675. package/esm2022/lib/pipes/enumerate-async.pipe.mjs +0 -41
  676. package/esm2022/lib/pipes/enumerate.pipe.mjs +0 -58
  677. package/esm2022/lib/pipes/getter.pipe.mjs +0 -21
  678. package/esm2022/lib/pipes/i18n-property.pipe.mjs +0 -19
  679. package/esm2022/lib/pipes/index.mjs +0 -12
  680. package/esm2022/lib/pipes/json-path.pipe.mjs +0 -25
  681. package/esm2022/lib/pipes/locale-default-row-class.pipe.mjs +0 -27
  682. package/esm2022/lib/pipes/models/internal/enumrate-pipe-i18n.model.mjs +0 -2
  683. package/esm2022/lib/pipes/models/internal/index.mjs +0 -2
  684. package/esm2022/lib/pipes/parametrize.pipe.mjs +0 -86
  685. package/esm2022/lib/pipes/template.pipe.mjs +0 -26
  686. package/esm2022/lib/provide-commons.mjs +0 -88
  687. package/esm2022/lib/registry/type.registry.mjs +0 -113
  688. package/esm2022/lib/router/index.mjs +0 -4
  689. package/esm2022/lib/router/models/index.mjs +0 -2
  690. package/esm2022/lib/router/models/router.model.mjs +0 -2
  691. package/esm2022/lib/router/route-builder.mjs +0 -347
  692. package/esm2022/lib/router/routes-builder.mjs +0 -69
  693. package/esm2022/lib/router/tableview-route-builder.mjs +0 -201
  694. package/esm2022/lib/security/authorization.guard.mjs +0 -15
  695. package/esm2022/lib/security/authorization.service.mjs +0 -51
  696. package/esm2022/lib/security/authorization.util.mjs +0 -16
  697. package/esm2022/lib/security/index.mjs +0 -4
  698. package/esm2022/lib/security/model/authorization.type.mjs +0 -8
  699. package/esm2022/lib/security/model/index.mjs +0 -4
  700. package/esm2022/lib/security/model/permission-service.interface.mjs +0 -2
  701. package/esm2022/lib/security/model/permissions.model.mjs +0 -87
  702. package/esm2022/lib/services/action/action-executor.service.mjs +0 -725
  703. package/esm2022/lib/services/action/component-action-executor.service.mjs +0 -19
  704. package/esm2022/lib/services/action/index.mjs +0 -5
  705. package/esm2022/lib/services/action/provide-action-executor.mjs +0 -9
  706. package/esm2022/lib/services/action/root-action-executor.service.mjs +0 -18
  707. package/esm2022/lib/services/action-error-mapper.service.mjs +0 -20
  708. package/esm2022/lib/services/commons-init.service.mjs +0 -100
  709. package/esm2022/lib/services/commons.service.mjs +0 -495
  710. package/esm2022/lib/services/configuration.service.mjs +0 -174
  711. package/esm2022/lib/services/index.mjs +0 -11
  712. package/esm2022/lib/services/internal/commons-init.provider.mjs +0 -4
  713. package/esm2022/lib/services/internal/index.mjs +0 -2
  714. package/esm2022/lib/services/log-publisher-console.service.mjs +0 -40
  715. package/esm2022/lib/services/logger.service.mjs +0 -130
  716. package/esm2022/lib/services/mng-localstorage-config.service.mjs +0 -30
  717. package/esm2022/lib/services/navigation.service.mjs +0 -55
  718. package/esm2022/lib/services/providers/formly-config.provider.mjs +0 -31
  719. package/esm2022/lib/services/providers/index.mjs +0 -2
  720. package/esm2022/lib/services/router.service.mjs +0 -183
  721. package/esm2022/lib/services/tokens/browser-storage.token.mjs +0 -6
  722. package/esm2022/lib/services/tokens/commons-init.token.mjs +0 -3
  723. package/esm2022/lib/services/tokens/default-setting.token.mjs +0 -3
  724. package/esm2022/lib/services/tokens/index.mjs +0 -6
  725. package/esm2022/lib/services/tokens/log-publisher.token.mjs +0 -3
  726. package/esm2022/lib/services/tokens/module-config.token.mjs +0 -3
  727. package/esm2022/lib/services/version.service.mjs +0 -49
  728. package/esm2022/lib/services/view/index.mjs +0 -3
  729. package/esm2022/lib/services/view/provide-view-container.mjs +0 -17
  730. package/esm2022/lib/services/view/view-container.service.mjs +0 -59
  731. package/esm2022/lib/styles/button-style.builder.mjs +0 -174
  732. package/esm2022/lib/styles/index.mjs +0 -3
  733. package/esm2022/lib/styles/models/index.mjs +0 -3
  734. package/esm2022/lib/styles/models/style-level.enum.mjs +0 -12
  735. package/esm2022/lib/styles/models/style-size.enum.mjs +0 -9
  736. package/esm2022/lib/styles/styles.util.mjs +0 -42
  737. package/esm2022/lib/types/action-descriptor.types.mjs +0 -2
  738. package/esm2022/lib/types/data-provider.types.mjs +0 -2
  739. package/esm2022/lib/types/getter.type.mjs +0 -2
  740. package/esm2022/lib/types/i18n.type.mjs +0 -2
  741. package/esm2022/lib/types/index.mjs +0 -8
  742. package/esm2022/lib/types/localstorage-config-value.type.mjs +0 -2
  743. package/esm2022/lib/types/type.decorator.mjs +0 -12
  744. package/esm2022/lib/types/type.model.mjs +0 -2
  745. package/esm2022/lib/utils/action-data-provider.util.mjs +0 -171
  746. package/esm2022/lib/utils/date.util.mjs +0 -130
  747. package/esm2022/lib/utils/decorator-metadata.util.mjs +0 -61
  748. package/esm2022/lib/utils/editor-formly.util.mjs +0 -339
  749. package/esm2022/lib/utils/enum.util.mjs +0 -82
  750. package/esm2022/lib/utils/error.util.mjs +0 -247
  751. package/esm2022/lib/utils/export.util.mjs +0 -21
  752. package/esm2022/lib/utils/file.util.mjs +0 -18
  753. package/esm2022/lib/utils/i18n.util.mjs +0 -274
  754. package/esm2022/lib/utils/index.mjs +0 -14
  755. package/esm2022/lib/utils/model.util.mjs +0 -73
  756. package/esm2022/lib/utils/notification.util.mjs +0 -45
  757. package/esm2022/lib/utils/object.util.mjs +0 -135
  758. package/esm2022/lib/utils/route.util.mjs +0 -61
  759. package/esm2022/lib/utils/string.util.mjs +0 -59
  760. package/esm2022/lib/utils/tableview.util.mjs +0 -193
  761. package/esm2022/lib/validators/field.validator.mjs +0 -33
  762. package/esm2022/lib/validators/index.mjs +0 -2
  763. package/lib/api/models/builders/query-param.builder.d.ts +0 -13
  764. package/lib/api/models/filter-match-type.model.d.ts +0 -25
  765. package/lib/api/models/filter-param.model.d.ts +0 -23
  766. package/lib/api/models/index.d.ts +0 -6
  767. package/lib/api/models/query-mode.model.d.ts +0 -16
  768. package/lib/api/models/query-param.model.d.ts +0 -31
  769. package/lib/api/models/query-result.model.d.ts +0 -24
  770. package/lib/api/services/api.abstract.service.d.ts +0 -24
  771. package/lib/api/services/crud-api.abstract.service.d.ts +0 -22
  772. package/lib/api/services/get-all-api.abstract.service.d.ts +0 -14
  773. package/lib/api/services/index.d.ts +0 -3
  774. package/lib/api/utils/index.d.ts +0 -2
  775. package/lib/api/utils/medius-rest.util.d.ts +0 -32
  776. package/lib/api/utils/object-serializer.util.d.ts +0 -26
  777. package/lib/components/action/action.component.d.ts +0 -76
  778. package/lib/components/action/editor/action-editor.component.d.ts +0 -33
  779. package/lib/components/action/editor/injector-context/action-editor-injector-context.component.d.ts +0 -80
  780. package/lib/components/action/index.d.ts +0 -5
  781. package/lib/components/action/localization/data-language-dropdown.component.d.ts +0 -24
  782. package/lib/components/action/models/action-component.model.d.ts +0 -13
  783. package/lib/components/action/models/action-execution.model.d.ts +0 -168
  784. package/lib/components/action/models/index.d.ts +0 -3
  785. package/lib/components/action/route/action-route.component.d.ts +0 -31
  786. package/lib/components/action/table/action-table.component.d.ts +0 -50
  787. package/lib/components/form/autocomplete/autocomplete.component.d.ts +0 -83
  788. package/lib/components/form/date-range/date-range.component.d.ts +0 -28
  789. package/lib/components/form/dropdown/dropdown.component.d.ts +0 -56
  790. package/lib/components/form/editor/form-editor.component.d.ts +0 -51
  791. package/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.d.ts +0 -16
  792. package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +0 -16
  793. package/lib/components/form/formly/fields/formly-field-custom/formly-custom-field-base.model.d.ts +0 -27
  794. package/lib/components/form/formly/fields/formly-field-custom/formly-field-custom.component.d.ts +0 -12
  795. package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +0 -15
  796. package/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.d.ts +0 -14
  797. package/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.d.ts +0 -39
  798. package/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.d.ts +0 -11
  799. package/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.d.ts +0 -47
  800. package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +0 -25
  801. package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +0 -42
  802. package/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.d.ts +0 -7
  803. package/lib/components/form/formly/fields/index.d.ts +0 -12
  804. package/lib/components/form/formly/formly.config.d.ts +0 -17
  805. package/lib/components/form/formly/index.d.ts +0 -1
  806. package/lib/components/form/formly/models/formly-config.model.d.ts +0 -11
  807. package/lib/components/form/formly/models/formly-field.model.d.ts +0 -17
  808. package/lib/components/form/formly/models/index.d.ts +0 -2
  809. package/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.d.ts +0 -11
  810. package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +0 -11
  811. package/lib/components/form/formly/wrappers/index.d.ts +0 -2
  812. package/lib/components/form/index.d.ts +0 -4
  813. package/lib/components/form/models/field-action-context.model.d.ts +0 -24
  814. package/lib/components/form/models/form-editor.event.d.ts +0 -58
  815. package/lib/components/form/models/index.d.ts +0 -3
  816. package/lib/components/layout/breadcrumb.component.d.ts +0 -13
  817. package/lib/components/layout/footer.component.d.ts +0 -9
  818. package/lib/components/layout/index.d.ts +0 -8
  819. package/lib/components/layout/main-layout.component.d.ts +0 -19
  820. package/lib/components/layout/menu-item.component.d.ts +0 -55
  821. package/lib/components/layout/menu.component.d.ts +0 -16
  822. package/lib/components/layout/services/index.d.ts +0 -1
  823. package/lib/components/layout/services/main-layout.component.service.d.ts +0 -65
  824. package/lib/components/layout/topbar-user.component.d.ts +0 -22
  825. package/lib/components/layout/topbar.component.d.ts +0 -26
  826. package/lib/components/layout/version.component.d.ts +0 -19
  827. package/lib/components/layoutV2/breadcrumb.component.d.ts +0 -10
  828. package/lib/components/layoutV2/footer.component.d.ts +0 -12
  829. package/lib/components/layoutV2/index.d.ts +0 -7
  830. package/lib/components/layoutV2/main-layout.component.d.ts +0 -24
  831. package/lib/components/layoutV2/menu-item.component.d.ts +0 -42
  832. package/lib/components/layoutV2/menu.component.d.ts +0 -14
  833. package/lib/components/layoutV2/model/index.d.ts +0 -2
  834. package/lib/components/layoutV2/model/layout-state.model.d.ts +0 -10
  835. package/lib/components/layoutV2/model/menu.model.d.ts +0 -4
  836. package/lib/components/layoutV2/services/index.d.ts +0 -2
  837. package/lib/components/layoutV2/services/main-layout.component.service.d.ts +0 -17
  838. package/lib/components/layoutV2/services/menu.service.d.ts +0 -22
  839. package/lib/components/layoutV2/sidebar.component.d.ts +0 -19
  840. package/lib/components/layoutV2/topbar-user.component.d.ts +0 -16
  841. package/lib/components/layoutV2/topbar.component.d.ts +0 -22
  842. package/lib/components/layoutV2/version.component.d.ts +0 -19
  843. package/lib/components/pages/error/error.page.component.d.ts +0 -8
  844. package/lib/components/pages/index.d.ts +0 -2
  845. package/lib/components/pages/not-found/not-found.page.component.d.ts +0 -8
  846. package/lib/components/table/column-filter-full/column-filter-full.component.d.ts +0 -85
  847. package/lib/components/table/column-value/column-value.component.d.ts +0 -35
  848. package/lib/components/table/models/table.event.d.ts +0 -17
  849. package/lib/components/table/models/table.interface.d.ts +0 -14
  850. package/lib/components/table/table-column-filter-class/table-column-filter-class.pipe.d.ts +0 -8
  851. package/lib/components/table/table.component.d.ts +0 -126
  852. package/lib/components/tableview/index.d.ts +0 -3
  853. package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +0 -35
  854. package/lib/components/tableview/route/tableview-route.component.d.ts +0 -16
  855. package/lib/components/tableview/tableview.component.d.ts +0 -29
  856. package/lib/data-providers/base.data-provider.d.ts +0 -32
  857. package/lib/data-providers/editor.data-provider.d.ts +0 -88
  858. package/lib/data-providers/index.d.ts +0 -6
  859. package/lib/data-providers/lookup.data-provider.d.ts +0 -27
  860. package/lib/data-providers/table.data-provider.d.ts +0 -40
  861. package/lib/data-providers/tableview-crud.data-provider.d.ts +0 -12
  862. package/lib/data-providers/tableview.data-provider.d.ts +0 -45
  863. package/lib/descriptors/action/action-button.descriptor.d.ts +0 -25
  864. package/lib/descriptors/action/action-confirmation.descriptor.d.ts +0 -36
  865. package/lib/descriptors/action/action-editor.descriptor.d.ts +0 -115
  866. package/lib/descriptors/action/action-link.descriptor.d.ts +0 -34
  867. package/lib/descriptors/action/action.descriptor.d.ts +0 -149
  868. package/lib/descriptors/action/index.d.ts +0 -5
  869. package/lib/descriptors/editor/editor.descriptor.d.ts +0 -274
  870. package/lib/descriptors/editor/field-action.descriptor.d.ts +0 -23
  871. package/lib/descriptors/editor/field-base.descriptor.d.ts +0 -122
  872. package/lib/descriptors/editor/field-group.descriptor.d.ts +0 -42
  873. package/lib/descriptors/editor/field-lookup.descriptor.d.ts +0 -83
  874. package/lib/descriptors/editor/field-many.descriptor.d.ts +0 -63
  875. package/lib/descriptors/editor/field-validation.descriptor.d.ts +0 -19
  876. package/lib/descriptors/editor/field.descriptor.d.ts +0 -167
  877. package/lib/descriptors/editor/index.d.ts +0 -8
  878. package/lib/descriptors/editor/internal/editor-fields.model.d.ts +0 -32
  879. package/lib/descriptors/editor/internal/editor.model.d.ts +0 -15
  880. package/lib/descriptors/filter/filter-lookup.descriptor.d.ts +0 -69
  881. package/lib/descriptors/filter/filter.descriptor.d.ts +0 -67
  882. package/lib/descriptors/filter/index.d.ts +0 -2
  883. package/lib/descriptors/interfaces/field-config.interface.d.ts +0 -9
  884. package/lib/descriptors/interfaces/index.d.ts +0 -2
  885. package/lib/descriptors/interfaces/lookup-descriptor.interface.d.ts +0 -12
  886. package/lib/descriptors/model/index.d.ts +0 -1
  887. package/lib/descriptors/model/model.descriptor.d.ts +0 -22
  888. package/lib/descriptors/table/column.descriptor.d.ts +0 -162
  889. package/lib/descriptors/table/index.d.ts +0 -2
  890. package/lib/descriptors/table/internal/table-columns.model.d.ts +0 -11
  891. package/lib/descriptors/table/internal/table.model.d.ts +0 -9
  892. package/lib/descriptors/table/table.descriptor.d.ts +0 -248
  893. package/lib/descriptors/tableview/index.d.ts +0 -1
  894. package/lib/descriptors/tableview/internal/tableview.model.d.ts +0 -11
  895. package/lib/descriptors/tableview/tableview.descriptor.d.ts +0 -163
  896. package/lib/descriptors/types/editor.type.d.ts +0 -6
  897. package/lib/descriptors/types/field.type.d.ts +0 -47
  898. package/lib/descriptors/types/filter.type.d.ts +0 -29
  899. package/lib/descriptors/types/index.d.ts +0 -7
  900. package/lib/descriptors/types/table.type.d.ts +0 -21
  901. package/lib/directives/component.directive.d.ts +0 -20
  902. package/lib/directives/dialog-keydown-handler.directive.d.ts +0 -12
  903. package/lib/directives/index.d.ts +0 -4
  904. package/lib/directives/input-trim.directive.d.ts +0 -14
  905. package/lib/directives/template.directive.d.ts +0 -12
  906. package/lib/error/error.handler.d.ts +0 -6
  907. package/lib/error/index.d.ts +0 -1
  908. package/lib/guards/index.d.ts +0 -1
  909. package/lib/guards/unsaved-changes.guard.d.ts +0 -3
  910. package/lib/helpers/coercion.d.ts +0 -9
  911. package/lib/models/action-editor.model.d.ts +0 -15
  912. package/lib/models/column-value.model.d.ts +0 -4
  913. package/lib/models/common-init-event-enum.model.d.ts +0 -9
  914. package/lib/models/config.model.d.ts +0 -53
  915. package/lib/models/enum.model.d.ts +0 -7
  916. package/lib/models/error.model.d.ts +0 -50
  917. package/lib/models/index.d.ts +0 -17
  918. package/lib/models/layout-config.model.d.ts +0 -34
  919. package/lib/models/log.model.d.ts +0 -40
  920. package/lib/models/menu.model.d.ts +0 -32
  921. package/lib/models/tableview-attr.model.d.ts +0 -10
  922. package/lib/models/type-registry.model.d.ts +0 -7
  923. package/lib/models/user.model.d.ts +0 -8
  924. package/lib/models/view-container.model.d.ts +0 -24
  925. package/lib/pipes/boolean.pipe.d.ts +0 -7
  926. package/lib/pipes/class-map.pipe.d.ts +0 -7
  927. package/lib/pipes/enum.pipe.d.ts +0 -8
  928. package/lib/pipes/enumerate-async.pipe.d.ts +0 -14
  929. package/lib/pipes/enumerate.pipe.d.ts +0 -21
  930. package/lib/pipes/getter.pipe.d.ts +0 -8
  931. package/lib/pipes/i18n-property.pipe.d.ts +0 -8
  932. package/lib/pipes/index.d.ts +0 -11
  933. package/lib/pipes/json-path.pipe.d.ts +0 -13
  934. package/lib/pipes/locale-default-row-class.pipe.d.ts +0 -10
  935. package/lib/pipes/models/internal/enumrate-pipe-i18n.model.d.ts +0 -5
  936. package/lib/pipes/models/internal/index.d.ts +0 -1
  937. package/lib/pipes/parametrize.pipe.d.ts +0 -13
  938. package/lib/pipes/template.pipe.d.ts +0 -10
  939. package/lib/provide-commons.d.ts +0 -3
  940. package/lib/registry/type.registry.d.ts +0 -25
  941. package/lib/router/index.d.ts +0 -3
  942. package/lib/router/models/index.d.ts +0 -1
  943. package/lib/router/models/router.model.d.ts +0 -31
  944. package/lib/router/route-builder.d.ts +0 -75
  945. package/lib/router/routes-builder.d.ts +0 -28
  946. package/lib/router/tableview-route-builder.d.ts +0 -45
  947. package/lib/security/authorization.guard.d.ts +0 -2
  948. package/lib/security/authorization.service.d.ts +0 -17
  949. package/lib/security/authorization.util.d.ts +0 -5
  950. package/lib/security/index.d.ts +0 -3
  951. package/lib/security/model/authorization.type.d.ts +0 -6
  952. package/lib/security/model/index.d.ts +0 -3
  953. package/lib/security/model/permission-service.interface.d.ts +0 -6
  954. package/lib/security/model/permissions.model.d.ts +0 -37
  955. package/lib/services/action/action-executor.service.d.ts +0 -175
  956. package/lib/services/action/component-action-executor.service.d.ts +0 -9
  957. package/lib/services/action/index.d.ts +0 -4
  958. package/lib/services/action/root-action-executor.service.d.ts +0 -9
  959. package/lib/services/action-error-mapper.service.d.ts +0 -18
  960. package/lib/services/commons-init.service.d.ts +0 -22
  961. package/lib/services/commons.service.d.ts +0 -90
  962. package/lib/services/configuration.service.d.ts +0 -68
  963. package/lib/services/index.d.ts +0 -10
  964. package/lib/services/internal/commons-init.provider.d.ts +0 -4
  965. package/lib/services/internal/index.d.ts +0 -1
  966. package/lib/services/log-publisher-console.service.d.ts +0 -4
  967. package/lib/services/logger.service.d.ts +0 -33
  968. package/lib/services/mng-localstorage-config.service.d.ts +0 -11
  969. package/lib/services/navigation.service.d.ts +0 -15
  970. package/lib/services/providers/formly-config.provider.d.ts +0 -5
  971. package/lib/services/providers/index.d.ts +0 -1
  972. package/lib/services/router.service.d.ts +0 -37
  973. package/lib/services/tokens/browser-storage.token.d.ts +0 -2
  974. package/lib/services/tokens/commons-init.token.d.ts +0 -3
  975. package/lib/services/tokens/default-setting.token.d.ts +0 -2
  976. package/lib/services/tokens/index.d.ts +0 -5
  977. package/lib/services/tokens/log-publisher.token.d.ts +0 -3
  978. package/lib/services/tokens/module-config.token.d.ts +0 -3
  979. package/lib/services/version.service.d.ts +0 -14
  980. package/lib/services/view/index.d.ts +0 -2
  981. package/lib/services/view/view-container.service.d.ts +0 -32
  982. package/lib/styles/button-style.builder.d.ts +0 -68
  983. package/lib/styles/index.d.ts +0 -2
  984. package/lib/styles/models/index.d.ts +0 -2
  985. package/lib/styles/models/style-level.enum.d.ts +0 -10
  986. package/lib/styles/models/style-size.enum.d.ts +0 -7
  987. package/lib/styles/styles.util.d.ts +0 -15
  988. package/lib/types/action-descriptor.types.d.ts +0 -4
  989. package/lib/types/data-provider.types.d.ts +0 -3
  990. package/lib/types/getter.type.d.ts +0 -2
  991. package/lib/types/i18n.type.d.ts +0 -1
  992. package/lib/types/index.d.ts +0 -7
  993. package/lib/types/localstorage-config-value.type.d.ts +0 -1
  994. package/lib/types/type.model.d.ts +0 -33
  995. package/lib/utils/action-data-provider.util.d.ts +0 -35
  996. package/lib/utils/date.util.d.ts +0 -18
  997. package/lib/utils/decorator-metadata.util.d.ts +0 -33
  998. package/lib/utils/editor-formly.util.d.ts +0 -13
  999. package/lib/utils/enum.util.d.ts +0 -50
  1000. package/lib/utils/error.util.d.ts +0 -116
  1001. package/lib/utils/export.util.d.ts +0 -5
  1002. package/lib/utils/file.util.d.ts +0 -3
  1003. package/lib/utils/i18n.util.d.ts +0 -85
  1004. package/lib/utils/index.d.ts +0 -13
  1005. package/lib/utils/model.util.d.ts +0 -10
  1006. package/lib/utils/notification.util.d.ts +0 -13
  1007. package/lib/utils/object.util.d.ts +0 -30
  1008. package/lib/utils/route.util.d.ts +0 -37
  1009. package/lib/utils/tableview.util.d.ts +0 -53
  1010. package/lib/validators/field.validator.d.ts +0 -3
  1011. package/lib/validators/index.d.ts +0 -1
  1012. package/openapi/angular/README.mustache +0 -226
  1013. package/openapi/angular/api.module.mustache +0 -39
  1014. package/openapi/angular/api.service.mustache +0 -253
  1015. package/openapi/angular/apiInterface.mustache +0 -47
  1016. package/openapi/angular/apis.mustache +0 -12
  1017. package/openapi/angular/config.yaml +0 -23
  1018. package/openapi/angular/configuration.mustache +0 -128
  1019. package/openapi/angular/custom/base-api.service.mustache +0 -14
  1020. package/openapi/angular/custom/helpers.mustache +0 -71
  1021. package/openapi/angular/custom/modelSchema.mustache +0 -46
  1022. package/openapi/angular/custom/schema.mustache +0 -18
  1023. package/openapi/angular/encoder.mustache +0 -20
  1024. package/openapi/angular/git_push.sh.mustache +0 -57
  1025. package/openapi/angular/index.mustache +0 -0
  1026. package/openapi/angular/licenseInfo.mustache +0 -11
  1027. package/openapi/angular/model.mustache +0 -16
  1028. package/openapi/angular/modelAlias.mustache +0 -1
  1029. package/openapi/angular/modelEnum.mustache +0 -24
  1030. package/openapi/angular/modelGeneric.mustache +0 -14
  1031. package/openapi/angular/modelGenericAdditionalProperties.mustache +0 -5
  1032. package/openapi/angular/modelGenericEnums.mustache +0 -30
  1033. package/openapi/angular/modelOneOf.mustache +0 -14
  1034. package/openapi/angular/modelTaggedUnion.mustache +0 -21
  1035. package/openapi/angular/models.mustache +0 -5
  1036. package/openapi/angular/ng-package.mustache +0 -6
  1037. package/openapi/angular/package.mustache +0 -39
  1038. package/openapi/angular/param.mustache +0 -69
  1039. package/openapi/angular/tsconfig.mustache +0 -28
  1040. package/openapi/angular/variables.mustache +0 -9
  1041. package/openapi/node/model.mustache +0 -83
  1042. package/openapi/node/models.mustache +0 -6
  1043. package/scss/common/layout/_breadcrumb.scss +0 -99
  1044. package/scss/common/layout/_config.scss +0 -100
  1045. package/scss/common/layout/_dashboard.scss +0 -16
  1046. package/scss/common/layout/_exception.scss +0 -133
  1047. package/scss/common/layout/_footer.scss +0 -29
  1048. package/scss/common/layout/_help.scss +0 -156
  1049. package/scss/common/layout/_inlinemenu.scss +0 -68
  1050. package/scss/common/layout/_invoice.scss +0 -176
  1051. package/scss/common/layout/_landing.scss +0 -636
  1052. package/scss/common/layout/_layout_dark.scss +0 -23
  1053. package/scss/common/layout/_layout_light.scss +0 -23
  1054. package/scss/common/layout/_loader.scss +0 -17
  1055. package/scss/common/layout/_login.scss +0 -106
  1056. package/scss/common/layout/_main.scss +0 -45
  1057. package/scss/common/layout/_mixins.scss +0 -222
  1058. package/scss/common/layout/_rightmenu.scss +0 -130
  1059. package/scss/common/layout/_topbar.scss +0 -191
  1060. package/scss/common/layout/_typography.scss +0 -68
  1061. package/scss/common/layout/_utils.scss +0 -96
  1062. package/scss/common/layout/_widgets.scss +0 -392
  1063. package/scss/common/layout/menu/_menu.scss +0 -7
  1064. package/scss/common/layout/menu/_menu_common.scss +0 -183
  1065. package/scss/common/layout/menu/_menu_overlay.scss +0 -52
  1066. package/scss/common/layout/menu/_menu_sidebar.scss +0 -233
  1067. package/scss/common/layout/menu/_menu_slim.scss +0 -137
  1068. package/scss/common/layout/menu/_menu_static.scss +0 -70
  1069. package/scss/common/layout/menu/_menu_theme.scss +0 -364
  1070. package/scss/common/theme/_theme_dark.scss +0 -5
  1071. package/scss/common/theme/_theme_light.scss +0 -5
  1072. package/scss/common/theme/designer/_colors.scss +0 -17
  1073. package/scss/common/theme/designer/_common.scss +0 -41
  1074. package/scss/common/theme/designer/_components.scss +0 -102
  1075. package/scss/common/theme/designer/_mixins.scss +0 -203
  1076. package/scss/common/theme/designer/components/button/_button.scss +0 -572
  1077. package/scss/common/theme/designer/components/button/_speeddial.scss +0 -81
  1078. package/scss/common/theme/designer/components/button/_splitbutton.scss +0 -2
  1079. package/scss/common/theme/designer/components/data/_carousel.scss +0 -37
  1080. package/scss/common/theme/designer/components/data/_datatable.scss +0 -266
  1081. package/scss/common/theme/designer/components/data/_dataview.scss +0 -55
  1082. package/scss/common/theme/designer/components/data/_filter.scss +0 -137
  1083. package/scss/common/theme/designer/components/data/_fullcalendar.scss +0 -324
  1084. package/scss/common/theme/designer/components/data/_orderlist.scss +0 -91
  1085. package/scss/common/theme/designer/components/data/_organizationchart.scss +0 -50
  1086. package/scss/common/theme/designer/components/data/_paginator.scss +0 -83
  1087. package/scss/common/theme/designer/components/data/_picklist.scss +0 -91
  1088. package/scss/common/theme/designer/components/data/_timeline.scss +0 -35
  1089. package/scss/common/theme/designer/components/data/_tree.scss +0 -144
  1090. package/scss/common/theme/designer/components/data/_treetable.scss +0 -241
  1091. package/scss/common/theme/designer/components/data/_virtualscroller.scss +0 -28
  1092. package/scss/common/theme/designer/components/file/_fileupload.scss +0 -58
  1093. package/scss/common/theme/designer/components/input/_autocomplete.scss +0 -105
  1094. package/scss/common/theme/designer/components/input/_calendar.scss +0 -212
  1095. package/scss/common/theme/designer/components/input/_cascadeselect.scss +0 -98
  1096. package/scss/common/theme/designer/components/input/_checkbox.scss +0 -85
  1097. package/scss/common/theme/designer/components/input/_chips.scss +0 -43
  1098. package/scss/common/theme/designer/components/input/_colorpicker.scss +0 -19
  1099. package/scss/common/theme/designer/components/input/_dropdown.scss +0 -136
  1100. package/scss/common/theme/designer/components/input/_editor.scss +0 -122
  1101. package/scss/common/theme/designer/components/input/_inputgroup.scss +0 -69
  1102. package/scss/common/theme/designer/components/input/_inputmask.scss +0 -3
  1103. package/scss/common/theme/designer/components/input/_inputnumber.scss +0 -3
  1104. package/scss/common/theme/designer/components/input/_inputswitch.scss +0 -60
  1105. package/scss/common/theme/designer/components/input/_inputtext.scss +0 -97
  1106. package/scss/common/theme/designer/components/input/_listbox.scss +0 -82
  1107. package/scss/common/theme/designer/components/input/_multiselect.scss +0 -165
  1108. package/scss/common/theme/designer/components/input/_password.scss +0 -33
  1109. package/scss/common/theme/designer/components/input/_radiobutton.scss +0 -78
  1110. package/scss/common/theme/designer/components/input/_rating.scss +0 -48
  1111. package/scss/common/theme/designer/components/input/_selectbutton.scss +0 -50
  1112. package/scss/common/theme/designer/components/input/_slider.scss +0 -71
  1113. package/scss/common/theme/designer/components/input/_togglebutton.scss +0 -48
  1114. package/scss/common/theme/designer/components/input/_treeselect.scss +0 -91
  1115. package/scss/common/theme/designer/components/menu/_breadcrumb.scss +0 -42
  1116. package/scss/common/theme/designer/components/menu/_contextmenu.scss +0 -51
  1117. package/scss/common/theme/designer/components/menu/_dock.scss +0 -51
  1118. package/scss/common/theme/designer/components/menu/_megamenu.scss +0 -103
  1119. package/scss/common/theme/designer/components/menu/_menu.scss +0 -41
  1120. package/scss/common/theme/designer/components/menu/_menubar.scss +0 -180
  1121. package/scss/common/theme/designer/components/menu/_panelmenu.scss +0 -136
  1122. package/scss/common/theme/designer/components/menu/_slidemenu.scss +0 -56
  1123. package/scss/common/theme/designer/components/menu/_steps.scss +0 -56
  1124. package/scss/common/theme/designer/components/menu/_tabmenu.scss +0 -49
  1125. package/scss/common/theme/designer/components/menu/_tieredmenu.scss +0 -57
  1126. package/scss/common/theme/designer/components/messages/_inlinemessage.scss +0 -64
  1127. package/scss/common/theme/designer/components/messages/_message.scss +0 -102
  1128. package/scss/common/theme/designer/components/messages/_toast.scss +0 -94
  1129. package/scss/common/theme/designer/components/misc/_avatar.scss +0 -30
  1130. package/scss/common/theme/designer/components/misc/_badge.scss +0 -48
  1131. package/scss/common/theme/designer/components/misc/_blockui.scss +0 -3
  1132. package/scss/common/theme/designer/components/misc/_chip.scss +0 -38
  1133. package/scss/common/theme/designer/components/misc/_inplace.scss +0 -16
  1134. package/scss/common/theme/designer/components/misc/_progressbar.scss +0 -17
  1135. package/scss/common/theme/designer/components/misc/_scrolltop.scss +0 -20
  1136. package/scss/common/theme/designer/components/misc/_skeleton.scss +0 -8
  1137. package/scss/common/theme/designer/components/misc/_tag.scss +0 -35
  1138. package/scss/common/theme/designer/components/misc/_terminal.scss +0 -11
  1139. package/scss/common/theme/designer/components/multimedia/_galleria.scss +0 -141
  1140. package/scss/common/theme/designer/components/multimedia/_image.scss +0 -44
  1141. package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +0 -65
  1142. package/scss/common/theme/designer/components/overlay/_dialog.scss +0 -63
  1143. package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +0 -62
  1144. package/scss/common/theme/designer/components/overlay/_sidebar.scss +0 -27
  1145. package/scss/common/theme/designer/components/overlay/_tooltip.scss +0 -33
  1146. package/scss/common/theme/designer/components/panel/_accordion.scss +0 -119
  1147. package/scss/common/theme/designer/components/panel/_card.scss +0 -30
  1148. package/scss/common/theme/designer/components/panel/_divider.scss +0 -31
  1149. package/scss/common/theme/designer/components/panel/_fieldset.scss +0 -47
  1150. package/scss/common/theme/designer/components/panel/_panel.scss +0 -42
  1151. package/scss/common/theme/designer/components/panel/_scrollpanel.scss +0 -6
  1152. package/scss/common/theme/designer/components/panel/_splitter.scss +0 -19
  1153. package/scss/common/theme/designer/components/panel/_tabview.scss +0 -66
  1154. package/scss/common/theme/designer/components/panel/_toolbar.scss +0 -10
  1155. package/scss/common/theme/extensions/_button.scss +0 -111
  1156. package/scss/common/theme/extensions/_calendar.scss +0 -18
  1157. package/scss/common/theme/extensions/_card.scss +0 -6
  1158. package/scss/common/theme/extensions/_carousel.scss +0 -13
  1159. package/scss/common/theme/extensions/_checkbox.scss +0 -10
  1160. package/scss/common/theme/extensions/_contextmenu.scss +0 -16
  1161. package/scss/common/theme/extensions/_datatable.scss +0 -83
  1162. package/scss/common/theme/extensions/_dialog.scss +0 -14
  1163. package/scss/common/theme/extensions/_fieldset.scss +0 -6
  1164. package/scss/common/theme/extensions/_galleria.scss +0 -25
  1165. package/scss/common/theme/extensions/_megamenu.scss +0 -18
  1166. package/scss/common/theme/extensions/_menu.scss +0 -14
  1167. package/scss/common/theme/extensions/_menubar.scss +0 -14
  1168. package/scss/common/theme/extensions/_orderlist.scss +0 -37
  1169. package/scss/common/theme/extensions/_paginator.scss +0 -19
  1170. package/scss/common/theme/extensions/_panelmenu.scss +0 -20
  1171. package/scss/common/theme/extensions/_password.scss +0 -5
  1172. package/scss/common/theme/extensions/_picklist.scss +0 -37
  1173. package/scss/common/theme/extensions/_radiobutton.scss +0 -8
  1174. package/scss/common/theme/extensions/_sidebar.scss +0 -19
  1175. package/scss/common/theme/extensions/_slidemenu.scss +0 -10
  1176. package/scss/common/theme/extensions/_slider.scss +0 -6
  1177. package/scss/common/theme/extensions/_steps.scss +0 -50
  1178. package/scss/common/theme/extensions/_tieredmenu.scss +0 -14
  1179. package/scss/common/theme/extensions/_toast.scss +0 -6
  1180. package/scss/common/theme/extensions/_tree.scss +0 -35
  1181. package/scss/common/theme/extensions/_treetable.scss +0 -35
  1182. package/scss/common/theme/extensions/_vendor_extensions.scss +0 -27
  1183. package/scss/common/variables/layout/_common.scss +0 -12
  1184. package/scss/common/variables/layout/_layout_dark.scss +0 -70
  1185. package/scss/common/variables/layout/_layout_light.scss +0 -70
  1186. package/scss/common/variables/theme/_theme_dark.scss +0 -937
  1187. package/scss/common/variables/theme/_theme_light.scss +0 -936
  1188. package/scss/layout/default/_mng-variables-layout-dark.scss +0 -2
  1189. package/scss/layout/default/_mng-variables-layout-light.scss +0 -2
  1190. package/scss/layout/default/layout-dark.scss +0 -2
  1191. package/scss/layout/default/layout-light.scss +0 -2
  1192. package/scss/mng-commons-dark-v2.scss +0 -9
  1193. package/scss/mng-commons-dark.scss +0 -5
  1194. package/scss/mng-commons-light-v2.scss +0 -9
  1195. package/scss/mng-commons-light.scss +0 -8
  1196. package/scss/mng-overrides/_layout_action.scss +0 -10
  1197. package/scss/mng-overrides/_layout_dialog.scss +0 -91
  1198. package/scss/mng-overrides/_layout_forms.scss +0 -38
  1199. package/scss/mng-overrides/_layout_menu.scss +0 -10
  1200. package/scss/mng-overrides/_layout_radio.scss +0 -3
  1201. package/scss/mng-overrides/_layout_styles.scss +0 -35
  1202. package/scss/mng-overrides/_layout_topbar.scss +0 -21
  1203. package/scss/mng-overrides/_mixins.scss +0 -69
  1204. package/scss/mng-overrides/_theme_autocomplete.scss +0 -29
  1205. package/scss/mng-overrides/_theme_button.scss +0 -61
  1206. package/scss/mng-overrides/_theme_datatable.scss +0 -160
  1207. package/scss/mng-overrides/_theme_datepicker.scss +0 -21
  1208. package/scss/mng-overrides/_theme_dialog.scss +0 -108
  1209. package/scss/mng-overrides/_theme_dropdown.scss +0 -22
  1210. package/scss/mng-overrides/_theme_fileupload.scss +0 -24
  1211. package/scss/mng-overrides/_theme_forms.scss +0 -29
  1212. package/scss/mng-overrides/_theme_image.scss +0 -27
  1213. package/scss/mng-overrides/_theme_input.scss +0 -27
  1214. package/scss/mng-overrides/_theme_menu.scss +0 -5
  1215. package/scss/mng-overrides/_theme_multiselect.scss +0 -20
  1216. package/scss/mng-overrides/_theme_styles.scss +0 -17
  1217. package/scss/mng-overrides/_theme_tableview.scss +0 -79
  1218. package/scss/mng-overrides/_theme_tabview.scss +0 -11
  1219. package/scss/mng-overrides/_theme_toast.scss +0 -3
  1220. package/scss/mng-overrides/_theme_toolbar.scss +0 -5
  1221. package/scss/mng-overrides/_variables.scss +0 -15
  1222. package/scss/theme/default/_mng-variables-theme-dark.scss +0 -11
  1223. package/scss/theme/default/_mng-variables-theme-light.scss +0 -13
  1224. package/scss/theme/default/theme-dark.scss +0 -2
  1225. package/scss/theme/default/theme-light.scss +0 -2
  1226. package/scss/v2/layout/_animation.scss +0 -53
  1227. package/scss/v2/layout/_breadcrumb.scss +0 -97
  1228. package/scss/v2/layout/_config.scss +0 -42
  1229. package/scss/v2/layout/_content.scss +0 -3
  1230. package/scss/v2/layout/_fonts.scss +0 -32
  1231. package/scss/v2/layout/_layout_dark.scss +0 -12
  1232. package/scss/v2/layout/_layout_light.scss +0 -12
  1233. package/scss/v2/layout/_main.scss +0 -54
  1234. package/scss/v2/layout/_profile.scss +0 -10
  1235. package/scss/v2/layout/_responsive.scss +0 -131
  1236. package/scss/v2/layout/_sidebar_drawer.scss +0 -283
  1237. package/scss/v2/layout/_sidebar_horizontal.scss +0 -168
  1238. package/scss/v2/layout/_sidebar_reveal.scss +0 -201
  1239. package/scss/v2/layout/_sidebar_slim.scss +0 -157
  1240. package/scss/v2/layout/_sidebar_slim_plus.scss +0 -167
  1241. package/scss/v2/layout/_sidebar_vertical.scss +0 -176
  1242. package/scss/v2/layout/_topbar.scss +0 -174
  1243. package/scss/v2/layout/_typography.scss +0 -62
  1244. package/scss/v2/layout/_utils.scss +0 -33
  1245. package/scss/v2/layout/layout.scss +0 -24
  1246. package/scss/v2/layout/mng/_mng_layout_footer.scss +0 -39
  1247. package/scss/v2/layout/mng/_mng_layout_menu.scss +0 -10
  1248. package/scss/v2/layout/mng/_mng_layout_styles.scss +0 -3
  1249. package/scss/v2/layout/mng/_mng_layout_topbar.scss +0 -18
  1250. package/scss/v2/layout/preloading.scss +0 -84
  1251. package/scss/v2/theme/extensions/_fullcalendar.scss +0 -328
  1252. package/scss/v2/theme/theme-base/_colors.scss +0 -17
  1253. package/scss/v2/theme/theme-base/_common.scss +0 -76
  1254. package/scss/v2/theme/theme-base/_components.scss +0 -110
  1255. package/scss/v2/theme/theme-base/_mixins.scss +0 -337
  1256. package/scss/v2/theme/theme-base/components/button/_button.scss +0 -576
  1257. package/scss/v2/theme/theme-base/components/button/_speeddial.scss +0 -96
  1258. package/scss/v2/theme/theme-base/components/button/_splitbutton.scss +0 -348
  1259. package/scss/v2/theme/theme-base/components/data/_carousel.scss +0 -37
  1260. package/scss/v2/theme/theme-base/components/data/_datatable.scss +0 -338
  1261. package/scss/v2/theme/theme-base/components/data/_dataview.scss +0 -46
  1262. package/scss/v2/theme/theme-base/components/data/_filter.scss +0 -137
  1263. package/scss/v2/theme/theme-base/components/data/_orderlist.scss +0 -114
  1264. package/scss/v2/theme/theme-base/components/data/_organizationchart.scss +0 -50
  1265. package/scss/v2/theme/theme-base/components/data/_paginator.scss +0 -92
  1266. package/scss/v2/theme/theme-base/components/data/_picklist.scss +0 -114
  1267. package/scss/v2/theme/theme-base/components/data/_timeline.scss +0 -35
  1268. package/scss/v2/theme/theme-base/components/data/_tree.scss +0 -150
  1269. package/scss/v2/theme/theme-base/components/data/_treetable.scss +0 -255
  1270. package/scss/v2/theme/theme-base/components/data/_virtualscroller.scss +0 -28
  1271. package/scss/v2/theme/theme-base/components/file/_fileupload.scss +0 -64
  1272. package/scss/v2/theme/theme-base/components/input/_autocomplete.scss +0 -136
  1273. package/scss/v2/theme/theme-base/components/input/_calendar.scss +0 -267
  1274. package/scss/v2/theme/theme-base/components/input/_cascadeselect.scss +0 -135
  1275. package/scss/v2/theme/theme-base/components/input/_checkbox.scss +0 -94
  1276. package/scss/v2/theme/theme-base/components/input/_chips.scss +0 -65
  1277. package/scss/v2/theme/theme-base/components/input/_colorpicker.scss +0 -19
  1278. package/scss/v2/theme/theme-base/components/input/_dropdown.scss +0 -151
  1279. package/scss/v2/theme/theme-base/components/input/_editor.scss +0 -122
  1280. package/scss/v2/theme/theme-base/components/input/_inputgroup.scss +0 -74
  1281. package/scss/v2/theme/theme-base/components/input/_inputmask.scss +0 -16
  1282. package/scss/v2/theme/theme-base/components/input/_inputnumber.scss +0 -28
  1283. package/scss/v2/theme/theme-base/components/input/_inputswitch.scss +0 -60
  1284. package/scss/v2/theme/theme-base/components/input/_inputtext.scss +0 -100
  1285. package/scss/v2/theme/theme-base/components/input/_listbox.scss +0 -97
  1286. package/scss/v2/theme/theme-base/components/input/_multiselect.scss +0 -177
  1287. package/scss/v2/theme/theme-base/components/input/_password.scss +0 -52
  1288. package/scss/v2/theme/theme-base/components/input/_radiobutton.scss +0 -78
  1289. package/scss/v2/theme/theme-base/components/input/_rating.scss +0 -60
  1290. package/scss/v2/theme/theme-base/components/input/_selectbutton.scss +0 -50
  1291. package/scss/v2/theme/theme-base/components/input/_slider.scss +0 -71
  1292. package/scss/v2/theme/theme-base/components/input/_togglebutton.scss +0 -48
  1293. package/scss/v2/theme/theme-base/components/input/_treeselect.scss +0 -139
  1294. package/scss/v2/theme/theme-base/components/menu/_breadcrumb.scss +0 -42
  1295. package/scss/v2/theme/theme-base/components/menu/_contextmenu.scss +0 -39
  1296. package/scss/v2/theme/theme-base/components/menu/_dock.scss +0 -95
  1297. package/scss/v2/theme/theme-base/components/menu/_megamenu.scss +0 -55
  1298. package/scss/v2/theme/theme-base/components/menu/_menu.scss +0 -37
  1299. package/scss/v2/theme/theme-base/components/menu/_menubar.scss +0 -140
  1300. package/scss/v2/theme/theme-base/components/menu/_panelmenu.scss +0 -153
  1301. package/scss/v2/theme/theme-base/components/menu/_slidemenu.scss +0 -59
  1302. package/scss/v2/theme/theme-base/components/menu/_steps.scss +0 -56
  1303. package/scss/v2/theme/theme-base/components/menu/_tabmenu.scss +0 -73
  1304. package/scss/v2/theme/theme-base/components/menu/_tieredmenu.scss +0 -43
  1305. package/scss/v2/theme/theme-base/components/messages/_inlinemessage.scss +0 -69
  1306. package/scss/v2/theme/theme-base/components/messages/_message.scss +0 -107
  1307. package/scss/v2/theme/theme-base/components/messages/_toast.scss +0 -99
  1308. package/scss/v2/theme/theme-base/components/misc/_avatar.scss +0 -30
  1309. package/scss/v2/theme/theme-base/components/misc/_badge.scss +0 -48
  1310. package/scss/v2/theme/theme-base/components/misc/_blockui.scss +0 -0
  1311. package/scss/v2/theme/theme-base/components/misc/_chip.scss +0 -42
  1312. package/scss/v2/theme/theme-base/components/misc/_inplace.scss +0 -16
  1313. package/scss/v2/theme/theme-base/components/misc/_progressbar.scss +0 -17
  1314. package/scss/v2/theme/theme-base/components/misc/_scrolltop.scss +0 -25
  1315. package/scss/v2/theme/theme-base/components/misc/_skeleton.scss +0 -8
  1316. package/scss/v2/theme/theme-base/components/misc/_tag.scss +0 -40
  1317. package/scss/v2/theme/theme-base/components/misc/_terminal.scss +0 -12
  1318. package/scss/v2/theme/theme-base/components/multimedia/_galleria.scss +0 -155
  1319. package/scss/v2/theme/theme-base/components/multimedia/_image.scss +0 -49
  1320. package/scss/v2/theme/theme-base/components/overlay/_confirmpopup.scss +0 -70
  1321. package/scss/v2/theme/theme-base/components/overlay/_dialog.scss +0 -69
  1322. package/scss/v2/theme/theme-base/components/overlay/_overlaypanel.scss +0 -64
  1323. package/scss/v2/theme/theme-base/components/overlay/_sidebar.scss +0 -27
  1324. package/scss/v2/theme/theme-base/components/overlay/_tooltip.scss +0 -33
  1325. package/scss/v2/theme/theme-base/components/panel/_accordion.scss +0 -119
  1326. package/scss/v2/theme/theme-base/components/panel/_card.scss +0 -30
  1327. package/scss/v2/theme/theme-base/components/panel/_divider.scss +0 -31
  1328. package/scss/v2/theme/theme-base/components/panel/_fieldset.scss +0 -47
  1329. package/scss/v2/theme/theme-base/components/panel/_panel.scss +0 -63
  1330. package/scss/v2/theme/theme-base/components/panel/_scrollpanel.scss +0 -6
  1331. package/scss/v2/theme/theme-base/components/panel/_splitter.scss +0 -19
  1332. package/scss/v2/theme/theme-base/components/panel/_tabview.scss +0 -82
  1333. package/scss/v2/theme/theme-base/components/panel/_toolbar.scss +0 -11
  1334. package/scss/v2/theme/theme-base/mng/_mng_mixins.scss +0 -69
  1335. package/scss/v2/theme/theme-base/mng/_mng_theme_autocomplete.scss +0 -34
  1336. package/scss/v2/theme/theme-base/mng/_mng_theme_button.scss +0 -68
  1337. package/scss/v2/theme/theme-base/mng/_mng_theme_datatable.scss +0 -153
  1338. package/scss/v2/theme/theme-base/mng/_mng_theme_datepicker.scss +0 -21
  1339. package/scss/v2/theme/theme-base/mng/_mng_theme_dialog.scss +0 -206
  1340. package/scss/v2/theme/theme-base/mng/_mng_theme_dropdown.scss +0 -32
  1341. package/scss/v2/theme/theme-base/mng/_mng_theme_fileupload.scss +0 -24
  1342. package/scss/v2/theme/theme-base/mng/_mng_theme_forms.scss +0 -66
  1343. package/scss/v2/theme/theme-base/mng/_mng_theme_image.scss +0 -27
  1344. package/scss/v2/theme/theme-base/mng/_mng_theme_input.scss +0 -31
  1345. package/scss/v2/theme/theme-base/mng/_mng_theme_menu.scss +0 -5
  1346. package/scss/v2/theme/theme-base/mng/_mng_theme_multiselect.scss +0 -20
  1347. package/scss/v2/theme/theme-base/mng/_mng_theme_styles.scss +0 -17
  1348. package/scss/v2/theme/theme-base/mng/_mng_theme_tableview.scss +0 -97
  1349. package/scss/v2/theme/theme-base/mng/_mng_theme_tabview.scss +0 -11
  1350. package/scss/v2/theme/theme-base/mng/_mng_theme_toast.scss +0 -3
  1351. package/scss/v2/theme/theme-base/mng/_mng_theme_toolbar.scss +0 -5
  1352. package/scss/v2/theme/theme-base/mng/_mng_variables.scss +0 -15
  1353. package/scss/v2/theme/theme-dark/_extensions.scss +0 -100
  1354. package/scss/v2/theme/theme-dark/_variables.scss +0 -940
  1355. package/scss/v2/theme/theme-dark/blue/theme.scss +0 -14
  1356. package/scss/v2/theme/theme-light/_extensions.scss +0 -100
  1357. package/scss/v2/theme/theme-light/_variables.scss +0 -936
  1358. package/scss/v2/theme/theme-light/blue/theme.scss +0 -14
  1359. package/templates/tableview-route.component.html +0 -5
  1360. /package/{lib → core}/components/notification/notification-wrapper.component.d.ts +0 -0
  1361. /package/{lib/models/class.model.d.ts → core/models/class-attribute.model.d.ts} +0 -0
  1362. /package/{lib → core}/models/version.model.d.ts +0 -0
  1363. /package/{lib/types/type.decorator.d.ts → core/reflect/type-enum-decorator.d.ts} +0 -0
  1364. /package/{lib → core}/utils/string.util.d.ts +0 -0
  1365. /package/{lib/descriptors/types/trim.type.d.ts → form/api/models/trim.model.d.ts} +0 -0
  1366. /package/{lib/descriptors/types/column.type.d.ts → table/api/models/column.model.d.ts} +0 -0
  1367. /package/{lib → tableview/action}/models/can-component-deactivate.model.d.ts +0 -0
  1368. /package/{lib/services/action → tableview/action/services/providers}/provide-action-executor.d.ts +0 -0
  1369. /package/{lib/services/view → tableview/action/services/providers}/provide-view-container.d.ts +0 -0
  1370. /package/{lib/descriptors/types → tableview/api/action/models}/action.type.d.ts +0 -0
  1371. /package/{lib/components → tableview/api}/action/models/tableview-action-default-categories.model.d.ts +0 -0
  1372. /package/{lib/components/form → tableview/api/editor}/models/form-editor.interface.d.ts +0 -0
  1373. /package/{lib → tableview/api/editor}/models/radio.model.d.ts +0 -0
@@ -1,18 +0,0 @@
1
- export * from './column-value.model';
2
- export * from './config.model';
3
- export * from './class.model';
4
- export * from './enum.model';
5
- export * from './error.model';
6
- export * from './log.model';
7
- export * from './menu.model';
8
- export * from './radio.model';
9
- export * from './type-registry.model';
10
- export * from './user.model';
11
- export * from './version.model';
12
- export * from './view-container.model';
13
- export * from './tableview-attr.model';
14
- export * from './can-component-deactivate.model';
15
- export * from './action-editor.model';
16
- export * from './common-init-event-enum.model';
17
- export * from './layout-config.model';
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL21vZGVscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLHVCQUF1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb2x1bW4tdmFsdWUubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9jb25maWcubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9jbGFzcy5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2VudW0ubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9lcnJvci5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2xvZy5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL21lbnUubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL3R5cGUtcmVnaXN0cnkubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi91c2VyLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vdmVyc2lvbi5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL3ZpZXctY29udGFpbmVyLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGV2aWV3LWF0dHIubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9jYW4tY29tcG9uZW50LWRlYWN0aXZhdGUubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9hY3Rpb24tZWRpdG9yLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vY29tbW9uLWluaXQtZXZlbnQtZW51bS5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2xheW91dC1jb25maWcubW9kZWwnO1xuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGF5b3V0LWNvbmZpZy5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvbW9kZWxzL2xheW91dC1jb25maWcubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7VHlwZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7TWVudUl0ZW19IGZyb20gJ3ByaW1lbmcvYXBpJztcblxuZXhwb3J0IHR5cGUgTW5nTWVudU1vZGUgPSAnc3RhdGljJyB8ICdvdmVybGF5JyB8ICdyZXZlYWwnIHwgJ2RyYXdlcicgfCAnc2xpbScgfCAnc2xpbS1wbHVzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZCB1c2UgTW5nTWVudUNvbmZpZ1YyIGluc3RlYWRcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBNbmdMYXlvdXRDb25maWcge1xuICAgIG1lbnVNb2RlOiAnc3RhdGljJyB8ICdzaWRlYmFyJyB8ICdzbGltJyB8ICdvdmVybGF5JztcbiAgICBtZW51SXRlbXM/OiBNZW51SXRlbVtdO1xuICAgIHBpbkVuYWJsZWQ/OiBib29sZWFuO1xuICAgIHNpZGViYXJTbGltPzogYm9vbGVhbjtcbiAgICBkaXNhYmxlTm90aWZpY2F0aW9uV3JhcHBlcj86IGJvb2xlYW47XG4gICAgY29tcG9uZW50cz86IHtcbiAgICAgICAgdG9wYmFyPzogVHlwZTxhbnk+O1xuICAgICAgICBtZW51PzogVHlwZTxhbnk+O1xuICAgICAgICBmb290ZXI/OiBUeXBlPGFueT47XG4gICAgICAgIGJyZWFkY3J1bWI/OiBUeXBlPGFueT47XG4gICAgICAgIHRvcGJhclVzZXI/OiBUeXBlPGFueT47XG4gICAgfTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBNbmdMYXlvdXRDb25maWdWMiB7XG4gICAgbWVudU1vZGU6IE1uZ01lbnVNb2RlO1xuICAgIG1lbnVJdGVtcz86IE1lbnVJdGVtW107XG4gICAgcmlwcGxlPzogYm9vbGVhbjtcbiAgICBkaXNhYmxlTm90aWZpY2F0aW9uV3JhcHBlcj86IGJvb2xlYW47XG4gICAgY29tcG9uZW50cz86IHtcbiAgICAgICAgdG9wYmFyPzogVHlwZTxhbnk+IHwgZmFsc2U7XG4gICAgICAgIG1lbnU/OiBUeXBlPGFueT4gfCBmYWxzZTtcbiAgICAgICAgZm9vdGVyPzogVHlwZTxhbnk+IHwgZmFsc2U7XG4gICAgICAgIGJyZWFkY3J1bWI/OiBUeXBlPGFueT4gfCBmYWxzZTtcbiAgICAgICAgdG9wYmFyVXNlcj86IFR5cGU8YW55PiB8IGZhbHNlO1xuICAgICAgICB2ZXJzaW9uPzogVHlwZTxhbnk+IHwgZmFsc2U7XG4gICAgfTtcbn1cbiJdfQ==
@@ -1,10 +0,0 @@
1
- export var LogLevelEnum;
2
- (function (LogLevelEnum) {
3
- LogLevelEnum[LogLevelEnum["Trace"] = 0] = "Trace";
4
- LogLevelEnum[LogLevelEnum["Debug"] = 1] = "Debug";
5
- LogLevelEnum[LogLevelEnum["Log"] = 2] = "Log";
6
- LogLevelEnum[LogLevelEnum["Info"] = 3] = "Info";
7
- LogLevelEnum[LogLevelEnum["Warning"] = 4] = "Warning";
8
- LogLevelEnum[LogLevelEnum["Error"] = 5] = "Error";
9
- })(LogLevelEnum || (LogLevelEnum = {}));
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9tb2RlbHMvbG9nLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLFlBT1g7QUFQRCxXQUFZLFlBQVk7SUFDcEIsaURBQUssQ0FBQTtJQUNMLGlEQUFLLENBQUE7SUFDTCw2Q0FBRyxDQUFBO0lBQ0gsK0NBQUksQ0FBQTtJQUNKLHFEQUFPLENBQUE7SUFDUCxpREFBSyxDQUFBO0FBQ1QsQ0FBQyxFQVBXLFlBQVksS0FBWixZQUFZLFFBT3ZCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gTG9nTGV2ZWxFbnVtIHtcbiAgICBUcmFjZSxcbiAgICBEZWJ1ZyxcbiAgICBMb2csXG4gICAgSW5mbyxcbiAgICBXYXJuaW5nLFxuICAgIEVycm9yXG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgTW5nTG9nRW50cnkge1xuICAgIGxldmVsOiBMb2dMZXZlbEVudW07XG4gICAgbWVzc2FnZTogc3RyaW5nO1xuICAgIG1lc3NhZ2VEZXRhaWxzPzogc3RyaW5nO1xuICAgIHRpbWVzdGFtcDogRGF0ZTtcbiAgICB0aW1lc3RhbXBGb3JtYXR0ZWQ/OiBzdHJpbmc7XG4gICAgY2F0ZWdvcnk/OiBzdHJpbmc7XG4gICAgZXJyb3I/OiBFcnJvcjtcbiAgICBkYXRhPzogYW55W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgTW5nTG9nQ29uZmlnIHtcbiAgICBsZXZlbD86IExvZ0xldmVsRW51bTtcbiAgICB0aW1lc3RhbXBGb3JtYXQ/OiBzdHJpbmc7XG4gICAgY2F0ZWdvcnk/OiB7XG4gICAgICAgIFtjYXRlZ29yeTogc3RyaW5nXToge1xuICAgICAgICAgICAgbGV2ZWw/OiBMb2dMZXZlbEVudW07XG4gICAgICAgIH07XG4gICAgfTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBJTW5nTG9nZ2VyU2VydmljZSB7XG4gICAgY3JlYXRlKGNvbnRleHQ6IHN0cmluZyk6IElNbmdMb2dnZXJTZXJ2aWNlO1xuICAgIHRyYWNlKG1zZ09yRXJyb3I6IHN0cmluZyB8IEVycm9yLCAuLi5kYXRhOiBhbnlbXSk6IHZvaWQ7XG4gICAgZGVidWcobXNnT3JFcnJvcjogc3RyaW5nIHwgRXJyb3IsIC4uLmRhdGE6IGFueVtdKTogdm9pZDtcbiAgICBsb2cobXNnT3JFcnJvcjogc3RyaW5nIHwgRXJyb3IsIGxvZ0xldmVsOiBMb2dMZXZlbEVudW0sIGNhdGVnb3J5OiBzdHJpbmcgfCB1bmRlZmluZWQsIC4uLmRhdGE6IGFueVtdKTogdm9pZDtcbiAgICBsb2dFbnRyeShsb2dFbnRyeTogUGFydGlhbDxNbmdMb2dFbnRyeT4pOiB2b2lkO1xuICAgIGluZm8obXNnT3JFcnJvcjogc3RyaW5nIHwgRXJyb3IsIC4uLmRhdGE6IGFueVtdKTogdm9pZDtcbiAgICB3YXJuKG1zZ09yRXJyb3I6IHN0cmluZyB8IEVycm9yLCAuLi5kYXRhOiBhbnlbXSk6IHZvaWQ7XG4gICAgZXJyb3IobXNnT3JFcnJvcjogc3RyaW5nIHwgRXJyb3IsIC4uLmRhdGE6IGFueVtdKTogdm9pZDtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBJTW5nTG9nUHVibGlzaGVyIHtcbiAgICBhZGRFbnRyeShlbnRyeTogTW5nTG9nRW50cnkpOiB2b2lkO1xufVxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvbW9kZWxzL21lbnUubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UXVlcnlQYXJhbXNIYW5kbGluZ30gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcblxuaW1wb3J0IHtBUGVybWlzc2lvbnN9IGZyb20gJy4uL3NlY3VyaXR5L21vZGVsJztcblxuZXhwb3J0IGludGVyZmFjZSBNbmdNZW51SXRlbSB7XG4gICAgaW5kZXg/OiBudW1iZXI7XG4gICAga2V5Pzogc3RyaW5nO1xuICAgIGlkPzogc3RyaW5nO1xuICAgIHBvc2l0aW9uSW5kZXg/OiBudW1iZXI7XG4gICAgbGFiZWw/OiBzdHJpbmc7XG4gICAgaWNvbj86IHN0cmluZztcbiAgICBpdGVtcz86IEFycmF5PE1uZ01lbnVJdGVtPjtcbiAgICBndWFyZHM/OiBBcnJheTxhbnk+O1xuICAgIHBlcm1pc3Npb25zPzogQVBlcm1pc3Npb25zO1xuICAgIHNlcGFyYXRvcj86IGJvb2xlYW47XG4gICAgY2xhc3NOYW1lPzogc3RyaW5nO1xuICAgIGJhZGdlPzogc3RyaW5nO1xuICAgIGJhZGdlQ2xhc3NOYW1lPzogc3RyaW5nO1xuICAgIHZpc2libGU/OiBib29sZWFuO1xuICAgIGRpc2FibGVkPzogYm9vbGVhbjtcbiAgICByb3V0ZXJMaW5rPzogc3RyaW5nIHwgQXJyYXk8c3RyaW5nPiB8IG51bGw7XG4gICAgaHJlZj86IHN0cmluZztcbiAgICB0YXJnZXQ/OiBzdHJpbmc7XG4gICAgcXVlcnlQYXJhbXM/OiB7XG4gICAgICAgIFtrOiBzdHJpbmddOiBhbnk7XG4gICAgfTtcbiAgICBmcmFnbWVudD86IHN0cmluZztcbiAgICBxdWVyeVBhcmFtc0hhbmRsaW5nPzogUXVlcnlQYXJhbXNIYW5kbGluZztcbiAgICBwcmVzZXJ2ZUZyYWdtZW50PzogYm9vbGVhbjtcbiAgICBza2lwTG9jYXRpb25DaGFuZ2U/OiBib29sZWFuO1xuICAgIHJlcGxhY2VVcmw/OiBib29sZWFuO1xuICAgIHVwZGF0ZWQ/OiBib29sZWFuO1xuICAgIGxhenlDaGlsZHJlbj86IGJvb2xlYW47XG59XG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8ubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL21vZGVscy9yYWRpby5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBSYWRpb1ZhbHVlPFYgPSBzdHJpbmcgfCBudW1iZXIgfCBib29sZWFuPiB7XG4gICAgbmFtZT86IHN0cmluZzsgLy8gdXNlZCB0byBzdG9yZSBvcmlnaW5hbCBlbnVtIG9wdGlvbiBuYW1lIGZvciB2YWx1ZVxuICAgIHZhbHVlOiBWO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgZGlzYWJsZWQ/OiBib29sZWFuO1xufVxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGV2aWV3LWF0dHIubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL21vZGVscy90YWJsZXZpZXctYXR0ci5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb2x1bW5EaXNwbGF5VHlwZUVudW0sIENvbHVtblR5cGVFbnVtLCBGaWVsZElucHV0VHlwZUVudW19IGZyb20gJy4uL2Rlc2NyaXB0b3JzL3R5cGVzJztcbmltcG9ydCB7Q2xhc3NUeXBlLCBFbnVtVHlwZX0gZnJvbSAnLi4vdHlwZXMnO1xuaW1wb3J0IHtDbGFzc0F0dHJpYnV0ZURlZn0gZnJvbSAnLi9jbGFzcy5tb2RlbCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgVGFibGV2aWV3QXR0cmlidXRlRGVmIGV4dGVuZHMgQ2xhc3NBdHRyaWJ1dGVEZWYge1xuICAgIGNvbHVtblR5cGU6IENvbHVtblR5cGVFbnVtO1xuICAgIGNvbHVtbkRpc3BsYXlUeXBlOiBDb2x1bW5EaXNwbGF5VHlwZUVudW07XG4gICAgZmllbGRUeXBlPzogRmllbGRJbnB1dFR5cGVFbnVtO1xuICAgIGVudW1UeXBlPzogRW51bVR5cGU7XG4gICAgY2xhc3NUeXBlPzogQ2xhc3NUeXBlPGFueT47XG59XG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZS1yZWdpc3RyeS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvbW9kZWxzL3R5cGUtcmVnaXN0cnkubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2xhc3NUeXBlLCBFbnVtVHlwZX0gZnJvbSAnLi4vdHlwZXMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIFJlZ2lzdHJ5VHlwZU1hcCB7XG4gICAgW2luZGV4OiBzdHJpbmddOiBDbGFzc1R5cGU8YW55Pjtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBSZWdpc3RyeUVudW1NYXAge1xuICAgIFtpbmRleDogc3RyaW5nXTogRW51bVR5cGU7XG59XG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvbW9kZWxzL3VzZXIubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SWRUeXBlfSBmcm9tICcuLi90eXBlcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSVVzZXIge1xuICAgIGlkOiBJZFR5cGU7XG4gICAgdXNlcm5hbWU6IHN0cmluZztcbiAgICBkaXNwbGF5TmFtZT86IHN0cmluZztcbiAgICBsb2dvdXQ/OiAoKSA9PiB2b2lkO1xuICAgIGxvZ291dFVybD86IHN0cmluZztcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvbW9kZWxzL3ZlcnNpb24ubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFZlcnNpb25Db25maWdUeXBlID0gVmVyc2lvbkNvbmZpZyB8IFZlcnNpb25JbmZvIHwgc3RyaW5nIHwgQXJyYXk8VmVyc2lvbkNvbmZpZz4gfCB1bmRlZmluZWQ7XG5cbmV4cG9ydCBpbnRlcmZhY2UgVmVyc2lvbkNvbmZpZyB7XG4gICAgZGlzcGxheU5hbWU/OiBzdHJpbmc7XG4gICAgaW5mbz86IFZlcnNpb25JbmZvIHwgc3RyaW5nO1xuICAgIGluZm9Kc29uUGF0aD86IHN0cmluZztcbiAgICB1cmxQYXRoPzogc3RyaW5nO1xuICAgIHVybEJhc2VDb25maWdLZXk/OiBzdHJpbmc7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgVmVyc2lvbkluZm8ge1xuICAgIG5hbWU6IHN0cmluZztcbiAgICB2ZXJzaW9uOiBzdHJpbmcgfCBudWxsO1xuICAgIHRhZzogc3RyaW5nIHwgbnVsbDtcbiAgICBkaXN0YW5jZTogbnVtYmVyIHwgbnVsbDtcbiAgICBoYXNoOiBzdHJpbmcgfCBudWxsO1xuICAgIGRpcnR5OiBib29sZWFuO1xuICAgIHNlbXZlcjogc3RyaW5nIHwgbnVsbDtcbiAgICByYXc6IHN0cmluZztcbiAgICBidWlsZFRpbWVzdGFtcDogbnVtYmVyIHwgbnVsbDtcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlldy1jb250YWluZXIubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL21vZGVscy92aWV3LWNvbnRhaW5lci5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtNZWRpdXNRdWVyeVBhcmFtfSBmcm9tICcuLi9hcGkvbW9kZWxzJztcblxuZXhwb3J0IGludGVyZmFjZSBWaWV3Q29udGFpbmVyVGFibGVSZWxvYWRFdmVudCB7XG4gICAgZW1pdEV2ZW50PzogYm9vbGVhbjtcbiAgICByZXNldFBhcmFtcz86IGJvb2xlYW47XG4gICAgcXVlcnlQYXJhbT86IE1lZGl1c1F1ZXJ5UGFyYW07XG4gICAgZGF0YT86IHtcbiAgICAgICAgW2tleTogc3RyaW5nXTogYW55O1xuICAgIH07XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgVmlld0NvbnRhaW5lckVkaXRvclJlc2V0RXZlbnQ8VD4ge1xuICAgIGVtaXRFdmVudD86IGJvb2xlYW47XG4gICAgZmV0Y2g/OiBib29sZWFuOyAvLyBpZiBpdGVtIHNob3VsZCBiZSByZS1mZXRjaGVkIGFnYWluIHRocm91Z2ggZGF0YSBwcm92aWRlclxuICAgIGl0ZW0/OiBUOyAvLyBpZiBwcmVzZW50LCBpdGVtIHZhbHVlIHdpbGwgYmUgdXNlZCB0byByZXNldCBmb3JtXG4gICAgZmllbGRzPzoge1xuICAgICAgICBba2V5OiBzdHJpbmddOiB1bmtub3duO1xuICAgIH07XG4gICAgZGF0YT86IHtcbiAgICAgICAgW2tleTogc3RyaW5nXTogYW55O1xuICAgIH07XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgVmlld0NvbnRhaW5lckVkaXRvckNsb3NlRXZlbnQ8VD4ge1xuICAgIGVtaXRFdmVudD86IGJvb2xlYW47XG4gICAgaXRlbT86IFQ7XG59XG4iXX0=
@@ -1,28 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class MngBooleanPipe {
4
- transform(value, yes, no, icon = false) {
5
- if (typeof value === 'boolean') {
6
- if (icon) {
7
- return value ? yes ?? 'pi pi-check' : no ?? 'pi pi-times';
8
- }
9
- else {
10
- return value ? yes ?? 'general.yes' : no ?? 'general.no';
11
- }
12
- }
13
- else {
14
- return value;
15
- }
16
- }
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngBooleanPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
18
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngBooleanPipe, isStandalone: true, name: "boolean" }); }
19
- }
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngBooleanPipe, decorators: [{
21
- type: Pipe,
22
- args: [{
23
- standalone: true,
24
- name: 'boolean',
25
- pure: true
26
- }]
27
- }] });
28
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm9vbGVhbi5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9waXBlcy9ib29sZWFuLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLElBQUksRUFBZ0IsTUFBTSxlQUFlLENBQUM7O0FBT2xELE1BQU0sT0FBTyxjQUFjO0lBQ3ZCLFNBQVMsQ0FBQyxLQUFVLEVBQUUsR0FBWSxFQUFFLEVBQVcsRUFBRSxJQUFJLEdBQUcsS0FBSztRQUN6RCxJQUFJLE9BQU8sS0FBSyxLQUFLLFNBQVMsRUFBRTtZQUM1QixJQUFJLElBQUksRUFBRTtnQkFDTixPQUFPLEtBQUssQ0FBQyxDQUFDLENBQUMsR0FBRyxJQUFJLGFBQWEsQ0FBQyxDQUFDLENBQUMsRUFBRSxJQUFJLGFBQWEsQ0FBQzthQUM3RDtpQkFBTTtnQkFDSCxPQUFPLEtBQUssQ0FBQyxDQUFDLENBQUMsR0FBRyxJQUFJLGFBQWEsQ0FBQyxDQUFDLENBQUMsRUFBRSxJQUFJLFlBQVksQ0FBQzthQUM1RDtTQUNKO2FBQU07WUFDSCxPQUFPLEtBQUssQ0FBQztTQUNoQjtJQUNMLENBQUM7OEdBWFEsY0FBYzs0R0FBZCxjQUFjOzsyRkFBZCxjQUFjO2tCQUwxQixJQUFJO21CQUFDO29CQUNGLFVBQVUsRUFBRSxJQUFJO29CQUNoQixJQUFJLEVBQUUsU0FBUztvQkFDZixJQUFJLEVBQUUsSUFBSTtpQkFDYiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UGlwZSwgUGlwZVRyYW5zZm9ybX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBQaXBlKHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIG5hbWU6ICdib29sZWFuJyxcbiAgICBwdXJlOiB0cnVlXG59KVxuZXhwb3J0IGNsYXNzIE1uZ0Jvb2xlYW5QaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gICAgdHJhbnNmb3JtKHZhbHVlOiBhbnksIHllcz86IHN0cmluZywgbm8/OiBzdHJpbmcsIGljb24gPSBmYWxzZSk6IGFueSB7XG4gICAgICAgIGlmICh0eXBlb2YgdmFsdWUgPT09ICdib29sZWFuJykge1xuICAgICAgICAgICAgaWYgKGljb24pIHtcbiAgICAgICAgICAgICAgICByZXR1cm4gdmFsdWUgPyB5ZXMgPz8gJ3BpIHBpLWNoZWNrJyA6IG5vID8/ICdwaSBwaS10aW1lcyc7XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgIHJldHVybiB2YWx1ZSA/IHllcyA/PyAnZ2VuZXJhbC55ZXMnIDogbm8gPz8gJ2dlbmVyYWwubm8nO1xuICAgICAgICAgICAgfVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIHZhbHVlO1xuICAgICAgICB9XG4gICAgfVxufVxuIl19
@@ -1,23 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class MngClassMapPipe {
4
- transform(className, classNameMapFn, item) {
5
- if (classNameMapFn && typeof classNameMapFn === 'function') {
6
- return classNameMapFn(className, item);
7
- }
8
- else {
9
- return className ?? '';
10
- }
11
- }
12
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngClassMapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
13
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngClassMapPipe, isStandalone: true, name: "mngClassMapPipe" }); }
14
- }
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngClassMapPipe, decorators: [{
16
- type: Pipe,
17
- args: [{
18
- standalone: true,
19
- name: 'mngClassMapPipe',
20
- pure: true
21
- }]
22
- }] });
23
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xhc3MtbWFwLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2NsYXNzLW1hcC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDOztBQU9sRCxNQUFNLE9BQU8sZUFBZTtJQUN4QixTQUFTLENBQUMsU0FBa0IsRUFBRSxjQUF5RCxFQUFFLElBQVE7UUFDN0YsSUFBSSxjQUFjLElBQUksT0FBTyxjQUFjLEtBQUssVUFBVSxFQUFFO1lBQ3hELE9BQU8sY0FBYyxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsQ0FBQztTQUMxQzthQUFNO1lBQ0gsT0FBTyxTQUFTLElBQUksRUFBRSxDQUFDO1NBQzFCO0lBQ0wsQ0FBQzs4R0FQUSxlQUFlOzRHQUFmLGVBQWU7OzJGQUFmLGVBQWU7a0JBTDNCLElBQUk7bUJBQUM7b0JBQ0YsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRSxpQkFBaUI7b0JBQ3ZCLElBQUksRUFBRSxJQUFJO2lCQUNiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQFBpcGUoe1xuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgbmFtZTogJ21uZ0NsYXNzTWFwUGlwZScsXG4gICAgcHVyZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBNbmdDbGFzc01hcFBpcGU8VD4gaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgICB0cmFuc2Zvcm0oY2xhc3NOYW1lPzogc3RyaW5nLCBjbGFzc05hbWVNYXBGbj86IChjbGFzc05hbWU/OiBzdHJpbmcsIGl0ZW0/OiBUKSA9PiBzdHJpbmcsIGl0ZW0/OiBUKTogc3RyaW5nIHtcbiAgICAgICAgaWYgKGNsYXNzTmFtZU1hcEZuICYmIHR5cGVvZiBjbGFzc05hbWVNYXBGbiA9PT0gJ2Z1bmN0aW9uJykge1xuICAgICAgICAgICAgcmV0dXJuIGNsYXNzTmFtZU1hcEZuKGNsYXNzTmFtZSwgaXRlbSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gY2xhc3NOYW1lID8/ICcnO1xuICAgICAgICB9XG4gICAgfVxufVxuIl19
@@ -1,26 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { DecoratorMetadataUtil, EnumUtil } from '../utils';
3
- import * as i0 from "@angular/core";
4
- export class MngEnumPipe {
5
- transform(value, enumObj, i18nPath, nameAsValue = false) {
6
- if (!value || (typeof value !== 'number' && typeof value !== 'string') || !enumObj) {
7
- return value;
8
- }
9
- const enumConstantName = nameAsValue ? value : EnumUtil.getConstantNameFromEnumObject(enumObj, value) ?? value;
10
- if (typeof i18nPath === 'undefined') {
11
- i18nPath = DecoratorMetadataUtil.findEnumName(enumObj);
12
- }
13
- return i18nPath ? `${i18nPath}.${enumConstantName}` : enumConstantName;
14
- }
15
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngEnumPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
16
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngEnumPipe, isStandalone: true, name: "enum" }); }
17
- }
18
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngEnumPipe, decorators: [{
19
- type: Pipe,
20
- args: [{
21
- standalone: true,
22
- name: 'enum',
23
- pure: true
24
- }]
25
- }] });
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9waXBlcy9lbnVtLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLElBQUksRUFBZ0IsTUFBTSxlQUFlLENBQUM7QUFHbEQsT0FBTyxFQUFDLHFCQUFxQixFQUFFLFFBQVEsRUFBQyxNQUFNLFVBQVUsQ0FBQzs7QUFPekQsTUFBTSxPQUFPLFdBQVc7SUFDcEIsU0FBUyxDQUFDLEtBQWMsRUFBRSxPQUE2QixFQUFFLFFBQXdCLEVBQUUsV0FBVyxHQUFHLEtBQUs7UUFDbEcsSUFBSSxDQUFDLEtBQUssSUFBSSxDQUFDLE9BQU8sS0FBSyxLQUFLLFFBQVEsSUFBSSxPQUFPLEtBQUssS0FBSyxRQUFRLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRTtZQUNoRixPQUFPLEtBQUssQ0FBQztTQUNoQjtRQUNELE1BQU0sZ0JBQWdCLEdBQUcsV0FBVyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyw2QkFBNkIsQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLElBQUksS0FBSyxDQUFDO1FBQy9HLElBQUksT0FBTyxRQUFRLEtBQUssV0FBVyxFQUFFO1lBQ2pDLFFBQVEsR0FBRyxxQkFBcUIsQ0FBQyxZQUFZLENBQUMsT0FBbUIsQ0FBQyxDQUFDO1NBQ3RFO1FBQ0QsT0FBTyxRQUFRLENBQUMsQ0FBQyxDQUFDLEdBQUcsUUFBUSxJQUFJLGdCQUFnQixFQUFFLENBQUMsQ0FBQyxDQUFDLGdCQUFnQixDQUFDO0lBQzNFLENBQUM7OEdBVlEsV0FBVzs0R0FBWCxXQUFXOzsyRkFBWCxXQUFXO2tCQUx2QixJQUFJO21CQUFDO29CQUNGLFVBQVUsRUFBRSxJQUFJO29CQUNoQixJQUFJLEVBQUUsTUFBTTtvQkFDWixJQUFJLEVBQUUsSUFBSTtpQkFDYiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UGlwZSwgUGlwZVRyYW5zZm9ybX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7RW51bVR5cGV9IGZyb20gJy4uL3R5cGVzJztcbmltcG9ydCB7RGVjb3JhdG9yTWV0YWRhdGFVdGlsLCBFbnVtVXRpbH0gZnJvbSAnLi4vdXRpbHMnO1xuXG5AUGlwZSh7XG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBuYW1lOiAnZW51bScsXG4gICAgcHVyZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBNbmdFbnVtUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybSh2YWx1ZTogdW5rbm93biwgZW51bU9iajogRW51bVR5cGUgfCB1bmRlZmluZWQsIGkxOG5QYXRoPzogc3RyaW5nIHwgbnVsbCwgbmFtZUFzVmFsdWUgPSBmYWxzZSk6IGFueSB7XG4gICAgICAgIGlmICghdmFsdWUgfHwgKHR5cGVvZiB2YWx1ZSAhPT0gJ251bWJlcicgJiYgdHlwZW9mIHZhbHVlICE9PSAnc3RyaW5nJykgfHwgIWVudW1PYmopIHtcbiAgICAgICAgICAgIHJldHVybiB2YWx1ZTtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBlbnVtQ29uc3RhbnROYW1lID0gbmFtZUFzVmFsdWUgPyB2YWx1ZSA6IEVudW1VdGlsLmdldENvbnN0YW50TmFtZUZyb21FbnVtT2JqZWN0KGVudW1PYmosIHZhbHVlKSA/PyB2YWx1ZTtcbiAgICAgICAgaWYgKHR5cGVvZiBpMThuUGF0aCA9PT0gJ3VuZGVmaW5lZCcpIHtcbiAgICAgICAgICAgIGkxOG5QYXRoID0gRGVjb3JhdG9yTWV0YWRhdGFVdGlsLmZpbmRFbnVtTmFtZShlbnVtT2JqIGFzIEVudW1UeXBlKTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gaTE4blBhdGggPyBgJHtpMThuUGF0aH0uJHtlbnVtQ29uc3RhbnROYW1lfWAgOiBlbnVtQ29uc3RhbnROYW1lO1xuICAgIH1cbn1cbiJdfQ==
@@ -1,41 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { TranslateService } from '@ngx-translate/core';
3
- import { combineLatest, mergeMap, of } from 'rxjs';
4
- import { map } from 'rxjs/operators';
5
- import { EnumeratePipeI18nHelper } from './enumerate.pipe';
6
- import { JsonPathPipe } from './json-path.pipe';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "./json-path.pipe";
9
- import * as i2 from "@ngx-translate/core";
10
- export class MngEnumerateAsyncPipe {
11
- constructor(jsonPath, translate) {
12
- this.jsonPath = jsonPath;
13
- this.translate = translate;
14
- this.helper = new EnumeratePipeI18nHelper(this.jsonPath);
15
- }
16
- transform(value, jsonPath = '$', valueSeparator = ', ', emptyValueReturn = '/', i18nBaseKey = '') {
17
- i18nBaseKey = EnumeratePipeI18nHelper.getI18nBaseKey(i18nBaseKey);
18
- return value.pipe(mergeMap(v => {
19
- if (!v) {
20
- return of([emptyValueReturn]);
21
- }
22
- return combineLatest(Array.from(v)
23
- .map(ai => this.helper.toI18nEnumerate(ai, jsonPath, i18nBaseKey))
24
- .map(i => this.translate.stream(i.i18nKey).pipe(map((i18n) => {
25
- i.i18n = i18n;
26
- return EnumeratePipeI18nHelper.selectI18n(i, i18nBaseKey);
27
- }))));
28
- }), map(i => i.join(valueSeparator)));
29
- }
30
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngEnumerateAsyncPipe, deps: [{ token: i1.JsonPathPipe }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
31
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngEnumerateAsyncPipe, isStandalone: true, name: "mgnEnumerateAsync" }); }
32
- }
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngEnumerateAsyncPipe, decorators: [{
34
- type: Pipe,
35
- args: [{
36
- standalone: true,
37
- name: 'mgnEnumerateAsync',
38
- pure: true
39
- }]
40
- }], ctorParameters: () => [{ type: i1.JsonPathPipe }, { type: i2.TranslateService }] });
41
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bWVyYXRlLWFzeW5jLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2VudW1lcmF0ZS1hc3luYy5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDO0FBRWxELE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ3JELE9BQU8sRUFBYSxhQUFhLEVBQUUsUUFBUSxFQUFFLEVBQUUsRUFBQyxNQUFNLE1BQU0sQ0FBQztBQUM3RCxPQUFPLEVBQUMsR0FBRyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFFbkMsT0FBTyxFQUFDLHVCQUF1QixFQUFDLE1BQU0sa0JBQWtCLENBQUM7QUFDekQsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGtCQUFrQixDQUFDOzs7O0FBTzlDLE1BQU0sT0FBTyxxQkFBcUI7SUFHOUIsWUFDWSxRQUFzQixFQUN0QixTQUEyQjtRQUQzQixhQUFRLEdBQVIsUUFBUSxDQUFjO1FBQ3RCLGNBQVMsR0FBVCxTQUFTLENBQWtCO1FBRW5DLElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDN0QsQ0FBQztJQUVELFNBQVMsQ0FBQyxLQUFnRCxFQUFFLFFBQVEsR0FBRyxHQUFHLEVBQUUsY0FBYyxHQUFHLElBQUksRUFBRSxnQkFBZ0IsR0FBRyxHQUFHLEVBQUUsV0FBVyxHQUFHLEVBQUU7UUFDdkksV0FBVyxHQUFHLHVCQUF1QixDQUFDLGNBQWMsQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUNsRSxPQUFPLEtBQUssQ0FBQyxJQUFJLENBQ2IsUUFBUSxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ1QsSUFBSSxDQUFDLENBQUMsRUFBRTtnQkFDSixPQUFPLEVBQUUsQ0FBQyxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQzthQUNqQztZQUNELE9BQU8sYUFBYSxDQUNoQixLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztpQkFDUixHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLGVBQWUsQ0FBQyxFQUFFLEVBQUUsUUFBUSxFQUFFLFdBQVcsQ0FBQyxDQUFDO2lCQUNqRSxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FDTCxJQUFJLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxDQUNqQyxHQUFHLENBQUMsQ0FBQyxJQUFZLEVBQUUsRUFBRTtnQkFDakIsQ0FBQyxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7Z0JBQ2QsT0FBTyx1QkFBdUIsQ0FBQyxVQUFVLENBQUMsQ0FBQyxFQUFFLFdBQVcsQ0FBQyxDQUFDO1lBQzlELENBQUMsQ0FBQyxDQUNMLENBQ0osQ0FDUixDQUFDO1FBQ04sQ0FBQyxDQUFDLEVBQ0YsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQyxDQUNuQyxDQUFDO0lBQ04sQ0FBQzs4R0FoQ1EscUJBQXFCOzRHQUFyQixxQkFBcUI7OzJGQUFyQixxQkFBcUI7a0JBTGpDLElBQUk7bUJBQUM7b0JBQ0YsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRSxtQkFBbUI7b0JBQ3pCLElBQUksRUFBRSxJQUFJO2lCQUNiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtUcmFuc2xhdGVTZXJ2aWNlfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcbmltcG9ydCB7T2JzZXJ2YWJsZSwgY29tYmluZUxhdGVzdCwgbWVyZ2VNYXAsIG9mfSBmcm9tICdyeGpzJztcbmltcG9ydCB7bWFwfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbmltcG9ydCB7RW51bWVyYXRlUGlwZUkxOG5IZWxwZXJ9IGZyb20gJy4vZW51bWVyYXRlLnBpcGUnO1xuaW1wb3J0IHtKc29uUGF0aFBpcGV9IGZyb20gJy4vanNvbi1wYXRoLnBpcGUnO1xuXG5AUGlwZSh7XG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBuYW1lOiAnbWduRW51bWVyYXRlQXN5bmMnLFxuICAgIHB1cmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgTW5nRW51bWVyYXRlQXN5bmNQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gICAgcHJpdmF0ZSBoZWxwZXI6IEVudW1lcmF0ZVBpcGVJMThuSGVscGVyO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUganNvblBhdGg6IEpzb25QYXRoUGlwZSxcbiAgICAgICAgcHJpdmF0ZSB0cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2VcbiAgICApIHtcbiAgICAgICAgdGhpcy5oZWxwZXIgPSBuZXcgRW51bWVyYXRlUGlwZUkxOG5IZWxwZXIodGhpcy5qc29uUGF0aCk7XG4gICAgfVxuXG4gICAgdHJhbnNmb3JtKHZhbHVlOiBPYnNlcnZhYmxlPEFycmF5PHVua25vd24+IHwgU2V0PHVua25vd24+PiwganNvblBhdGggPSAnJCcsIHZhbHVlU2VwYXJhdG9yID0gJywgJywgZW1wdHlWYWx1ZVJldHVybiA9ICcvJywgaTE4bkJhc2VLZXkgPSAnJyk6IE9ic2VydmFibGU8c3RyaW5nPiB7XG4gICAgICAgIGkxOG5CYXNlS2V5ID0gRW51bWVyYXRlUGlwZUkxOG5IZWxwZXIuZ2V0STE4bkJhc2VLZXkoaTE4bkJhc2VLZXkpO1xuICAgICAgICByZXR1cm4gdmFsdWUucGlwZShcbiAgICAgICAgICAgIG1lcmdlTWFwKHYgPT4ge1xuICAgICAgICAgICAgICAgIGlmICghdikge1xuICAgICAgICAgICAgICAgICAgICByZXR1cm4gb2YoW2VtcHR5VmFsdWVSZXR1cm5dKTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgcmV0dXJuIGNvbWJpbmVMYXRlc3QoXG4gICAgICAgICAgICAgICAgICAgIEFycmF5LmZyb20odilcbiAgICAgICAgICAgICAgICAgICAgICAgIC5tYXAoYWkgPT4gdGhpcy5oZWxwZXIudG9JMThuRW51bWVyYXRlKGFpLCBqc29uUGF0aCwgaTE4bkJhc2VLZXkpKVxuICAgICAgICAgICAgICAgICAgICAgICAgLm1hcChpID0+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy50cmFuc2xhdGUuc3RyZWFtKGkuaTE4bktleSkucGlwZShcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgbWFwKChpMThuOiBzdHJpbmcpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGkuaTE4biA9IGkxOG47XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gRW51bWVyYXRlUGlwZUkxOG5IZWxwZXIuc2VsZWN0STE4bihpLCBpMThuQmFzZUtleSk7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0pXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICB9KSxcbiAgICAgICAgICAgIG1hcChpID0+IGkuam9pbih2YWx1ZVNlcGFyYXRvcikpXG4gICAgICAgICk7XG4gICAgfVxufVxuIl19
@@ -1,58 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { TranslateService } from '@ngx-translate/core';
3
- import { JsonPathPipe } from './json-path.pipe';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "./json-path.pipe";
6
- import * as i2 from "@ngx-translate/core";
7
- export class MngEnumeratePipe {
8
- constructor(jsonPath, translate) {
9
- this.jsonPath = jsonPath;
10
- this.translate = translate;
11
- this.helper = new EnumeratePipeI18nHelper(this.jsonPath);
12
- }
13
- transform(value, jsonPath = '$', valueSeparator = ', ', emptyValueReturn = '/', i18nBaseKey = '') {
14
- if (!value) {
15
- return emptyValueReturn;
16
- }
17
- i18nBaseKey = EnumeratePipeI18nHelper.getI18nBaseKey(i18nBaseKey);
18
- return Array.from(value)
19
- .map(i => {
20
- const itemEnumerate = this.helper.toI18nEnumerate(i, jsonPath, i18nBaseKey);
21
- itemEnumerate.i18n = this.translate.instant(itemEnumerate.i18nKey);
22
- // return i18n only if used and transl. was found
23
- return EnumeratePipeI18nHelper.selectI18n(itemEnumerate, i18nBaseKey);
24
- })
25
- .join(valueSeparator);
26
- }
27
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngEnumeratePipe, deps: [{ token: i1.JsonPathPipe }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
28
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngEnumeratePipe, isStandalone: true, name: "mgnEnumerate" }); }
29
- }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngEnumeratePipe, decorators: [{
31
- type: Pipe,
32
- args: [{
33
- standalone: true,
34
- name: 'mgnEnumerate',
35
- pure: true
36
- }]
37
- }], ctorParameters: () => [{ type: i1.JsonPathPipe }, { type: i2.TranslateService }] });
38
- export class EnumeratePipeI18nHelper {
39
- constructor(jsonPathPipe) {
40
- this.jsonPathPipe = jsonPathPipe;
41
- }
42
- static getI18nBaseKey(baseKey) {
43
- return baseKey.endsWith('.') ? baseKey?.substring(0, baseKey.length - 1) : baseKey;
44
- }
45
- static selectI18n(value, baseKey) {
46
- return baseKey && value.i18nKey === value.i18n ? value.value : value.i18n;
47
- }
48
- toI18nEnumerate(value, jsonPath, baseKey) {
49
- const valueTrans = this.jsonPathPipe.transform(value, jsonPath);
50
- const valueAsString = valueTrans.toString();
51
- return {
52
- value: valueAsString,
53
- i18nKey: baseKey ? `${baseKey}.${valueAsString}` : valueAsString,
54
- i18n: valueAsString
55
- };
56
- }
57
- }
58
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bWVyYXRlLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2VudW1lcmF0ZS5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDO0FBRWxELE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXJELE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQVE5QyxNQUFNLE9BQU8sZ0JBQWdCO0lBR3pCLFlBQ1ksUUFBc0IsRUFDdEIsU0FBMkI7UUFEM0IsYUFBUSxHQUFSLFFBQVEsQ0FBYztRQUN0QixjQUFTLEdBQVQsU0FBUyxDQUFrQjtRQUVuQyxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksdUJBQXVCLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQzdELENBQUM7SUFFRCxTQUFTLENBQUksS0FBd0IsRUFBRSxRQUFRLEdBQUcsR0FBRyxFQUFFLGNBQWMsR0FBRyxJQUFJLEVBQUUsZ0JBQWdCLEdBQUcsR0FBRyxFQUFFLFdBQVcsR0FBRyxFQUFFO1FBQ2xILElBQUksQ0FBQyxLQUFLLEVBQUU7WUFDUixPQUFPLGdCQUFnQixDQUFDO1NBQzNCO1FBQ0QsV0FBVyxHQUFHLHVCQUF1QixDQUFDLGNBQWMsQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUNsRSxPQUFPLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO2FBQ25CLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRTtZQUNMLE1BQU0sYUFBYSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsZUFBZSxDQUFDLENBQUMsRUFBRSxRQUFRLEVBQUUsV0FBVyxDQUFDLENBQUM7WUFDNUUsYUFBYSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDbkUsaURBQWlEO1lBQ2pELE9BQU8sdUJBQXVCLENBQUMsVUFBVSxDQUFDLGFBQWEsRUFBRSxXQUFXLENBQUMsQ0FBQztRQUMxRSxDQUFDLENBQUM7YUFDRCxJQUFJLENBQUMsY0FBYyxDQUFDLENBQUM7SUFDOUIsQ0FBQzs4R0F2QlEsZ0JBQWdCOzRHQUFoQixnQkFBZ0I7OzJGQUFoQixnQkFBZ0I7a0JBTDVCLElBQUk7bUJBQUM7b0JBQ0YsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRSxjQUFjO29CQUNwQixJQUFJLEVBQUUsSUFBSTtpQkFDYjs7QUEyQkQsTUFBTSxPQUFPLHVCQUF1QjtJQUNoQyxZQUFvQixZQUEwQjtRQUExQixpQkFBWSxHQUFaLFlBQVksQ0FBYztJQUFHLENBQUM7SUFFM0MsTUFBTSxDQUFDLGNBQWMsQ0FBQyxPQUFlO1FBQ3hDLE9BQU8sT0FBTyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsT0FBTyxFQUFFLFNBQVMsQ0FBQyxDQUFDLEVBQUUsT0FBTyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDO0lBQ3ZGLENBQUM7SUFFTSxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQWdDLEVBQUUsT0FBZTtRQUN0RSxPQUFPLE9BQU8sSUFBSSxLQUFLLENBQUMsT0FBTyxLQUFLLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUM7SUFDOUUsQ0FBQztJQUVNLGVBQWUsQ0FBQyxLQUFjLEVBQUUsUUFBZ0IsRUFBRSxPQUFlO1FBQ3BFLE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBRSxRQUFRLENBQUMsQ0FBQztRQUNoRSxNQUFNLGFBQWEsR0FBRyxVQUFVLENBQUMsUUFBUSxFQUFFLENBQUM7UUFDNUMsT0FBa0M7WUFDOUIsS0FBSyxFQUFFLGFBQWE7WUFDcEIsT0FBTyxFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUMsR0FBRyxPQUFPLElBQUksYUFBYSxFQUFFLENBQUMsQ0FBQyxDQUFDLGFBQWE7WUFDaEUsSUFBSSxFQUFFLGFBQWE7U0FDdEIsQ0FBQztJQUNOLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UGlwZSwgUGlwZVRyYW5zZm9ybX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHJhbnNsYXRlU2VydmljZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5cbmltcG9ydCB7SnNvblBhdGhQaXBlfSBmcm9tICcuL2pzb24tcGF0aC5waXBlJztcbmltcG9ydCB7RW51bWVyYXRlUGlwZUkxOG5JbnRlcm5hbH0gZnJvbSAnLi9tb2RlbHMvaW50ZXJuYWwnO1xuXG5AUGlwZSh7XG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBuYW1lOiAnbWduRW51bWVyYXRlJyxcbiAgICBwdXJlOiB0cnVlXG59KVxuZXhwb3J0IGNsYXNzIE1uZ0VudW1lcmF0ZVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgICBwcml2YXRlIGhlbHBlcjogRW51bWVyYXRlUGlwZUkxOG5IZWxwZXI7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSBqc29uUGF0aDogSnNvblBhdGhQaXBlLFxuICAgICAgICBwcml2YXRlIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZVxuICAgICkge1xuICAgICAgICB0aGlzLmhlbHBlciA9IG5ldyBFbnVtZXJhdGVQaXBlSTE4bkhlbHBlcih0aGlzLmpzb25QYXRoKTtcbiAgICB9XG5cbiAgICB0cmFuc2Zvcm08VD4odmFsdWU6IEFycmF5PFQ+IHwgU2V0PFQ+LCBqc29uUGF0aCA9ICckJywgdmFsdWVTZXBhcmF0b3IgPSAnLCAnLCBlbXB0eVZhbHVlUmV0dXJuID0gJy8nLCBpMThuQmFzZUtleSA9ICcnKTogc3RyaW5nIHtcbiAgICAgICAgaWYgKCF2YWx1ZSkge1xuICAgICAgICAgICAgcmV0dXJuIGVtcHR5VmFsdWVSZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgaTE4bkJhc2VLZXkgPSBFbnVtZXJhdGVQaXBlSTE4bkhlbHBlci5nZXRJMThuQmFzZUtleShpMThuQmFzZUtleSk7XG4gICAgICAgIHJldHVybiBBcnJheS5mcm9tKHZhbHVlKVxuICAgICAgICAgICAgLm1hcChpID0+IHtcbiAgICAgICAgICAgICAgICBjb25zdCBpdGVtRW51bWVyYXRlID0gdGhpcy5oZWxwZXIudG9JMThuRW51bWVyYXRlKGksIGpzb25QYXRoLCBpMThuQmFzZUtleSk7XG4gICAgICAgICAgICAgICAgaXRlbUVudW1lcmF0ZS5pMThuID0gdGhpcy50cmFuc2xhdGUuaW5zdGFudChpdGVtRW51bWVyYXRlLmkxOG5LZXkpO1xuICAgICAgICAgICAgICAgIC8vIHJldHVybiBpMThuIG9ubHkgaWYgdXNlZCBhbmQgdHJhbnNsLiB3YXMgZm91bmRcbiAgICAgICAgICAgICAgICByZXR1cm4gRW51bWVyYXRlUGlwZUkxOG5IZWxwZXIuc2VsZWN0STE4bihpdGVtRW51bWVyYXRlLCBpMThuQmFzZUtleSk7XG4gICAgICAgICAgICB9KVxuICAgICAgICAgICAgLmpvaW4odmFsdWVTZXBhcmF0b3IpO1xuICAgIH1cbn1cblxuZXhwb3J0IGNsYXNzIEVudW1lcmF0ZVBpcGVJMThuSGVscGVyIHtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIGpzb25QYXRoUGlwZTogSnNvblBhdGhQaXBlKSB7fVxuXG4gICAgcHVibGljIHN0YXRpYyBnZXRJMThuQmFzZUtleShiYXNlS2V5OiBzdHJpbmcpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gYmFzZUtleS5lbmRzV2l0aCgnLicpID8gYmFzZUtleT8uc3Vic3RyaW5nKDAsIGJhc2VLZXkubGVuZ3RoIC0gMSkgOiBiYXNlS2V5O1xuICAgIH1cblxuICAgIHB1YmxpYyBzdGF0aWMgc2VsZWN0STE4bih2YWx1ZTogRW51bWVyYXRlUGlwZUkxOG5JbnRlcm5hbCwgYmFzZUtleTogc3RyaW5nKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIGJhc2VLZXkgJiYgdmFsdWUuaTE4bktleSA9PT0gdmFsdWUuaTE4biA/IHZhbHVlLnZhbHVlIDogdmFsdWUuaTE4bjtcbiAgICB9XG5cbiAgICBwdWJsaWMgdG9JMThuRW51bWVyYXRlKHZhbHVlOiB1bmtub3duLCBqc29uUGF0aDogc3RyaW5nLCBiYXNlS2V5OiBzdHJpbmcpOiBFbnVtZXJhdGVQaXBlSTE4bkludGVybmFsIHtcbiAgICAgICAgY29uc3QgdmFsdWVUcmFucyA9IHRoaXMuanNvblBhdGhQaXBlLnRyYW5zZm9ybSh2YWx1ZSwganNvblBhdGgpO1xuICAgICAgICBjb25zdCB2YWx1ZUFzU3RyaW5nID0gdmFsdWVUcmFucy50b1N0cmluZygpO1xuICAgICAgICByZXR1cm4gPEVudW1lcmF0ZVBpcGVJMThuSW50ZXJuYWw+e1xuICAgICAgICAgICAgdmFsdWU6IHZhbHVlQXNTdHJpbmcsXG4gICAgICAgICAgICBpMThuS2V5OiBiYXNlS2V5ID8gYCR7YmFzZUtleX0uJHt2YWx1ZUFzU3RyaW5nfWAgOiB2YWx1ZUFzU3RyaW5nLFxuICAgICAgICAgICAgaTE4bjogdmFsdWVBc1N0cmluZ1xuICAgICAgICB9O1xuICAgIH1cbn1cbiJdfQ==
@@ -1,21 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class MngGetterPipe {
4
- transform(value, getterFn, item) {
5
- if (typeof getterFn === 'function') {
6
- return getterFn(item, value);
7
- }
8
- return value;
9
- }
10
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngGetterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
11
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngGetterPipe, isStandalone: true, name: "getter" }); }
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngGetterPipe, decorators: [{
14
- type: Pipe,
15
- args: [{
16
- standalone: true,
17
- name: 'getter',
18
- pure: true
19
- }]
20
- }] });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0dGVyLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2dldHRlci5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDOztBQVNsRCxNQUFNLE9BQU8sYUFBYTtJQUN0QixTQUFTLENBQUMsS0FBYyxFQUFFLFFBQW1CLEVBQUUsSUFBYztRQUN6RCxJQUFJLE9BQU8sUUFBUSxLQUFLLFVBQVUsRUFBRTtZQUNoQyxPQUFPLFFBQVEsQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLENBQUM7U0FDaEM7UUFFRCxPQUFPLEtBQUssQ0FBQztJQUNqQixDQUFDOzhHQVBRLGFBQWE7NEdBQWIsYUFBYTs7MkZBQWIsYUFBYTtrQkFMekIsSUFBSTttQkFBQztvQkFDRixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsSUFBSSxFQUFFLFFBQVE7b0JBQ2QsSUFBSSxFQUFFLElBQUk7aUJBQ2IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1BpcGUsIFBpcGVUcmFuc2Zvcm19IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQge0dldHRlckZufSBmcm9tICcuLi90eXBlcyc7XG5cbkBQaXBlKHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIG5hbWU6ICdnZXR0ZXInLFxuICAgIHB1cmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgTW5nR2V0dGVyUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybSh2YWx1ZTogdW5rbm93biwgZ2V0dGVyRm4/OiBHZXR0ZXJGbiwgaXRlbT86IHVua25vd24pOiBhbnkge1xuICAgICAgICBpZiAodHlwZW9mIGdldHRlckZuID09PSAnZnVuY3Rpb24nKSB7XG4gICAgICAgICAgICByZXR1cm4gZ2V0dGVyRm4oaXRlbSwgdmFsdWUpO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIHZhbHVlO1xuICAgIH1cbn1cbiJdfQ==
@@ -1,19 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { I18nUtils } from '../utils';
3
- import * as i0 from "@angular/core";
4
- export class MngI18nPropertyPipe {
5
- transform(property, model) {
6
- return I18nUtils.Type.getPropertyKey(model.i18nBaseKey, property);
7
- }
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngI18nPropertyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
9
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngI18nPropertyPipe, isStandalone: true, name: "i18nProperty" }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngI18nPropertyPipe, decorators: [{
12
- type: Pipe,
13
- args: [{
14
- standalone: true,
15
- name: 'i18nProperty',
16
- pure: true
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaTE4bi1wcm9wZXJ0eS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9waXBlcy9pMThuLXByb3BlcnR5LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLElBQUksRUFBZ0IsTUFBTSxlQUFlLENBQUM7QUFHbEQsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLFVBQVUsQ0FBQzs7QUFPbkMsTUFBTSxPQUFPLG1CQUFtQjtJQUM1QixTQUFTLENBQUMsUUFBZ0IsRUFBRSxLQUEyQjtRQUNuRCxPQUFPLFNBQVMsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDdEUsQ0FBQzs4R0FIUSxtQkFBbUI7NEdBQW5CLG1CQUFtQjs7MkZBQW5CLG1CQUFtQjtrQkFML0IsSUFBSTttQkFBQztvQkFDRixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsSUFBSSxFQUFFLGNBQWM7b0JBQ3BCLElBQUksRUFBRSxJQUFJO2lCQUNiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtNb2RlbERlc2NyaXB0b3J9IGZyb20gJy4uL2Rlc2NyaXB0b3JzL21vZGVsJztcbmltcG9ydCB7STE4blV0aWxzfSBmcm9tICcuLi91dGlscyc7XG5cbkBQaXBlKHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIG5hbWU6ICdpMThuUHJvcGVydHknLFxuICAgIHB1cmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgTW5nSTE4blByb3BlcnR5UGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybShwcm9wZXJ0eTogc3RyaW5nLCBtb2RlbDogTW9kZWxEZXNjcmlwdG9yPGFueT4pOiBhbnkge1xuICAgICAgICByZXR1cm4gSTE4blV0aWxzLlR5cGUuZ2V0UHJvcGVydHlLZXkobW9kZWwuaTE4bkJhc2VLZXksIHByb3BlcnR5KTtcbiAgICB9XG59XG4iXX0=
@@ -1,12 +0,0 @@
1
- export * from './boolean.pipe';
2
- export * from './enum.pipe';
3
- export * from './enumerate.pipe';
4
- export * from './enumerate-async.pipe';
5
- export * from './i18n-property.pipe';
6
- export * from './json-path.pipe';
7
- export * from './parametrize.pipe';
8
- export * from './getter.pipe';
9
- export * from './template.pipe';
10
- export * from './class-map.pipe';
11
- export * from './locale-default-row-class.pipe';
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLGlDQUFpQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9ib29sZWFuLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9lbnVtLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9lbnVtZXJhdGUucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2VudW1lcmF0ZS1hc3luYy5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vaTE4bi1wcm9wZXJ0eS5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vanNvbi1wYXRoLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9wYXJhbWV0cml6ZS5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vZ2V0dGVyLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi90ZW1wbGF0ZS5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vY2xhc3MtbWFwLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9sb2NhbGUtZGVmYXVsdC1yb3ctY2xhc3MucGlwZSc7XG4iXX0=
@@ -1,25 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { ObjectUtil } from '../utils';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * Imitation of JSONPath Syntax. Supports:
6
- * - Root object notation with '$'
7
- * - Dot notation (e.g.: $.foo.bar), no bracket notation for properties
8
- * - Array notation (e.g.: [0])
9
- */
10
- export class JsonPathPipe {
11
- transform(value, path = '') {
12
- return ObjectUtil.getPropertyByPath(value, path);
13
- }
14
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: JsonPathPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
15
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: JsonPathPipe, isStandalone: true, name: "jsonPath" }); }
16
- }
17
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: JsonPathPipe, decorators: [{
18
- type: Pipe,
19
- args: [{
20
- standalone: true,
21
- name: 'jsonPath',
22
- pure: true
23
- }]
24
- }] });
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNvbi1wYXRoLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2pzb24tcGF0aC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDO0FBRWxELE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxVQUFVLENBQUM7O0FBRXBDOzs7OztHQUtHO0FBTUgsTUFBTSxPQUFPLFlBQVk7SUFDckIsU0FBUyxDQUFDLEtBQVUsRUFBRSxJQUFJLEdBQUcsRUFBRTtRQUMzQixPQUFPLFVBQVUsQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDckQsQ0FBQzs4R0FIUSxZQUFZOzRHQUFaLFlBQVk7OzJGQUFaLFlBQVk7a0JBTHhCLElBQUk7bUJBQUM7b0JBQ0YsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRSxVQUFVO29CQUNoQixJQUFJLEVBQUUsSUFBSTtpQkFDYiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UGlwZSwgUGlwZVRyYW5zZm9ybX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7T2JqZWN0VXRpbH0gZnJvbSAnLi4vdXRpbHMnO1xuXG4vKipcbiAqIEltaXRhdGlvbiBvZiBKU09OUGF0aCBTeW50YXguIFN1cHBvcnRzOlxuICogIC0gUm9vdCBvYmplY3Qgbm90YXRpb24gd2l0aCAnJCdcbiAqICAtIERvdCBub3RhdGlvbiAoZS5nLjogJC5mb28uYmFyKSwgbm8gYnJhY2tldCBub3RhdGlvbiBmb3IgcHJvcGVydGllc1xuICogIC0gQXJyYXkgbm90YXRpb24gKGUuZy46IFswXSlcbiAqL1xuQFBpcGUoe1xuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgbmFtZTogJ2pzb25QYXRoJyxcbiAgICBwdXJlOiB0cnVlXG59KVxuZXhwb3J0IGNsYXNzIEpzb25QYXRoUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybSh2YWx1ZTogYW55LCBwYXRoID0gJycpOiBhbnkge1xuICAgICAgICByZXR1cm4gT2JqZWN0VXRpbC5nZXRQcm9wZXJ0eUJ5UGF0aCh2YWx1ZSwgcGF0aCk7XG4gICAgfVxufVxuIl19
@@ -1,27 +0,0 @@
1
- import { Injector, Pipe } from '@angular/core';
2
- import { MngCommonsService } from '../services';
3
- import * as i0 from "@angular/core";
4
- export class MngLocaleDefaultRowClassPipe {
5
- constructor(injector) {
6
- this.injector = injector;
7
- }
8
- transform(value, descriptor, item) {
9
- if (descriptor?.isLocalized) {
10
- if (item[descriptor.localizationLocaleProperty] === this.injector.get(MngCommonsService).defaultDataLanguage) {
11
- return value + ' all-translations-default-value';
12
- }
13
- }
14
- return value ?? '';
15
- }
16
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngLocaleDefaultRowClassPipe, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Pipe }); }
17
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngLocaleDefaultRowClassPipe, isStandalone: true, name: "mngLocaleDefaultRowClass" }); }
18
- }
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngLocaleDefaultRowClassPipe, decorators: [{
20
- type: Pipe,
21
- args: [{
22
- standalone: true,
23
- name: 'mngLocaleDefaultRowClass',
24
- pure: true
25
- }]
26
- }], ctorParameters: () => [{ type: i0.Injector }] });
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYWxlLWRlZmF1bHQtcm93LWNsYXNzLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL2xvY2FsZS1kZWZhdWx0LXJvdy1jbGFzcy5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUUsSUFBSSxFQUFnQixNQUFNLGVBQWUsQ0FBQztBQUc1RCxPQUFPLEVBQUMsaUJBQWlCLEVBQUMsTUFBTSxhQUFhLENBQUM7O0FBTzlDLE1BQU0sT0FBTyw0QkFBNEI7SUFDckMsWUFBb0IsUUFBa0I7UUFBbEIsYUFBUSxHQUFSLFFBQVEsQ0FBVTtJQUFHLENBQUM7SUFFMUMsU0FBUyxDQUFDLEtBQVcsRUFBRSxVQUFtQyxFQUFFLElBQVE7UUFDaEUsSUFBSSxVQUFVLEVBQUUsV0FBVyxFQUFFO1lBQ3pCLElBQUssSUFBWSxDQUFDLFVBQVUsQ0FBQywwQkFBMkIsQ0FBQyxLQUFLLElBQUksQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLGlCQUFpQixDQUFDLENBQUMsbUJBQW1CLEVBQUU7Z0JBQ3BILE9BQU8sS0FBSyxHQUFHLGlDQUFpQyxDQUFDO2FBQ3BEO1NBQ0o7UUFDRCxPQUFPLEtBQUssSUFBSSxFQUFFLENBQUM7SUFDdkIsQ0FBQzs4R0FWUSw0QkFBNEI7NEdBQTVCLDRCQUE0Qjs7MkZBQTVCLDRCQUE0QjtrQkFMeEMsSUFBSTttQkFBQztvQkFDRixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsSUFBSSxFQUFFLDBCQUEwQjtvQkFDaEMsSUFBSSxFQUFFLElBQUk7aUJBQ2IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdG9yLCBQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtUYWJsZURlc2NyaXB0b3JJbnN0fSBmcm9tICcuLi9kZXNjcmlwdG9ycy90YWJsZSc7XG5pbXBvcnQge01uZ0NvbW1vbnNTZXJ2aWNlfSBmcm9tICcuLi9zZXJ2aWNlcyc7XG5cbkBQaXBlKHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIG5hbWU6ICdtbmdMb2NhbGVEZWZhdWx0Um93Q2xhc3MnLFxuICAgIHB1cmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgTW5nTG9jYWxlRGVmYXVsdFJvd0NsYXNzUGlwZTxUPiBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgaW5qZWN0b3I6IEluamVjdG9yKSB7fVxuXG4gICAgdHJhbnNmb3JtKHZhbHVlPzogYW55LCBkZXNjcmlwdG9yPzogVGFibGVEZXNjcmlwdG9ySW5zdDxUPiwgaXRlbT86IFQpOiBzdHJpbmcge1xuICAgICAgICBpZiAoZGVzY3JpcHRvcj8uaXNMb2NhbGl6ZWQpIHtcbiAgICAgICAgICAgIGlmICgoaXRlbSBhcyBhbnkpW2Rlc2NyaXB0b3IubG9jYWxpemF0aW9uTG9jYWxlUHJvcGVydHkhXSA9PT0gdGhpcy5pbmplY3Rvci5nZXQoTW5nQ29tbW9uc1NlcnZpY2UpLmRlZmF1bHREYXRhTGFuZ3VhZ2UpIHtcbiAgICAgICAgICAgICAgICByZXR1cm4gdmFsdWUgKyAnIGFsbC10cmFuc2xhdGlvbnMtZGVmYXVsdC12YWx1ZSc7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHZhbHVlID8/ICcnO1xuICAgIH1cbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bXJhdGUtcGlwZS1pMThuLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYi9waXBlcy9tb2RlbHMvaW50ZXJuYWwvZW51bXJhdGUtcGlwZS1pMThuLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEVudW1lcmF0ZVBpcGVJMThuSW50ZXJuYWwge1xuICAgIHZhbHVlOiBzdHJpbmc7XG4gICAgaTE4bktleTogc3RyaW5nO1xuICAgIGkxOG46IHN0cmluZztcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export * from './enumrate-pipe-i18n.model';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGliL3BpcGVzL21vZGVscy9pbnRlcm5hbC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbnVtcmF0ZS1waXBlLWkxOG4ubW9kZWwnO1xuIl19
@@ -1,86 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { StringUtil } from '../utils';
3
- import { JsonPathPipe } from './json-path.pipe';
4
- import * as i0 from "@angular/core";
5
- export class MngParametrizePipe {
6
- constructor() {
7
- this.jsonPath = new JsonPathPipe();
8
- }
9
- transform(value, itemId, item, actionData) {
10
- let params = {};
11
- if (actionData) {
12
- params = {
13
- ...params,
14
- ...actionData
15
- };
16
- }
17
- if (item) {
18
- params = {
19
- ...params,
20
- item: StringUtil.escapeHtmlAny(item)
21
- };
22
- }
23
- if (itemId) {
24
- params = {
25
- ...params,
26
- itemId: itemId
27
- };
28
- }
29
- if (typeof value === 'string') {
30
- return this.transformString(value, params);
31
- }
32
- else if (Array.isArray(value) && value.length > 0 && typeof value[0] === 'string') {
33
- return value.map((s) => this.transformString(s, params));
34
- }
35
- else if (typeof value === 'object') {
36
- // process only first level citizens
37
- const obj = { ...value };
38
- for (const key in obj) {
39
- const objProp = obj[key];
40
- if (typeof objProp === 'string') {
41
- obj[key] = this.transformString(objProp, params);
42
- }
43
- }
44
- return obj;
45
- }
46
- else {
47
- return value;
48
- }
49
- }
50
- transformString(s, params) {
51
- if ((s.indexOf('/') >= 0 && s.indexOf(':') >= 0 && !s.startsWith('http://') && !s.startsWith('https://')) || s.startsWith(':')) {
52
- // this is router link
53
- return s
54
- .split('/')
55
- .map(s => this.parametrizeStringAsRouterLink(s, params))
56
- .join('/');
57
- }
58
- else {
59
- // parametrize normally
60
- return this.parametrizeString(s, params);
61
- }
62
- }
63
- parametrizeStringAsRouterLink(s, params) {
64
- if (s.startsWith(':')) {
65
- const itemProperty = s.substring(1);
66
- return this.jsonPath.transform(params, itemProperty) ?? '';
67
- }
68
- else {
69
- return s;
70
- }
71
- }
72
- parametrizeString(s, params) {
73
- return s.replace(/{{\s?([^{}\s]*)\s?}}/g, (subs, key) => this.jsonPath.transform(params, key) ?? subs);
74
- }
75
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngParametrizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
76
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngParametrizePipe, isStandalone: true, name: "parametrize" }); }
77
- }
78
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngParametrizePipe, decorators: [{
79
- type: Pipe,
80
- args: [{
81
- standalone: true,
82
- name: 'parametrize',
83
- pure: true
84
- }]
85
- }] });
86
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFyYW1ldHJpemUucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvcGlwZXMvcGFyYW1ldHJpemUucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsSUFBSSxFQUFnQixNQUFNLGVBQWUsQ0FBQztBQUlsRCxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sVUFBVSxDQUFDO0FBQ3BDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxrQkFBa0IsQ0FBQzs7QUFPOUMsTUFBTSxPQUFPLGtCQUFrQjtJQUwvQjtRQU1ZLGFBQVEsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO0tBbUV6QztJQWpFRyxTQUFTLENBQUMsS0FBYyxFQUFFLE1BQWUsRUFBRSxJQUFVLEVBQUUsVUFBdUI7UUFDMUUsSUFBSSxNQUFNLEdBQVEsRUFBRSxDQUFDO1FBQ3JCLElBQUksVUFBVSxFQUFFO1lBQ1osTUFBTSxHQUFHO2dCQUNMLEdBQUcsTUFBTTtnQkFDVCxHQUFHLFVBQVU7YUFDaEIsQ0FBQztTQUNMO1FBQ0QsSUFBSSxJQUFJLEVBQUU7WUFDTixNQUFNLEdBQUc7Z0JBQ0wsR0FBRyxNQUFNO2dCQUNULElBQUksRUFBRSxVQUFVLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQzthQUN2QyxDQUFDO1NBQ0w7UUFDRCxJQUFJLE1BQU0sRUFBRTtZQUNSLE1BQU0sR0FBRztnQkFDTCxHQUFHLE1BQU07Z0JBQ1QsTUFBTSxFQUFFLE1BQU07YUFDakIsQ0FBQztTQUNMO1FBRUQsSUFBSSxPQUFPLEtBQUssS0FBSyxRQUFRLEVBQUU7WUFDM0IsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLEtBQUssRUFBRSxNQUFNLENBQUMsQ0FBQztTQUM5QzthQUFNLElBQUksS0FBSyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLENBQUMsTUFBTSxHQUFHLENBQUMsSUFBSSxPQUFPLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxRQUFRLEVBQUU7WUFDakYsT0FBTyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBUyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUMsRUFBRSxNQUFNLENBQUMsQ0FBQyxDQUFDO1NBQ3BFO2FBQU0sSUFBSSxPQUFPLEtBQUssS0FBSyxRQUFRLEVBQUU7WUFDbEMsb0NBQW9DO1lBQ3BDLE1BQU0sR0FBRyxHQUFRLEVBQUMsR0FBRyxLQUFLLEVBQUMsQ0FBQztZQUM1QixLQUFLLE1BQU0sR0FBRyxJQUFJLEdBQUcsRUFBRTtnQkFDbkIsTUFBTSxPQUFPLEdBQUcsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2dCQUN6QixJQUFJLE9BQU8sT0FBTyxLQUFLLFFBQVEsRUFBRTtvQkFDN0IsR0FBRyxDQUFDLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsT0FBTyxFQUFFLE1BQU0sQ0FBQyxDQUFDO2lCQUNwRDthQUNKO1lBQ0QsT0FBTyxHQUFHLENBQUM7U0FDZDthQUFNO1lBQ0gsT0FBTyxLQUFLLENBQUM7U0FDaEI7SUFDTCxDQUFDO0lBRU8sZUFBZSxDQUFDLENBQVMsRUFBRSxNQUFXO1FBQzFDLElBQUksQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsVUFBVSxDQUFDLFVBQVUsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsRUFBRTtZQUM1SCxzQkFBc0I7WUFDdEIsT0FBTyxDQUFDO2lCQUNILEtBQUssQ0FBQyxHQUFHLENBQUM7aUJBQ1YsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLDZCQUE2QixDQUFDLENBQUMsRUFBRSxNQUFNLENBQUMsQ0FBQztpQkFDdkQsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1NBQ2xCO2FBQU07WUFDSCx1QkFBdUI7WUFDdkIsT0FBTyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxDQUFDO1NBQzVDO0lBQ0wsQ0FBQztJQUVPLDZCQUE2QixDQUFDLENBQVMsRUFBRSxNQUFXO1FBQ3hELElBQUksQ0FBQyxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsRUFBRTtZQUNuQixNQUFNLFlBQVksR0FBRyxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3BDLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsTUFBTSxFQUFFLFlBQVksQ0FBQyxJQUFJLEVBQUUsQ0FBQztTQUM5RDthQUFNO1lBQ0gsT0FBTyxDQUFDLENBQUM7U0FDWjtJQUNMLENBQUM7SUFFTyxpQkFBaUIsQ0FBQyxDQUFTLEVBQUUsTUFBVztRQUM1QyxPQUFPLENBQUMsQ0FBQyxPQUFPLENBQUMsdUJBQXVCLEVBQUUsQ0FBQyxJQUFZLEVBQUUsR0FBVyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxNQUFNLEVBQUUsR0FBRyxDQUFDLElBQUksSUFBSSxDQUFDLENBQUM7SUFDM0gsQ0FBQzs4R0FuRVEsa0JBQWtCOzRHQUFsQixrQkFBa0I7OzJGQUFsQixrQkFBa0I7a0JBTDlCLElBQUk7bUJBQUM7b0JBQ0YsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRSxhQUFhO29CQUNuQixJQUFJLEVBQUUsSUFBSTtpQkFDYiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UGlwZSwgUGlwZVRyYW5zZm9ybX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7QWN0aW9uRGF0YX0gZnJvbSAnLi4vY29tcG9uZW50cy9hY3Rpb24vbW9kZWxzJztcbmltcG9ydCB7SWRUeXBlfSBmcm9tICcuLi90eXBlcyc7XG5pbXBvcnQge1N0cmluZ1V0aWx9IGZyb20gJy4uL3V0aWxzJztcbmltcG9ydCB7SnNvblBhdGhQaXBlfSBmcm9tICcuL2pzb24tcGF0aC5waXBlJztcblxuQFBpcGUoe1xuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgbmFtZTogJ3BhcmFtZXRyaXplJyxcbiAgICBwdXJlOiB0cnVlXG59KVxuZXhwb3J0IGNsYXNzIE1uZ1BhcmFtZXRyaXplUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHByaXZhdGUganNvblBhdGggPSBuZXcgSnNvblBhdGhQaXBlKCk7XG5cbiAgICB0cmFuc2Zvcm0odmFsdWU6IHVua25vd24sIGl0ZW1JZD86IElkVHlwZSwgaXRlbT86IGFueSwgYWN0aW9uRGF0YT86IEFjdGlvbkRhdGEpOiBhbnkge1xuICAgICAgICBsZXQgcGFyYW1zOiBhbnkgPSB7fTtcbiAgICAgICAgaWYgKGFjdGlvbkRhdGEpIHtcbiAgICAgICAgICAgIHBhcmFtcyA9IHtcbiAgICAgICAgICAgICAgICAuLi5wYXJhbXMsXG4gICAgICAgICAgICAgICAgLi4uYWN0aW9uRGF0YVxuICAgICAgICAgICAgfTtcbiAgICAgICAgfVxuICAgICAgICBpZiAoaXRlbSkge1xuICAgICAgICAgICAgcGFyYW1zID0ge1xuICAgICAgICAgICAgICAgIC4uLnBhcmFtcyxcbiAgICAgICAgICAgICAgICBpdGVtOiBTdHJpbmdVdGlsLmVzY2FwZUh0bWxBbnkoaXRlbSlcbiAgICAgICAgICAgIH07XG4gICAgICAgIH1cbiAgICAgICAgaWYgKGl0ZW1JZCkge1xuICAgICAgICAgICAgcGFyYW1zID0ge1xuICAgICAgICAgICAgICAgIC4uLnBhcmFtcyxcbiAgICAgICAgICAgICAgICBpdGVtSWQ6IGl0ZW1JZFxuICAgICAgICAgICAgfTtcbiAgICAgICAgfVxuXG4gICAgICAgIGlmICh0eXBlb2YgdmFsdWUgPT09ICdzdHJpbmcnKSB7XG4gICAgICAgICAgICByZXR1cm4gdGhpcy50cmFuc2Zvcm1TdHJpbmcodmFsdWUsIHBhcmFtcyk7XG4gICAgICAgIH0gZWxzZSBpZiAoQXJyYXkuaXNBcnJheSh2YWx1ZSkgJiYgdmFsdWUubGVuZ3RoID4gMCAmJiB0eXBlb2YgdmFsdWVbMF0gPT09ICdzdHJpbmcnKSB7XG4gICAgICAgICAgICByZXR1cm4gdmFsdWUubWFwKChzOiBzdHJpbmcpID0+IHRoaXMudHJhbnNmb3JtU3RyaW5nKHMsIHBhcmFtcykpO1xuICAgICAgICB9IGVsc2UgaWYgKHR5cGVvZiB2YWx1ZSA9PT0gJ29iamVjdCcpIHtcbiAgICAgICAgICAgIC8vIHByb2Nlc3Mgb25seSBmaXJzdCBsZXZlbCBjaXRpemVuc1xuICAgICAgICAgICAgY29uc3Qgb2JqOiBhbnkgPSB7Li4udmFsdWV9O1xuICAgICAgICAgICAgZm9yIChjb25zdCBrZXkgaW4gb2JqKSB7XG4gICAgICAgICAgICAgICAgY29uc3Qgb2JqUHJvcCA9IG9ialtrZXldO1xuICAgICAgICAgICAgICAgIGlmICh0eXBlb2Ygb2JqUHJvcCA9PT0gJ3N0cmluZycpIHtcbiAgICAgICAgICAgICAgICAgICAgb2JqW2tleV0gPSB0aGlzLnRyYW5zZm9ybVN0cmluZyhvYmpQcm9wLCBwYXJhbXMpO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIHJldHVybiBvYmo7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gdmFsdWU7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwcml2YXRlIHRyYW5zZm9ybVN0cmluZyhzOiBzdHJpbmcsIHBhcmFtczogYW55KSB7XG4gICAgICAgIGlmICgocy5pbmRleE9mKCcvJykgPj0gMCAmJiBzLmluZGV4T2YoJzonKSA+PSAwICYmICFzLnN0YXJ0c1dpdGgoJ2h0dHA6Ly8nKSAmJiAhcy5zdGFydHNXaXRoKCdodHRwczovLycpKSB8fCBzLnN0YXJ0c1dpdGgoJzonKSkge1xuICAgICAgICAgICAgLy8gdGhpcyBpcyByb3V0ZXIgbGlua1xuICAgICAgICAgICAgcmV0dXJuIHNcbiAgICAgICAgICAgICAgICAuc3BsaXQoJy8nKVxuICAgICAgICAgICAgICAgIC5tYXAocyA9PiB0aGlzLnBhcmFtZXRyaXplU3RyaW5nQXNSb3V0ZXJMaW5rKHMsIHBhcmFtcykpXG4gICAgICAgICAgICAgICAgLmpvaW4oJy8nKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIC8vIHBhcmFtZXRyaXplIG5vcm1hbGx5XG4gICAgICAgICAgICByZXR1cm4gdGhpcy5wYXJhbWV0cml6ZVN0cmluZyhzLCBwYXJhbXMpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBwYXJhbWV0cml6ZVN0cmluZ0FzUm91dGVyTGluayhzOiBzdHJpbmcsIHBhcmFtczogYW55KTogYW55IHtcbiAgICAgICAgaWYgKHMuc3RhcnRzV2l0aCgnOicpKSB7XG4gICAgICAgICAgICBjb25zdCBpdGVtUHJvcGVydHkgPSBzLnN1YnN0cmluZygxKTtcbiAgICAgICAgICAgIHJldHVybiB0aGlzLmpzb25QYXRoLnRyYW5zZm9ybShwYXJhbXMsIGl0ZW1Qcm9wZXJ0eSkgPz8gJyc7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gcztcbiAgICAgICAgfVxuICAgIH1cblxuICAgIHByaXZhdGUgcGFyYW1ldHJpemVTdHJpbmcoczogc3RyaW5nLCBwYXJhbXM6IGFueSk6IGFueSB7XG4gICAgICAgIHJldHVybiBzLnJlcGxhY2UoL3t7XFxzPyhbXnt9XFxzXSopXFxzP319L2csIChzdWJzOiBzdHJpbmcsIGtleTogc3RyaW5nKSA9PiB0aGlzLmpzb25QYXRoLnRyYW5zZm9ybShwYXJhbXMsIGtleSkgPz8gc3Vicyk7XG4gICAgfVxufVxuIl19
@@ -1,26 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { MngParametrizePipe } from './parametrize.pipe';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "./parametrize.pipe";
5
- export class MngTemplatePipe {
6
- constructor(parametrizePipe) {
7
- this.parametrizePipe = parametrizePipe;
8
- }
9
- transform(value, template) {
10
- if (typeof template === 'string') {
11
- return this.parametrizePipe.transform(template, undefined, value);
12
- }
13
- return value;
14
- }
15
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngTemplatePipe, deps: [{ token: i1.MngParametrizePipe }], target: i0.ɵɵFactoryTarget.Pipe }); }
16
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: MngTemplatePipe, isStandalone: true, name: "template" }); }
17
- }
18
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: MngTemplatePipe, decorators: [{
19
- type: Pipe,
20
- args: [{
21
- standalone: true,
22
- name: 'template',
23
- pure: true
24
- }]
25
- }], ctorParameters: () => [{ type: i1.MngParametrizePipe }] });
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcGxhdGUucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvcGlwZXMvdGVtcGxhdGUucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsSUFBSSxFQUFnQixNQUFNLGVBQWUsQ0FBQztBQUVsRCxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxvQkFBb0IsQ0FBQzs7O0FBT3RELE1BQU0sT0FBTyxlQUFlO0lBQ3hCLFlBQW9CLGVBQW1DO1FBQW5DLG9CQUFlLEdBQWYsZUFBZSxDQUFvQjtJQUFHLENBQUM7SUFFM0QsU0FBUyxDQUFDLEtBQWMsRUFBRSxRQUFpQjtRQUN2QyxJQUFJLE9BQU8sUUFBUSxLQUFLLFFBQVEsRUFBRTtZQUM5QixPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsU0FBUyxDQUFDLFFBQVEsRUFBRSxTQUFTLEVBQUUsS0FBSyxDQUFDLENBQUM7U0FDckU7UUFFRCxPQUFPLEtBQUssQ0FBQztJQUNqQixDQUFDOzhHQVRRLGVBQWU7NEdBQWYsZUFBZTs7MkZBQWYsZUFBZTtrQkFMM0IsSUFBSTttQkFBQztvQkFDRixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsSUFBSSxFQUFFLFVBQVU7b0JBQ2hCLElBQUksRUFBRSxJQUFJO2lCQUNiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtNbmdQYXJhbWV0cml6ZVBpcGV9IGZyb20gJy4vcGFyYW1ldHJpemUucGlwZSc7XG5cbkBQaXBlKHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIG5hbWU6ICd0ZW1wbGF0ZScsXG4gICAgcHVyZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBNbmdUZW1wbGF0ZVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIHBhcmFtZXRyaXplUGlwZTogTW5nUGFyYW1ldHJpemVQaXBlKSB7fVxuXG4gICAgdHJhbnNmb3JtKHZhbHVlOiB1bmtub3duLCB0ZW1wbGF0ZT86IHN0cmluZyk6IGFueSB7XG4gICAgICAgIGlmICh0eXBlb2YgdGVtcGxhdGUgPT09ICdzdHJpbmcnKSB7XG4gICAgICAgICAgICByZXR1cm4gdGhpcy5wYXJhbWV0cml6ZVBpcGUudHJhbnNmb3JtKHRlbXBsYXRlLCB1bmRlZmluZWQsIHZhbHVlKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiB2YWx1ZTtcbiAgICB9XG59XG4iXX0=