@codetectonics/mantle 0.0.2 → 0.0.4

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 (272) hide show
  1. package/README.md +10 -49
  2. package/bundles/codetectonics-mantle.umd.js +6907 -0
  3. package/bundles/codetectonics-mantle.umd.js.map +1 -0
  4. package/esm2015/codetectonics-mantle.js +5 -0
  5. package/esm2015/lib/components/dashboard/containers/dynamic-dashboard-container/dynamic-dashboard-container.component.js +24 -0
  6. package/esm2015/lib/components/dashboard/containers/plain-dashboard-container/plain-dashboard-container.component.js +35 -0
  7. package/esm2015/lib/components/dashboard/dashboard-card/dashboard-card.component.js +133 -0
  8. package/esm2015/lib/components/dashboard/dashboard-card-search-menu/dashboard-card-search-menu.component.js +55 -0
  9. package/esm2015/lib/components/dashboard/dynamic-dashboard/dynamic-dashboard.component.js +23 -0
  10. package/esm2015/lib/components/dashboard/sections/dashboard-section/dashboard-section.component.js +71 -0
  11. package/esm2015/lib/components/dashboard/widgets/dashboard-info-card/dashboard-info-card.component.js +26 -0
  12. package/esm2015/lib/components/dashboard/widgets/dashboard-table/dashboard-table-datasource.js +30 -0
  13. package/esm2015/lib/components/dashboard/widgets/dashboard-table/dashboard-table.component.js +58 -0
  14. package/esm2015/lib/components/dashboard/widgets/dynamic-chart/dynamic-chart.component.js +85 -0
  15. package/esm2015/lib/components/dashboard/widgets/dynamic-widget-display/dynamic-widget-display.component.js +29 -0
  16. package/esm2015/lib/components/details/containers/accordion-details-container/accordion-details-container.component.js +26 -0
  17. package/esm2015/lib/components/details/containers/dynamic-details-container/dynamic-details-container.component.js +25 -0
  18. package/esm2015/lib/components/details/containers/plain-details-container/plain-details-container.component.js +25 -0
  19. package/esm2015/lib/components/details/dialog-details/dialog-details.component.js +77 -0
  20. package/esm2015/lib/components/details/dialog-nested-details/dialog-nested-details.component.js +40 -0
  21. package/esm2015/lib/components/details/dynamic-details/dynamic-details.component.js +23 -0
  22. package/esm2015/lib/components/details/fields/actions-attribute-display/actions-attribute-display.component.js +27 -0
  23. package/esm2015/lib/components/details/fields/chip-attribute-display/chip-attribute-display.component.js +40 -0
  24. package/esm2015/lib/components/details/fields/dynamic-attribute-display/dynamic-attribute-display.component.js +46 -0
  25. package/esm2015/lib/components/details/fields/file-attribute-display/file-attribute-display.component.js +37 -0
  26. package/esm2015/lib/components/details/fields/image-attribute-display/image-attribute-display.component.js +36 -0
  27. package/esm2015/lib/components/details/fields/link-attribute-display/link-attribute-display.component.js +30 -0
  28. package/esm2015/lib/components/details/fields/markdown-attribute-display/markdown-attribute-display.component.js +21 -0
  29. package/esm2015/lib/components/details/fields/thumbnail-display/thumbnail-display.component.js +33 -0
  30. package/esm2015/lib/components/details/sections/dynamic-details-section/dynamic-details-section.component.js +42 -0
  31. package/esm2015/lib/components/details/sections/grid-details-section/grid-details-section.component.js +53 -0
  32. package/esm2015/lib/components/details/sections/markdown-details-section/markdown-details-section.component.js +19 -0
  33. package/esm2015/lib/components/details/sections/table-details-section/table-details-section.component.js +37 -0
  34. package/esm2015/lib/components/form/containers/accordion-form-container/accordion-form-container.component.js +29 -0
  35. package/esm2015/lib/components/form/containers/dynamic-form-container/dynamic-form-container.component.js +28 -0
  36. package/esm2015/lib/components/form/containers/plain-form-container/plain-form-container.component.js +28 -0
  37. package/esm2015/lib/components/form/dialog-form/dialog-form.component.js +91 -0
  38. package/esm2015/lib/components/form/dialog-nested-form/dialog-nested-form.component.js +57 -0
  39. package/esm2015/lib/components/form/dynamic-form/dynamic-form.component.js +52 -0
  40. package/esm2015/lib/components/form/fields/autocomplete-input/autocomplete-input.component.js +69 -0
  41. package/esm2015/lib/components/form/fields/chip-input/chip-input.component.js +84 -0
  42. package/esm2015/lib/components/form/fields/datepicker/datepicker.component.js +91 -0
  43. package/esm2015/lib/components/form/fields/datetimepicker/datetimepicker.component.js +92 -0
  44. package/esm2015/lib/components/form/fields/dropdown/dropdown.component.js +73 -0
  45. package/esm2015/lib/components/form/fields/dynamic-form-field/dynamic-form-field.component.js +37 -0
  46. package/esm2015/lib/components/form/fields/filepicker/filepicker.component.js +97 -0
  47. package/esm2015/lib/components/form/fields/image-cropper/image-cropper.component.js +52 -0
  48. package/esm2015/lib/components/form/fields/imagepicker/imagepicker.component.js +139 -0
  49. package/esm2015/lib/components/form/fields/markdown-input/markdown-input.component.js +53 -0
  50. package/esm2015/lib/components/form/fields/number-input/number-input.component.js +91 -0
  51. package/esm2015/lib/components/form/fields/password-input/password-input.component.js +58 -0
  52. package/esm2015/lib/components/form/fields/text-input/text-input.component.js +55 -0
  53. package/esm2015/lib/components/form/fields/textarea/textarea.component.js +58 -0
  54. package/esm2015/lib/components/form/sections/dynamic-form-section/dynamic-form-section.component.js +47 -0
  55. package/esm2015/lib/components/form/sections/grid-form-section/grid-form-section.component.js +69 -0
  56. package/esm2015/lib/components/form/sections/table-form-section/table-form-section.component.js +107 -0
  57. package/esm2015/lib/components/layout-editor/containers/accordion-layout-editor-container/accordion-layout-editor-container.component.js +24 -0
  58. package/esm2015/lib/components/layout-editor/containers/dynamic-layout-editor-container/dynamic-layout-editor-container.component.js +23 -0
  59. package/esm2015/lib/components/layout-editor/containers/plain-layout-editor-container/plain-layout-editor-container.component.js +24 -0
  60. package/esm2015/lib/components/layout-editor/dynamic-layout-editor/dynamic-layout-editor.component.js +23 -0
  61. package/esm2015/lib/components/layout-editor/elements/dynamic-layout-editor-element/dynamic-layout-editor-element.component.js +38 -0
  62. package/esm2015/lib/components/layout-editor/elements/layout-editor-field-element/layout-editor-field-element.component.js +76 -0
  63. package/esm2015/lib/components/layout-editor/elements/layout-editor-table-column-element/layout-editor-table-column-element.component.js +76 -0
  64. package/esm2015/lib/components/layout-editor/elements/layout-editor-widget-element/layout-editor-widget-element.component.js +19 -0
  65. package/esm2015/lib/components/layout-editor/sections/dashboard-layout-editor-section/dashboard-layout-editor-section.component.js +21 -0
  66. package/esm2015/lib/components/layout-editor/sections/dynamic-layout-editor-section/dynamic-layout-editor-section.component.js +25 -0
  67. package/esm2015/lib/components/layout-editor/sections/grid-layout-editor-section/grid-layout-editor-section.component.js +102 -0
  68. package/esm2015/lib/components/layout-editor/sections/markdown-layout-editor-section/markdown-layout-editor-section.component.js +19 -0
  69. package/esm2015/lib/components/layout-editor/sections/table-layout-editor-section/table-layout-editor-section.component.js +74 -0
  70. package/esm2015/lib/components/navigation/nav-tree/nav-tree.component.js +65 -0
  71. package/esm2015/lib/components/navigation/reroute/reroute.component.js +28 -0
  72. package/esm2015/lib/components/pages/dashboard-page/dashboard-page.component.js +34 -0
  73. package/esm2015/lib/components/pages/detail-page/detail-page.component.js +101 -0
  74. package/esm2015/lib/components/pages/documents-page/documents-page.component.js +109 -0
  75. package/esm2015/lib/components/pages/export-page/export-page.component.js +65 -0
  76. package/esm2015/lib/components/pages/form-page/form-page.component.js +133 -0
  77. package/esm2015/lib/components/pages/layout-editor-page/layout-editor-page.component.js +72 -0
  78. package/esm2015/lib/components/pages/list-page/list-page-datasource.js +62 -0
  79. package/esm2015/lib/components/pages/list-page/list-page.component.js +159 -0
  80. package/esm2015/lib/components/pages/tabbed-page/tabbed-page.component.js +35 -0
  81. package/esm2015/lib/components/titles/content-title/content-title.component.js +23 -0
  82. package/esm2015/lib/components/titles/page-title/page-title.component.js +28 -0
  83. package/esm2015/lib/components/titles/section-title/section-title.component.js +18 -0
  84. package/esm2015/lib/components/widgets/delete-confirmation-dialog/delete-confirmation-dialog.component.js +36 -0
  85. package/esm2015/lib/components/widgets/dynamic-table/dynamic-table-datasource.js +89 -0
  86. package/esm2015/lib/components/widgets/dynamic-table/dynamic-table.component.js +67 -0
  87. package/esm2015/lib/components/widgets/file-preview-dialog/file-preview-dialog.component.js +42 -0
  88. package/esm2015/lib/components/widgets/loader/loader.component.js +21 -0
  89. package/esm2015/lib/components/widgets/save-confirmation-dialog/save-confirmation-dialog.component.js +35 -0
  90. package/esm2015/lib/components/widgets/search-panel/search-panel.component.js +67 -0
  91. package/esm2015/lib/components/widgets/snackbar/snackbar.component.js +42 -0
  92. package/esm2015/lib/config/charts/column-chart.data.js +38 -0
  93. package/esm2015/lib/config/charts/gantt-chart.data.js +18 -0
  94. package/esm2015/lib/config/charts/pie-chart.data.js +21 -0
  95. package/esm2015/lib/config/charts/progress-bar-chart.data.js +50 -0
  96. package/esm2015/lib/config/charts/spline-chart.data.js +24 -0
  97. package/esm2015/lib/data-structures/dynamic-layout.structure.js +2 -0
  98. package/esm2015/lib/data-structures/file-attachment.structure.js +2 -0
  99. package/esm2015/lib/directives/click-stop-propagation.directive.js +19 -0
  100. package/esm2015/lib/directives/file-dropzone.directive.js +53 -0
  101. package/esm2015/lib/guards/feature.guard.js +42 -0
  102. package/esm2015/lib/guards/password-check.guard.js +21 -0
  103. package/esm2015/lib/guards/session.guard.js +21 -0
  104. package/esm2015/lib/mantle.module.js +518 -0
  105. package/esm2015/lib/material.module.js +290 -0
  106. package/esm2015/lib/models/screen-size-map.model.js +9 -0
  107. package/esm2015/lib/pipes/dynamic.pipe.js +45 -0
  108. package/esm2015/lib/pipes/secure-image.pipe.js +35 -0
  109. package/esm2015/lib/services/adapters/web-api-crud.adapter.js +22 -0
  110. package/esm2015/lib/services/adapters/websocket.adapter.js +2 -0
  111. package/esm2015/lib/services/announcement.service.js +43 -0
  112. package/esm2015/lib/services/array.service.js +82 -0
  113. package/esm2015/lib/services/chart.service.js +45 -0
  114. package/esm2015/lib/services/confirmation.service.js +45 -0
  115. package/esm2015/lib/services/current-user.service.js +120 -0
  116. package/esm2015/lib/services/dynamic-form.service.js +59 -0
  117. package/esm2015/lib/services/feature-config.service.js +240 -0
  118. package/esm2015/lib/services/interfaces/authorisable-feature.service.js +2 -0
  119. package/esm2015/lib/services/interfaces/dashboard-page.service.js +2 -0
  120. package/esm2015/lib/services/interfaces/dashboard-widget.service.js +2 -0
  121. package/esm2015/lib/services/interfaces/detail-page.service.js +2 -0
  122. package/esm2015/lib/services/interfaces/export-page.service.js +2 -0
  123. package/esm2015/lib/services/interfaces/form-page.service.js +2 -0
  124. package/esm2015/lib/services/interfaces/layout-editor-page.service.js +2 -0
  125. package/esm2015/lib/services/interfaces/list-page.service.js +2 -0
  126. package/esm2015/lib/services/interfaces/nav-tabs.service.js +2 -0
  127. package/esm2015/lib/services/interfaces/reroute.service.js +2 -0
  128. package/esm2015/lib/services/object.service.js +69 -0
  129. package/esm2015/lib/services/password-check.service.js +93 -0
  130. package/esm2015/lib/services/screen-size.service.js +41 -0
  131. package/esm2015/lib/services/web-api.service.js +99 -0
  132. package/esm2015/lib/services/websocket.service.js +58 -0
  133. package/esm2015/lib/tokens/environment.token.js +3 -0
  134. package/esm2015/public-api.js +133 -0
  135. package/fesm2015/codetectonics-mantle.js +5940 -0
  136. package/fesm2015/codetectonics-mantle.js.map +1 -0
  137. package/lib/components/dashboard/containers/dynamic-dashboard-container/dynamic-dashboard-container.component.d.ts +11 -0
  138. package/lib/components/dashboard/containers/plain-dashboard-container/plain-dashboard-container.component.d.ts +14 -0
  139. package/lib/components/dashboard/dashboard-card/dashboard-card.component.d.ts +41 -0
  140. package/lib/components/dashboard/dashboard-card-search-menu/dashboard-card-search-menu.component.d.ts +20 -0
  141. package/lib/components/dashboard/dynamic-dashboard/dynamic-dashboard.component.d.ts +10 -0
  142. package/lib/components/dashboard/sections/dashboard-section/dashboard-section.component.d.ts +27 -0
  143. package/lib/components/dashboard/widgets/dashboard-info-card/dashboard-info-card.component.d.ts +8 -0
  144. package/lib/components/dashboard/widgets/dashboard-table/dashboard-table-datasource.d.ts +22 -0
  145. package/lib/components/dashboard/widgets/dashboard-table/dashboard-table.component.d.ts +28 -0
  146. package/lib/components/dashboard/widgets/dynamic-chart/dynamic-chart.component.d.ts +20 -0
  147. package/lib/components/dashboard/widgets/dynamic-widget-display/dynamic-widget-display.component.d.ts +9 -0
  148. package/lib/components/details/containers/accordion-details-container/accordion-details-container.component.d.ts +11 -0
  149. package/lib/components/details/containers/dynamic-details-container/dynamic-details-container.component.d.ts +11 -0
  150. package/lib/components/details/containers/plain-details-container/plain-details-container.component.d.ts +11 -0
  151. package/lib/components/details/dialog-details/dialog-details.component.d.ts +36 -0
  152. package/lib/components/details/dialog-nested-details/dialog-nested-details.component.d.ts +22 -0
  153. package/lib/components/details/dynamic-details/dynamic-details.component.d.ts +10 -0
  154. package/lib/components/details/fields/actions-attribute-display/actions-attribute-display.component.d.ts +7 -0
  155. package/lib/components/details/fields/chip-attribute-display/chip-attribute-display.component.d.ts +9 -0
  156. package/lib/components/details/fields/dynamic-attribute-display/dynamic-attribute-display.component.d.ts +15 -0
  157. package/lib/components/details/fields/file-attribute-display/file-attribute-display.component.d.ts +12 -0
  158. package/lib/components/details/fields/image-attribute-display/image-attribute-display.component.d.ts +12 -0
  159. package/lib/components/details/fields/link-attribute-display/link-attribute-display.component.d.ts +10 -0
  160. package/lib/components/details/fields/markdown-attribute-display/markdown-attribute-display.component.d.ts +6 -0
  161. package/lib/components/details/fields/thumbnail-display/thumbnail-display.component.d.ts +10 -0
  162. package/lib/components/details/sections/dynamic-details-section/dynamic-details-section.component.d.ts +17 -0
  163. package/lib/components/details/sections/grid-details-section/grid-details-section.component.d.ts +17 -0
  164. package/lib/components/details/sections/markdown-details-section/markdown-details-section.component.d.ts +7 -0
  165. package/lib/components/details/sections/table-details-section/table-details-section.component.d.ts +12 -0
  166. package/lib/components/form/containers/accordion-form-container/accordion-form-container.component.d.ts +13 -0
  167. package/lib/components/form/containers/dynamic-form-container/dynamic-form-container.component.d.ts +13 -0
  168. package/lib/components/form/containers/plain-form-container/plain-form-container.component.d.ts +13 -0
  169. package/lib/components/form/dialog-form/dialog-form.component.d.ts +39 -0
  170. package/lib/components/form/dialog-nested-form/dialog-nested-form.component.d.ts +31 -0
  171. package/lib/components/form/dynamic-form/dynamic-form.component.d.ts +21 -0
  172. package/lib/components/form/fields/autocomplete-input/autocomplete-input.component.d.ts +32 -0
  173. package/lib/components/form/fields/chip-input/chip-input.component.d.ts +27 -0
  174. package/lib/components/form/fields/datepicker/datepicker.component.d.ts +24 -0
  175. package/lib/components/form/fields/datetimepicker/datetimepicker.component.d.ts +24 -0
  176. package/lib/components/form/fields/dropdown/dropdown.component.d.ts +31 -0
  177. package/lib/components/form/fields/dynamic-form-field/dynamic-form-field.component.d.ts +10 -0
  178. package/lib/components/form/fields/filepicker/filepicker.component.d.ts +27 -0
  179. package/lib/components/form/fields/image-cropper/image-cropper.component.d.ts +27 -0
  180. package/lib/components/form/fields/imagepicker/imagepicker.component.d.ts +41 -0
  181. package/lib/components/form/fields/markdown-input/markdown-input.component.d.ts +17 -0
  182. package/lib/components/form/fields/number-input/number-input.component.d.ts +27 -0
  183. package/lib/components/form/fields/password-input/password-input.component.d.ts +19 -0
  184. package/lib/components/form/fields/text-input/text-input.component.d.ts +18 -0
  185. package/lib/components/form/fields/textarea/textarea.component.d.ts +19 -0
  186. package/lib/components/form/sections/dynamic-form-section/dynamic-form-section.component.d.ts +19 -0
  187. package/lib/components/form/sections/grid-form-section/grid-form-section.component.d.ts +23 -0
  188. package/lib/components/form/sections/table-form-section/table-form-section.component.d.ts +22 -0
  189. package/lib/components/layout-editor/containers/accordion-layout-editor-container/accordion-layout-editor-container.component.d.ts +10 -0
  190. package/lib/components/layout-editor/containers/dynamic-layout-editor-container/dynamic-layout-editor-container.component.d.ts +10 -0
  191. package/lib/components/layout-editor/containers/plain-layout-editor-container/plain-layout-editor-container.component.d.ts +10 -0
  192. package/lib/components/layout-editor/dynamic-layout-editor/dynamic-layout-editor.component.d.ts +10 -0
  193. package/lib/components/layout-editor/elements/dynamic-layout-editor-element/dynamic-layout-editor-element.component.d.ts +13 -0
  194. package/lib/components/layout-editor/elements/layout-editor-field-element/layout-editor-field-element.component.d.ts +14 -0
  195. package/lib/components/layout-editor/elements/layout-editor-table-column-element/layout-editor-table-column-element.component.d.ts +14 -0
  196. package/lib/components/layout-editor/elements/layout-editor-widget-element/layout-editor-widget-element.component.d.ts +8 -0
  197. package/lib/components/layout-editor/sections/dashboard-layout-editor-section/dashboard-layout-editor-section.component.d.ts +8 -0
  198. package/lib/components/layout-editor/sections/dynamic-layout-editor-section/dynamic-layout-editor-section.component.d.ts +10 -0
  199. package/lib/components/layout-editor/sections/grid-layout-editor-section/grid-layout-editor-section.component.d.ts +21 -0
  200. package/lib/components/layout-editor/sections/markdown-layout-editor-section/markdown-layout-editor-section.component.d.ts +7 -0
  201. package/lib/components/layout-editor/sections/table-layout-editor-section/table-layout-editor-section.component.d.ts +14 -0
  202. package/lib/components/navigation/nav-tree/nav-tree.component.d.ts +46 -0
  203. package/lib/components/navigation/reroute/reroute.component.d.ts +14 -0
  204. package/lib/components/pages/dashboard-page/dashboard-page.component.d.ts +16 -0
  205. package/lib/components/pages/detail-page/detail-page.component.d.ts +35 -0
  206. package/lib/components/pages/documents-page/documents-page.component.d.ts +41 -0
  207. package/lib/components/pages/export-page/export-page.component.d.ts +29 -0
  208. package/lib/components/pages/form-page/form-page.component.d.ts +37 -0
  209. package/lib/components/pages/layout-editor-page/layout-editor-page.component.d.ts +26 -0
  210. package/lib/components/pages/list-page/list-page-datasource.d.ts +32 -0
  211. package/lib/components/pages/list-page/list-page.component.d.ts +46 -0
  212. package/lib/components/pages/tabbed-page/tabbed-page.component.d.ts +16 -0
  213. package/lib/components/titles/content-title/content-title.component.d.ts +8 -0
  214. package/lib/components/titles/page-title/page-title.component.d.ts +10 -0
  215. package/lib/components/titles/section-title/section-title.component.d.ts +7 -0
  216. package/lib/components/widgets/delete-confirmation-dialog/delete-confirmation-dialog.component.d.ts +20 -0
  217. package/lib/components/widgets/dynamic-table/dynamic-table-datasource.d.ts +40 -0
  218. package/lib/components/widgets/dynamic-table/dynamic-table.component.d.ts +30 -0
  219. package/lib/components/widgets/file-preview-dialog/file-preview-dialog.component.d.ts +17 -0
  220. package/lib/components/widgets/loader/loader.component.d.ts +6 -0
  221. package/lib/components/widgets/save-confirmation-dialog/save-confirmation-dialog.component.d.ts +16 -0
  222. package/lib/components/widgets/search-panel/search-panel.component.d.ts +21 -0
  223. package/lib/components/widgets/snackbar/snackbar.component.d.ts +11 -0
  224. package/lib/config/charts/column-chart.data.d.ts +37 -0
  225. package/lib/config/charts/gantt-chart.data.d.ts +17 -0
  226. package/lib/config/charts/pie-chart.data.d.ts +20 -0
  227. package/lib/config/charts/progress-bar-chart.data.d.ts +49 -0
  228. package/lib/config/charts/spline-chart.data.d.ts +23 -0
  229. package/lib/data-structures/dynamic-layout.structure.d.ts +161 -0
  230. package/lib/data-structures/file-attachment.structure.d.ts +6 -0
  231. package/lib/directives/click-stop-propagation.directive.d.ts +6 -0
  232. package/lib/directives/file-dropzone.directive.d.ts +12 -0
  233. package/lib/guards/feature.guard.d.ts +15 -0
  234. package/lib/guards/password-check.guard.d.ts +11 -0
  235. package/lib/guards/session.guard.d.ts +10 -0
  236. package/lib/mantle.module.d.ts +106 -0
  237. package/lib/material.module.d.ts +34 -0
  238. package/lib/models/screen-size-map.model.d.ts +13 -0
  239. package/lib/pipes/dynamic.pipe.d.ts +12 -0
  240. package/lib/pipes/secure-image.pipe.d.ts +11 -0
  241. package/lib/services/adapters/web-api-crud.adapter.d.ts +63 -0
  242. package/lib/services/adapters/websocket.adapter.d.ts +6 -0
  243. package/lib/services/announcement.service.d.ts +11 -0
  244. package/lib/services/array.service.d.ts +21 -0
  245. package/lib/services/chart.service.d.ts +14 -0
  246. package/lib/services/confirmation.service.d.ts +11 -0
  247. package/lib/services/current-user.service.d.ts +28 -0
  248. package/lib/services/dynamic-form.service.d.ts +30 -0
  249. package/lib/services/feature-config.service.d.ts +82 -0
  250. package/lib/services/interfaces/authorisable-feature.service.d.ts +5 -0
  251. package/lib/services/interfaces/dashboard-page.service.d.ts +13 -0
  252. package/lib/services/interfaces/dashboard-widget.service.d.ts +34 -0
  253. package/lib/services/interfaces/detail-page.service.d.ts +36 -0
  254. package/lib/services/interfaces/export-page.service.d.ts +6 -0
  255. package/lib/services/interfaces/form-page.service.d.ts +30 -0
  256. package/lib/services/interfaces/layout-editor-page.service.d.ts +14 -0
  257. package/lib/services/interfaces/list-page.service.d.ts +44 -0
  258. package/lib/services/interfaces/nav-tabs.service.d.ts +7 -0
  259. package/lib/services/interfaces/reroute.service.d.ts +3 -0
  260. package/lib/services/object.service.d.ts +11 -0
  261. package/lib/services/password-check.service.d.ts +21 -0
  262. package/lib/services/screen-size.service.d.ts +14 -0
  263. package/lib/services/web-api.service.d.ts +21 -0
  264. package/lib/services/websocket.service.d.ts +20 -0
  265. package/lib/tokens/environment.token.d.ts +2 -0
  266. package/package.json +33 -15
  267. package/public-api.d.ts +129 -2
  268. package/fesm2022/codetectonics-mantle.mjs +0 -42
  269. package/fesm2022/codetectonics-mantle.mjs.map +0 -1
  270. package/lib/mantle.component.d.ts +0 -5
  271. package/lib/mantle.service.d.ts +0 -6
  272. /package/{index.d.ts → codetectonics-mantle.d.ts} +0 -0
