@ngx-smz/core 19.2.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 (1204) hide show
  1. package/README.md +63 -0
  2. package/fesm2022/ngx-smz-core-src-lib-modules-prime-overlaypanel.mjs +422 -0
  3. package/fesm2022/ngx-smz-core-src-lib-modules-prime-overlaypanel.mjs.map +1 -0
  4. package/fesm2022/ngx-smz-core.mjs +55996 -0
  5. package/fesm2022/ngx-smz-core.mjs.map +1 -0
  6. package/index.d.ts +5 -0
  7. package/lib/builders/common/base-ui-definition-builder.d.ts +17 -0
  8. package/lib/builders/common/smz-builder-utilities.d.ts +79 -0
  9. package/lib/builders/common/utils.d.ts +15 -0
  10. package/lib/builders/smz-cards/column-builder.d.ts +56 -0
  11. package/lib/builders/smz-cards/menu-builder.d.ts +35 -0
  12. package/lib/builders/smz-cards/source-builder.d.ts +22 -0
  13. package/lib/builders/smz-cards/state-builder.d.ts +44 -0
  14. package/lib/builders/smz-cards/template-builder.d.ts +32 -0
  15. package/lib/builders/smz-cards/types/base-card-type.builder.d.ts +9 -0
  16. package/lib/builders/smz-cards/types/flip-card-builder.d.ts +47 -0
  17. package/lib/builders/smz-cards/types/image-with-details-builder.d.ts +18 -0
  18. package/lib/builders/smz-cards/types/info-a-builder.d.ts +21 -0
  19. package/lib/builders/smz-cards/types/raw-builder.d.ts +13 -0
  20. package/lib/builders/smz-charts/base-chart-builder.d.ts +21 -0
  21. package/lib/builders/smz-charts/linear-chart-builder.d.ts +27 -0
  22. package/lib/builders/smz-charts/models/axis-overflow-direction.d.ts +5 -0
  23. package/lib/builders/smz-charts/models/axis-overflow-type.d.ts +4 -0
  24. package/lib/builders/smz-charts/models/axis-position.d.ts +7 -0
  25. package/lib/builders/smz-charts/models/chart-type.d.ts +13 -0
  26. package/lib/builders/smz-charts/models/color-pallete.d.ts +65 -0
  27. package/lib/builders/smz-charts/models/color-selector.d.ts +67 -0
  28. package/lib/builders/smz-charts/models/dataset-type.d.ts +4 -0
  29. package/lib/builders/smz-charts/models/grouping-type.d.ts +8 -0
  30. package/lib/builders/smz-charts/public-api.d.ts +9 -0
  31. package/lib/builders/smz-charts/radial-chart-builder.d.ts +15 -0
  32. package/lib/builders/smz-charts/secondary/cartesian-scale-builder.d.ts +18 -0
  33. package/lib/builders/smz-charts/secondary/cartesian-title-builder.d.ts +11 -0
  34. package/lib/builders/smz-charts/secondary/dataset-builder.d.ts +6 -0
  35. package/lib/builders/smz-charts/secondary/histogram-data-builder.d.ts +10 -0
  36. package/lib/builders/smz-charts/secondary/legend-builder.d.ts +11 -0
  37. package/lib/builders/smz-charts/secondary/linear-category-data-builder.d.ts +12 -0
  38. package/lib/builders/smz-charts/secondary/linear-dataset-builder.d.ts +19 -0
  39. package/lib/builders/smz-charts/secondary/linear-date-data-builder.d.ts +19 -0
  40. package/lib/builders/smz-charts/secondary/radial-data-builder.d.ts +14 -0
  41. package/lib/builders/smz-charts/secondary/title-builder.d.ts +13 -0
  42. package/lib/builders/smz-charts/secondary/tooltip-builder.d.ts +13 -0
  43. package/lib/builders/smz-comments/comments-builder.d.ts +11 -0
  44. package/lib/builders/smz-dialogs/dialog-builder.d.ts +83 -0
  45. package/lib/builders/smz-dialogs/dialog-buttons-builder.d.ts +98 -0
  46. package/lib/builders/smz-dialogs/dialog-input-conversion.d.ts +70 -0
  47. package/lib/builders/smz-dialogs/dialog-overlay-panel-builder.d.ts +26 -0
  48. package/lib/builders/smz-dialogs/dialog-ui-definition-builder.d.ts +9 -0
  49. package/lib/builders/smz-documents/content-cells/chart.d.ts +19 -0
  50. package/lib/builders/smz-documents/content-cells/component.d.ts +20 -0
  51. package/lib/builders/smz-documents/content-cells/divider.d.ts +14 -0
  52. package/lib/builders/smz-documents/content-cells/field.d.ts +26 -0
  53. package/lib/builders/smz-documents/content-cells/fields-group.d.ts +39 -0
  54. package/lib/builders/smz-documents/content-cells/hidden-break.d.ts +16 -0
  55. package/lib/builders/smz-documents/content-cells/image.d.ts +20 -0
  56. package/lib/builders/smz-documents/content-cells/page-break.d.ts +13 -0
  57. package/lib/builders/smz-documents/content-cells/spacer.d.ts +15 -0
  58. package/lib/builders/smz-documents/content-cells/sub-title.d.ts +20 -0
  59. package/lib/builders/smz-documents/content-cells/table.d.ts +37 -0
  60. package/lib/builders/smz-documents/content-cells/title.d.ts +20 -0
  61. package/lib/builders/smz-documents/document-base-cell.d.ts +19 -0
  62. package/lib/builders/smz-documents/document-builder.d.ts +42 -0
  63. package/lib/builders/smz-documents/document-content.d.ts +49 -0
  64. package/lib/builders/smz-documents/document-viewer.d.ts +17 -0
  65. package/lib/builders/smz-easy-tables/column-builder.d.ts +52 -0
  66. package/lib/builders/smz-easy-tables/menu-builder.d.ts +33 -0
  67. package/lib/builders/smz-easy-tables/optimizations-builder.d.ts +10 -0
  68. package/lib/builders/smz-easy-tables/paginator-builder.d.ts +9 -0
  69. package/lib/builders/smz-easy-tables/state-builder.d.ts +26 -0
  70. package/lib/builders/smz-excels/excels-builder.d.ts +20 -0
  71. package/lib/builders/smz-excels/excels-sheets.d.ts +14 -0
  72. package/lib/builders/smz-excels/excels-styles.d.ts +12 -0
  73. package/lib/builders/smz-excels/excels-table-base-column-content.d.ts +59 -0
  74. package/lib/builders/smz-excels/excels-table-columns.d.ts +21 -0
  75. package/lib/builders/smz-excels/excels-tables.d.ts +15 -0
  76. package/lib/builders/smz-forms/form-builder.d.ts +33 -0
  77. package/lib/builders/smz-forms/form-group-builder.d.ts +414 -0
  78. package/lib/builders/smz-forms/form-ui-definition-builder.d.ts +9 -0
  79. package/lib/builders/smz-gauge/gauge-builder.d.ts +188 -0
  80. package/lib/builders/smz-login/state-builder.d.ts +24 -0
  81. package/lib/builders/smz-menu/generic-menu-builder.d.ts +31 -0
  82. package/lib/builders/smz-menu/menu-builder.d.ts +29 -0
  83. package/lib/builders/smz-menu/menu-creation-builder.d.ts +26 -0
  84. package/lib/builders/smz-multi-tables/state-builder.d.ts +12 -0
  85. package/lib/builders/smz-multi-tables/tab-builder.d.ts +20 -0
  86. package/lib/builders/smz-multi-tables/tab-header-builder.d.ts +15 -0
  87. package/lib/builders/smz-svgs/svg-base-feature.d.ts +28 -0
  88. package/lib/builders/smz-svgs/svg-builder.d.ts +27 -0
  89. package/lib/builders/smz-svgs/svg-dispatch.d.ts +11 -0
  90. package/lib/builders/smz-svgs/svg-feature.d.ts +13 -0
  91. package/lib/builders/smz-svgs/svg-features.d.ts +26 -0
  92. package/lib/builders/smz-svgs/svg-world-coordinates.d.ts +12 -0
  93. package/lib/builders/smz-tables/batch-menu-builder.d.ts +26 -0
  94. package/lib/builders/smz-tables/caption-buttons-builder.d.ts +23 -0
  95. package/lib/builders/smz-tables/column-builder.d.ts +101 -0
  96. package/lib/builders/smz-tables/column-content-action-builder.d.ts +25 -0
  97. package/lib/builders/smz-tables/column-header-action-builder.d.ts +25 -0
  98. package/lib/builders/smz-tables/editable-builder.d.ts +74 -0
  99. package/lib/builders/smz-tables/excel-builder.d.ts +16 -0
  100. package/lib/builders/smz-tables/menu-builder.d.ts +36 -0
  101. package/lib/builders/smz-tables/state-builder-functions.d.ts +6 -0
  102. package/lib/builders/smz-tables/state-builder.d.ts +121 -0
  103. package/lib/builders/smz-tables/viewport.d.ts +15 -0
  104. package/lib/builders/smz-timeline/menu-builder.d.ts +35 -0
  105. package/lib/builders/smz-timeline/source-builder.d.ts +20 -0
  106. package/lib/builders/smz-timeline/state-builder.d.ts +24 -0
  107. package/lib/builders/smz-timeline/template-builder.d.ts +26 -0
  108. package/lib/builders/smz-tree-with-details/state-builder.d.ts +19 -0
  109. package/lib/builders/smz-trees/data-source-tree-builder.d.ts +17 -0
  110. package/lib/builders/smz-trees/nested-data-source-tree-builder.d.ts +47 -0
  111. package/lib/builders/smz-trees/property-based-data-source-tree-builder.d.ts +29 -0
  112. package/lib/builders/smz-trees/tree-builder.d.ts +122 -0
  113. package/lib/builders/smz-trees/tree-nodes-utility-builder.d.ts +28 -0
  114. package/lib/builders/smz-ui/authentication-builder.d.ts +16 -0
  115. package/lib/builders/smz-ui/authentication-login-builder.d.ts +29 -0
  116. package/lib/builders/smz-ui/authorization-builder.d.ts +27 -0
  117. package/lib/builders/smz-ui/crud-claims-builder.d.ts +16 -0
  118. package/lib/builders/smz-ui/crud-roles-builder.d.ts +16 -0
  119. package/lib/builders/smz-ui/crud-tenant-builder.d.ts +16 -0
  120. package/lib/builders/smz-ui/crud-users-builder.d.ts +25 -0
  121. package/lib/builders/smz-ui/database-state-builder.d.ts +15 -0
  122. package/lib/builders/smz-ui/errors-page-builder.d.ts +26 -0
  123. package/lib/builders/smz-ui/feature-state-builder.d.ts +15 -0
  124. package/lib/builders/smz-ui/http-behaviors-builder.d.ts +9 -0
  125. package/lib/builders/smz-ui/layouts-builder.d.ts +14 -0
  126. package/lib/builders/smz-ui/localization-builder.d.ts +12 -0
  127. package/lib/builders/smz-ui/notifications-builder.d.ts +19 -0
  128. package/lib/builders/smz-ui/states-builder.d.ts +14 -0
  129. package/lib/builders/smz-ui/tables-builder.d.ts +11 -0
  130. package/lib/builders/smz-ui/ui-builder.d.ts +39 -0
  131. package/lib/builders/smz-ui-guides/base-styles-builder.d.ts +13 -0
  132. package/lib/builders/smz-ui-guides/custom-styles-builder.d.ts +25 -0
  133. package/lib/builders/smz-ui-guides/default-step-builder.d.ts +17 -0
  134. package/lib/builders/smz-ui-guides/step-builder.d.ts +23 -0
  135. package/lib/builders/smz-ui-guides/step-overrides-builder.d.ts +17 -0
  136. package/lib/builders/smz-ui-guides/ui-guides-builder.d.ts +22 -0
  137. package/lib/common/data-pipes/data-pipes.module.d.ts +26 -0
  138. package/lib/common/data-pipes/pipes/as.pipe.d.ts +7 -0
  139. package/lib/common/data-pipes/pipes/calendar.pipe.d.ts +9 -0
  140. package/lib/common/data-pipes/pipes/clone.pipe.d.ts +9 -0
  141. package/lib/common/data-pipes/pipes/describe-any.pipe.d.ts +9 -0
  142. package/lib/common/data-pipes/pipes/describe-array.pipe.d.ts +9 -0
  143. package/lib/common/data-pipes/pipes/describe-simple-named.pipe.d.ts +10 -0
  144. package/lib/common/data-pipes/pipes/filter-by.d.ts +8 -0
  145. package/lib/common/data-pipes/pipes/first-or-default.pipe.d.ts +7 -0
  146. package/lib/common/data-pipes/pipes/get-data.pipe.d.ts +9 -0
  147. package/lib/common/data-pipes/pipes/initial.pipe.d.ts +8 -0
  148. package/lib/common/data-pipes/pipes/join.pipe.d.ts +9 -0
  149. package/lib/common/data-pipes/pipes/pipe-helpers.d.ts +15 -0
  150. package/lib/common/data-pipes/pipes/pretty-json.pipe.d.ts +8 -0
  151. package/lib/common/data-pipes/pipes/safe-html.pipe.d.ts +10 -0
  152. package/lib/common/data-pipes/pipes/safe-url.pipe.d.ts +10 -0
  153. package/lib/common/data-pipes/pipes/selector.pipe.d.ts +10 -0
  154. package/lib/common/data-pipes/pipes/server-path.pipe.d.ts +9 -0
  155. package/lib/common/data-pipes/pipes/shorten.pipe.d.ts +8 -0
  156. package/lib/common/data-pipes/pipes/simple-calendar.pipe.d.ts +9 -0
  157. package/lib/common/data-pipes/pipes/state-builder.pipe.d.ts +7 -0
  158. package/lib/common/data-pipes/pipes/tail.pipe.d.ts +8 -0
  159. package/lib/common/data-pipes/pipes/unique-filter.pipe.d.ts +9 -0
  160. package/lib/common/directives/action-dispatch/action-dispatch.directive.d.ts +16 -0
  161. package/lib/common/directives/action-dispatch/action-dispatch.module.d.ts +7 -0
  162. package/lib/common/directives/custom-ng-for/custom-ng-for.directive.d.ts +16 -0
  163. package/lib/common/directives/input-text/input-text.directive.d.ts +23 -0
  164. package/lib/common/directives/ng-clone/ng-clone.directive.d.ts +12 -0
  165. package/lib/common/directives/ng-clone/ng-clone.module.d.ts +7 -0
  166. package/lib/common/directives/ng-if-landscape/ng-if-landscape.directive.d.ts +19 -0
  167. package/lib/common/directives/ng-if-portrait/ng-if-portrait.directive.d.ts +19 -0
  168. package/lib/common/directives/ng-var/ng-var.directive.d.ts +34 -0
  169. package/lib/common/directives/ng-var/ng-var.module.d.ts +7 -0
  170. package/lib/common/directives/responsive-breakpoints/responsive-breakpoints.directive.d.ts +24 -0
  171. package/lib/common/directives/safe-image/safe-image.directive.d.ts +19 -0
  172. package/lib/common/directives/server-image/server-image-to-base64.directive.d.ts +34 -0
  173. package/lib/common/directives/server-image/server-image.directive.d.ts +33 -0
  174. package/lib/common/directives/tooltip-touch-support/tooltip-touch-support.directive.d.ts +14 -0
  175. package/lib/common/directives/tooltip-touch-support/tooltip-touch-support.module.d.ts +7 -0
  176. package/lib/common/input-detection/input-detection.directive.d.ts +16 -0
  177. package/lib/common/input-detection/input-detection.module.d.ts +7 -0
  178. package/lib/common/is-visible-pipe/is-visible.pipe.d.ts +16 -0
  179. package/lib/common/menu-item-actions/menu-item-actions.directive.d.ts +16 -0
  180. package/lib/common/menu-item-actions/menu-item-actions.module.d.ts +7 -0
  181. package/lib/common/merge-clone-pipe/merge-clone.pipe.d.ts +15 -0
  182. package/lib/common/models/simple-named-entity.d.ts +17 -0
  183. package/lib/common/models/templates.d.ts +71 -0
  184. package/lib/common/modules/inject-content/generic-inject-component.directive.d.ts +18 -0
  185. package/lib/common/modules/inject-content/inject-component.directive.d.ts +19 -0
  186. package/lib/common/modules/inject-content/inject-component.service.d.ts +13 -0
  187. package/lib/common/modules/inject-content/inject-content.directive.d.ts +26 -0
  188. package/lib/common/modules/inject-content/inject-content.module.d.ts +10 -0
  189. package/lib/common/modules/inject-content/inject-content.service.d.ts +11 -0
  190. package/lib/common/modules/inject-content/models/inject-content.model.d.ts +8 -0
  191. package/lib/common/modules/inject-content/models/injectable-dialog-component.interface.d.ts +4 -0
  192. package/lib/common/modules/inject-content/models/injectable.model.d.ts +32 -0
  193. package/lib/common/modules/inject-content/public-api.d.ts +10 -0
  194. package/lib/common/modules/inject-content/standalone-inject-component.directive.d.ts +18 -0
  195. package/lib/common/pipes/group-by.pipe.d.ts +12 -0
  196. package/lib/common/pipes/safe-html.pipe.d.ts +22 -0
  197. package/lib/common/pipes/templates.pipe.d.ts +15 -0
  198. package/lib/common/services/global-injector.d.ts +11 -0
  199. package/lib/common/services/prime-config.service.d.ts +13 -0
  200. package/lib/common/services/registry-smz-ui-configuration.d.ts +2 -0
  201. package/lib/common/services/smz-clipboard.service.d.ts +13 -0
  202. package/lib/common/stop-click-propagation/click-stop-propagation.directive.d.ts +6 -0
  203. package/lib/common/stop-click-propagation/click-stop-propagation.module.d.ts +8 -0
  204. package/lib/common/table-item-actions/table-item-actions.directive.d.ts +15 -0
  205. package/lib/common/table-item-actions/table-item-actions.module.d.ts +7 -0
  206. package/lib/common/url-checker/url-checker.pipe.d.ts +15 -0
  207. package/lib/common/utils/base64-helper.d.ts +3 -0
  208. package/lib/common/utils/custom-validations.d.ts +9 -0
  209. package/lib/common/utils/deep-merge.d.ts +14 -0
  210. package/lib/common/utils/guid-generator.d.ts +1 -0
  211. package/lib/common/utils/pretty-json.d.ts +12 -0
  212. package/lib/common/utils/search-helper.d.ts +2 -0
  213. package/lib/common/utils/store-utils.d.ts +5 -0
  214. package/lib/common/utils/utils.d.ts +86 -0
  215. package/lib/config/config.d.ts +16 -0
  216. package/lib/config/index.d.ts +2 -0
  217. package/lib/config/provide.d.ts +4 -0
  218. package/lib/modules/prime/overlaypanel/overlaypanel.d.ts +77 -0
  219. package/lib/modules/prime/table/table.d.ts +862 -0
  220. package/lib/modules/rbk-utils/auth/auth.guard.d.ts +10 -0
  221. package/lib/modules/rbk-utils/auth/auth.handler.d.ts +16 -0
  222. package/lib/modules/rbk-utils/auth/auth.interceptor.d.ts +17 -0
  223. package/lib/modules/rbk-utils/auth/auth.service.d.ts +24 -0
  224. package/lib/modules/rbk-utils/auth/guards/access-control.module.d.ts +10 -0
  225. package/lib/modules/rbk-utils/auth/guards/can-access-any.pipe.d.ts +11 -0
  226. package/lib/modules/rbk-utils/auth/guards/can-access-if.directive.d.ts +12 -0
  227. package/lib/modules/rbk-utils/auth/guards/can-access.pipe.d.ts +11 -0
  228. package/lib/modules/rbk-utils/auth/models.d.ts +5 -0
  229. package/lib/modules/rbk-utils/error-handler/diagnostic.service.d.ts +18 -0
  230. package/lib/modules/rbk-utils/error-handler/diagnostics-data.d.ts +18 -0
  231. package/lib/modules/rbk-utils/error-handler/error.handler.d.ts +20 -0
  232. package/lib/modules/rbk-utils/error-handler/error.interceptor.d.ts +14 -0
  233. package/lib/modules/rbk-utils/error-handler/global-error.interceptor.d.ts +14 -0
  234. package/lib/modules/rbk-utils/http/base-api.service.d.ts +31 -0
  235. package/lib/modules/rbk-utils/http/global.pending.interceptor.d.ts +13 -0
  236. package/lib/modules/rbk-utils/http/local.pending.interceptor.d.ts +11 -0
  237. package/lib/modules/rbk-utils/misc/boilerplate.service.d.ts +16 -0
  238. package/lib/modules/rbk-utils/misc/breadcrum.service.d.ts +9 -0
  239. package/lib/modules/rbk-utils/misc/title.service.d.ts +17 -0
  240. package/lib/modules/rbk-utils/misc/toast.service.d.ts +15 -0
  241. package/lib/modules/rbk-utils/ngx-rbk-utils-initialization.d.ts +11 -0
  242. package/lib/modules/rbk-utils/ngx-rbk-utils.config.d.ts +197 -0
  243. package/lib/modules/rbk-utils/ngx-rbk-utils.module.d.ts +11 -0
  244. package/lib/modules/rbk-utils/pipes/rbk-pipes.module.d.ts +8 -0
  245. package/lib/modules/rbk-utils/pipes/rbk-safe-html.pipe.d.ts +10 -0
  246. package/lib/modules/rbk-utils/public-api.d.ts +27 -0
  247. package/lib/modules/rbk-utils/ui/input-clear-extension.directive.d.ts +17 -0
  248. package/lib/modules/rbk-utils/ui/table-clear-extension.directive.d.ts +11 -0
  249. package/lib/modules/rbk-utils/ui/table-clear-extions.module.d.ts +9 -0
  250. package/lib/modules/rbk-utils/utils/can-access.d.ts +14 -0
  251. package/lib/modules/rbk-utils/utils/operators.d.ts +2 -0
  252. package/lib/modules/rbk-utils/utils/reusable-route.d.ts +20 -0
  253. package/lib/modules/rbk-utils/utils/state/database-state.guard.d.ts +11 -0
  254. package/lib/modules/rbk-utils/utils/state/feature-state.guard.d.ts +11 -0
  255. package/lib/modules/rbk-utils/utils/utils.d.ts +12 -0
  256. package/lib/modules/smz-access/models/activate-user.d.ts +3 -0
  257. package/lib/modules/smz-access/models/add-claims-override.d.ts +6 -0
  258. package/lib/modules/smz-access/models/auth-claim-definitions.d.ts +10 -0
  259. package/lib/modules/smz-access/models/base-user-data.d.ts +8 -0
  260. package/lib/modules/smz-access/models/change-password.d.ts +5 -0
  261. package/lib/modules/smz-access/models/claim-access-type.d.ts +9 -0
  262. package/lib/modules/smz-access/models/claim-details.d.ts +6 -0
  263. package/lib/modules/smz-access/models/claim-override.d.ts +8 -0
  264. package/lib/modules/smz-access/models/create-claim.d.ts +4 -0
  265. package/lib/modules/smz-access/models/create-role.d.ts +3 -0
  266. package/lib/modules/smz-access/models/create-tenant-admin-user.d.ts +6 -0
  267. package/lib/modules/smz-access/models/create-tenant.d.ts +7 -0
  268. package/lib/modules/smz-access/models/create-user.d.ts +12 -0
  269. package/lib/modules/smz-access/models/deativate-user.d.ts +3 -0
  270. package/lib/modules/smz-access/models/delete-user.d.ts +3 -0
  271. package/lib/modules/smz-access/models/jwt-response.d.ts +4 -0
  272. package/lib/modules/smz-access/models/protect-claim.d.ts +3 -0
  273. package/lib/modules/smz-access/models/redefine-password.d.ts +4 -0
  274. package/lib/modules/smz-access/models/register.d.ts +11 -0
  275. package/lib/modules/smz-access/models/remove-claims-override.d.ts +4 -0
  276. package/lib/modules/smz-access/models/rename-role.d.ts +4 -0
  277. package/lib/modules/smz-access/models/replace-user-roles.d.ts +4 -0
  278. package/lib/modules/smz-access/models/request-password-reset.d.ts +4 -0
  279. package/lib/modules/smz-access/models/resend-email-confirmation.d.ts +3 -0
  280. package/lib/modules/smz-access/models/role-mode.d.ts +9 -0
  281. package/lib/modules/smz-access/models/role-source.d.ts +9 -0
  282. package/lib/modules/smz-access/models/roles-details.d.ts +8 -0
  283. package/lib/modules/smz-access/models/switch-tenant.d.ts +3 -0
  284. package/lib/modules/smz-access/models/tenant-details.d.ts +5 -0
  285. package/lib/modules/smz-access/models/unprotect-claim.d.ts +3 -0
  286. package/lib/modules/smz-access/models/update-claim.d.ts +4 -0
  287. package/lib/modules/smz-access/models/update-role-claims.d.ts +4 -0
  288. package/lib/modules/smz-access/models/update-tenant.d.ts +5 -0
  289. package/lib/modules/smz-access/models/user-data.d.ts +9 -0
  290. package/lib/modules/smz-access/models/user-details.d.ts +24 -0
  291. package/lib/modules/smz-access/modules/claims/claims.module.d.ts +12 -0
  292. package/lib/modules/smz-access/modules/claims/features/claims-page/claims-page.component.d.ts +20 -0
  293. package/lib/modules/smz-access/modules/claims/functions/create-claim-dialog.d.ts +3 -0
  294. package/lib/modules/smz-access/modules/claims/functions/update-claim-dialog.d.ts +4 -0
  295. package/lib/modules/smz-access/modules/roles/features/roles-page/roles-page.component.d.ts +22 -0
  296. package/lib/modules/smz-access/modules/roles/functions/create-role-dialog.d.ts +3 -0
  297. package/lib/modules/smz-access/modules/roles/functions/show-role-claims-dialog.d.ts +2 -0
  298. package/lib/modules/smz-access/modules/roles/functions/update-role-claims-dialog.d.ts +4 -0
  299. package/lib/modules/smz-access/modules/roles/functions/update-role-dialog.d.ts +4 -0
  300. package/lib/modules/smz-access/modules/roles/roles.module.d.ts +14 -0
  301. package/lib/modules/smz-access/modules/tenants/features/tenants-page/tenants-page.component.d.ts +18 -0
  302. package/lib/modules/smz-access/modules/tenants/functions/create-tenant-dialog.d.ts +1 -0
  303. package/lib/modules/smz-access/modules/tenants/functions/update-tenant-dialog.d.ts +2 -0
  304. package/lib/modules/smz-access/modules/tenants/tenants.module.d.ts +12 -0
  305. package/lib/modules/smz-access/modules/users/components/user-claims/user-claims.component.d.ts +29 -0
  306. package/lib/modules/smz-access/modules/users/containers/users/users-page.component.d.ts +25 -0
  307. package/lib/modules/smz-access/modules/users/dialogs/show-set-user-role-dialog.d.ts +2 -0
  308. package/lib/modules/smz-access/modules/users/dialogs/show-set-user-roles-dialog.d.ts +2 -0
  309. package/lib/modules/smz-access/modules/users/dialogs/update-user-claims-dialog.d.ts +2 -0
  310. package/lib/modules/smz-access/modules/users/models/smz-authorization-user-state.d.ts +21 -0
  311. package/lib/modules/smz-access/modules/users/tables/deactivated-users-table-state.d.ts +3 -0
  312. package/lib/modules/smz-access/modules/users/tables/users-table-state.d.ts +3 -0
  313. package/lib/modules/smz-access/modules/users/users.module.d.ts +22 -0
  314. package/lib/modules/smz-access/public-api.d.ts +57 -0
  315. package/lib/modules/smz-access/routes.d.ts +9 -0
  316. package/lib/modules/smz-access/services/authentication.service.d.ts +40 -0
  317. package/lib/modules/smz-access/services/authorization.service.d.ts +46 -0
  318. package/lib/modules/smz-access/state/claims/claims.actions.d.ts +37 -0
  319. package/lib/modules/smz-access/state/claims/claims.selectors.d.ts +7 -0
  320. package/lib/modules/smz-access/state/claims/claims.state.d.ts +24 -0
  321. package/lib/modules/smz-access/state/roles/roles.actions.d.ts +31 -0
  322. package/lib/modules/smz-access/state/roles/roles.selectors.d.ts +6 -0
  323. package/lib/modules/smz-access/state/roles/roles.state.d.ts +23 -0
  324. package/lib/modules/smz-access/state/state-parameters.d.ts +7 -0
  325. package/lib/modules/smz-access/state/tenants/tenants.actions.d.ts +25 -0
  326. package/lib/modules/smz-access/state/tenants/tenants.selectors.d.ts +10 -0
  327. package/lib/modules/smz-access/state/tenants/tenants.state.d.ts +22 -0
  328. package/lib/modules/smz-access/state/users/users.actions.d.ts +80 -0
  329. package/lib/modules/smz-access/state/users/users.selectors.d.ts +8 -0
  330. package/lib/modules/smz-access/state/users/users.state.d.ts +34 -0
  331. package/lib/modules/smz-cards/components/contents/image/image-content.component.d.ts +11 -0
  332. package/lib/modules/smz-cards/components/contents/text/text-content.component.d.ts +11 -0
  333. package/lib/modules/smz-cards/components/grid-item/grid-item.component.d.ts +18 -0
  334. package/lib/modules/smz-cards/components/list-item/list-item.component.d.ts +18 -0
  335. package/lib/modules/smz-cards/components/types/flip-card/flip-card-type.component.d.ts +23 -0
  336. package/lib/modules/smz-cards/components/types/image-with-details/image-with-details-type.component.d.ts +22 -0
  337. package/lib/modules/smz-cards/components/types/info-a/info-a-type.component.d.ts +19 -0
  338. package/lib/modules/smz-cards/components/types/raw/raw-type.component.d.ts +18 -0
  339. package/lib/modules/smz-cards/directives/button-actions.directive.d.ts +16 -0
  340. package/lib/modules/smz-cards/directives/content-selector.directive.d.ts +19 -0
  341. package/lib/modules/smz-cards/directives/img-placeholder.directive.d.ts +10 -0
  342. package/lib/modules/smz-cards/directives/inject-component.directive.d.ts +18 -0
  343. package/lib/modules/smz-cards/features/smz-cards/smz-cards.component.d.ts +25 -0
  344. package/lib/modules/smz-cards/models/contexts/smz-base-context.d.ts +8 -0
  345. package/lib/modules/smz-cards/models/contexts/smz-flip-card-context.d.ts +38 -0
  346. package/lib/modules/smz-cards/models/smz-cards-component.d.ts +16 -0
  347. package/lib/modules/smz-cards/models/smz-cards-contents.d.ts +50 -0
  348. package/lib/modules/smz-cards/models/smz-cards-state.d.ts +69 -0
  349. package/lib/modules/smz-cards/models/smz-cards-templates.d.ts +74 -0
  350. package/lib/modules/smz-cards/models/smz-cards-types.d.ts +4 -0
  351. package/lib/modules/smz-cards/pipes/card-content.pipe.d.ts +9 -0
  352. package/lib/modules/smz-cards/pipes/reset-context.pipe.d.ts +8 -0
  353. package/lib/modules/smz-cards/pipes/transform-content.pipe.d.ts +8 -0
  354. package/lib/modules/smz-cards/public-api.d.ts +9 -0
  355. package/lib/modules/smz-cards/smz-cards.module.d.ts +39 -0
  356. package/lib/modules/smz-charts/features/chart/chart.component.d.ts +36 -0
  357. package/lib/modules/smz-charts/models/chart-click-event.d.ts +6 -0
  358. package/lib/modules/smz-charts/models/chart.d.ts +6 -0
  359. package/lib/modules/smz-charts/ngx-smz-charts.module.d.ts +8 -0
  360. package/lib/modules/smz-charts/public-api.d.ts +4 -0
  361. package/lib/modules/smz-comments/features/smz-comments/mentionable-textarea.component.d.ts +14 -0
  362. package/lib/modules/smz-comments/features/smz-comments/smz-comments.component.d.ts +40 -0
  363. package/lib/modules/smz-comments/features/smz-comments-section/smz-comments-section.component.d.ts +21 -0
  364. package/lib/modules/smz-comments/functions/comments.dialogs.d.ts +6 -0
  365. package/lib/modules/smz-comments/functions/comments.forms.d.ts +7 -0
  366. package/lib/modules/smz-comments/models/comments-details.d.ts +5 -0
  367. package/lib/modules/smz-comments/models/create-comment.d.ts +5 -0
  368. package/lib/modules/smz-comments/models/smz-comments-state.d.ts +19 -0
  369. package/lib/modules/smz-comments/public-api.d.ts +5 -0
  370. package/lib/modules/smz-comments/smz-comments.module.d.ts +18 -0
  371. package/lib/modules/smz-data-info/public-api.d.ts +2 -0
  372. package/lib/modules/smz-data-info/smz-data-info.component.d.ts +21 -0
  373. package/lib/modules/smz-data-info/smz-data-info.module.d.ts +10 -0
  374. package/lib/modules/smz-dialogs/decorators/confirmable.decorator.d.ts +16 -0
  375. package/lib/modules/smz-dialogs/dynamicdialog/dialog-overlay-panel.d.ts +17 -0
  376. package/lib/modules/smz-dialogs/dynamicdialog/dialogservice.d.ts +17 -0
  377. package/lib/modules/smz-dialogs/dynamicdialog/dynamicdialog-config.d.ts +30 -0
  378. package/lib/modules/smz-dialogs/dynamicdialog/dynamicdialog-injector.d.ts +8 -0
  379. package/lib/modules/smz-dialogs/dynamicdialog/dynamicdialog-ref.d.ts +11 -0
  380. package/lib/modules/smz-dialogs/dynamicdialog/dynamicdialog.d.ts +88 -0
  381. package/lib/modules/smz-dialogs/dynamicdialog/dynamicdialogcontent.d.ts +14 -0
  382. package/lib/modules/smz-dialogs/dynamicdialog/public_api.d.ts +6 -0
  383. package/lib/modules/smz-dialogs/features/dialog-content-manager/dialog-content-manager.component.d.ts +14 -0
  384. package/lib/modules/smz-dialogs/features/dialog-footer/dialog-footer.component.d.ts +46 -0
  385. package/lib/modules/smz-dialogs/features/document-content/document-content.component.d.ts +10 -0
  386. package/lib/modules/smz-dialogs/features/guide-footer/guide-footer.component.d.ts +13 -0
  387. package/lib/modules/smz-dialogs/features/html-content/html-content.component.d.ts +7 -0
  388. package/lib/modules/smz-dialogs/features/markdown-content/markdown-content.component.d.ts +7 -0
  389. package/lib/modules/smz-dialogs/features/message-content/message-content.component.d.ts +10 -0
  390. package/lib/modules/smz-dialogs/features/message-from-observable-content/message-from-observable-content.component.d.ts +8 -0
  391. package/lib/modules/smz-dialogs/features/table-content/table-content.component.d.ts +11 -0
  392. package/lib/modules/smz-dialogs/models/smz-dialog-helpers.d.ts +2 -0
  393. package/lib/modules/smz-dialogs/models/smz-dialogs.d.ts +206 -0
  394. package/lib/modules/smz-dialogs/models/smz-presets.d.ts +13 -0
  395. package/lib/modules/smz-dialogs/public-api.d.ts +13 -0
  396. package/lib/modules/smz-dialogs/services/help-dialog.service.d.ts +11 -0
  397. package/lib/modules/smz-dialogs/services/smz-dialogs-visibility.service.d.ts +28 -0
  398. package/lib/modules/smz-dialogs/services/smz-dialogs.service.d.ts +34 -0
  399. package/lib/modules/smz-dialogs/services/smz-features.service.d.ts +8 -0
  400. package/lib/modules/smz-dialogs/smz-dialogs.config.d.ts +29 -0
  401. package/lib/modules/smz-dialogs/smz-dialogs.module.d.ts +40 -0
  402. package/lib/modules/smz-dialogs/state/dialogs/dialog-crud-state.service.d.ts +8 -0
  403. package/lib/modules/smz-dialogs/state/dialogs/dialogs.actions.d.ts +57 -0
  404. package/lib/modules/smz-dialogs/state/dialogs/dialogs.state.d.ts +22 -0
  405. package/lib/modules/smz-dialogs/utils/dialogs.d.ts +13 -0
  406. package/lib/modules/smz-dock/features/dock/smz-dock.component.d.ts +11 -0
  407. package/lib/modules/smz-dock/public-api.d.ts +3 -0
  408. package/lib/modules/smz-dock/services/smz-dock.service.d.ts +16 -0
  409. package/lib/modules/smz-dock/smz-dock.module.d.ts +9 -0
  410. package/lib/modules/smz-documents/components/chart/chart.component.d.ts +17 -0
  411. package/lib/modules/smz-documents/components/content/content.component.d.ts +16 -0
  412. package/lib/modules/smz-documents/components/divider/divider.component.d.ts +12 -0
  413. package/lib/modules/smz-documents/components/field/field.component.d.ts +12 -0
  414. package/lib/modules/smz-documents/components/fields-group/fields-group.component.d.ts +12 -0
  415. package/lib/modules/smz-documents/components/hidden-break/hidden-break.component.d.ts +12 -0
  416. package/lib/modules/smz-documents/components/image/image.component.d.ts +15 -0
  417. package/lib/modules/smz-documents/components/injectable/injectable.component.d.ts +11 -0
  418. package/lib/modules/smz-documents/components/page-break/page-break.component.d.ts +8 -0
  419. package/lib/modules/smz-documents/components/spacer/spacer.component.d.ts +12 -0
  420. package/lib/modules/smz-documents/components/sub-title/sub-title.component.d.ts +12 -0
  421. package/lib/modules/smz-documents/components/table/table.component.d.ts +12 -0
  422. package/lib/modules/smz-documents/components/title/title.component.d.ts +12 -0
  423. package/lib/modules/smz-documents/features/document/smz-document.component.d.ts +17 -0
  424. package/lib/modules/smz-documents/features/document-viewer/document-viewer.component.d.ts +25 -0
  425. package/lib/modules/smz-documents/models/smz-document-config.d.ts +48 -0
  426. package/lib/modules/smz-documents/models/smz-document-export.d.ts +15 -0
  427. package/lib/modules/smz-documents/models/smz-document-features.d.ts +164 -0
  428. package/lib/modules/smz-documents/models/smz-document-locale.d.ts +7 -0
  429. package/lib/modules/smz-documents/models/smz-document-paper.d.ts +7 -0
  430. package/lib/modules/smz-documents/models/smz-document-viewer.d.ts +29 -0
  431. package/lib/modules/smz-documents/models/smz-document.d.ts +61 -0
  432. package/lib/modules/smz-documents/models/smz-page-formats.d.ts +44 -0
  433. package/lib/modules/smz-documents/ngx-smz-documents.module.d.ts +35 -0
  434. package/lib/modules/smz-documents/public-api.d.ts +4 -0
  435. package/lib/modules/smz-documents/services/jspdf-utils.d.ts +4 -0
  436. package/lib/modules/smz-documents/services/smz-documents.service.d.ts +25 -0
  437. package/lib/modules/smz-excels/functions/smz-excel-convertions.d.ts +1 -0
  438. package/lib/modules/smz-excels/models/smz-excel-definitions.d.ts +815 -0
  439. package/lib/modules/smz-excels/models/smz-excel-mock.d.ts +2 -0
  440. package/lib/modules/smz-excels/models/smz-excel-table.d.ts +76 -0
  441. package/lib/modules/smz-excels/public-api.d.ts +3 -0
  442. package/lib/modules/smz-excels/services/smz-excel-service.d.ts +14 -0
  443. package/lib/modules/smz-export-dialog/public-api.d.ts +4 -0
  444. package/lib/modules/smz-export-dialog/smz-export-dialog.component.d.ts +12 -0
  445. package/lib/modules/smz-export-dialog/smz-export-dialog.model.d.ts +16 -0
  446. package/lib/modules/smz-export-dialog/smz-export-dialog.module.d.ts +7 -0
  447. package/lib/modules/smz-export-dialog/smz-export-dialog.service.d.ts +16 -0
  448. package/lib/modules/smz-faqs/components/faqs-content/faqs-content.component.d.ts +24 -0
  449. package/lib/modules/smz-faqs/featured/faqs/smz-faqs.component.d.ts +19 -0
  450. package/lib/modules/smz-faqs/functions/faqs.dialogs.d.ts +5 -0
  451. package/lib/modules/smz-faqs/functions/faqs.forms.d.ts +7 -0
  452. package/lib/modules/smz-faqs/models/faqs.d.ts +24 -0
  453. package/lib/modules/smz-faqs/pipes/highlight.pipe.d.ts +7 -0
  454. package/lib/modules/smz-faqs/pipes/safe-html.pipe.d.ts +10 -0
  455. package/lib/modules/smz-faqs/pipes/search-faqs.pipe.d.ts +10 -0
  456. package/lib/modules/smz-faqs/public-api.d.ts +4 -0
  457. package/lib/modules/smz-faqs/services/faqs-api.service.d.ts +17 -0
  458. package/lib/modules/smz-faqs/services/faqs-manager.service.d.ts +18 -0
  459. package/lib/modules/smz-faqs/smz-faqs.config.d.ts +30 -0
  460. package/lib/modules/smz-faqs/smz-faqs.module.d.ts +24 -0
  461. package/lib/modules/smz-faqs/state/faqs.actions.d.ts +50 -0
  462. package/lib/modules/smz-faqs/state/faqs.selector.d.ts +3 -0
  463. package/lib/modules/smz-faqs/state/faqs.state.d.ts +28 -0
  464. package/lib/modules/smz-forms/components/calendar/calendar.component.d.ts +13 -0
  465. package/lib/modules/smz-forms/components/checkbox/checkbox.component.d.ts +19 -0
  466. package/lib/modules/smz-forms/components/checkbox-group/checkbox-group.component.d.ts +11 -0
  467. package/lib/modules/smz-forms/components/color-picker/color-picker.component.d.ts +19 -0
  468. package/lib/modules/smz-forms/components/dropdown/dropdown.component.d.ts +22 -0
  469. package/lib/modules/smz-forms/components/file-upload/file-name-shorten.pipe.d.ts +7 -0
  470. package/lib/modules/smz-forms/components/file-upload/file-upload.component.d.ts +41 -0
  471. package/lib/modules/smz-forms/components/input-autocomplete-tag-area/smz-autocomplete-selector-component.d.ts +34 -0
  472. package/lib/modules/smz-forms/components/input-autocomplete-tag-area/smz-input-autocomplete-tag-area.component.d.ts +37 -0
  473. package/lib/modules/smz-forms/components/input-content-mask/input-content-mask.component.d.ts +11 -0
  474. package/lib/modules/smz-forms/components/input-content-mask/input-content-mask.pipe.d.ts +10 -0
  475. package/lib/modules/smz-forms/components/input-currency/input-currency.component.d.ts +11 -0
  476. package/lib/modules/smz-forms/components/input-list/input-list-batch-crud.component.d.ts +20 -0
  477. package/lib/modules/smz-forms/components/input-list/input-list-dialog-crud.component.d.ts +20 -0
  478. package/lib/modules/smz-forms/components/input-list/input-list-inline-crud.component.d.ts +18 -0
  479. package/lib/modules/smz-forms/components/input-list/input-list.component.d.ts +41 -0
  480. package/lib/modules/smz-forms/components/input-mask/input-mask.component.d.ts +11 -0
  481. package/lib/modules/smz-forms/components/input-number/input-number.component.d.ts +14 -0
  482. package/lib/modules/smz-forms/components/input-password/input-password.component.d.ts +11 -0
  483. package/lib/modules/smz-forms/components/input-switch/input-switch.component.d.ts +11 -0
  484. package/lib/modules/smz-forms/components/input-tag-area/input-tag-area.component.d.ts +11 -0
  485. package/lib/modules/smz-forms/components/input-tag-area/smz-input-tag-area.component.d.ts +49 -0
  486. package/lib/modules/smz-forms/components/input-text/input-text.component.d.ts +10 -0
  487. package/lib/modules/smz-forms/components/input-text-area/input-text-area.component.d.ts +11 -0
  488. package/lib/modules/smz-forms/components/input-text-button/input-text-button.component.d.ts +19 -0
  489. package/lib/modules/smz-forms/components/input-tree/input-tree.component.d.ts +20 -0
  490. package/lib/modules/smz-forms/components/linked-dropdown/linked-dropdown.component.d.ts +19 -0
  491. package/lib/modules/smz-forms/components/linked-multi-select/get-current-multiselect-options.pipe.d.ts +8 -0
  492. package/lib/modules/smz-forms/components/linked-multi-select/linked-multi-select.component.d.ts +16 -0
  493. package/lib/modules/smz-forms/components/multi-select/multi-select.component.d.ts +21 -0
  494. package/lib/modules/smz-forms/components/radio-button/radio-button.component.d.ts +19 -0
  495. package/lib/modules/smz-forms/components/validation-messages/validation-messages.component.d.ts +13 -0
  496. package/lib/modules/smz-forms/components/validation-messages/validation-messages.pipe.d.ts +11 -0
  497. package/lib/modules/smz-forms/directives/file-drag-drop.directive.d.ts +11 -0
  498. package/lib/modules/smz-forms/directives/form-focus-first-input.directive.d.ts +10 -0
  499. package/lib/modules/smz-forms/directives/smart-autocomplete-tag.directive.d.ts +48 -0
  500. package/lib/modules/smz-forms/directives/smart-tag.directive.d.ts +46 -0
  501. package/lib/modules/smz-forms/directives/transfer-value-acessor.d.ts +36 -0
  502. package/lib/modules/smz-forms/features/form-group/form-group.component.d.ts +52 -0
  503. package/lib/modules/smz-forms/features/form-submit/form-submit.component.d.ts +31 -0
  504. package/lib/modules/smz-forms/models/advanced.d.ts +14 -0
  505. package/lib/modules/smz-forms/models/behaviors.d.ts +21 -0
  506. package/lib/modules/smz-forms/models/control-type-functions.d.ts +12 -0
  507. package/lib/modules/smz-forms/models/control-types.d.ts +291 -0
  508. package/lib/modules/smz-forms/models/controls.d.ts +38 -0
  509. package/lib/modules/smz-forms/models/form-viewdata.d.ts +22 -0
  510. package/lib/modules/smz-forms/models/smz-forms.d.ts +38 -0
  511. package/lib/modules/smz-forms/models/text-patterns.d.ts +8 -0
  512. package/lib/modules/smz-forms/public-api.d.ts +35 -0
  513. package/lib/modules/smz-forms/services/smz-forms-dropdown.service.d.ts +29 -0
  514. package/lib/modules/smz-forms/services/smz-forms-global-injector.d.ts +4 -0
  515. package/lib/modules/smz-forms/services/smz-forms-manager.service.d.ts +23 -0
  516. package/lib/modules/smz-forms/services/smz-forms-repository.service.d.ts +24 -0
  517. package/lib/modules/smz-forms/services/smz-forms-visibility.service.d.ts +26 -0
  518. package/lib/modules/smz-forms/smz-forms.config.d.ts +29 -0
  519. package/lib/modules/smz-forms/smz-forms.module.d.ts +78 -0
  520. package/lib/modules/smz-gauge/public-api.d.ts +2 -0
  521. package/lib/modules/smz-gauge/smz-gauge.component.d.ts +42 -0
  522. package/lib/modules/smz-gauge/smz-gauge.types.d.ts +109 -0
  523. package/lib/modules/smz-gauge/smz-svg-gauge.component.d.ts +37 -0
  524. package/lib/modules/smz-html-viewer/public-api.d.ts +2 -0
  525. package/lib/modules/smz-html-viewer/smz-html-viewer.component.d.ts +8 -0
  526. package/lib/modules/smz-html-viewer/smz-html-viewer.module.d.ts +10 -0
  527. package/lib/modules/smz-info-date/public-api.d.ts +2 -0
  528. package/lib/modules/smz-info-date/smz-info-date.component.d.ts +13 -0
  529. package/lib/modules/smz-info-date/smz-info-date.module.d.ts +10 -0
  530. package/lib/modules/smz-info-date/smz-info-date.pipe.d.ts +8 -0
  531. package/lib/modules/smz-layouts/core/functions/sort-menu-build.d.ts +2 -0
  532. package/lib/modules/smz-layouts/core/globals/default-smz-layouts.config.d.ts +2 -0
  533. package/lib/modules/smz-layouts/core/globals/smz-layouts.config.d.ts +49 -0
  534. package/lib/modules/smz-layouts/core/models/action-link.d.ts +9 -0
  535. package/lib/modules/smz-layouts/core/models/assistance.d.ts +13 -0
  536. package/lib/modules/smz-layouts/core/models/breadcrumbs.d.ts +5 -0
  537. package/lib/modules/smz-layouts/core/models/color-schemas.d.ts +18 -0
  538. package/lib/modules/smz-layouts/core/models/footer.d.ts +8 -0
  539. package/lib/modules/smz-layouts/core/models/layout.d.ts +23 -0
  540. package/lib/modules/smz-layouts/core/models/loaders.d.ts +6 -0
  541. package/lib/modules/smz-layouts/core/models/login.d.ts +4 -0
  542. package/lib/modules/smz-layouts/core/models/logo.d.ts +16 -0
  543. package/lib/modules/smz-layouts/core/models/menu-creation.d.ts +13 -0
  544. package/lib/modules/smz-layouts/core/models/menu-types.d.ts +6 -0
  545. package/lib/modules/smz-layouts/core/models/notifications.d.ts +6 -0
  546. package/lib/modules/smz-layouts/core/models/pages.d.ts +5 -0
  547. package/lib/modules/smz-layouts/core/models/positions.d.ts +6 -0
  548. package/lib/modules/smz-layouts/core/models/route-layout-data.d.ts +19 -0
  549. package/lib/modules/smz-layouts/core/models/sidebar-states.d.ts +4 -0
  550. package/lib/modules/smz-layouts/core/models/themes.d.ts +55 -0
  551. package/lib/modules/smz-layouts/core/models/toasts.d.ts +14 -0
  552. package/lib/modules/smz-layouts/core/services/menu-helper-service.d.ts +31 -0
  553. package/lib/modules/smz-layouts/core/services/router-data-listener.service.d.ts +17 -0
  554. package/lib/modules/smz-layouts/features/global-assistance/global-assistance.component.d.ts +39 -0
  555. package/lib/modules/smz-layouts/features/global-assistance/global-assistance.module.d.ts +16 -0
  556. package/lib/modules/smz-layouts/features/global-loader/components/cube/loader-cube.component.d.ts +12 -0
  557. package/lib/modules/smz-layouts/features/global-loader/components/square/loader-square.component.d.ts +12 -0
  558. package/lib/modules/smz-layouts/features/global-loader/global-loader.component.d.ts +16 -0
  559. package/lib/modules/smz-layouts/features/global-loader/global-loader.module.d.ts +11 -0
  560. package/lib/modules/smz-layouts/features/localization-switch/localization-switch.component.d.ts +17 -0
  561. package/lib/modules/smz-layouts/features/localization-switch/show-localization-switch-dialog.d.ts +1 -0
  562. package/lib/modules/smz-layouts/features/login/login-state.d.ts +30 -0
  563. package/lib/modules/smz-layouts/features/login/login.component.d.ts +23 -0
  564. package/lib/modules/smz-layouts/features/login/login.module.d.ts +13 -0
  565. package/lib/modules/smz-layouts/features/outlet/outlet.component.d.ts +26 -0
  566. package/lib/modules/smz-layouts/features/outlet/outlet.module.d.ts +15 -0
  567. package/lib/modules/smz-layouts/features/tenant-switch/show-tenant-switch-dialog.d.ts +1 -0
  568. package/lib/modules/smz-layouts/features/tenant-switch/tenant-switch.component.d.ts +18 -0
  569. package/lib/modules/smz-layouts/features/theme-manager/theme-manager.component.d.ts +12 -0
  570. package/lib/modules/smz-layouts/features/theme-manager/theme-manager.module.d.ts +9 -0
  571. package/lib/modules/smz-layouts/features/theme-manager/theme-manager.service.d.ts +15 -0
  572. package/lib/modules/smz-layouts/layouts/athena/components/assistance/assistance.component.d.ts +32 -0
  573. package/lib/modules/smz-layouts/layouts/athena/components/assistance/assistance.module.d.ts +17 -0
  574. package/lib/modules/smz-layouts/layouts/athena/components/footer/footer.component.d.ts +20 -0
  575. package/lib/modules/smz-layouts/layouts/athena/components/footer/footer.module.d.ts +9 -0
  576. package/lib/modules/smz-layouts/layouts/athena/components/horizontal-menu/components/menu-node.component.d.ts +16 -0
  577. package/lib/modules/smz-layouts/layouts/athena/components/horizontal-menu/horizontal-menu.component.d.ts +26 -0
  578. package/lib/modules/smz-layouts/layouts/athena/components/horizontal-menu/horizontal-menu.module.d.ts +15 -0
  579. package/lib/modules/smz-layouts/layouts/athena/components/horizontal-menu/pipes/has-child.pipe.d.ts +10 -0
  580. package/lib/modules/smz-layouts/layouts/athena/components/notifications/items/notification-items.component.d.ts +15 -0
  581. package/lib/modules/smz-layouts/layouts/athena/components/notifications/notifications.component.d.ts +17 -0
  582. package/lib/modules/smz-layouts/layouts/athena/components/notifications/notifications.module.d.ts +10 -0
  583. package/lib/modules/smz-layouts/layouts/athena/components/profile-menu/pipes/has-child.pipe.d.ts +10 -0
  584. package/lib/modules/smz-layouts/layouts/athena/components/profile-menu/profile-menu-items.component.d.ts +17 -0
  585. package/lib/modules/smz-layouts/layouts/athena/components/profile-menu/profile-menu.component.d.ts +21 -0
  586. package/lib/modules/smz-layouts/layouts/athena/components/profile-menu/profile-menu.module.d.ts +13 -0
  587. package/lib/modules/smz-layouts/layouts/athena/components/topbar/topbar.component.d.ts +25 -0
  588. package/lib/modules/smz-layouts/layouts/athena/components/topbar/topbar.module.d.ts +11 -0
  589. package/lib/modules/smz-layouts/layouts/athena/components/topbar-actions/topbar-actions.component.d.ts +14 -0
  590. package/lib/modules/smz-layouts/layouts/athena/components/topbar-actions/topbar-actions.module.d.ts +14 -0
  591. package/lib/modules/smz-layouts/layouts/athena/default.config.d.ts +2 -0
  592. package/lib/modules/smz-layouts/layouts/athena/layout.component.d.ts +28 -0
  593. package/lib/modules/smz-layouts/layouts/athena/layout.config.d.ts +13 -0
  594. package/lib/modules/smz-layouts/layouts/athena/layout.module.d.ts +20 -0
  595. package/lib/modules/smz-layouts/layouts/athena/state/ui-layout.actions.d.ts +35 -0
  596. package/lib/modules/smz-layouts/layouts/athena/state/ui-layout.selectors.d.ts +9 -0
  597. package/lib/modules/smz-layouts/layouts/athena/state/ui-layout.state.d.ts +23 -0
  598. package/lib/modules/smz-layouts/layouts/hephaestus/components/assistance/assistance.component.d.ts +27 -0
  599. package/lib/modules/smz-layouts/layouts/hephaestus/components/assistance/assistance.module.d.ts +17 -0
  600. package/lib/modules/smz-layouts/layouts/hephaestus/components/footer/footer.component.d.ts +15 -0
  601. package/lib/modules/smz-layouts/layouts/hephaestus/components/footer/footer.module.d.ts +9 -0
  602. package/lib/modules/smz-layouts/layouts/hephaestus/components/notifications/notification-items.component.d.ts +15 -0
  603. package/lib/modules/smz-layouts/layouts/hephaestus/components/notifications/notifications.component.d.ts +14 -0
  604. package/lib/modules/smz-layouts/layouts/hephaestus/components/notifications/notifications.module.d.ts +10 -0
  605. package/lib/modules/smz-layouts/layouts/hephaestus/components/profile-menu/profile-menu-items.component.d.ts +15 -0
  606. package/lib/modules/smz-layouts/layouts/hephaestus/components/profile-menu/profile-menu.component.d.ts +18 -0
  607. package/lib/modules/smz-layouts/layouts/hephaestus/components/profile-menu/profile-menu.module.d.ts +12 -0
  608. package/lib/modules/smz-layouts/layouts/hephaestus/components/sidebar/components/menu.component.d.ts +41 -0
  609. package/lib/modules/smz-layouts/layouts/hephaestus/components/sidebar/pipes/has-child.pipe.d.ts +10 -0
  610. package/lib/modules/smz-layouts/layouts/hephaestus/components/sidebar/sidebar.component.d.ts +25 -0
  611. package/lib/modules/smz-layouts/layouts/hephaestus/components/sidebar/sidebar.module.d.ts +15 -0
  612. package/lib/modules/smz-layouts/layouts/hephaestus/components/topbar/topbar.component.d.ts +30 -0
  613. package/lib/modules/smz-layouts/layouts/hephaestus/components/topbar/topbar.module.d.ts +14 -0
  614. package/lib/modules/smz-layouts/layouts/hephaestus/default.config.d.ts +2 -0
  615. package/lib/modules/smz-layouts/layouts/hephaestus/layout-provider.module.d.ts +12 -0
  616. package/lib/modules/smz-layouts/layouts/hephaestus/layout.component.d.ts +31 -0
  617. package/lib/modules/smz-layouts/layouts/hephaestus/layout.config.d.ts +17 -0
  618. package/lib/modules/smz-layouts/layouts/hephaestus/layout.module.d.ts +16 -0
  619. package/lib/modules/smz-layouts/layouts/hephaestus/state/ui-layout.actions.d.ts +35 -0
  620. package/lib/modules/smz-layouts/layouts/hephaestus/state/ui-layout.selectors.d.ts +9 -0
  621. package/lib/modules/smz-layouts/layouts/hephaestus/state/ui-layout.state.d.ts +23 -0
  622. package/lib/modules/smz-layouts/layouts/new-athena/components/assistance/assistance.component.d.ts +29 -0
  623. package/lib/modules/smz-layouts/layouts/new-athena/components/assistance/assistance.module.d.ts +17 -0
  624. package/lib/modules/smz-layouts/layouts/new-athena/components/footer/footer.component.d.ts +20 -0
  625. package/lib/modules/smz-layouts/layouts/new-athena/components/footer/footer.module.d.ts +9 -0
  626. package/lib/modules/smz-layouts/layouts/new-athena/components/horizontal-menu/components/menu-node.component.d.ts +16 -0
  627. package/lib/modules/smz-layouts/layouts/new-athena/components/horizontal-menu/horizontal-menu.component.d.ts +27 -0
  628. package/lib/modules/smz-layouts/layouts/new-athena/components/horizontal-menu/horizontal-menu.module.d.ts +15 -0
  629. package/lib/modules/smz-layouts/layouts/new-athena/components/horizontal-menu/pipes/has-child.pipe.d.ts +10 -0
  630. package/lib/modules/smz-layouts/layouts/new-athena/components/notifications/items/notification-items.component.d.ts +15 -0
  631. package/lib/modules/smz-layouts/layouts/new-athena/components/notifications/notifications.component.d.ts +17 -0
  632. package/lib/modules/smz-layouts/layouts/new-athena/components/notifications/notifications.module.d.ts +10 -0
  633. package/lib/modules/smz-layouts/layouts/new-athena/components/profile-menu/pipes/has-child.pipe.d.ts +10 -0
  634. package/lib/modules/smz-layouts/layouts/new-athena/components/profile-menu/profile-menu-items.component.d.ts +17 -0
  635. package/lib/modules/smz-layouts/layouts/new-athena/components/profile-menu/profile-menu.component.d.ts +24 -0
  636. package/lib/modules/smz-layouts/layouts/new-athena/components/profile-menu/profile-menu.module.d.ts +13 -0
  637. package/lib/modules/smz-layouts/layouts/new-athena/components/topbar/topbar.component.d.ts +26 -0
  638. package/lib/modules/smz-layouts/layouts/new-athena/components/topbar/topbar.module.d.ts +13 -0
  639. package/lib/modules/smz-layouts/layouts/new-athena/components/topbar-actions/topbar-actions.component.d.ts +14 -0
  640. package/lib/modules/smz-layouts/layouts/new-athena/components/topbar-actions/topbar-actions.module.d.ts +16 -0
  641. package/lib/modules/smz-layouts/layouts/new-athena/default.config.d.ts +2 -0
  642. package/lib/modules/smz-layouts/layouts/new-athena/layout-provider.module.d.ts +12 -0
  643. package/lib/modules/smz-layouts/layouts/new-athena/layout.component.d.ts +32 -0
  644. package/lib/modules/smz-layouts/layouts/new-athena/layout.config.d.ts +13 -0
  645. package/lib/modules/smz-layouts/layouts/new-athena/layout.module.d.ts +16 -0
  646. package/lib/modules/smz-layouts/layouts/new-athena/state/ui-layout.actions.d.ts +35 -0
  647. package/lib/modules/smz-layouts/layouts/new-athena/state/ui-layout.selectors.d.ts +9 -0
  648. package/lib/modules/smz-layouts/layouts/new-athena/state/ui-layout.state.d.ts +23 -0
  649. package/lib/modules/smz-layouts/ngx-smz-layouts-routing.module.d.ts +23 -0
  650. package/lib/modules/smz-layouts/ngx-smz-layouts.module.d.ts +12 -0
  651. package/lib/modules/smz-layouts/pages/diagnostics-data-collect/diagnostics-data-collect.component.d.ts +19 -0
  652. package/lib/modules/smz-layouts/pages/diagnostics-data-collect/diagnostics-data-collect.module.d.ts +13 -0
  653. package/lib/modules/smz-layouts/pages/error/error.component.d.ts +21 -0
  654. package/lib/modules/smz-layouts/pages/error/error.module.d.ts +13 -0
  655. package/lib/modules/smz-layouts/pages/login/login.component.d.ts +13 -0
  656. package/lib/modules/smz-layouts/pages/login/login.module.d.ts +16 -0
  657. package/lib/modules/smz-layouts/pages/not-found/not-found.component.d.ts +10 -0
  658. package/lib/modules/smz-layouts/pages/not-found/not-found.module.d.ts +13 -0
  659. package/lib/modules/smz-layouts/pages/superuser-login/superuser-login.component.d.ts +11 -0
  660. package/lib/modules/smz-layouts/pages/superuser-login/superuser-login.module.d.ts +15 -0
  661. package/lib/modules/smz-layouts/public-api.d.ts +37 -0
  662. package/lib/modules/smz-menu/components/menu.d.ts +77 -0
  663. package/lib/modules/smz-menu/directives/menu-item-actions.directive.d.ts +15 -0
  664. package/lib/modules/smz-menu/models/smz-menu-item.d.ts +20 -0
  665. package/lib/modules/smz-menu/pipes/smz-flatten-menu.pipe.d.ts +14 -0
  666. package/lib/modules/smz-menu/pipes/smz-menu.pipe.d.ts +15 -0
  667. package/lib/modules/smz-menu/public-api.d.ts +5 -0
  668. package/lib/modules/smz-menu/smz-menu.component.d.ts +16 -0
  669. package/lib/modules/smz-menu/smz-menu.module.d.ts +15 -0
  670. package/lib/modules/smz-messages/components/icon-message/icon-message.component.d.ts +11 -0
  671. package/lib/modules/smz-messages/components/tag-message/tag-message.component.d.ts +12 -0
  672. package/lib/modules/smz-messages/public-api.d.ts +3 -0
  673. package/lib/modules/smz-messages/smz-messages.module.d.ts +9 -0
  674. package/lib/modules/smz-multi-tables/multi-tables.component.d.ts +11 -0
  675. package/lib/modules/smz-multi-tables/multi-tables.module.d.ts +12 -0
  676. package/lib/modules/smz-multi-tables/multi-tables.state.d.ts +32 -0
  677. package/lib/modules/smz-multi-tables/public-api.d.ts +3 -0
  678. package/lib/modules/smz-notifications/components/item/notification-item.component.d.ts +21 -0
  679. package/lib/modules/smz-notifications/components/list/notifications-list.component.d.ts +41 -0
  680. package/lib/modules/smz-notifications/dialogs/show-notifications-dialog.d.ts +1 -0
  681. package/lib/modules/smz-notifications/features/notifications/notifications.component.d.ts +10 -0
  682. package/lib/modules/smz-notifications/ngx-smz-notifications.module.d.ts +27 -0
  683. package/lib/modules/smz-notifications/services/smz-notifications.service.d.ts +11 -0
  684. package/lib/modules/smz-responsive/smz-responsive.component.d.ts +12 -0
  685. package/lib/modules/smz-router-params/decorators/host-element.decorator.d.ts +15 -0
  686. package/lib/modules/smz-router-params/decorators/replace-ng-oninit.d.ts +2 -0
  687. package/lib/modules/smz-router-params/decorators/route.decorators.d.ts +12 -0
  688. package/lib/modules/smz-router-params/decorators/tunnel.decorator.d.ts +1 -0
  689. package/lib/modules/smz-router-params/models/internals.d.ts +21 -0
  690. package/lib/modules/smz-router-params/ngx-smz-router-params.module.d.ts +7 -0
  691. package/lib/modules/smz-router-params/public-api.d.ts +10 -0
  692. package/lib/modules/smz-router-params/router-params-listener.d.ts +4 -0
  693. package/lib/modules/smz-router-params/state/router-params/router-params.actions.d.ts +13 -0
  694. package/lib/modules/smz-router-params/state/router-params/router-params.selectors.d.ts +6 -0
  695. package/lib/modules/smz-router-params/state/router-params/router-params.state.d.ts +20 -0
  696. package/lib/modules/smz-side-content/models/side-content.d.ts +14 -0
  697. package/lib/modules/smz-side-content/public-api.d.ts +3 -0
  698. package/lib/modules/smz-side-content/smz-side-content.component.d.ts +25 -0
  699. package/lib/modules/smz-side-content/smz-side-content.module.d.ts +10 -0
  700. package/lib/modules/smz-submit/public-api.d.ts +1 -0
  701. package/lib/modules/smz-submit/smz-submit.component.d.ts +31 -0
  702. package/lib/modules/smz-submit/smz-submit.d.ts +6 -0
  703. package/lib/modules/smz-svg/models/smz-svg-wrapper.d.ts +28 -0
  704. package/lib/modules/smz-svg/models/smz-svg.d.ts +131 -0
  705. package/lib/modules/smz-svg/models/world-coordinates.d.ts +26 -0
  706. package/lib/modules/smz-svg/public-api.d.ts +6 -0
  707. package/lib/modules/smz-svg/smz-svg.component.d.ts +48 -0
  708. package/lib/modules/smz-svg/smz-svg.module.d.ts +11 -0
  709. package/lib/modules/smz-svg/utils/smz-svg-helper.d.ts +3 -0
  710. package/lib/modules/smz-tables/components/smz-filter-column-2.component.d.ts +28 -0
  711. package/lib/modules/smz-tables/components/smz-filter-column.component.d.ts +32 -0
  712. package/lib/modules/smz-tables/components/table-caption-buttons/table-caption-buttons.component.d.ts +10 -0
  713. package/lib/modules/smz-tables/components/table-content/table-content.component.d.ts +14 -0
  714. package/lib/modules/smz-tables/components/table-content-actions/table-content-actions.component.d.ts +13 -0
  715. package/lib/modules/smz-tables/components/table-header-actions/table-header-actions.component.d.ts +10 -0
  716. package/lib/modules/smz-tables/components/validation-messages/validation-messages.component.d.ts +14 -0
  717. package/lib/modules/smz-tables/components/validation-messages/validation-messages.pipe.d.ts +11 -0
  718. package/lib/modules/smz-tables/features/table/table.component.d.ts +112 -0
  719. package/lib/modules/smz-tables/models/content-convertions.d.ts +34 -0
  720. package/lib/modules/smz-tables/models/content-types.d.ts +49 -0
  721. package/lib/modules/smz-tables/models/editable-model.d.ts +32 -0
  722. package/lib/modules/smz-tables/models/editable-transaction.d.ts +7 -0
  723. package/lib/modules/smz-tables/models/editable-types.d.ts +37 -0
  724. package/lib/modules/smz-tables/models/filter-types.d.ts +13 -0
  725. package/lib/modules/smz-tables/models/table-column.d.ts +210 -0
  726. package/lib/modules/smz-tables/models/table-configs.d.ts +6 -0
  727. package/lib/modules/smz-tables/models/table-state.d.ts +588 -0
  728. package/lib/modules/smz-tables/ngx-smz-tables.module.d.ts +48 -0
  729. package/lib/modules/smz-tables/pipes/clone-table-items.pipe.d.ts +18 -0
  730. package/lib/modules/smz-tables/pipes/content-errors.pipe.d.ts +10 -0
  731. package/lib/modules/smz-tables/pipes/content-icon-matches.pipe.d.ts +8 -0
  732. package/lib/modules/smz-tables/pipes/editable-source.pipe.d.ts +11 -0
  733. package/lib/modules/smz-tables/pipes/filter-object.pipe.d.ts +7 -0
  734. package/lib/modules/smz-tables/pipes/sincronize-table.pipe.d.ts +10 -0
  735. package/lib/modules/smz-tables/pipes/table-content.pipe.d.ts +10 -0
  736. package/lib/modules/smz-tables/pipes/table-context.pipe.d.ts +8 -0
  737. package/lib/modules/smz-tables/public-api.d.ts +14 -0
  738. package/lib/modules/smz-tables/services/smz-transactions.service.d.ts +19 -0
  739. package/lib/modules/smz-tables/services/table-editable.service.d.ts +38 -0
  740. package/lib/modules/smz-tables/services/table-forms.service.d.ts +11 -0
  741. package/lib/modules/smz-tables/services/table-helper.service.d.ts +17 -0
  742. package/lib/modules/smz-timeline/features/smz-timeline/smz-timeline.component.d.ts +23 -0
  743. package/lib/modules/smz-timeline/models/smz-timeline-state.d.ts +35 -0
  744. package/lib/modules/smz-timeline/public-api.d.ts +3 -0
  745. package/lib/modules/smz-timeline/smz-timeline.module.d.ts +22 -0
  746. package/lib/modules/smz-toast/public_api.d.ts +1 -0
  747. package/lib/modules/smz-toast/toast.d.ts +102 -0
  748. package/lib/modules/smz-tree-with-details/features/tree-with-details/tree-with-details.component.d.ts +30 -0
  749. package/lib/modules/smz-tree-with-details/models/tree-with-details-locale.d.ts +3 -0
  750. package/lib/modules/smz-tree-with-details/models/tree-with-details-state.d.ts +27 -0
  751. package/lib/modules/smz-tree-with-details/ngx-smz-tree-with-details.module.d.ts +18 -0
  752. package/lib/modules/smz-tree-with-details/pipes/tree-items.pipe.d.ts +10 -0
  753. package/lib/modules/smz-tree-with-details/public-api.d.ts +3 -0
  754. package/lib/modules/smz-trees/features/tree/tree.component.d.ts +102 -0
  755. package/lib/modules/smz-trees/models/drag-and-drop.d.ts +21 -0
  756. package/lib/modules/smz-trees/models/node-helper.d.ts +15 -0
  757. package/lib/modules/smz-trees/models/tree-menu-item.d.ts +14 -0
  758. package/lib/modules/smz-trees/models/tree-node.d.ts +6 -0
  759. package/lib/modules/smz-trees/models/tree-state.d.ts +163 -0
  760. package/lib/modules/smz-trees/models/tree-toolbar-button.d.ts +8 -0
  761. package/lib/modules/smz-trees/ngx-smz-trees.module.d.ts +24 -0
  762. package/lib/modules/smz-trees/pipes/data-transform-tree.pipe.d.ts +12 -0
  763. package/lib/modules/smz-trees/public-api.d.ts +9 -0
  764. package/lib/modules/smz-trees/services/tree-helper.service.d.ts +18 -0
  765. package/lib/modules/smz-trees/utils/tree-helpers.d.ts +8 -0
  766. package/lib/modules/smz-ui-block/public-api.d.ts +4 -0
  767. package/lib/modules/smz-ui-block/smz-ui-block.component.d.ts +16 -0
  768. package/lib/modules/smz-ui-block/smz-ui-block.directive.d.ts +15 -0
  769. package/lib/modules/smz-ui-block/smz-ui-block.module.d.ts +10 -0
  770. package/lib/modules/smz-ui-block/smz-ui-block.service.d.ts +16 -0
  771. package/lib/modules/smz-viewport/models/smz-viewport-config-direction.d.ts +5 -0
  772. package/lib/modules/smz-viewport/models/smz-viewport-config.d.ts +19 -0
  773. package/lib/modules/smz-viewport/public-api.d.ts +3 -0
  774. package/lib/modules/smz-viewport/smz-viewport.directive.d.ts +23 -0
  775. package/lib/modules/smz-viewport/smz-viewport.module.d.ts +8 -0
  776. package/lib/modules/smz-viewport/smz-viewport.service.d.ts +18 -0
  777. package/lib/modules/smz-viewport/types/in-viewport-config-check-fn.d.ts +6 -0
  778. package/lib/modules/smz-viewport/types/in-viewport-config-directions.d.ts +1 -0
  779. package/lib/modules/smz-viewport/types/in-viewport-config-options.d.ts +10 -0
  780. package/lib/modules/smz-viewport/types/in-viewport-registry-entry.d.ts +9 -0
  781. package/lib/modules/smz-viewport/types/index.d.ts +11 -0
  782. package/lib/modules/smz-viewport/utils/utils.d.ts +17 -0
  783. package/lib/ngx-smz-ui.component.d.ts +8 -0
  784. package/lib/ngx-smz-ui.config.d.ts +30 -0
  785. package/lib/ngx-smz-ui.module.d.ts +15 -0
  786. package/lib/standalones/easy-table/components/common/global-search/global-search.component.d.ts +16 -0
  787. package/lib/standalones/easy-table/components/common/pagination/pagination.component.d.ts +15 -0
  788. package/lib/standalones/easy-table/components/common/sort/sort.component.d.ts +15 -0
  789. package/lib/standalones/easy-table/components/common/title/title.component.d.ts +10 -0
  790. package/lib/standalones/easy-table/components/desktop/body/body.component.d.ts +16 -0
  791. package/lib/standalones/easy-table/components/desktop/head/head.component.d.ts +12 -0
  792. package/lib/standalones/easy-table/containers/desktop/desktop-table.component.d.ts +14 -0
  793. package/lib/standalones/easy-table/containers/easy-table/smz-easy-table.component.d.ts +21 -0
  794. package/lib/standalones/easy-table/containers/mobile/mobile-table.component.d.ts +11 -0
  795. package/lib/standalones/easy-table/models/smz-easy-locale.d.ts +15 -0
  796. package/lib/standalones/easy-table/models/smz-easy-table-contents.d.ts +34 -0
  797. package/lib/standalones/easy-table/models/smz-easy-table-data.d.ts +36 -0
  798. package/lib/standalones/easy-table/models/smz-easy-table-state.d.ts +82 -0
  799. package/lib/standalones/easy-table/pipes/table-content.pipe.d.ts +9 -0
  800. package/lib/standalones/easy-table/public-api.d.ts +4 -0
  801. package/lib/standalones/easy-table/services/table-content.service.d.ts +13 -0
  802. package/lib/standalones/easy-table/services/table-data-source.service.d.ts +28 -0
  803. package/lib/standalones/easy-table/services/table-data-utils.d.ts +2 -0
  804. package/lib/standalones/easy-table/smz-easy-table.module.d.ts +24 -0
  805. package/lib/standalones/smz-drag-drop/directives/smz-drag.d.ts +41 -0
  806. package/lib/standalones/smz-drag-drop/directives/smz-drop.d.ts +32 -0
  807. package/lib/standalones/smz-drag-drop/models/drag-event.d.ts +11 -0
  808. package/lib/standalones/smz-drag-drop/public-api.d.ts +4 -0
  809. package/lib/standalones/smz-drag-drop/services/smz-draggable.service.d.ts +8 -0
  810. package/lib/standalones/smz-drag-drop/smz-drag-drop.module.d.ts +9 -0
  811. package/lib/standalones/smz-drag-drop/utils/clone-node.d.ts +9 -0
  812. package/lib/standalones/smz-drag-drop/utils/drag-ref.d.ts +33 -0
  813. package/lib/standalones/smz-drag-drop/utils/styling.d.ts +42 -0
  814. package/lib/standalones/smz-ui-guides/models/smz-ui-guides-state.d.ts +50 -0
  815. package/lib/standalones/smz-ui-guides/public-api.d.ts +2 -0
  816. package/lib/standalones/smz-ui-guides/services/smz-ui-guides.service.d.ts +11 -0
  817. package/lib/standalones/smz-ui-guides/smz-ui-guides.module.d.ts +7 -0
  818. package/lib/state/app.state.d.ts +5 -0
  819. package/lib/state/app.utils.d.ts +1 -0
  820. package/lib/state/database/database.actions.d.ts +8 -0
  821. package/lib/state/database/database.interfaces.d.ts +5 -0
  822. package/lib/state/database/database.selectors.d.ts +3 -0
  823. package/lib/state/database/database.state.d.ts +11 -0
  824. package/lib/state/database/ui-definitions/ui-definitions.actions.d.ts +17 -0
  825. package/lib/state/database/ui-definitions/ui-definitions.selectors.d.ts +8 -0
  826. package/lib/state/database/ui-definitions/ui-definitions.service.d.ts +14 -0
  827. package/lib/state/database/ui-definitions/ui-definitions.state.d.ts +22 -0
  828. package/lib/state/database/ui-localization/ui-localization.actions.d.ts +16 -0
  829. package/lib/state/database/ui-localization/ui-localization.selectors.d.ts +6 -0
  830. package/lib/state/database/ui-localization/ui-localization.service.d.ts +14 -0
  831. package/lib/state/database/ui-localization/ui-localization.state.d.ts +27 -0
  832. package/lib/state/features/features.actions.d.ts +8 -0
  833. package/lib/state/features/features.selectors.d.ts +3 -0
  834. package/lib/state/features/features.state.d.ts +10 -0
  835. package/lib/state/global/application/application.actions.d.ts +55 -0
  836. package/lib/state/global/application/application.actions.toast.d.ts +32 -0
  837. package/lib/state/global/application/application.selector.d.ts +6 -0
  838. package/lib/state/global/application/application.state.d.ts +43 -0
  839. package/lib/state/global/authentication/authentication.actions.d.ts +42 -0
  840. package/lib/state/global/authentication/authentication.selectors.d.ts +14 -0
  841. package/lib/state/global/authentication/authentication.state.d.ts +28 -0
  842. package/lib/state/global/authentication/authentication.utils.d.ts +1 -0
  843. package/lib/state/global/authentication/legacy-authentication.selectors.d.ts +5 -0
  844. package/lib/state/global/authentication/tenant-authentication.selectors.d.ts +5 -0
  845. package/lib/state/global/global.actions.d.ts +8 -0
  846. package/lib/state/global/global.state.d.ts +15 -0
  847. package/lib/state/ui/comments/comments.actions.d.ts +30 -0
  848. package/lib/state/ui/comments/comments.selector.d.ts +3 -0
  849. package/lib/state/ui/comments/comments.service.d.ts +18 -0
  850. package/lib/state/ui/comments/comments.state.d.ts +25 -0
  851. package/lib/state/ui/excels/excels.actions.d.ts +14 -0
  852. package/lib/state/ui/excels/excels.service.d.ts +12 -0
  853. package/lib/state/ui/excels/excels.state.d.ts +18 -0
  854. package/lib/state/ui/layout/layout.actions.d.ts +81 -0
  855. package/lib/state/ui/layout/layout.selectors.d.ts +26 -0
  856. package/lib/state/ui/layout/layout.state.d.ts +51 -0
  857. package/lib/state/ui/notifications/notifications.actions.d.ts +28 -0
  858. package/lib/state/ui/notifications/notifications.model.d.ts +52 -0
  859. package/lib/state/ui/notifications/notifications.selectors.d.ts +9 -0
  860. package/lib/state/ui/notifications/notifications.service.d.ts +14 -0
  861. package/lib/state/ui/notifications/notifications.state.d.ts +24 -0
  862. package/lib/state/ui/ui.actions.d.ts +8 -0
  863. package/lib/state/ui/ui.state.d.ts +11 -0
  864. package/package.json +30 -0
  865. package/public-api.d.ts +152 -0
  866. package/resources/assets/fonts/OpenSans-Bold.ttf +0 -0
  867. package/resources/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
  868. package/resources/assets/fonts/OpenSans-Light.ttf +0 -0
  869. package/resources/assets/fonts/OpenSans-Medium.ttf +0 -0
  870. package/resources/assets/fonts/OpenSans-Regular.ttf +0 -0
  871. package/resources/assets/fonts/OpenSans-SemiBold.ttf +0 -0
  872. package/resources/assets/fonts/Roboto-Bold.ttf +0 -0
  873. package/resources/assets/fonts/Roboto-Light.ttf +0 -0
  874. package/resources/assets/fonts/Roboto-Medium.ttf +0 -0
  875. package/resources/assets/fonts/Roboto-Regular.ttf +0 -0
  876. package/resources/assets/fonts/Roboto-Thin.ttf +0 -0
  877. package/resources/assets/fonts/lato-v17-latin-ext_latin-300.woff +0 -0
  878. package/resources/assets/fonts/lato-v17-latin-ext_latin-300.woff2 +0 -0
  879. package/resources/assets/fonts/lato-v17-latin-ext_latin-700.woff +0 -0
  880. package/resources/assets/fonts/lato-v17-latin-ext_latin-700.woff2 +0 -0
  881. package/resources/assets/fonts/lato-v17-latin-ext_latin-regular.woff +0 -0
  882. package/resources/assets/fonts/lato-v17-latin-ext_latin-regular.woff2 +0 -0
  883. package/resources/assets/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  884. package/resources/assets/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  885. package/resources/assets/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  886. package/resources/assets/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  887. package/resources/assets/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  888. package/resources/assets/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  889. package/resources/assets/images/avatar_dark.png +0 -0
  890. package/resources/assets/images/dock/acabamentos.svg +62 -0
  891. package/resources/assets/images/dock/dialog.svg +33 -0
  892. package/resources/assets/images/error-placeholder.jpeg +0 -0
  893. package/resources/assets/images/pages/bg-404.jpg +0 -0
  894. package/resources/assets/images/pages/bg-access.jpg +0 -0
  895. package/resources/assets/images/pages/bg-error.jpg +0 -0
  896. package/resources/assets/images/pages/bg-help.png +0 -0
  897. package/resources/assets/images/pages/bg-login.jpg +0 -0
  898. package/resources/assets/images/placeholder.jpeg +0 -0
  899. package/resources/assets/images/tables/empty-dark.svg +63 -0
  900. package/resources/assets/images/tables/empty.svg +56 -0
  901. package/resources/assets/locales/de.json +14 -0
  902. package/resources/assets/locales/en.json +14 -0
  903. package/resources/assets/scss/dialogs/dialog-ng19.scss +137 -0
  904. package/resources/assets/scss/dialogs/menu-ng19.scss +138 -0
  905. package/resources/assets/scss/dialogs/prime10.scss +5887 -0
  906. package/resources/assets/scss/dialogs/responsive.scss +32 -0
  907. package/resources/assets/scss/dialogs/smz-general-styles.scss +482 -0
  908. package/resources/assets/scss/dialogs/theme10.scss +88 -0
  909. package/resources/assets/scss/dock/dock.scss +61 -0
  910. package/resources/assets/scss/documents/documents.scss +262 -0
  911. package/resources/assets/scss/extras/browser.scss +18 -0
  912. package/resources/assets/scss/extras/colors.scss +2149 -0
  913. package/resources/assets/scss/extras/dividers.scss +567 -0
  914. package/resources/assets/scss/extras/extras.scss +37 -0
  915. package/resources/assets/scss/extras/pretty-json.scss +23 -0
  916. package/resources/assets/scss/extras/tag-messages.scss +14 -0
  917. package/resources/assets/scss/fontawesome-free.scss +2 -0
  918. package/resources/assets/scss/forms/forms.scss +24 -0
  919. package/resources/assets/scss/layouts/smz-theme-blue.scss +55 -0
  920. package/resources/assets/scss/layouts/smz-theme-bluegray.scss +55 -0
  921. package/resources/assets/scss/layouts/smz-theme-brown.scss +55 -0
  922. package/resources/assets/scss/layouts/smz-theme-cyan.scss +55 -0
  923. package/resources/assets/scss/layouts/smz-theme-darkgray.scss +55 -0
  924. package/resources/assets/scss/layouts/smz-theme-deeppurple.scss +55 -0
  925. package/resources/assets/scss/layouts/smz-theme-green.scss +55 -0
  926. package/resources/assets/scss/layouts/smz-theme-indigo.scss +55 -0
  927. package/resources/assets/scss/layouts/smz-theme-orange.scss +55 -0
  928. package/resources/assets/scss/layouts/smz-theme-pink.scss +55 -0
  929. package/resources/assets/scss/layouts/smz-theme-purple.scss +55 -0
  930. package/resources/assets/scss/layouts/smz-theme-teal.scss +55 -0
  931. package/resources/assets/scss/layouts/smz-theme-white.scss +55 -0
  932. package/resources/assets/scss/legacy/images/color.png +0 -0
  933. package/resources/assets/scss/legacy/images/hue.png +0 -0
  934. package/resources/assets/scss/legacy/images/line.gif +0 -0
  935. package/resources/assets/scss/legacy/images/password-meter.png +0 -0
  936. package/resources/assets/scss/legacy/primeng.min.css +1 -0
  937. package/resources/assets/scss/overlay-panel/overlay-panel.scss +59 -0
  938. package/resources/assets/scss/pages/app-exceptions.scss +65 -0
  939. package/resources/assets/scss/prime-grid/_grid.scss +607 -0
  940. package/resources/assets/scss/smz-contents.scss +101 -0
  941. package/resources/assets/scss/smz-dialogs.scss +5 -0
  942. package/resources/assets/scss/smz-dock.scss +1 -0
  943. package/resources/assets/scss/smz-forms.scss +1 -0
  944. package/resources/assets/scss/smz-prime-fix.scss +4 -0
  945. package/resources/assets/scss/smz-tables.scss +195 -0
  946. package/resources/assets/scss/smz-trees.scss +3 -0
  947. package/resources/assets/scss/smz-ui.scss +41 -0
  948. package/resources/assets/scss/smz-vendors.scss +0 -0
  949. package/resources/assets/scss/styles-legacy.scss +76 -0
  950. package/resources/assets/scss/styles.scss +52 -0
  951. package/resources/assets/themes/arya-blue/fonts/Inter-italic.var.woff2 +0 -0
  952. package/resources/assets/themes/arya-blue/fonts/Inter-roman.var.woff2 +0 -0
  953. package/resources/assets/themes/arya-blue/theme.css +6310 -0
  954. package/resources/assets/themes/arya-green/fonts/Inter-italic.var.woff2 +0 -0
  955. package/resources/assets/themes/arya-green/fonts/Inter-roman.var.woff2 +0 -0
  956. package/resources/assets/themes/arya-green/theme.css +6310 -0
  957. package/resources/assets/themes/arya-orange/fonts/Inter-italic.var.woff2 +0 -0
  958. package/resources/assets/themes/arya-orange/fonts/Inter-roman.var.woff2 +0 -0
  959. package/resources/assets/themes/arya-orange/theme.css +6310 -0
  960. package/resources/assets/themes/arya-purple/fonts/Inter-italic.var.woff2 +0 -0
  961. package/resources/assets/themes/arya-purple/fonts/Inter-roman.var.woff2 +0 -0
  962. package/resources/assets/themes/arya-purple/theme.css +6310 -0
  963. package/resources/assets/themes/aura-dark-amber/fonts/Inter-italic.var.woff2 +0 -0
  964. package/resources/assets/themes/aura-dark-amber/fonts/Inter-roman.var.woff2 +0 -0
  965. package/resources/assets/themes/aura-dark-amber/theme.css +7722 -0
  966. package/resources/assets/themes/aura-dark-blue/fonts/Inter-italic.var.woff2 +0 -0
  967. package/resources/assets/themes/aura-dark-blue/fonts/Inter-roman.var.woff2 +0 -0
  968. package/resources/assets/themes/aura-dark-blue/theme.css +7722 -0
  969. package/resources/assets/themes/aura-dark-cyan/fonts/Inter-italic.var.woff2 +0 -0
  970. package/resources/assets/themes/aura-dark-cyan/fonts/Inter-roman.var.woff2 +0 -0
  971. package/resources/assets/themes/aura-dark-cyan/theme.css +7722 -0
  972. package/resources/assets/themes/aura-dark-green/fonts/Inter-italic.var.woff2 +0 -0
  973. package/resources/assets/themes/aura-dark-green/fonts/Inter-roman.var.woff2 +0 -0
  974. package/resources/assets/themes/aura-dark-green/theme.css +7722 -0
  975. package/resources/assets/themes/aura-dark-indigo/fonts/Inter-italic.var.woff2 +0 -0
  976. package/resources/assets/themes/aura-dark-indigo/fonts/Inter-roman.var.woff2 +0 -0
  977. package/resources/assets/themes/aura-dark-indigo/theme.css +7722 -0
  978. package/resources/assets/themes/aura-dark-lime/fonts/Inter-italic.var.woff2 +0 -0
  979. package/resources/assets/themes/aura-dark-lime/fonts/Inter-roman.var.woff2 +0 -0
  980. package/resources/assets/themes/aura-dark-lime/theme.css +7722 -0
  981. package/resources/assets/themes/aura-dark-noir/fonts/Inter-italic.var.woff2 +0 -0
  982. package/resources/assets/themes/aura-dark-noir/fonts/Inter-roman.var.woff2 +0 -0
  983. package/resources/assets/themes/aura-dark-noir/theme.css +7722 -0
  984. package/resources/assets/themes/aura-dark-pink/fonts/Inter-italic.var.woff2 +0 -0
  985. package/resources/assets/themes/aura-dark-pink/fonts/Inter-roman.var.woff2 +0 -0
  986. package/resources/assets/themes/aura-dark-pink/theme.css +7722 -0
  987. package/resources/assets/themes/aura-dark-purple/fonts/Inter-italic.var.woff2 +0 -0
  988. package/resources/assets/themes/aura-dark-purple/fonts/Inter-roman.var.woff2 +0 -0
  989. package/resources/assets/themes/aura-dark-purple/theme.css +7722 -0
  990. package/resources/assets/themes/aura-dark-teal/fonts/Inter-italic.var.woff2 +0 -0
  991. package/resources/assets/themes/aura-dark-teal/fonts/Inter-roman.var.woff2 +0 -0
  992. package/resources/assets/themes/aura-dark-teal/theme.css +7722 -0
  993. package/resources/assets/themes/aura-light-amber/fonts/Inter-italic.var.woff2 +0 -0
  994. package/resources/assets/themes/aura-light-amber/fonts/Inter-roman.var.woff2 +0 -0
  995. package/resources/assets/themes/aura-light-amber/theme.css +7723 -0
  996. package/resources/assets/themes/aura-light-blue/fonts/Inter-italic.var.woff2 +0 -0
  997. package/resources/assets/themes/aura-light-blue/fonts/Inter-roman.var.woff2 +0 -0
  998. package/resources/assets/themes/aura-light-blue/theme.css +7723 -0
  999. package/resources/assets/themes/aura-light-cyan/fonts/Inter-italic.var.woff2 +0 -0
  1000. package/resources/assets/themes/aura-light-cyan/fonts/Inter-roman.var.woff2 +0 -0
  1001. package/resources/assets/themes/aura-light-cyan/theme.css +7723 -0
  1002. package/resources/assets/themes/aura-light-green/fonts/Inter-italic.var.woff2 +0 -0
  1003. package/resources/assets/themes/aura-light-green/fonts/Inter-roman.var.woff2 +0 -0
  1004. package/resources/assets/themes/aura-light-green/theme.css +7723 -0
  1005. package/resources/assets/themes/aura-light-indigo/fonts/Inter-italic.var.woff2 +0 -0
  1006. package/resources/assets/themes/aura-light-indigo/fonts/Inter-roman.var.woff2 +0 -0
  1007. package/resources/assets/themes/aura-light-indigo/theme.css +7723 -0
  1008. package/resources/assets/themes/aura-light-lime/fonts/Inter-italic.var.woff2 +0 -0
  1009. package/resources/assets/themes/aura-light-lime/fonts/Inter-roman.var.woff2 +0 -0
  1010. package/resources/assets/themes/aura-light-lime/theme.css +7723 -0
  1011. package/resources/assets/themes/aura-light-noir/fonts/Inter-italic.var.woff2 +0 -0
  1012. package/resources/assets/themes/aura-light-noir/fonts/Inter-roman.var.woff2 +0 -0
  1013. package/resources/assets/themes/aura-light-noir/theme.css +7731 -0
  1014. package/resources/assets/themes/aura-light-pink/fonts/Inter-italic.var.woff2 +0 -0
  1015. package/resources/assets/themes/aura-light-pink/fonts/Inter-roman.var.woff2 +0 -0
  1016. package/resources/assets/themes/aura-light-pink/theme.css +7723 -0
  1017. package/resources/assets/themes/aura-light-purple/fonts/Inter-italic.var.woff2 +0 -0
  1018. package/resources/assets/themes/aura-light-purple/fonts/Inter-roman.var.woff2 +0 -0
  1019. package/resources/assets/themes/aura-light-purple/theme.css +7723 -0
  1020. package/resources/assets/themes/aura-light-teal/fonts/Inter-italic.var.woff2 +0 -0
  1021. package/resources/assets/themes/aura-light-teal/fonts/Inter-roman.var.woff2 +0 -0
  1022. package/resources/assets/themes/aura-light-teal/theme.css +7723 -0
  1023. package/resources/assets/themes/bootstrap4-dark-blue/theme.css +6304 -0
  1024. package/resources/assets/themes/bootstrap4-dark-purple/theme.css +6304 -0
  1025. package/resources/assets/themes/bootstrap4-light-blue/theme.css +6304 -0
  1026. package/resources/assets/themes/bootstrap4-light-purple/theme.css +6304 -0
  1027. package/resources/assets/themes/fluent-light/theme.css +6439 -0
  1028. package/resources/assets/themes/lara-dark-amber/fonts/Inter-italic.var.woff2 +0 -0
  1029. package/resources/assets/themes/lara-dark-amber/fonts/Inter-roman.var.woff2 +0 -0
  1030. package/resources/assets/themes/lara-dark-amber/theme.css +6404 -0
  1031. package/resources/assets/themes/lara-dark-blue/fonts/Inter-italic.var.woff2 +0 -0
  1032. package/resources/assets/themes/lara-dark-blue/fonts/Inter-roman.var.woff2 +0 -0
  1033. package/resources/assets/themes/lara-dark-blue/theme.css +6404 -0
  1034. package/resources/assets/themes/lara-dark-cyan/fonts/Inter-italic.var.woff2 +0 -0
  1035. package/resources/assets/themes/lara-dark-cyan/fonts/Inter-roman.var.woff2 +0 -0
  1036. package/resources/assets/themes/lara-dark-cyan/theme.css +6404 -0
  1037. package/resources/assets/themes/lara-dark-green/fonts/Inter-italic.var.woff2 +0 -0
  1038. package/resources/assets/themes/lara-dark-green/fonts/Inter-roman.var.woff2 +0 -0
  1039. package/resources/assets/themes/lara-dark-green/theme.css +6404 -0
  1040. package/resources/assets/themes/lara-dark-indigo/fonts/Inter-italic.var.woff2 +0 -0
  1041. package/resources/assets/themes/lara-dark-indigo/fonts/Inter-roman.var.woff2 +0 -0
  1042. package/resources/assets/themes/lara-dark-indigo/theme.css +6404 -0
  1043. package/resources/assets/themes/lara-dark-pink/fonts/Inter-italic.var.woff2 +0 -0
  1044. package/resources/assets/themes/lara-dark-pink/fonts/Inter-roman.var.woff2 +0 -0
  1045. package/resources/assets/themes/lara-dark-pink/theme.css +6404 -0
  1046. package/resources/assets/themes/lara-dark-purple/fonts/Inter-italic.var.woff2 +0 -0
  1047. package/resources/assets/themes/lara-dark-purple/fonts/Inter-roman.var.woff2 +0 -0
  1048. package/resources/assets/themes/lara-dark-purple/theme.css +6404 -0
  1049. package/resources/assets/themes/lara-dark-teal/fonts/Inter-italic.var.woff2 +0 -0
  1050. package/resources/assets/themes/lara-dark-teal/fonts/Inter-roman.var.woff2 +0 -0
  1051. package/resources/assets/themes/lara-dark-teal/theme.css +6404 -0
  1052. package/resources/assets/themes/lara-light-amber/fonts/Inter-italic.var.woff2 +0 -0
  1053. package/resources/assets/themes/lara-light-amber/fonts/Inter-roman.var.woff2 +0 -0
  1054. package/resources/assets/themes/lara-light-amber/theme.css +6340 -0
  1055. package/resources/assets/themes/lara-light-blue/fonts/Inter-italic.var.woff2 +0 -0
  1056. package/resources/assets/themes/lara-light-blue/fonts/Inter-roman.var.woff2 +0 -0
  1057. package/resources/assets/themes/lara-light-blue/theme.css +6340 -0
  1058. package/resources/assets/themes/lara-light-cyan/fonts/Inter-italic.var.woff2 +0 -0
  1059. package/resources/assets/themes/lara-light-cyan/fonts/Inter-roman.var.woff2 +0 -0
  1060. package/resources/assets/themes/lara-light-cyan/theme.css +6340 -0
  1061. package/resources/assets/themes/lara-light-green/fonts/Inter-italic.var.woff2 +0 -0
  1062. package/resources/assets/themes/lara-light-green/fonts/Inter-roman.var.woff2 +0 -0
  1063. package/resources/assets/themes/lara-light-green/theme.css +6340 -0
  1064. package/resources/assets/themes/lara-light-indigo/fonts/Inter-italic.var.woff2 +0 -0
  1065. package/resources/assets/themes/lara-light-indigo/fonts/Inter-roman.var.woff2 +0 -0
  1066. package/resources/assets/themes/lara-light-indigo/theme.css +6340 -0
  1067. package/resources/assets/themes/lara-light-pink/fonts/Inter-italic.var.woff2 +0 -0
  1068. package/resources/assets/themes/lara-light-pink/fonts/Inter-roman.var.woff2 +0 -0
  1069. package/resources/assets/themes/lara-light-pink/theme.css +6340 -0
  1070. package/resources/assets/themes/lara-light-purple/fonts/Inter-italic.var.woff2 +0 -0
  1071. package/resources/assets/themes/lara-light-purple/fonts/Inter-roman.var.woff2 +0 -0
  1072. package/resources/assets/themes/lara-light-purple/theme.css +6340 -0
  1073. package/resources/assets/themes/lara-light-teal/fonts/Inter-italic.var.woff2 +0 -0
  1074. package/resources/assets/themes/lara-light-teal/fonts/Inter-roman.var.woff2 +0 -0
  1075. package/resources/assets/themes/lara-light-teal/theme.css +6340 -0
  1076. package/resources/assets/themes/luna-amber/theme.css +6255 -0
  1077. package/resources/assets/themes/luna-blue/theme.css +6255 -0
  1078. package/resources/assets/themes/luna-green/theme.css +6255 -0
  1079. package/resources/assets/themes/luna-pink/theme.css +6255 -0
  1080. package/resources/assets/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1081. package/resources/assets/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1082. package/resources/assets/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1083. package/resources/assets/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1084. package/resources/assets/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1085. package/resources/assets/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1086. package/resources/assets/themes/md-dark-deeppurple/theme.css +7915 -0
  1087. package/resources/assets/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1088. package/resources/assets/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1089. package/resources/assets/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1090. package/resources/assets/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1091. package/resources/assets/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1092. package/resources/assets/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1093. package/resources/assets/themes/md-dark-indigo/theme.css +7915 -0
  1094. package/resources/assets/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1095. package/resources/assets/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1096. package/resources/assets/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1097. package/resources/assets/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1098. package/resources/assets/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1099. package/resources/assets/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1100. package/resources/assets/themes/md-light-deeppurple/theme.css +7915 -0
  1101. package/resources/assets/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1102. package/resources/assets/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1103. package/resources/assets/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1104. package/resources/assets/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1105. package/resources/assets/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1106. package/resources/assets/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1107. package/resources/assets/themes/md-light-indigo/theme.css +7915 -0
  1108. package/resources/assets/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1109. package/resources/assets/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1110. package/resources/assets/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1111. package/resources/assets/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1112. package/resources/assets/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1113. package/resources/assets/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1114. package/resources/assets/themes/mdc-dark-deeppurple/theme.css +7915 -0
  1115. package/resources/assets/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1116. package/resources/assets/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1117. package/resources/assets/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1118. package/resources/assets/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1119. package/resources/assets/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1120. package/resources/assets/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1121. package/resources/assets/themes/mdc-dark-indigo/theme.css +7915 -0
  1122. package/resources/assets/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1123. package/resources/assets/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1124. package/resources/assets/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1125. package/resources/assets/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1126. package/resources/assets/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1127. package/resources/assets/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1128. package/resources/assets/themes/mdc-light-deeppurple/theme.css +7915 -0
  1129. package/resources/assets/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  1130. package/resources/assets/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  1131. package/resources/assets/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff +0 -0
  1132. package/resources/assets/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 +0 -0
  1133. package/resources/assets/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  1134. package/resources/assets/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  1135. package/resources/assets/themes/mdc-light-indigo/theme.css +7915 -0
  1136. package/resources/assets/themes/mira/fonts/Inter-Bold.woff +0 -0
  1137. package/resources/assets/themes/mira/fonts/Inter-Bold.woff2 +0 -0
  1138. package/resources/assets/themes/mira/fonts/Inter-Medium.woff +0 -0
  1139. package/resources/assets/themes/mira/fonts/Inter-Medium.woff2 +0 -0
  1140. package/resources/assets/themes/mira/fonts/Inter-Regular.woff +0 -0
  1141. package/resources/assets/themes/mira/fonts/Inter-Regular.woff2 +0 -0
  1142. package/resources/assets/themes/mira/fonts/Inter-SemiBold.woff +0 -0
  1143. package/resources/assets/themes/mira/fonts/Inter-SemiBold.woff2 +0 -0
  1144. package/resources/assets/themes/mira/theme.css +6517 -0
  1145. package/resources/assets/themes/nano/theme.css +6290 -0
  1146. package/resources/assets/themes/nova/theme.css +6270 -0
  1147. package/resources/assets/themes/nova-accent/theme.css +6280 -0
  1148. package/resources/assets/themes/nova-alt/theme.css +6282 -0
  1149. package/resources/assets/themes/rhea/theme.css +6258 -0
  1150. package/resources/assets/themes/saga-blue/theme.css +6307 -0
  1151. package/resources/assets/themes/saga-green/theme.css +6307 -0
  1152. package/resources/assets/themes/saga-orange/theme.css +6307 -0
  1153. package/resources/assets/themes/saga-purple/theme.css +6307 -0
  1154. package/resources/assets/themes/soho-dark/fonts/lato-v17-latin-ext_latin-300.woff +0 -0
  1155. package/resources/assets/themes/soho-dark/fonts/lato-v17-latin-ext_latin-300.woff2 +0 -0
  1156. package/resources/assets/themes/soho-dark/fonts/lato-v17-latin-ext_latin-700.woff +0 -0
  1157. package/resources/assets/themes/soho-dark/fonts/lato-v17-latin-ext_latin-700.woff2 +0 -0
  1158. package/resources/assets/themes/soho-dark/fonts/lato-v17-latin-ext_latin-regular.woff +0 -0
  1159. package/resources/assets/themes/soho-dark/fonts/lato-v17-latin-ext_latin-regular.woff2 +0 -0
  1160. package/resources/assets/themes/soho-dark/theme.css +6283 -0
  1161. package/resources/assets/themes/soho-light/fonts/lato-v17-latin-ext_latin-300.woff +0 -0
  1162. package/resources/assets/themes/soho-light/fonts/lato-v17-latin-ext_latin-300.woff2 +0 -0
  1163. package/resources/assets/themes/soho-light/fonts/lato-v17-latin-ext_latin-700.woff +0 -0
  1164. package/resources/assets/themes/soho-light/fonts/lato-v17-latin-ext_latin-700.woff2 +0 -0
  1165. package/resources/assets/themes/soho-light/fonts/lato-v17-latin-ext_latin-regular.woff +0 -0
  1166. package/resources/assets/themes/soho-light/fonts/lato-v17-latin-ext_latin-regular.woff2 +0 -0
  1167. package/resources/assets/themes/soho-light/theme.css +6337 -0
  1168. package/resources/assets/themes/tailwind-light/fonts/Inter-Bold.woff +0 -0
  1169. package/resources/assets/themes/tailwind-light/fonts/Inter-Bold.woff2 +0 -0
  1170. package/resources/assets/themes/tailwind-light/fonts/Inter-Light.woff +0 -0
  1171. package/resources/assets/themes/tailwind-light/fonts/Inter-Light.woff2 +0 -0
  1172. package/resources/assets/themes/tailwind-light/fonts/Inter-Medium.woff +0 -0
  1173. package/resources/assets/themes/tailwind-light/fonts/Inter-Medium.woff2 +0 -0
  1174. package/resources/assets/themes/tailwind-light/fonts/Inter-Regular.woff +0 -0
  1175. package/resources/assets/themes/tailwind-light/fonts/Inter-Regular.woff2 +0 -0
  1176. package/resources/assets/themes/tailwind-light/fonts/Inter-SemiBold.woff +0 -0
  1177. package/resources/assets/themes/tailwind-light/fonts/Inter-SemiBold.woff2 +0 -0
  1178. package/resources/assets/themes/tailwind-light/theme.css +6403 -0
  1179. package/resources/assets/themes/vela-blue/theme.css +6310 -0
  1180. package/resources/assets/themes/vela-green/theme.css +6310 -0
  1181. package/resources/assets/themes/vela-orange/theme.css +6310 -0
  1182. package/resources/assets/themes/vela-purple/theme.css +6310 -0
  1183. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-300.woff +0 -0
  1184. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-300.woff2 +0 -0
  1185. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-600.woff +0 -0
  1186. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-600.woff2 +0 -0
  1187. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-700.woff +0 -0
  1188. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-700.woff2 +0 -0
  1189. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-regular.woff +0 -0
  1190. package/resources/assets/themes/viva-dark/fonts/poppins-v15-latin-ext_latin-regular.woff2 +0 -0
  1191. package/resources/assets/themes/viva-dark/theme.css +6444 -0
  1192. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-300.woff +0 -0
  1193. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-300.woff2 +0 -0
  1194. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-600.woff +0 -0
  1195. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-600.woff2 +0 -0
  1196. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-700.woff +0 -0
  1197. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-700.woff2 +0 -0
  1198. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-regular.woff +0 -0
  1199. package/resources/assets/themes/viva-light/fonts/poppins-v15-latin-ext_latin-regular.woff2 +0 -0
  1200. package/resources/assets/themes/viva-light/theme.css +6445 -0
  1201. package/src/lib/modules/prime/overlaypanel/index.d.ts +5 -0
  1202. package/src/lib/modules/prime/overlaypanel/overlaypanel.d.ts +77 -0
  1203. package/src/lib/modules/prime/overlaypanel/public_api.d.ts +1 -0
  1204. package/tailwind.preset.js +45 -0
@@ -0,0 +1,2 @@
1
+ import { SmzExcelState } from './smz-excel-table';
2
+ export declare const SmzExcelMockData: SmzExcelState;
@@ -0,0 +1,76 @@
1
+ import { SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions } from './smz-excel-definitions';
2
+ export interface SmzExcelsDetails {
3
+ file: string;
4
+ fileName: string;
5
+ fileExtension: string;
6
+ }
7
+ export interface SmzExcelState {
8
+ isRequestLimitExceeded: boolean;
9
+ isDebug: boolean;
10
+ workbookModel: SmzExcelWorkbook;
11
+ }
12
+ export interface SmzExcelWorkbook {
13
+ fileName: string;
14
+ title: string;
15
+ author: string;
16
+ company: string;
17
+ comments: string;
18
+ globalColumnBehavior: SmzExcelGlobalColumnBehavior;
19
+ watermark: SmzExcelWatermarkSheet;
20
+ tables: SmzExcelTableSheet[];
21
+ charts: SmzExcelChartSheet[];
22
+ }
23
+ export interface SmzExcelGlobalColumnBehavior {
24
+ date: {
25
+ format: string;
26
+ };
27
+ hyperlink: {
28
+ isHtml: boolean;
29
+ };
30
+ newLineSeparator: string;
31
+ }
32
+ export interface SmzExcelWatermarkSheet {
33
+ text: string;
34
+ fontColor: string;
35
+ font: SmzExcelFontDefinitions;
36
+ fontSize: number;
37
+ rotationAngle: number;
38
+ }
39
+ export interface SmzExcelBaseSheet {
40
+ name: string;
41
+ tabColor: string;
42
+ sheetType: SmzExcelTypeDefinitions;
43
+ tabIndex: number;
44
+ }
45
+ export interface SmzExcelTableSheet extends SmzExcelBaseSheet {
46
+ sheetType: SmzExcelTypeDefinitions.Table;
47
+ header: SmzExcelHeader;
48
+ columns: SmzExcelColumn[];
49
+ theme: SmzExcelThemeDefinitions;
50
+ }
51
+ export interface SmzExcelChartSheet extends SmzExcelBaseSheet {
52
+ sheetType: SmzExcelTypeDefinitions.Chart;
53
+ }
54
+ export interface SmzExcelHeader {
55
+ data: string[];
56
+ rowHeight: number;
57
+ style: SmzExcelStyle;
58
+ }
59
+ export interface SmzExcelColumn {
60
+ data: string[];
61
+ style: SmzExcelStyle;
62
+ dataType: SmzExcelDataDefinitions;
63
+ dataFormat?: string;
64
+ maxWidth: number;
65
+ hasSubTotal: boolean;
66
+ isMultilined: boolean;
67
+ newLineSeparator: string;
68
+ }
69
+ export interface SmzExcelStyle {
70
+ font: SmzExcelFontDefinitions;
71
+ fontSize: number;
72
+ bold: boolean;
73
+ italic: boolean;
74
+ underline: boolean;
75
+ fontColor: string;
76
+ }
@@ -0,0 +1,3 @@
1
+ export * from './models/smz-excel-table';
2
+ export * from './models/smz-excel-definitions';
3
+ export * from './services/smz-excel-service';
@@ -0,0 +1,14 @@
1
+ import { Actions, Store } from '@ngxs/store';
2
+ import { SmzExcelState } from '../models/smz-excel-table';
3
+ import { ExcelsService } from '../../../state/ui/excels/excels.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SmzExcelService {
6
+ private store;
7
+ private actions$;
8
+ private excelsService;
9
+ constructor(store: Store, actions$: Actions, excelsService: ExcelsService);
10
+ generate(data: SmzExcelState): void;
11
+ mock(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmzExcelService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<SmzExcelService>;
14
+ }
@@ -0,0 +1,4 @@
1
+ export * from './smz-export-dialog.module';
2
+ export * from './smz-export-dialog.component';
3
+ export * from './smz-export-dialog.model';
4
+ export * from './smz-export-dialog.service';
@@ -0,0 +1,12 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { Store } from '@ngxs/store';
3
+ import { SmzExportDialogService } from './smz-export-dialog.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SmzExportDialogComponent implements OnInit {
6
+ private store;
7
+ private exporter;
8
+ constructor(store: Store, exporter: SmzExportDialogService);
9
+ ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmzExportDialogComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmzExportDialogComponent, "smz-export-dialog", never, {}, {}, never, never, false, never>;
12
+ }
@@ -0,0 +1,16 @@
1
+ import { SmzExportableContentType } from '../smz-tables/models/content-types';
2
+ export interface SmzExportDialogData {
3
+ title: string;
4
+ filename: string;
5
+ items: any[];
6
+ columns: SmzExportableColumn[];
7
+ }
8
+ export interface SmzExportableColumn {
9
+ field: string;
10
+ header: string;
11
+ callback: (data: any, row: any, index: number) => any;
12
+ type: SmzExportableContentType;
13
+ isMultilined: boolean;
14
+ newLineSeparator: string;
15
+ dataFormat: string;
16
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./smz-export-dialog.component";
3
+ export declare class SmzExportDialogModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmzExportDialogModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SmzExportDialogModule, [typeof i1.SmzExportDialogComponent], never, [typeof i1.SmzExportDialogComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<SmzExportDialogModule>;
7
+ }
@@ -0,0 +1,16 @@
1
+ import { SmzDialogsService } from '../smz-dialogs/services/smz-dialogs.service';
2
+ import { SmzExportDialogData } from './smz-export-dialog.model';
3
+ import { Store } from '@ngxs/store';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SmzExportDialogService {
6
+ private dialogs;
7
+ private store;
8
+ constructor(dialogs: SmzDialogsService, store: Store);
9
+ showExportDocumentDialog(data: SmzExportDialogData): void;
10
+ private convertItem;
11
+ private buildDocumentState;
12
+ private buildTableState;
13
+ private resolveData;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmzExportDialogService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<SmzExportDialogService>;
16
+ }
@@ -0,0 +1,24 @@
1
+ import { OnInit, ChangeDetectorRef } from '@angular/core';
2
+ import { FaqDetails } from '../../models/faqs';
3
+ import { FaqsManagerService } from '../../services/faqs-manager.service';
4
+ import { SmzForm } from '../../../smz-forms/models/smz-forms';
5
+ import { SmzDialogsService } from '../../../smz-dialogs/services/smz-dialogs.service';
6
+ import { FormGroupComponent } from '../../../smz-forms/features/form-group/form-group.component';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FaqsContentComponent implements OnInit {
9
+ manager: FaqsManagerService;
10
+ private cdf;
11
+ dialogs: SmzDialogsService;
12
+ items: FaqDetails[];
13
+ formConfig: SmzForm<never>;
14
+ hasUnsavedForm: boolean;
15
+ keywords: string;
16
+ constructor(manager: FaqsManagerService, cdf: ChangeDetectorRef, dialogs: SmzDialogsService);
17
+ ngOnInit(): void;
18
+ setupForm(): void;
19
+ create(formComponent: FormGroupComponent): void;
20
+ update(item: FaqDetails): void;
21
+ delete(data: FaqDetails): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<FaqsContentComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<FaqsContentComponent, "smz-faqs-content", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
24
+ }
@@ -0,0 +1,19 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { FaqsManagerService } from '../../services/faqs-manager.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SmzFaqsComponent implements OnInit {
6
+ private router;
7
+ manager: FaqsManagerService;
8
+ expanded: boolean;
9
+ verticalPosition: 'top' | 'middle' | 'bottom';
10
+ activated: boolean;
11
+ constructor(router: Router, manager: FaqsManagerService);
12
+ ngOnInit(): void;
13
+ setupRouterListener(): void;
14
+ private getActivatedRoute;
15
+ toggle(): void;
16
+ private loadData;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmzFaqsComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmzFaqsComponent, "smz-faqs", never, { "expanded": { "alias": "expanded"; "required": false; }; "verticalPosition": { "alias": "verticalPosition"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { SmzDialog } from '../../smz-dialogs/models/smz-dialogs';
2
+ import { FaqDetails } from '../models/faqs';
3
+ export declare namespace FaqsDialogs {
4
+ function getDialog(data: FaqDetails, callback: (data: any) => void): SmzDialog<never>;
5
+ }
@@ -0,0 +1,7 @@
1
+ import { SmzDialogFeature } from '../../smz-dialogs/models/smz-dialogs';
2
+ import { SmzFormGroup } from '../../smz-forms/models/smz-forms';
3
+ import { FaqDetails } from '../models/faqs';
4
+ export declare namespace FaqsForms {
5
+ function getFormFeature(data?: FaqDetails): SmzDialogFeature;
6
+ function getFaqsFormGroup(data?: FaqDetails): SmzFormGroup;
7
+ }
@@ -0,0 +1,24 @@
1
+ export interface FaqsRouterConfig {
2
+ enabled: boolean;
3
+ tag: string;
4
+ }
5
+ export interface FaqDetails {
6
+ id: string;
7
+ question: string;
8
+ answer: string;
9
+ }
10
+ export interface FaqUpdate {
11
+ id: string;
12
+ tag: string;
13
+ question: string;
14
+ answer: string;
15
+ }
16
+ export interface FaqCreation {
17
+ tag: string;
18
+ question: string;
19
+ answer: string;
20
+ }
21
+ export interface DbData<T> {
22
+ items: T;
23
+ lastUpdated: Date | null;
24
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class HighlightSearch implements PipeTransform {
4
+ transform(value: any, keywords: string): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<HighlightSearch, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<HighlightSearch, "highlight", false>;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafeHtmlPipe implements PipeTransform {
5
+ private sanitizer;
6
+ constructor(sanitizer: DomSanitizer);
7
+ transform(data: any): import("@angular/platform-browser").SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", false>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { FaqDetails } from '../models/faqs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SearchFaqsPipe implements PipeTransform {
5
+ constructor();
6
+ transform(items: FaqDetails[], keywords: string): any;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchFaqsPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<SearchFaqsPipe, "searchFaqs", false>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<SearchFaqsPipe>;
10
+ }
@@ -0,0 +1,4 @@
1
+ export * from './smz-faqs.module';
2
+ export * from './featured/faqs/smz-faqs.component';
3
+ export * from './models/faqs';
4
+ export * from './smz-faqs.config';
@@ -0,0 +1,17 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { FaqDetails, FaqCreation, FaqUpdate } from '../models/faqs';
3
+ import { Observable } from 'rxjs';
4
+ import { SmzFaqsConfig } from '../smz-faqs.config';
5
+ import { BaseApiService } from '../../rbk-utils/http/base-api.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FaqsApiService extends BaseApiService {
8
+ private http;
9
+ private config;
10
+ constructor(http: HttpClient, config: SmzFaqsConfig);
11
+ all(tag: string, loaderOverride?: boolean): Observable<FaqDetails[]>;
12
+ create(data: FaqCreation): Observable<FaqDetails>;
13
+ update(data: FaqUpdate): Observable<FaqDetails>;
14
+ delete(id: string): Observable<void>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<FaqsApiService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<FaqsApiService>;
17
+ }
@@ -0,0 +1,18 @@
1
+ import { FaqDetails, FaqCreation, FaqUpdate, DbData } from '../models/faqs';
2
+ import { Observable } from 'rxjs';
3
+ import { Store } from '@ngxs/store';
4
+ import { SmzFaqsConfig } from '../smz-faqs.config';
5
+ import * as i0 from "@angular/core";
6
+ export declare class FaqsManagerService {
7
+ private store;
8
+ config: SmzFaqsConfig;
9
+ dbData$: Observable<DbData<FaqDetails[]>>;
10
+ currentTag: string;
11
+ constructor(store: Store, config: SmzFaqsConfig);
12
+ loadTag(): void;
13
+ create(data: FaqCreation): void;
14
+ update(data: FaqUpdate): void;
15
+ delete(id: string): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FaqsManagerService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<FaqsManagerService>;
18
+ }
@@ -0,0 +1,30 @@
1
+ export declare class SmzFaqsConfig {
2
+ databaseCacheTimeout: number;
3
+ creationClaim: string;
4
+ endpoint: string;
5
+ placeholders: {
6
+ /** Como posso ajuda-lo ? */
7
+ searchTitle: string;
8
+ /** Digite palavras-chave para buscar respostas */
9
+ searchPlaceholder: string;
10
+ /** Peguntas Frequentes ? */
11
+ contentTitle: string;
12
+ /** Adicionar Conhecimento ? */
13
+ creationTitle: string;
14
+ /** Nenhum conteúdo foi encontrado ? */
15
+ emptyMessage: string;
16
+ /** Seja o primeiro a criar um conteúdo. ? */
17
+ creationMessage: string;
18
+ /** Caso precise, procure o suporte ou o administrador do seu sistema. ? */
19
+ supportMessage: string;
20
+ /** Refine sua busca e tente novamente. */
21
+ noSearchResultsMessage: string;
22
+ };
23
+ layouts: {
24
+ positions: {
25
+ 'top': string;
26
+ 'middle': string;
27
+ 'bottom': string;
28
+ };
29
+ };
30
+ }
@@ -0,0 +1,24 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import { SmzFaqsConfig } from './smz-faqs.config';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./featured/faqs/smz-faqs.component";
5
+ import * as i2 from "./components/faqs-content/faqs-content.component";
6
+ import * as i3 from "./pipes/search-faqs.pipe";
7
+ import * as i4 from "./pipes/highlight.pipe";
8
+ import * as i5 from "./pipes/safe-html.pipe";
9
+ import * as i6 from "@angular/common";
10
+ import * as i7 from "../smz-messages/smz-messages.module";
11
+ import * as i8 from "../smz-forms/smz-forms.module";
12
+ import * as i9 from "primeng/button";
13
+ import * as i10 from "primeng/accordion";
14
+ import * as i11 from "primeng/inputtext";
15
+ import * as i12 from "@angular/forms";
16
+ import * as i13 from "@ngxs/store";
17
+ import * as i14 from "../rbk-utils/auth/guards/access-control.module";
18
+ export declare const ngxsModuleForFeatureFaqsDbState: ModuleWithProviders<import("@ngxs/store").ɵNgxsFeatureModule>;
19
+ export declare class NgxSmzFaqsModule {
20
+ static forRoot(configuration: SmzFaqsConfig): ModuleWithProviders<NgxSmzFaqsModule>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgxSmzFaqsModule, never>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgxSmzFaqsModule, [typeof i1.SmzFaqsComponent, typeof i2.FaqsContentComponent, typeof i3.SearchFaqsPipe, typeof i4.HighlightSearch, typeof i5.SafeHtmlPipe], [typeof i6.CommonModule, typeof i7.SmzMessagesModule, typeof i8.NgxSmzFormsModule, typeof i9.ButtonModule, typeof i10.AccordionModule, typeof i11.InputTextModule, typeof i12.FormsModule, typeof i13.ɵNgxsFeatureModule, typeof i14.RbkAccessControlModule], [typeof i1.SmzFaqsComponent]>;
23
+ static ɵinj: i0.ɵɵInjectorDeclaration<NgxSmzFaqsModule>;
24
+ }
@@ -0,0 +1,50 @@
1
+ import { FaqDetails, FaqCreation, FaqUpdate } from '../models/faqs';
2
+ export declare namespace FaqsDbActions {
3
+ class LoadAll {
4
+ tag: string;
5
+ forceUpdate: boolean;
6
+ loaderOverride: boolean;
7
+ static readonly type = "[Faqs API] Load All";
8
+ constructor(tag: string, forceUpdate?: boolean, loaderOverride?: boolean);
9
+ }
10
+ class LoadAllSuccess {
11
+ tag: string;
12
+ items: FaqDetails[];
13
+ static readonly type = "[Faqs API] Load All Success";
14
+ constructor(tag: string, items: FaqDetails[]);
15
+ }
16
+ class Create {
17
+ data: FaqCreation;
18
+ static readonly type = "[Faqs API] Create";
19
+ constructor(data: FaqCreation);
20
+ }
21
+ class CreateSuccess {
22
+ data: FaqDetails;
23
+ tag: string;
24
+ static readonly type = "[Faqs API] Create Success";
25
+ constructor(data: FaqDetails, tag: string);
26
+ }
27
+ class Delete {
28
+ id: string;
29
+ tag: string;
30
+ static readonly type = "[Faqs API] Delete";
31
+ constructor(id: string, tag: string);
32
+ }
33
+ class DeleteSuccess {
34
+ id: string;
35
+ tag: string;
36
+ static readonly type = "[Faqs API] Delete Success";
37
+ constructor(id: string, tag: string);
38
+ }
39
+ class Update {
40
+ data: FaqUpdate;
41
+ static readonly type = "[Faqs API] Update";
42
+ constructor(data: FaqUpdate);
43
+ }
44
+ class UpdateSuccess {
45
+ data: FaqDetails;
46
+ tag: string;
47
+ static readonly type = "[Faqs API] Update Success";
48
+ constructor(data: FaqDetails, tag: string);
49
+ }
50
+ }
@@ -0,0 +1,3 @@
1
+ export declare class FaqsDbSelector {
2
+ static all(id: string): any;
3
+ }
@@ -0,0 +1,28 @@
1
+ import { StateContext } from '@ngxs/store';
2
+ import { Observable } from 'rxjs';
3
+ import { FaqsDbActions } from './faqs.actions';
4
+ import { DbData, FaqDetails } from '../models/faqs';
5
+ import { FaqsApiService } from '../services/faqs-api.service';
6
+ import { SmzFaqsConfig } from '../smz-faqs.config';
7
+ import * as i0 from "@angular/core";
8
+ export interface FaqsDbStateModel {
9
+ data: {
10
+ [key: string]: DbData<FaqDetails[]>;
11
+ };
12
+ }
13
+ export declare const getInitialState: () => FaqsDbStateModel;
14
+ export declare class FaqsDbState {
15
+ private apiService;
16
+ private config;
17
+ constructor(apiService: FaqsApiService, config: SmzFaqsConfig);
18
+ onLoadAll$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.LoadAll): Observable<FaqDetails[]>;
19
+ onLoadAllSuccess(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.LoadAllSuccess): void;
20
+ create$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.Create): Observable<FaqDetails>;
21
+ delete$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.Delete): Observable<void>;
22
+ update$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.Update): Observable<FaqDetails>;
23
+ createSuccess$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.CreateSuccess): void;
24
+ deleteSuccess$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.DeleteSuccess): void;
25
+ updateSuccess$(ctx: StateContext<FaqsDbStateModel>, action: FaqsDbActions.UpdateSuccess): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<FaqsDbState, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<FaqsDbState>;
28
+ }
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { SmzFormsBehaviorsConfig } from '../../models/behaviors';
3
+ import { SmzCalendarControl } from '../../models/control-types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CalendarComponent implements OnInit {
6
+ input: SmzCalendarControl;
7
+ control: any;
8
+ behaviors: SmzFormsBehaviorsConfig;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "smz-calendar", never, { "input": { "alias": "input"; "required": false; }; "control": { "alias": "control"; "required": false; }; "behaviors": { "alias": "behaviors"; "required": false; }; }, {}, never, never, false, never>;
13
+ }
@@ -0,0 +1,19 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { SmzDialogsVisibilityService } from '../../../smz-dialogs/services/smz-dialogs-visibility.service';
3
+ import { SmzFormsBehaviorsConfig } from '../../models/behaviors';
4
+ import { SmzCheckBoxControl } from '../../models/control-types';
5
+ import { SmzFormsVisibilityService } from '../../services/smz-forms-visibility.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CheckBoxComponent implements OnInit {
8
+ formsService: SmzFormsVisibilityService;
9
+ dialogVisibility: SmzDialogsVisibilityService;
10
+ input: SmzCheckBoxControl;
11
+ formId: string;
12
+ control: any;
13
+ behaviors: SmzFormsBehaviorsConfig;
14
+ constructor(formsService: SmzFormsVisibilityService, dialogVisibility: SmzDialogsVisibilityService);
15
+ ngOnInit(): void;
16
+ emitChange(input: SmzCheckBoxControl, formId: string, event: any): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "smz-checkbox", never, { "input": { "alias": "input"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "control": { "alias": "control"; "required": false; }; "behaviors": { "alias": "behaviors"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,11 @@
1
+ import { SmzFormsBehaviorsConfig } from '../../models/behaviors';
2
+ import { SmzCheckBoxGroupControl } from '../../models/control-types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CheckBoxGroupComponent {
5
+ input: SmzCheckBoxGroupControl<any>;
6
+ control: any;
7
+ behaviors: SmzFormsBehaviorsConfig;
8
+ constructor();
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxGroupComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxGroupComponent, "smz-checkbox-group", never, { "input": { "alias": "input"; "required": false; }; "control": { "alias": "control"; "required": false; }; "behaviors": { "alias": "behaviors"; "required": false; }; }, {}, never, never, false, never>;
11
+ }
@@ -0,0 +1,19 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { UntypedFormControl } from '@angular/forms';
3
+ import { SmzFormsBehaviorsConfig } from '../../models/behaviors';
4
+ import { SmzColorPickerControl } from '../../models/control-types';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ColorPickerComponent implements OnInit {
7
+ private readonly destroyRef;
8
+ input: SmzColorPickerControl;
9
+ control: UntypedFormControl;
10
+ behaviors: SmzFormsBehaviorsConfig;
11
+ color: string;
12
+ constructor();
13
+ ngOnInit(): void;
14
+ onPickerChange(event: any): void;
15
+ onInputChange(event: any): void;
16
+ markAsTouched(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "smz-color-picker", never, { "input": { "alias": "input"; "required": false; }; "control": { "alias": "control"; "required": false; }; "behaviors": { "alias": "behaviors"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,22 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { SmzDialogsVisibilityService } from '../../../smz-dialogs/services/smz-dialogs-visibility.service';
3
+ import { SmzFormsBehaviorsConfig } from '../../models/behaviors';
4
+ import { SmzDropDownControl } from '../../models/control-types';
5
+ import { SmzFormsDropdownService } from '../../services/smz-forms-dropdown.service';
6
+ import { SmzFormsVisibilityService } from '../../services/smz-forms-visibility.service';
7
+ import { DropdownChangeEvent } from 'primeng/dropdown';
8
+ import * as i0 from "@angular/core";
9
+ export declare class DropdownComponent implements OnInit {
10
+ dropdownService: SmzFormsDropdownService;
11
+ formsVisibility: SmzFormsVisibilityService;
12
+ dialogVisibility: SmzDialogsVisibilityService;
13
+ input: SmzDropDownControl<any>;
14
+ formId: string;
15
+ control: any;
16
+ behaviors: SmzFormsBehaviorsConfig;
17
+ constructor(dropdownService: SmzFormsDropdownService, formsVisibility: SmzFormsVisibilityService, dialogVisibility: SmzDialogsVisibilityService);
18
+ ngOnInit(): void;
19
+ emitChange(input: SmzDropDownControl<any>, formId: string, event: DropdownChangeEvent): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "smz-dropdown", never, { "input": { "alias": "input"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "control": { "alias": "control"; "required": false; }; "behaviors": { "alias": "behaviors"; "required": false; }; }, {}, never, never, false, never>;
22
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FileNameShortenPipe implements PipeTransform {
4
+ transform(value: string, length: number, separator: string): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileNameShortenPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FileNameShortenPipe, "fileNameShorten", false>;
7
+ }
@@ -0,0 +1,41 @@
1
+ import { EventEmitter, ChangeDetectorRef } from '@angular/core';
2
+ import { SmzFileControl } from '../../models/control-types';
3
+ import { UntypedFormGroup } from '@angular/forms';
4
+ import { SmzFormsBehaviorsConfig } from '../../models/behaviors';
5
+ import { Message } from '../../../../modules/smz-toast/toast';
6
+ import { Store } from '@ngxs/store';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FileUploadComponent {
9
+ cdf: ChangeDetectorRef;
10
+ private store;
11
+ input: SmzFileControl;
12
+ form: UntypedFormGroup;
13
+ control: any;
14
+ behaviors: SmzFormsBehaviorsConfig;
15
+ selectChange: EventEmitter<File[]>;
16
+ errors: Message[];
17
+ files: File[];
18
+ isZoomActive: boolean;
19
+ uploadControl: string;
20
+ constructor(cdf: ChangeDetectorRef, store: Store);
21
+ ngOnInit(): void;
22
+ log(): void;
23
+ applyZoom(): void;
24
+ restoreZoom(): void;
25
+ notAllowed(): void;
26
+ onInputFiles(event: any): void;
27
+ onFilesDropped(event: File[], markAsTouched: boolean, emitEvent: boolean, cdf: ChangeDetectorRef): void;
28
+ clear(emitEvent: boolean): void;
29
+ onFileChange(event: File[], emitEvent: boolean, cdf: ChangeDetectorRef): void;
30
+ private handleFile;
31
+ private handleFileToBase64;
32
+ formatBytes(bytes: any, decimals?: number): string;
33
+ validate(file: File, errors: Message[]): boolean;
34
+ private isFileTypeValid;
35
+ formatSize(bytes: any): string;
36
+ isWildcard(fileType: string): boolean;
37
+ getTypeClass(fileType: string): string;
38
+ getFileExtension(file: File): string;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "smz-file-upload", never, { "input": { "alias": "input"; "required": false; }; "form": { "alias": "form"; "required": false; }; "control": { "alias": "control"; "required": false; }; "behaviors": { "alias": "behaviors"; "required": false; }; }, { "selectChange": "selectChange"; }, never, never, false, never>;
41
+ }