@@ -0,0 +1,49 @@
1
+ export declare const PROGRESS_BAR_CHART: {
2
+ chart: {
3
+ type: string;
4
+ backgroundColor: string;
5
+ margin: number[];
6
+ spacing: number[];
7
+ height: number;
8
+ reflow: boolean;
9
+ };
10
+ title: {
11
+ text: string;
12
+ };
13
+ tooltip: {
14
+ enabled: boolean;
15
+ };
16
+ legend: {
17
+ enabled: boolean;
18
+ };
19
+ credits: {
20
+ enabled: boolean;
21
+ };
22
+ xAxis: {
23
+ visible: boolean;
24
+ };
25
+ yAxis: {
26
+ visible: boolean;
27
+ min: number;
28
+ };
29
+ plotOptions: {
30
+ bar: {
31
+ groupPadding: number;
32
+ pointPadding: number;
33
+ };
34
+ series: {
35
+ dataLabels: {
36
+ enabled: boolean;
37
+ };
38
+ stacking: string;
39
+ states: {
40
+ hover: {
41
+ enabled: boolean;
42
+ };
43
+ inactive: {
44
+ enabled: boolean;
45
+ };
46
+ };
47
+ };
48
+ };
49
+ };
@@ -0,0 +1,23 @@
1
+ export declare const SPLINE_CHART: {
2
+ chart: {
3
+ type: string;
4
+ };
5
+ yAxis: {
6
+ title: {
7
+ text: string;
8
+ };
9
+ };
10
+ plotOptions: {
11
+ series: {
12
+ label: {
13
+ enabled: boolean;
14
+ };
15
+ marker: {
16
+ symbol: string;
17
+ };
18
+ };
19
+ };
20
+ legend: {
21
+ enabled: boolean;
22
+ };
23
+ };
@@ -0,0 +1,161 @@
1
+ import { DynamicFormField } from '../services/dynamic-form.service';
2
+ import { DynamicTableColumn } from '../components/widgets/dynamic-table/dynamic-table.component';
3
+ export interface DynamicDetailsContent {
4
+ data: any;
5
+ containers: DynamicLayoutContainer[];
6
+ }
7
+ export interface DynamicFormContent {
8
+ data: any;
9
+ errors?: any;
10
+ containers: DynamicLayoutContainer[];
11
+ }
12
+ export interface DynamicDashboardContent {
13
+ data: any;
14
+ containers: DynamicLayoutContainer[];
15
+ }
16
+ export interface DynamicLayoutContainer {
17
+ slug?: string;
18
+ container_style: 'plain' | 'accordion';
19
+ sections: DynamicLayoutSection[];
20
+ }
21
+ export interface DynamicLayoutSection {
22
+ title?: string;
23
+ slug?: string;
24
+ layout: 'grid' | 'table' | 'dashboard' | 'markdown';
25
+ config?: TableSectionConfig;
26
+ writable: boolean;
27
+ hidden: boolean;
28
+ collapsed: boolean;
29
+ options: any;
30
+ }
31
+ export interface DynamicLayoutGridSection {
32
+ title?: string;
33
+ slug?: string;
34
+ layout: 'grid';
35
+ elements: DynamicFormField[];
36
+ writable: boolean;
37
+ hidden: boolean;
38
+ collapsed: boolean;
39
+ options: any;
40
+ singleColumn?: boolean;
41
+ rowHeight?: string;
42
+ }
43
+ export interface DynamicLayoutTableSection {
44
+ title?: string;
45
+ slug?: string;
46
+ layout: 'table';
47
+ config: TableSectionConfig;
48
+ elements: DynamicTableColumn[];
49
+ writable: boolean;
50
+ hidden: boolean;
51
+ collapsed: boolean;
52
+ options: any;
53
+ }
54
+ export interface DynamicLayoutDashboardSection {
55
+ title?: string;
56
+ slug?: string;
57
+ layout: 'dashboard';
58
+ elements: DynamicDashboardWidget[];
59
+ writable: boolean;
60
+ hidden: boolean;
61
+ collapsed: boolean;
62
+ options: any;
63
+ }
64
+ export interface DynamicLayoutMarkdownSection {
65
+ title?: string;
66
+ slug?: string;
67
+ layout: 'markdown';
68
+ elements: DynamicLayoutMarkdownElement[];
69
+ writable: boolean;
70
+ hidden: boolean;
71
+ collapsed: boolean;
72
+ options: any;
73
+ }
74
+ export interface DynamicLayoutMarkdownElement {
75
+ text: string;
76
+ }
77
+ export interface TableSectionConfig {
78
+ attr: string;
79
+ modal_section?: DynamicLayoutGridSection;
80
+ can_add: boolean;
81
+ can_edit: boolean;
82
+ can_delete: boolean;
83
+ }
84
+ export interface DynamicDashboardWidget {
85
+ label: string;
86
+ slug: string;
87
+ }
88
+ export interface DynamicLayoutGridDimensions {
89
+ rowHeight: string;
90
+ }
91
+ export interface DynamicLayoutGridCellDimensions {
92
+ colspan: number;
93
+ rowspan: number;
94
+ }
95
+ export interface DynamicLayoutEditorContent {
96
+ data: {
97
+ dynamic_layout_containers_attributes: DynamicLayoutEditorContainer[];
98
+ };
99
+ }
100
+ export interface DynamicLayoutEditorContainer {
101
+ dynamic_layout_sections_attributes: DynamicLayoutEditorSection[];
102
+ id: string;
103
+ dynamic_layout_id: string;
104
+ slug: string;
105
+ container_style: 'plain' | 'accordion';
106
+ ordinal: number;
107
+ }
108
+ export interface DynamicLayoutEditorSection {
109
+ dynamic_layout_grid_fields_attributes: DynamicLayoutEditorFormField[];
110
+ dynamic_layout_dashboard_widgets_attributes: DynamicLayoutEditorDashboardWidget[];
111
+ dynamic_layout_markdown_elements_attributes: DynamicLayoutEditorMarkdownElement[];
112
+ dynamic_layout_table_columns_attributes: DynamicLayoutEditorTableColumn[];
113
+ id: string;
114
+ dynamic_layout_container_id: string;
115
+ title: string;
116
+ slug: string;
117
+ layout_style: 'grid' | 'table' | 'dashboard' | 'markdown';
118
+ collapsed: boolean;
119
+ options: any;
120
+ ordinal: number;
121
+ elements_locked: boolean;
122
+ singleColumn?: boolean;
123
+ rowHeight?: string;
124
+ }
125
+ export interface DynamicLayoutEditorFormField {
126
+ id: string;
127
+ dynamic_layout_section_id: string;
128
+ label: string;
129
+ attr_name: string;
130
+ attr_type: string;
131
+ ordinal: number;
132
+ user_specified: boolean;
133
+ _destroy: boolean;
134
+ }
135
+ export interface DynamicLayoutEditorDashboardWidget {
136
+ id: string;
137
+ dynamic_layout_section_id: string;
138
+ label: string;
139
+ widget_slug: string;
140
+ ordinal: number;
141
+ }
142
+ export interface DynamicLayoutEditorMarkdownElement {
143
+ id: string;
144
+ dynamic_layout_section_id: string;
145
+ text: string;
146
+ ordinal: number;
147
+ }
148
+ export interface DynamicLayoutEditorTableColumn {
149
+ id: string;
150
+ dynamic_layout_section_id: string;
151
+ label: string;
152
+ attr_name: string;
153
+ attr_type: string;
154
+ ordinal: number;
155
+ user_specified: boolean;
156
+ _destroy: boolean;
157
+ }
158
+ export interface DashboardCardSearchMenuContent {
159
+ data: any;
160
+ elements: DynamicFormField[];
161
+ }
@@ -0,0 +1,6 @@
1
+ export interface FileAttachment {
2
+ filename: string;
3
+ source_url: string;
4
+ preview_url: string;
5
+ signed_id: string | null;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ClickStopPropagationDirective {
3
+ onClick(event: any): void;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickStopPropagationDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickStopPropagationDirective, "[click-stop-propagation]", never, {}, {}, never>;
6
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FileDropzoneDirective {
4
+ fileDropzone: boolean;
5
+ fileOver: boolean;
6
+ fileDropped: EventEmitter<any>;
7
+ onDragOver(event: any): void;
8
+ onDragLeave(event: any): void;
9
+ ondrop(event: any): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileDropzoneDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FileDropzoneDirective, "[file-dropzone]", never, {}, { "fileDropped": "fileDropped"; }, never>;
12
+ }
@@ -0,0 +1,15 @@
1
+ import { Injector } from '@angular/core';
2
+ import { CanActivate, ActivatedRouteSnapshot, Router } from '@angular/router';
3
+ import { AnnouncementService } from '../services/announcement.service';
4
+ import { CurrentUserService } from '../services/current-user.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class FeatureGuard implements CanActivate {
7
+ private announcementService;
8
+ private currentUserService;
9
+ private router;
10
+ private injector;
11
+ constructor(announcementService: AnnouncementService, currentUserService: CurrentUserService, router: Router, injector: Injector);
12
+ canActivate(route: ActivatedRouteSnapshot): Promise<boolean>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureGuard, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<FeatureGuard>;
15
+ }
@@ -0,0 +1,11 @@
1
+ import { CanActivateChild } from '@angular/router';
2
+ import { Observable } from 'rxjs';
3
+ import { PasswordCheckService } from '../services/password-check.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PasswordCheckGuard implements CanActivateChild {
6
+ private passwordCheckService;
7
+ constructor(passwordCheckService: PasswordCheckService);
8
+ canActivateChild(): Observable<boolean>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PasswordCheckGuard, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<PasswordCheckGuard>;
11
+ }
@@ -0,0 +1,10 @@
1
+ import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
2
+ import { AngularTokenService } from 'angular-token';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SessionGuard implements CanActivate {
5
+ private angularTokenService;
6
+ constructor(angularTokenService: AngularTokenService);
7
+ canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SessionGuard, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<SessionGuard>;
10
+ }
@@ -0,0 +1,106 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./pipes/dynamic.pipe";
3
+ import * as i2 from "./pipes/secure-image.pipe";
4
+ import * as i3 from "./directives/click-stop-propagation.directive";
5
+ import * as i4 from "./directives/file-dropzone.directive";
6
+ import * as i5 from "./components/details/dynamic-details/dynamic-details.component";
7
+ import * as i6 from "./components/details/sections/grid-details-section/grid-details-section.component";
8
+ import * as i7 from "./components/details/sections/table-details-section/table-details-section.component";
9
+ import * as i8 from "./components/details/fields/dynamic-attribute-display/dynamic-attribute-display.component";
10
+ import * as i9 from "./components/details/fields/actions-attribute-display/actions-attribute-display.component";
11
+ import * as i10 from "./components/details/fields/chip-attribute-display/chip-attribute-display.component";
12
+ import * as i11 from "./components/details/fields/file-attribute-display/file-attribute-display.component";
13
+ import * as i12 from "./components/details/fields/image-attribute-display/image-attribute-display.component";
14
+ import * as i13 from "./components/details/fields/markdown-attribute-display/markdown-attribute-display.component";
15
+ import * as i14 from "./components/form/dialog-form/dialog-form.component";
16
+ import * as i15 from "./components/form/dialog-nested-form/dialog-nested-form.component";
17
+ import * as i16 from "./components/form/dynamic-form/dynamic-form.component";
18
+ import * as i17 from "./components/form/sections/grid-form-section/grid-form-section.component";
19
+ import * as i18 from "./components/form/sections/table-form-section/table-form-section.component";
20
+ import * as i19 from "./components/form/fields/dynamic-form-field/dynamic-form-field.component";
21
+ import * as i20 from "./components/form/fields/chip-input/chip-input.component";
22
+ import * as i21 from "./components/form/fields/datepicker/datepicker.component";
23
+ import * as i22 from "./components/form/fields/datetimepicker/datetimepicker.component";
24
+ import * as i23 from "./components/form/fields/dropdown/dropdown.component";
25
+ import * as i24 from "./components/form/fields/filepicker/filepicker.component";
26
+ import * as i25 from "./components/form/fields/imagepicker/imagepicker.component";
27
+ import * as i26 from "./components/form/fields/image-cropper/image-cropper.component";
28
+ import * as i27 from "./components/form/fields/number-input/number-input.component";
29
+ import * as i28 from "./components/form/fields/password-input/password-input.component";
30
+ import * as i29 from "./components/form/fields/textarea/textarea.component";
31
+ import * as i30 from "./components/form/fields/text-input/text-input.component";
32
+ import * as i31 from "./components/form/fields/markdown-input/markdown-input.component";
33
+ import * as i32 from "./components/layout-editor/containers/accordion-layout-editor-container/accordion-layout-editor-container.component";
34
+ import * as i33 from "./components/layout-editor/containers/dynamic-layout-editor-container/dynamic-layout-editor-container.component";
35
+ import * as i34 from "./components/layout-editor/containers/plain-layout-editor-container/plain-layout-editor-container.component";
36
+ import * as i35 from "./components/layout-editor/dynamic-layout-editor/dynamic-layout-editor.component";
37
+ import * as i36 from "./components/layout-editor/elements/dynamic-layout-editor-element/dynamic-layout-editor-element.component";
38
+ import * as i37 from "./components/layout-editor/elements/layout-editor-field-element/layout-editor-field-element.component";
39
+ import * as i38 from "./components/layout-editor/elements/layout-editor-table-column-element/layout-editor-table-column-element.component";
40
+ import * as i39 from "./components/layout-editor/elements/layout-editor-widget-element/layout-editor-widget-element.component";
41
+ import * as i40 from "./components/layout-editor/sections/dashboard-layout-editor-section/dashboard-layout-editor-section.component";
42
+ import * as i41 from "./components/layout-editor/sections/dynamic-layout-editor-section/dynamic-layout-editor-section.component";
43
+ import * as i42 from "./components/layout-editor/sections/grid-layout-editor-section/grid-layout-editor-section.component";
44
+ import * as i43 from "./components/layout-editor/sections/markdown-layout-editor-section/markdown-layout-editor-section.component";
45
+ import * as i44 from "./components/layout-editor/sections/table-layout-editor-section/table-layout-editor-section.component";
46
+ import * as i45 from "./components/pages/dashboard-page/dashboard-page.component";
47
+ import * as i46 from "./components/pages/layout-editor-page/layout-editor-page.component";
48
+ import * as i47 from "./components/pages/list-page/list-page.component";
49
+ import * as i48 from "./components/pages/form-page/form-page.component";
50
+ import * as i49 from "./components/pages/detail-page/detail-page.component";
51
+ import * as i50 from "./components/pages/documents-page/documents-page.component";
52
+ import * as i51 from "./components/pages/tabbed-page/tabbed-page.component";
53
+ import * as i52 from "./components/pages/export-page/export-page.component";
54
+ import * as i53 from "./components/titles/page-title/page-title.component";
55
+ import * as i54 from "./components/titles/section-title/section-title.component";
56
+ import * as i55 from "./components/widgets/dynamic-table/dynamic-table.component";
57
+ import * as i56 from "./components/widgets/file-preview-dialog/file-preview-dialog.component";
58
+ import * as i57 from "./components/widgets/delete-confirmation-dialog/delete-confirmation-dialog.component";
59
+ import * as i58 from "./components/widgets/save-confirmation-dialog/save-confirmation-dialog.component";
60
+ import * as i59 from "./components/widgets/search-panel/search-panel.component";
61
+ import * as i60 from "./components/navigation/nav-tree/nav-tree.component";
62
+ import * as i61 from "./components/widgets/loader/loader.component";
63
+ import * as i62 from "./components/details/dialog-details/dialog-details.component";
64
+ import * as i63 from "./components/details/dialog-nested-details/dialog-nested-details.component";
65
+ import * as i64 from "./components/details/fields/link-attribute-display/link-attribute-display.component";
66
+ import * as i65 from "./components/dashboard/sections/dashboard-section/dashboard-section.component";
67
+ import * as i66 from "./components/dashboard/widgets/dynamic-widget-display/dynamic-widget-display.component";
68
+ import * as i67 from "./components/dashboard/widgets/dynamic-chart/dynamic-chart.component";
69
+ import * as i68 from "./components/dashboard/widgets/dashboard-info-card/dashboard-info-card.component";
70
+ import * as i69 from "./components/dashboard/widgets/dashboard-table/dashboard-table.component";
71
+ import * as i70 from "./components/dashboard/dashboard-card/dashboard-card.component";
72
+ import * as i71 from "./components/dashboard/dashboard-card-search-menu/dashboard-card-search-menu.component";
73
+ import * as i72 from "./components/dashboard/dynamic-dashboard/dynamic-dashboard.component";
74
+ import * as i73 from "./components/navigation/reroute/reroute.component";
75
+ import * as i74 from "./components/widgets/snackbar/snackbar.component";
76
+ import * as i75 from "./components/details/fields/thumbnail-display/thumbnail-display.component";
77
+ import * as i76 from "./components/titles/content-title/content-title.component";
78
+ import * as i77 from "./components/details/sections/markdown-details-section/markdown-details-section.component";
79
+ import * as i78 from "./components/details/containers/accordion-details-container/accordion-details-container.component";
80
+ import * as i79 from "./components/details/containers/plain-details-container/plain-details-container.component";
81
+ import * as i80 from "./components/details/containers/dynamic-details-container/dynamic-details-container.component";
82
+ import * as i81 from "./components/details/sections/dynamic-details-section/dynamic-details-section.component";
83
+ import * as i82 from "./components/form/containers/dynamic-form-container/dynamic-form-container.component";
84
+ import * as i83 from "./components/form/containers/plain-form-container/plain-form-container.component";
85
+ import * as i84 from "./components/form/containers/accordion-form-container/accordion-form-container.component";
86
+ import * as i85 from "./components/form/sections/dynamic-form-section/dynamic-form-section.component";
87
+ import * as i86 from "./components/dashboard/containers/dynamic-dashboard-container/dynamic-dashboard-container.component";
88
+ import * as i87 from "./components/dashboard/containers/plain-dashboard-container/plain-dashboard-container.component";
89
+ import * as i88 from "./components/form/fields/autocomplete-input/autocomplete-input.component";
90
+ import * as i89 from "@angular/common";
91
+ import * as i90 from "@angular/router";
92
+ import * as i91 from "@angular/common/http";
93
+ import * as i92 from "@angular/cdk/layout";
94
+ import * as i93 from "@angular/flex-layout";
95
+ import * as i94 from "@angular/platform-browser";
96
+ import * as i95 from "@angular/platform-browser/animations";
97
+ import * as i96 from "@angular/forms";
98
+ import * as i97 from "ngx-image-cropper";
99
+ import * as i98 from "highcharts-angular";
100
+ import * as i99 from "ngx-markdown";
101
+ import * as i100 from "./material.module";
102
+ export declare class MantleModule {
103
+ static ɵfac: i0.ɵɵFactoryDeclaration<MantleModule, never>;
104
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MantleModule, [typeof i1.DynamicPipe, typeof i2.SecureImagePipe, typeof i3.ClickStopPropagationDirective, typeof i4.FileDropzoneDirective, typeof i5.DynamicDetailsComponent, typeof i6.GridDetailsSectionComponent, typeof i7.TableDetailsSectionComponent, typeof i8.DynamicAttributeDisplayComponent, typeof i9.ActionsAttributeDisplayComponent, typeof i10.ChipAttributeDisplayComponent, typeof i11.FileAttributeDisplayComponent, typeof i12.ImageAttributeDisplayComponent, typeof i13.MarkdownAttributeDisplayComponent, typeof i14.DialogFormComponent, typeof i15.DialogNestedFormComponent, typeof i16.DynamicFormComponent, typeof i17.GridFormSectionComponent, typeof i18.TableFormSectionComponent, typeof i19.DynamicFormFieldComponent, typeof i20.ChipInputComponent, typeof i21.DatepickerComponent, typeof i22.DatetimepickerComponent, typeof i23.DropdownComponent, typeof i24.FilepickerComponent, typeof i25.ImagepickerComponent, typeof i26.ImageCropperComponent, typeof i27.NumberInputComponent, typeof i28.PasswordInputComponent, typeof i29.TextareaComponent, typeof i30.TextInputComponent, typeof i31.MarkdownInputComponent, typeof i32.AccordionLayoutEditorContainerComponent, typeof i33.DynamicLayoutEditorContainerComponent, typeof i34.PlainLayoutEditorContainerComponent, typeof i35.DynamicLayoutEditorComponent, typeof i36.DynamicLayoutEditorElementComponent, typeof i37.LayoutEditorFieldElementComponent, typeof i38.LayoutEditorTableColumnElementComponent, typeof i39.LayoutEditorWidgetElementComponent, typeof i40.DashboardLayoutEditorSectionComponent, typeof i41.DynamicLayoutEditorSectionComponent, typeof i42.GridLayoutEditorSectionComponent, typeof i43.MarkdownLayoutEditorSectionComponent, typeof i44.TableLayoutEditorSectionComponent, typeof i45.DashboardPageComponent, typeof i46.LayoutEditorPageComponent, typeof i47.ListPageComponent, typeof i48.FormPageComponent, typeof i49.DetailPageComponent, typeof i50.DocumentsPageComponent, typeof i51.TabbedPageComponent, typeof i52.ExportPageComponent, typeof i53.PageTitleComponent, typeof i54.SectionTitleComponent, typeof i55.DynamicTableComponent, typeof i56.FilePreviewDialogComponent, typeof i57.DeleteConfirmationDialogComponent, typeof i58.SaveConfirmationDialogComponent, typeof i59.SearchPanelComponent, typeof i60.NavTreeComponent, typeof i61.LoaderComponent, typeof i62.DialogDetailsComponent, typeof i63.DialogNestedDetailsComponent, typeof i64.LinkAttributeDisplayComponent, typeof i65.DashboardSectionComponent, typeof i66.DynamicWidgetDisplayComponent, typeof i67.DynamicChartComponent, typeof i68.DashboardInfoCardComponent, typeof i69.DashboardTableComponent, typeof i70.DashboardCardComponent, typeof i71.DashboardCardSearchMenuComponent, typeof i72.DynamicDashboardComponent, typeof i73.RerouteComponent, typeof i74.SnackbarComponent, typeof i75.ThumbnailDisplayComponent, typeof i76.ContentTitleComponent, typeof i77.MarkdownDetailsSectionComponent, typeof i78.AccordionDetailsContainerComponent, typeof i79.PlainDetailsContainerComponent, typeof i80.DynamicDetailsContainerComponent, typeof i81.DynamicDetailsSectionComponent, typeof i82.DynamicFormContainerComponent, typeof i83.PlainFormContainerComponent, typeof i84.AccordionFormContainerComponent, typeof i85.DynamicFormSectionComponent, typeof i86.DynamicDashboardContainerComponent, typeof i87.PlainDashboardContainerComponent, typeof i88.AutocompleteInputComponent], [typeof i89.CommonModule, typeof i90.RouterModule, typeof i91.HttpClientModule, typeof i92.LayoutModule, typeof i93.FlexLayoutModule, typeof i94.BrowserModule, typeof i95.BrowserAnimationsModule, typeof i96.FormsModule, typeof i96.ReactiveFormsModule, typeof i97.ImageCropperModule, typeof i98.HighchartsChartModule, typeof i99.MarkdownModule, typeof i100.MaterialModule], [typeof i100.MaterialModule, typeof i1.DynamicPipe, typeof i2.SecureImagePipe, typeof i3.ClickStopPropagationDirective, typeof i4.FileDropzoneDirective, typeof i5.DynamicDetailsComponent, typeof i6.GridDetailsSectionComponent, typeof i7.TableDetailsSectionComponent, typeof i8.DynamicAttributeDisplayComponent, typeof i9.ActionsAttributeDisplayComponent, typeof i10.ChipAttributeDisplayComponent, typeof i11.FileAttributeDisplayComponent, typeof i12.ImageAttributeDisplayComponent, typeof i13.MarkdownAttributeDisplayComponent, typeof i14.DialogFormComponent, typeof i15.DialogNestedFormComponent, typeof i16.DynamicFormComponent, typeof i17.GridFormSectionComponent, typeof i18.TableFormSectionComponent, typeof i19.DynamicFormFieldComponent, typeof i20.ChipInputComponent, typeof i21.DatepickerComponent, typeof i22.DatetimepickerComponent, typeof i23.DropdownComponent, typeof i24.FilepickerComponent, typeof i25.ImagepickerComponent, typeof i26.ImageCropperComponent, typeof i27.NumberInputComponent, typeof i28.PasswordInputComponent, typeof i29.TextareaComponent, typeof i30.TextInputComponent, typeof i31.MarkdownInputComponent, typeof i32.AccordionLayoutEditorContainerComponent, typeof i33.DynamicLayoutEditorContainerComponent, typeof i34.PlainLayoutEditorContainerComponent, typeof i35.DynamicLayoutEditorComponent, typeof i36.DynamicLayoutEditorElementComponent, typeof i37.LayoutEditorFieldElementComponent, typeof i38.LayoutEditorTableColumnElementComponent, typeof i39.LayoutEditorWidgetElementComponent, typeof i40.DashboardLayoutEditorSectionComponent, typeof i41.DynamicLayoutEditorSectionComponent, typeof i42.GridLayoutEditorSectionComponent, typeof i43.MarkdownLayoutEditorSectionComponent, typeof i44.TableLayoutEditorSectionComponent, typeof i45.DashboardPageComponent, typeof i46.LayoutEditorPageComponent, typeof i47.ListPageComponent, typeof i48.FormPageComponent, typeof i49.DetailPageComponent, typeof i50.DocumentsPageComponent, typeof i51.TabbedPageComponent, typeof i52.ExportPageComponent, typeof i53.PageTitleComponent, typeof i54.SectionTitleComponent, typeof i55.DynamicTableComponent, typeof i56.FilePreviewDialogComponent, typeof i57.DeleteConfirmationDialogComponent, typeof i58.SaveConfirmationDialogComponent, typeof i59.SearchPanelComponent, typeof i60.NavTreeComponent, typeof i61.LoaderComponent, typeof i62.DialogDetailsComponent, typeof i63.DialogNestedDetailsComponent, typeof i64.LinkAttributeDisplayComponent, typeof i65.DashboardSectionComponent, typeof i66.DynamicWidgetDisplayComponent, typeof i67.DynamicChartComponent, typeof i68.DashboardInfoCardComponent, typeof i69.DashboardTableComponent, typeof i70.DashboardCardComponent, typeof i71.DashboardCardSearchMenuComponent, typeof i72.DynamicDashboardComponent, typeof i73.RerouteComponent, typeof i74.SnackbarComponent, typeof i75.ThumbnailDisplayComponent, typeof i76.ContentTitleComponent, typeof i77.MarkdownDetailsSectionComponent, typeof i78.AccordionDetailsContainerComponent, typeof i79.PlainDetailsContainerComponent, typeof i80.DynamicDetailsContainerComponent, typeof i81.DynamicDetailsSectionComponent, typeof i82.DynamicFormContainerComponent, typeof i83.PlainFormContainerComponent, typeof i84.AccordionFormContainerComponent, typeof i85.DynamicFormSectionComponent, typeof i86.DynamicDashboardContainerComponent, typeof i87.PlainDashboardContainerComponent, typeof i88.AutocompleteInputComponent]>;
105
+ static ɵinj: i0.ɵɵInjectorDeclaration<MantleModule>;
106
+ }
@@ -0,0 +1,34 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/material/badge";
4
+ import * as i3 from "@angular/material/button";
5
+ import * as i4 from "@angular/material/card";
6
+ import * as i5 from "@angular/material/checkbox";
7
+ import * as i6 from "@angular/material/chips";
8
+ import * as i7 from "@angular/material/datepicker";
9
+ import * as i8 from "@angular/material/dialog";
10
+ import * as i9 from "@angular/material/expansion";
11
+ import * as i10 from "@angular/material/grid-list";
12
+ import * as i11 from "@angular/material/icon";
13
+ import * as i12 from "@angular/material/input";
14
+ import * as i13 from "@angular/material/list";
15
+ import * as i14 from "@angular/material/menu";
16
+ import * as i15 from "@angular/material/select";
17
+ import * as i16 from "@angular/material/sidenav";
18
+ import * as i17 from "@angular/material/tabs";
19
+ import * as i18 from "@angular/material/toolbar";
20
+ import * as i19 from "@angular/material/progress-spinner";
21
+ import * as i20 from "@angular/material/table";
22
+ import * as i21 from "@angular/material/paginator";
23
+ import * as i22 from "@angular/material/sort";
24
+ import * as i23 from "@angular/material-moment-adapter";
25
+ import * as i24 from "@angular/material/snack-bar";
26
+ import * as i25 from "@angular-material-components/datetime-picker";
27
+ import * as i26 from "@angular-material-components/moment-adapter";
28
+ import * as i27 from "@angular/material/tree";
29
+ import * as i28 from "@angular/material/autocomplete";
30
+ export declare class MaterialModule {
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.CommonModule, typeof i2.MatBadgeModule, typeof i3.MatButtonModule, typeof i4.MatCardModule, typeof i5.MatCheckboxModule, typeof i6.MatChipsModule, typeof i7.MatDatepickerModule, typeof i8.MatDialogModule, typeof i9.MatExpansionModule, typeof i10.MatGridListModule, typeof i11.MatIconModule, typeof i12.MatInputModule, typeof i13.MatListModule, typeof i14.MatMenuModule, typeof i15.MatSelectModule, typeof i16.MatSidenavModule, typeof i17.MatTabsModule, typeof i18.MatToolbarModule, typeof i19.MatProgressSpinnerModule, typeof i20.MatTableModule, typeof i21.MatPaginatorModule, typeof i22.MatSortModule, typeof i23.MatMomentDateModule, typeof i24.MatSnackBarModule, typeof i25.NgxMatDatetimePickerModule, typeof i25.NgxMatTimepickerModule, typeof i26.NgxMatMomentModule, typeof i27.MatTreeModule, typeof i28.MatAutocompleteModule], [typeof i2.MatBadgeModule, typeof i3.MatButtonModule, typeof i4.MatCardModule, typeof i5.MatCheckboxModule, typeof i6.MatChipsModule, typeof i7.MatDatepickerModule, typeof i8.MatDialogModule, typeof i9.MatExpansionModule, typeof i10.MatGridListModule, typeof i11.MatIconModule, typeof i12.MatInputModule, typeof i13.MatListModule, typeof i14.MatMenuModule, typeof i15.MatSelectModule, typeof i16.MatSidenavModule, typeof i17.MatTabsModule, typeof i18.MatToolbarModule, typeof i19.MatProgressSpinnerModule, typeof i20.MatTableModule, typeof i21.MatPaginatorModule, typeof i22.MatSortModule, typeof i23.MatMomentDateModule, typeof i24.MatSnackBarModule, typeof i25.NgxMatDatetimePickerModule, typeof i25.NgxMatTimepickerModule, typeof i26.NgxMatMomentModule, typeof i27.MatTreeModule, typeof i28.MatAutocompleteModule]>;
33
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
34
+ }
@@ -0,0 +1,13 @@
1
+ export interface ScreenSizeMapEntries<T> {
2
+ xs?: T;
3
+ sm?: T;
4
+ md?: T;
5
+ lg?: T;
6
+ xl?: T;
7
+ default: T;
8
+ }
9
+ export declare class ScreenSizeMap<T> {
10
+ private entries;
11
+ constructor(params: ScreenSizeMapEntries<T>);
12
+ findByScreenSize(screenSize: string): T;
13
+ }
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DynamicPipe implements PipeTransform {
4
+ constructor();
5
+ transform(value: string, modifier: string): string;
6
+ transformString(value: string): string;
7
+ transformCurrency(value: string): string;
8
+ transformDate(value: string): string;
9
+ transformDateTime(value: string): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<DynamicPipe, "dynamicPipe">;
12
+ }
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { WebApiService } from '../services/web-api.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SecureImagePipe implements PipeTransform {
6
+ private webApiService;
7
+ constructor(webApiService: WebApiService);
8
+ transform(src: string): Observable<string>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SecureImagePipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<SecureImagePipe, "secureImage">;
11
+ }
@@ -0,0 +1,63 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpParams } from '@angular/common/http';
3
+ import { DynamicDetailsContent } from '../../data-structures/dynamic-layout.structure';
4
+ import { DynamicFormContent } from '../../data-structures/dynamic-layout.structure';
5
+ export declare class WebApiListRequest {
6
+ search: any;
7
+ sort: {
8
+ attr: string;
9
+ direction: string;
10
+ };
11
+ pagination: {
12
+ page_number: number;
13
+ page_size: number;
14
+ };
15
+ constructor(params?: any);
16
+ toHttpParams(): HttpParams;
17
+ }
18
+ export interface WebApiListResponse {
19
+ content: any[];
20
+ sort?: {
21
+ attr: string;
22
+ direction: string;
23
+ };
24
+ pagination?: {
25
+ page_number: number;
26
+ page_size: number;
27
+ total_items: number;
28
+ };
29
+ }
30
+ export interface WebApiDetailsResponse {
31
+ id: string;
32
+ header: any;
33
+ content: DynamicDetailsContent;
34
+ }
35
+ export interface WebApiFormResponse {
36
+ id?: string;
37
+ header: any;
38
+ content: DynamicFormContent;
39
+ }
40
+ export interface WebApiSaveResponse {
41
+ id?: string;
42
+ content: DynamicFormContent;
43
+ confirmationRequest?: {
44
+ message: string;
45
+ onConfirmationGiven: (confirmed: boolean) => void;
46
+ };
47
+ alert?: {
48
+ message: string;
49
+ };
50
+ }
51
+ export interface WebApiDeleteResponse {
52
+ id: string;
53
+ errors?: string[];
54
+ }
55
+ export interface WebApiCrudAdapter {
56
+ getList(params: WebApiListRequest, headers: any): Observable<WebApiListResponse>;
57
+ get(id: string, params: any, headers: any): Observable<WebApiDetailsResponse>;
58
+ getNew(params: any, headers: any): Observable<WebApiFormResponse>;
59
+ create(params: any, headers: any): Observable<WebApiSaveResponse>;
60
+ getEdit(id: string, params: any, headers: any): Observable<WebApiFormResponse>;
61
+ update(id: string, params: any, headers: any): Observable<WebApiSaveResponse>;
62
+ destroy(id: string, params: any, headers: any): Observable<WebApiDeleteResponse>;
63
+ }
@@ -0,0 +1,6 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ export interface WebsocketAdapter {
3
+ webRtcEvents: EventEmitter<any>;
4
+ connectWebRtc(): void;
5
+ disconnectWebRtc(): void;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { MatSnackBar } from '@angular/material/snack-bar';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AnnouncementService {
4
+ private snackbar;
5
+ constructor(snackbar: MatSnackBar);
6
+ info(message: string): void;
7
+ success(message: string): void;
8
+ error(message: string): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AnnouncementService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<AnnouncementService>;
11
+ }
@@ -0,0 +1,21 @@
1
+ import { ObjectService } from './object.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ArrayService {
4
+ private objectService;
5
+ constructor(objectService: ObjectService);
6
+ removeItem(array: any[], item: any): any[];
7
+ replaceItem(array: any[], item: any, newItem: any): any[];
8
+ removeById(array: any[], id: string): any[];
9
+ replaceById(array: any[], id: string, newItem: any): any[];
10
+ removeByAttribute(array: any[], attr: string, val: any): any[];
11
+ replaceByAttribute(array: any[], attr: string, val: any, newItem: any): any[];
12
+ findByAttribute(array: any[], attr: string, val: any): any;
13
+ hasItemWithAttributes(array: any[], criteria?: any): boolean;
14
+ hasItem(array: any[], val: any): boolean;
15
+ sortAscendingByAttribute(array: any[], attr: string): any[];
16
+ sortDescendingByAttribute(array: any[], attr: string): any[];
17
+ maxValueForAttribute(array: any[], attr: string): any;
18
+ deepClone(array: any[]): any;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrayService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<ArrayService>;
21
+ }
@@ -0,0 +1,14 @@
1
+ import { ObjectService } from './object.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChartService {
4
+ private objectService;
5
+ constructor(objectService: ObjectService);
6
+ private mergeChartConfig;
7
+ columnChart(domainConfig: any, widgetConfig?: any): any;
8
+ ganttChart(domainConfig: any, widgetConfig?: any): any;
9
+ pieChart(domainConfig: any, widgetConfig?: any): any;
10
+ progressBarChart(domainConfig: any, widgetConfig?: any): any;
11
+ splineChart(domainConfig: any, widgetConfig?: any): any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChartService>;
14
+ }
@@ -0,0 +1,11 @@
1
+ import { Observable } from 'rxjs';
2
+ import { MatDialog } from "@angular/material/dialog";
3
+ import * as i0 from "@angular/core";
4
+ export declare class ConfirmationService {
5
+ private dialog;
6
+ constructor(dialog: MatDialog);
7
+ confirmSave(onConfirmation: (confirmed: boolean) => void, configData?: any): void;
8
+ confirmDeletion(onConfirmation: (deletionAction: (id: string) => Observable<any>) => void, configData?: any): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmationService>;
11
+ }