@smartbit4all/ng-client 5.0.21 → 6.0.1

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 (677) hide show
  1. package/README.md +386 -386
  2. package/esm2022/lib/component-factory-service/component-factory-service.module.mjs +17 -0
  3. package/esm2022/lib/component-factory-service/component-factory-service.service.mjs +35 -0
  4. package/esm2022/lib/component-factory-service/projects.mjs +6 -0
  5. package/esm2022/lib/session/api/api/api.mjs +4 -0
  6. package/esm2022/lib/session/api/api/session.service.mjs +306 -0
  7. package/esm2022/lib/session/api/configuration.mjs +91 -0
  8. package/esm2022/lib/session/api/encoder.mjs +19 -0
  9. package/esm2022/lib/session/api/index.mjs +3 -0
  10. package/esm2022/lib/session/api/model/accountInfo.mjs +13 -0
  11. package/esm2022/lib/session/api/model/apiError.mjs +13 -0
  12. package/esm2022/lib/session/api/model/authenticationProviderData.mjs +13 -0
  13. package/esm2022/lib/session/api/model/getAuthenticationProvidersResponse.mjs +2 -0
  14. package/esm2022/lib/session/api/model/models.mjs +9 -0
  15. package/esm2022/lib/session/api/model/refreshSessionRequest.mjs +13 -0
  16. package/esm2022/lib/session/api/model/session.mjs +2 -0
  17. package/esm2022/lib/session/api/model/sessionInfoData.mjs +2 -0
  18. package/esm2022/lib/session/api/model/userActivityLog.mjs +13 -0
  19. package/esm2022/lib/session/api/param.mjs +2 -0
  20. package/esm2022/lib/session/api/variables.mjs +9 -0
  21. package/esm2022/lib/session/cookie-service/smart-cookie.service.mjs +225 -0
  22. package/esm2022/lib/session/projects.mjs +13 -0
  23. package/esm2022/lib/session/smart-backend-bootstrap.config.mjs +2 -0
  24. package/esm2022/lib/session/smart-backend-bootstrap.service.mjs +214 -0
  25. package/esm2022/lib/session/smart-default-error-ui.service.mjs +134 -0
  26. package/esm2022/lib/session/smart-error-catching.interceptor.mjs +109 -0
  27. package/esm2022/lib/session/smart-header-maintainer.interceptor.mjs +44 -0
  28. package/esm2022/lib/session/smart-session-handler.service.mjs +7 -0
  29. package/esm2022/lib/session/smart-session.module.mjs +58 -0
  30. package/esm2022/lib/session/smart-session.service.mjs +284 -0
  31. package/esm2022/lib/session/smart-timer/smart-session-timer.component.mjs +39 -0
  32. package/esm2022/lib/session/smart-timer/smart-session-timer.service.mjs +63 -0
  33. package/esm2022/lib/shared/projects.mjs +4 -0
  34. package/esm2022/lib/shared/shared.module.mjs +19 -0
  35. package/esm2022/lib/shared/smart-tooltip.directive.mjs +58 -0
  36. package/esm2022/lib/shared/smarttable.date-pipe.mjs +43 -0
  37. package/esm2022/lib/smart-client/projects.mjs +4 -0
  38. package/esm2022/lib/smart-client/smart-component-api-client.mjs +934 -0
  39. package/esm2022/lib/smart-client/smart-file-uploader/smart-file-uploader.component.mjs +79 -0
  40. package/esm2022/lib/smart-client/smart.component.mjs +88 -0
  41. package/esm2022/lib/smart-client/smart.service.mjs +71 -0
  42. package/esm2022/lib/smart-component-layout/api/api/api.mjs +4 -0
  43. package/esm2022/lib/smart-component-layout/api/api/default.service.mjs +133 -0
  44. package/esm2022/lib/smart-component-layout/api/api.module.mjs +40 -0
  45. package/esm2022/lib/smart-component-layout/api/configuration.mjs +91 -0
  46. package/esm2022/lib/smart-component-layout/api/encoder.mjs +19 -0
  47. package/esm2022/lib/smart-component-layout/api/index.mjs +7 -0
  48. package/esm2022/lib/smart-component-layout/api/model/componentType.mjs +18 -0
  49. package/esm2022/lib/smart-component-layout/api/model/componentWidgetType.mjs +22 -0
  50. package/esm2022/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.mjs +2 -0
  51. package/esm2022/lib/smart-component-layout/api/model/layoutDirection.mjs +17 -0
  52. package/esm2022/lib/smart-component-layout/api/model/models.mjs +9 -0
  53. package/esm2022/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.mjs +2 -0
  54. package/esm2022/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.mjs +2 -0
  55. package/esm2022/lib/smart-component-layout/api/model/toolbarDirection.mjs +17 -0
  56. package/esm2022/lib/smart-component-layout/api/model/toolbarProperties.mjs +2 -0
  57. package/esm2022/lib/smart-component-layout/api/param.mjs +2 -0
  58. package/esm2022/lib/smart-component-layout/api/variables.mjs +9 -0
  59. package/esm2022/lib/smart-component-layout/projects.mjs +8 -0
  60. package/esm2022/lib/smart-component-layout/smart-component-layout-utility.mjs +169 -0
  61. package/esm2022/lib/smart-component-layout/smart-component-layout.component.mjs +436 -0
  62. package/esm2022/lib/smart-component-layout/smart-component-layout.module.mjs +57 -0
  63. package/esm2022/lib/smart-diagram/api/api/api.mjs +4 -0
  64. package/esm2022/lib/smart-diagram/api/api/diagramService.service.mjs +141 -0
  65. package/esm2022/lib/smart-diagram/api/api.module.mjs +40 -0
  66. package/esm2022/lib/smart-diagram/api/configuration.mjs +91 -0
  67. package/esm2022/lib/smart-diagram/api/encoder.mjs +19 -0
  68. package/esm2022/lib/smart-diagram/api/index.mjs +7 -0
  69. package/esm2022/lib/smart-diagram/api/model/diagramColor.mjs +13 -0
  70. package/esm2022/lib/smart-diagram/api/model/diagramDataContainer.mjs +2 -0
  71. package/esm2022/lib/smart-diagram/api/model/diagramDataItem.mjs +13 -0
  72. package/esm2022/lib/smart-diagram/api/model/diagramDataSet.mjs +2 -0
  73. package/esm2022/lib/smart-diagram/api/model/diagramDescriptor.mjs +2 -0
  74. package/esm2022/lib/smart-diagram/api/model/diagramModel.mjs +2 -0
  75. package/esm2022/lib/smart-diagram/api/model/diagramShape.mjs +2 -0
  76. package/esm2022/lib/smart-diagram/api/model/drawTime.mjs +18 -0
  77. package/esm2022/lib/smart-diagram/api/model/labelText.mjs +2 -0
  78. package/esm2022/lib/smart-diagram/api/model/models.mjs +10 -0
  79. package/esm2022/lib/smart-diagram/api/param.mjs +2 -0
  80. package/esm2022/lib/smart-diagram/api/variables.mjs +9 -0
  81. package/esm2022/lib/smart-diagram/component/default-smart-diagram-options.provider.mjs +312 -0
  82. package/esm2022/lib/smart-diagram/component/smart-diagram.component.mjs +359 -0
  83. package/esm2022/lib/smart-diagram/component/smart-diagram.module.mjs +40 -0
  84. package/esm2022/lib/smart-diagram/component/smart-diagram.util.mjs +10 -0
  85. package/esm2022/lib/smart-diagram/projects.mjs +5 -0
  86. package/esm2022/lib/smart-dialog/projects.mjs +8 -0
  87. package/esm2022/lib/smart-dialog/smartdialog.component.mjs +54 -0
  88. package/esm2022/lib/smart-dialog/smartdialog.model.mjs +16 -0
  89. package/esm2022/lib/smart-dialog/smartdialog.module.mjs +46 -0
  90. package/esm2022/lib/smart-dialog/smartdialog.service.mjs +86 -0
  91. package/esm2022/lib/smart-expandable-section/expandable-section.component.mjs +101 -0
  92. package/esm2022/lib/smart-expandable-section/expandable-section.model.mjs +12 -0
  93. package/esm2022/lib/smart-expandable-section/projects.mjs +8 -0
  94. package/esm2022/lib/smart-expandable-section/smart-expandable-section.module.mjs +57 -0
  95. package/esm2022/lib/smart-expandable-section/smart-expandable-section.service.mjs +14 -0
  96. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBoolOperator.mjs +17 -0
  97. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBuilderField.mjs +2 -0
  98. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBuilderGroup.mjs +8 -0
  99. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBuilderModel.mjs +2 -0
  100. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionData.mjs +2 -0
  101. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionDataType.mjs +20 -0
  102. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionField.mjs +2 -0
  103. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionFieldList.mjs +2 -0
  104. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionFieldWidgetType.mjs +28 -0
  105. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionList.mjs +2 -0
  106. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionOperandData.mjs +2 -0
  107. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionOperation.mjs +32 -0
  108. package/esm2022/lib/smart-filter/api/filter/model/filterExpressionOrderBy.mjs +18 -0
  109. package/esm2022/lib/smart-filter/api/filter/model/model.mjs +16 -0
  110. package/esm2022/lib/smart-filter/api/filter/model/searchIndexObjectDefinitionData.mjs +2 -0
  111. package/esm2022/lib/smart-filter/api/filter/model/searchIndexPropertyDefinitionData.mjs +13 -0
  112. package/esm2022/lib/smart-filter/api/value/model/value.mjs +13 -0
  113. package/esm2022/lib/smart-filter/projects.mjs +9 -0
  114. package/esm2022/lib/smart-filter/smart-filter/components/smart-filter-expression-field/smart-filter-expression-field.component.mjs +14 -0
  115. package/esm2022/lib/smart-filter/smart-filter/components/smart-filter-simple/components/smart-filter-simple-field/smart-filter-simple-field.component.mjs +166 -0
  116. package/esm2022/lib/smart-filter/smart-filter/components/smart-filter-simple/smart-filter-simple.component.mjs +45 -0
  117. package/esm2022/lib/smart-filter/smart-filter/smart-filter.component.mjs +36 -0
  118. package/esm2022/lib/smart-filter/smart-filter/smart-filter.service.mjs +31 -0
  119. package/esm2022/lib/smart-filter/smart-filter.model.mjs +13 -0
  120. package/esm2022/lib/smart-filter/smart-filter.module.mjs +33 -0
  121. package/esm2022/lib/smart-filter-editor/api/api/filter.service.mjs +198 -0
  122. package/esm2022/lib/smart-filter-editor/api/configuration.mjs +91 -0
  123. package/esm2022/lib/smart-filter-editor/api/encoder.mjs +19 -0
  124. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBoolOperator.mjs +17 -0
  125. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderApiConfig.mjs +13 -0
  126. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderField.mjs +2 -0
  127. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderGroup.mjs +8 -0
  128. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderModel.mjs +2 -0
  129. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderUiModel.mjs +7 -0
  130. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionData.mjs +2 -0
  131. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionDataType.mjs +20 -0
  132. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionField.mjs +2 -0
  133. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionFieldEditor.mjs +2 -0
  134. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionFieldList.mjs +2 -0
  135. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionFieldWidgetType.mjs +28 -0
  136. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionList.mjs +2 -0
  137. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionOperandData.mjs +2 -0
  138. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionOperation.mjs +32 -0
  139. package/esm2022/lib/smart-filter-editor/api/model/filterExpressionOrderBy.mjs +19 -0
  140. package/esm2022/lib/smart-filter-editor/api/model/smartFilterType.mjs +17 -0
  141. package/esm2022/lib/smart-filter-editor/api/param.mjs +2 -0
  142. package/esm2022/lib/smart-filter-editor/api/variables.mjs +9 -0
  143. package/esm2022/lib/smart-filter-editor/filterExpressionBuilderApiActions.mjs +15 -0
  144. package/esm2022/lib/smart-filter-editor/project.mjs +8 -0
  145. package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/components/smart-filter-expression-item/smart-filter-expression-item.component.mjs +73 -0
  146. package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/components/smart-filter-expression-items/smart-filter-expression-items.component.mjs +40 -0
  147. package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component.mjs +294 -0
  148. package/esm2022/lib/smart-filter-editor/smart-filter-editor.model.mjs +2 -0
  149. package/esm2022/lib/smart-filter-editor/smart-filter-editor.module.mjs +69 -0
  150. package/esm2022/lib/smart-filter-editor/smart-filter-editor.service.mjs +63 -0
  151. package/esm2022/lib/smart-filter-editor/smart-filter-params/components/smart-filter-param/smart-filter-param.component.mjs +24 -0
  152. package/esm2022/lib/smart-filter-editor/smart-filter-params/smart-filter-params.component.mjs +57 -0
  153. package/esm2022/lib/smart-form/api/api/api.mjs +4 -0
  154. package/esm2022/lib/smart-form/api/api/default.service.mjs +133 -0
  155. package/esm2022/lib/smart-form/api/api.module.mjs +40 -0
  156. package/esm2022/lib/smart-form/api/configuration.mjs +91 -0
  157. package/esm2022/lib/smart-form/api/encoder.mjs +19 -0
  158. package/esm2022/lib/smart-form/api/index.mjs +7 -0
  159. package/esm2022/lib/smart-form/api/model/dateFieldProperties.mjs +13 -0
  160. package/esm2022/lib/smart-form/api/model/fileUploaderProperties.mjs +2 -0
  161. package/esm2022/lib/smart-form/api/model/imageProperties.mjs +2 -0
  162. package/esm2022/lib/smart-form/api/model/models.mjs +19 -0
  163. package/esm2022/lib/smart-form/api/model/multiFileUploaderProperties.mjs +2 -0
  164. package/esm2022/lib/smart-form/api/model/propertyMapping.mjs +13 -0
  165. package/esm2022/lib/smart-form/api/model/recordingUploaderProperties.mjs +7 -0
  166. package/esm2022/lib/smart-form/api/model/selectionDefinition.mjs +14 -0
  167. package/esm2022/lib/smart-form/api/model/smartFormInputMode.mjs +22 -0
  168. package/esm2022/lib/smart-form/api/model/smartFormWidgetDirection.mjs +17 -0
  169. package/esm2022/lib/smart-form/api/model/smartFormWidgetType.mjs +49 -0
  170. package/esm2022/lib/smart-form/api/model/smartLayoutDefinition.mjs +2 -0
  171. package/esm2022/lib/smart-form/api/model/smartMatrixModel.mjs +2 -0
  172. package/esm2022/lib/smart-form/api/model/smartWidgetDefinition.mjs +2 -0
  173. package/esm2022/lib/smart-form/api/model/smartWidgetHint.mjs +18 -0
  174. package/esm2022/lib/smart-form/api/model/sortDefinition.mjs +13 -0
  175. package/esm2022/lib/smart-form/api/model/textBoxProperties.mjs +13 -0
  176. package/esm2022/lib/smart-form/api/model/textFieldProperties.mjs +13 -0
  177. package/esm2022/lib/smart-form/api/model/valueChangeMode.mjs +21 -0
  178. package/esm2022/lib/smart-form/api/param.mjs +2 -0
  179. package/esm2022/lib/smart-form/api/variables.mjs +9 -0
  180. package/esm2022/lib/smart-form/highlightMacthingString-pipe.mjs +20 -0
  181. package/esm2022/lib/smart-form/projects.mjs +18 -0
  182. package/esm2022/lib/smart-form/services/smartform.layout-definition.service.mjs +753 -0
  183. package/esm2022/lib/smart-form/services/smartform.service.mjs +683 -0
  184. package/esm2022/lib/smart-form/smartfileuploader/large-file-snack-bar/large-file-snack-bar.component.mjs +15 -0
  185. package/esm2022/lib/smart-form/smartfileuploader/smartfileuploader.component.mjs +193 -0
  186. package/esm2022/lib/smart-form/smartfileuploader/smartfileuploader.model.mjs +2 -0
  187. package/esm2022/lib/smart-form/smartform.component.mjs +190 -0
  188. package/esm2022/lib/smart-form/smartform.form-model.mjs +2 -0
  189. package/esm2022/lib/smart-form/smartform.model.mjs +38 -0
  190. package/esm2022/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.mjs +179 -0
  191. package/esm2022/lib/smart-form/widgets/components/smart-month-picker/smart-month-picker.component.mjs +83 -0
  192. package/esm2022/lib/smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component.mjs +170 -0
  193. package/esm2022/lib/smart-form/widgets/components/smart-voice-recorder/smart-voice-recorder.component.mjs +151 -0
  194. package/esm2022/lib/smart-form/widgets/directives/comparable-dropdown.directive.mjs +35 -0
  195. package/esm2022/lib/smart-form/widgets/directives/comparable-multiselect.directive.mjs +79 -0
  196. package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +1038 -0
  197. package/esm2022/lib/smart-form/widgets/smartformwidget/sortable-widget/sortable-widget.component.mjs +78 -0
  198. package/esm2022/lib/smart-form/widgets/smartformwidget/trackCaps.directive.mjs +31 -0
  199. package/esm2022/lib/smart-generic-pages/acl-editing-view/acl-editing-view.component.mjs +98 -0
  200. package/esm2022/lib/smart-generic-pages/api/platform/acl/model/aCL.mjs +2 -0
  201. package/esm2022/lib/smart-generic-pages/api/platform/acl/model/aCLEntry.mjs +18 -0
  202. package/esm2022/lib/smart-generic-pages/api/platform/acl/model/objectValidationSeverity.mjs +19 -0
  203. package/esm2022/lib/smart-generic-pages/api/platform/acl/model/subject.mjs +13 -0
  204. package/esm2022/lib/smart-generic-pages/api/platform/api-default/objectHistoryRangeData.mjs +2 -0
  205. package/esm2022/lib/smart-generic-pages/api/platform/searchpage/model/searchPageModel.mjs +2 -0
  206. package/esm2022/lib/smart-generic-pages/api/platform/subjectselector/model/subjectSelectorPageModel.mjs +13 -0
  207. package/esm2022/lib/smart-generic-pages/api/platform/validation/model/validationItem.mjs +2 -0
  208. package/esm2022/lib/smart-generic-pages/api/platform/validation/model/validationResultPageModel.mjs +2 -0
  209. package/esm2022/lib/smart-generic-pages/generic-page/generic-page.component.mjs +54 -0
  210. package/esm2022/lib/smart-generic-pages/invalid-smartlink/invalid-smartlink.component.mjs +40 -0
  211. package/esm2022/lib/smart-generic-pages/no-permission-page/no-permission-page.component.mjs +40 -0
  212. package/esm2022/lib/smart-generic-pages/projects.mjs +13 -0
  213. package/esm2022/lib/smart-generic-pages/search-page/search-page.component.mjs +80 -0
  214. package/esm2022/lib/smart-generic-pages/smart-generic-pages.module.mjs +116 -0
  215. package/esm2022/lib/smart-generic-pages/subject-selector/subject-selector.component.mjs +77 -0
  216. package/esm2022/lib/smart-generic-pages/validation-result-page/validation-result-page.component.mjs +93 -0
  217. package/esm2022/lib/smart-grid/api/grid-api/api/api.mjs +4 -0
  218. package/esm2022/lib/smart-grid/api/grid-api/api/grid.service.mjs +514 -0
  219. package/esm2022/lib/smart-grid/api/grid-api/api.module.mjs +40 -0
  220. package/esm2022/lib/smart-grid/api/grid-api/configuration.mjs +91 -0
  221. package/esm2022/lib/smart-grid/api/grid-api/encoder.mjs +19 -0
  222. package/esm2022/lib/smart-grid/api/grid-api/index.mjs +7 -0
  223. package/esm2022/lib/smart-grid/api/grid-api/model/gridColumnContentType.mjs +17 -0
  224. package/esm2022/lib/smart-grid/api/grid-api/model/gridColumnMeta.mjs +2 -0
  225. package/esm2022/lib/smart-grid/api/grid-api/model/gridDataAccessConfig.mjs +20 -0
  226. package/esm2022/lib/smart-grid/api/grid-api/model/gridExportDescriptor.mjs +2 -0
  227. package/esm2022/lib/smart-grid/api/grid-api/model/gridModel.mjs +2 -0
  228. package/esm2022/lib/smart-grid/api/grid-api/model/gridPage.mjs +2 -0
  229. package/esm2022/lib/smart-grid/api/grid-api/model/gridRow.mjs +2 -0
  230. package/esm2022/lib/smart-grid/api/grid-api/model/gridSelectionChange.mjs +13 -0
  231. package/esm2022/lib/smart-grid/api/grid-api/model/gridSelectionMode.mjs +18 -0
  232. package/esm2022/lib/smart-grid/api/grid-api/model/gridSelectionType.mjs +17 -0
  233. package/esm2022/lib/smart-grid/api/grid-api/model/gridServerModel.mjs +2 -0
  234. package/esm2022/lib/smart-grid/api/grid-api/model/gridUpdateData.mjs +2 -0
  235. package/esm2022/lib/smart-grid/api/grid-api/model/gridView.mjs +2 -0
  236. package/esm2022/lib/smart-grid/api/grid-api/model/gridViewDescriptor.mjs +8 -0
  237. package/esm2022/lib/smart-grid/api/grid-api/model/models.mjs +15 -0
  238. package/esm2022/lib/smart-grid/api/grid-api/param.mjs +2 -0
  239. package/esm2022/lib/smart-grid/api/grid-api/variables.mjs +9 -0
  240. package/esm2022/lib/smart-grid/components/expandable-grid/expandable-grid.component.mjs +20 -0
  241. package/esm2022/lib/smart-grid/components/generic-component/expanded-row-renderer.component.mjs +47 -0
  242. package/esm2022/lib/smart-grid/components/smart-grid-card/smart-grid-card.component.mjs +72 -0
  243. package/esm2022/lib/smart-grid/components/table-layout-definer/table-layout-definer.component.mjs +200 -0
  244. package/esm2022/lib/smart-grid/models/model.mjs +29 -0
  245. package/esm2022/lib/smart-grid/projects.mjs +9 -0
  246. package/esm2022/lib/smart-grid/smart-grid-toolbar-util.mjs +65 -0
  247. package/esm2022/lib/smart-grid/smart-grid.component.mjs +1035 -0
  248. package/esm2022/lib/smart-grid/smart-grid.module.mjs +103 -0
  249. package/esm2022/lib/smart-grid/smart-grid.service.mjs +92 -0
  250. package/esm2022/lib/smart-icon/projects.mjs +9 -0
  251. package/esm2022/lib/smart-icon/smart-icon/smart-icon.component.mjs +95 -0
  252. package/esm2022/lib/smart-icon/smart-icon/ui-badge/ui-badge.component.mjs +40 -0
  253. package/esm2022/lib/smart-icon/smart-icon/ui-badge/ui-badge.directive.mjs +37 -0
  254. package/esm2022/lib/smart-icon/smart-icon.module.mjs +26 -0
  255. package/esm2022/lib/smart-icon/smart-icon.service.mjs +93 -0
  256. package/esm2022/lib/smart-map/abstract-map.mjs +112 -0
  257. package/esm2022/lib/smart-map/api/api/api.mjs +4 -0
  258. package/esm2022/lib/smart-map/api/api/geoMap.service.mjs +312 -0
  259. package/esm2022/lib/smart-map/api/api.module.mjs +40 -0
  260. package/esm2022/lib/smart-map/api/configuration.mjs +91 -0
  261. package/esm2022/lib/smart-map/api/encoder.mjs +19 -0
  262. package/esm2022/lib/smart-map/api/index.mjs +7 -0
  263. package/esm2022/lib/smart-map/api/model/gPSPosition.mjs +13 -0
  264. package/esm2022/lib/smart-map/api/model/gPSRoute.mjs +2 -0
  265. package/esm2022/lib/smart-map/api/model/geoMapChange.mjs +2 -0
  266. package/esm2022/lib/smart-map/api/model/geoMapDataLoadingMode.mjs +17 -0
  267. package/esm2022/lib/smart-map/api/model/geoMapDataSourceDescriptor.mjs +2 -0
  268. package/esm2022/lib/smart-map/api/model/geoMapDataSourceType.mjs +19 -0
  269. package/esm2022/lib/smart-map/api/model/geoMapEditingSession.mjs +2 -0
  270. package/esm2022/lib/smart-map/api/model/geoMapInteraction.mjs +2 -0
  271. package/esm2022/lib/smart-map/api/model/geoMapItem.mjs +2 -0
  272. package/esm2022/lib/smart-map/api/model/geoMapItemKind.mjs +18 -0
  273. package/esm2022/lib/smart-map/api/model/geoMapLayer.mjs +2 -0
  274. package/esm2022/lib/smart-map/api/model/geoMapLayerChange.mjs +2 -0
  275. package/esm2022/lib/smart-map/api/model/geoMapLayerDescriptor.mjs +2 -0
  276. package/esm2022/lib/smart-map/api/model/geoMapModel.mjs +2 -0
  277. package/esm2022/lib/smart-map/api/model/geoMapOperationMode.mjs +17 -0
  278. package/esm2022/lib/smart-map/api/model/geoMapSelectionMode.mjs +18 -0
  279. package/esm2022/lib/smart-map/api/model/geoMapServerModel.mjs +2 -0
  280. package/esm2022/lib/smart-map/api/model/geoMapTextType.mjs +17 -0
  281. package/esm2022/lib/smart-map/api/model/geoMapViewState.mjs +2 -0
  282. package/esm2022/lib/smart-map/api/model/geoMapViewport.mjs +2 -0
  283. package/esm2022/lib/smart-map/api/model/models.mjs +21 -0
  284. package/esm2022/lib/smart-map/api/param.mjs +2 -0
  285. package/esm2022/lib/smart-map/api/variables.mjs +9 -0
  286. package/esm2022/lib/smart-map/api-default/api-default.mjs +2 -0
  287. package/esm2022/lib/smart-map/impl/google-map.mjs +224 -0
  288. package/esm2022/lib/smart-map/impl/leaflet-map.mjs +422 -0
  289. package/esm2022/lib/smart-map/projects.mjs +9 -0
  290. package/esm2022/lib/smart-map/smart-map.component.mjs +222 -0
  291. package/esm2022/lib/smart-map/smart-map.module.mjs +22 -0
  292. package/esm2022/lib/smart-map/smart-map.types.mjs +2 -0
  293. package/esm2022/lib/smart-navbar/projects.mjs +8 -0
  294. package/esm2022/lib/smart-navbar/smart-navbar.component.mjs +61 -0
  295. package/esm2022/lib/smart-navbar/smart-navbar.model.mjs +6 -0
  296. package/esm2022/lib/smart-navbar/smart-navbar.module.mjs +63 -0
  297. package/esm2022/lib/smart-navbar/smart-navbar.service.mjs +14 -0
  298. package/esm2022/lib/smart-navigation/projects.mjs +6 -0
  299. package/esm2022/lib/smart-navigation/smart-navigation.interface.mjs +2 -0
  300. package/esm2022/lib/smart-navigation/smart-navigation.module.mjs +18 -0
  301. package/esm2022/lib/smart-navigation/smart-navigation.service.mjs +27 -0
  302. package/esm2022/lib/smart-ng-client.module.mjs +130 -0
  303. package/esm2022/lib/smart-ng-client.service.mjs +19 -0
  304. package/esm2022/lib/smart-subject/projects.mjs +5 -0
  305. package/esm2022/lib/smart-subject/smart-subject.mjs +21 -0
  306. package/esm2022/lib/smart-tab-group/projects.mjs +5 -0
  307. package/esm2022/lib/smart-tab-group/smart-tab-group.module.mjs +22 -0
  308. package/esm2022/lib/smart-table/components/default-actions-popup/default-actions-popup.component.mjs +43 -0
  309. package/esm2022/lib/smart-table/components/loading/loading.component.mjs +15 -0
  310. package/esm2022/lib/smart-table/directives/mat-context-menu-trigger-for.directive.mjs +52 -0
  311. package/esm2022/lib/smart-table/projects.mjs +8 -0
  312. package/esm2022/lib/smart-table/smarttable.component.mjs +98 -0
  313. package/esm2022/lib/smart-table/smarttable.model.mjs +177 -0
  314. package/esm2022/lib/smart-table/smarttable.module.mjs +109 -0
  315. package/esm2022/lib/smart-table/smarttable.service.mjs +14 -0
  316. package/esm2022/lib/smart-table/tables/material-table/material-table.component.mjs +42 -0
  317. package/esm2022/lib/smart-table/tables/mobile-table/mobile-table.component.mjs +23 -0
  318. package/esm2022/lib/smart-table/tables/table.mjs +573 -0
  319. package/esm2022/lib/smart-tree/projects.mjs +9 -0
  320. package/esm2022/lib/smart-tree/smarttree-generic.service.mjs +292 -0
  321. package/esm2022/lib/smart-tree/smarttree.component.mjs +187 -0
  322. package/esm2022/lib/smart-tree/smarttree.model.mjs +7 -0
  323. package/esm2022/lib/smart-tree/smarttree.module.mjs +60 -0
  324. package/esm2022/lib/smart-tree/smarttree.node.model.mjs +6 -0
  325. package/esm2022/lib/smart-tree/smarttree.service.interface.mjs +2 -0
  326. package/esm2022/lib/smart-tree/smarttree.service.mjs +47 -0
  327. package/esm2022/lib/smart-tree/tree-api/api/tree.service.mjs +1190 -0
  328. package/esm2022/lib/smart-tree/tree-api/configuration.mjs +91 -0
  329. package/esm2022/lib/smart-tree/tree-api/encoder.mjs +19 -0
  330. package/esm2022/lib/smart-tree/tree-api/param.mjs +2 -0
  331. package/esm2022/lib/smart-tree/tree-api/variables.mjs +9 -0
  332. package/esm2022/lib/smart-validation/named-validator.service.mjs +115 -0
  333. package/esm2022/lib/smart-validation/projects.mjs +4 -0
  334. package/esm2022/lib/smart-validation/smart-validation.module.mjs +24 -0
  335. package/esm2022/lib/smart-validation/smart-validation.types.mjs +4 -0
  336. package/esm2022/lib/view-context/api/api/api.mjs +4 -0
  337. package/esm2022/lib/view-context/api/api/view.service.mjs +903 -0
  338. package/esm2022/lib/view-context/api/api-default/binaryData.mjs +2 -0
  339. package/esm2022/lib/view-context/api/api-default/invocationError.mjs +2 -0
  340. package/esm2022/lib/view-context/api/api-default/invocationRequest.mjs +2 -0
  341. package/esm2022/lib/view-context/api/api-default/invocationRun.mjs +2 -0
  342. package/esm2022/lib/view-context/api/api.module.mjs +40 -0
  343. package/esm2022/lib/view-context/api/configuration.mjs +91 -0
  344. package/esm2022/lib/view-context/api/encoder.mjs +19 -0
  345. package/esm2022/lib/view-context/api/index.mjs +7 -0
  346. package/esm2022/lib/view-context/api/model/backgroundProcessInfo.mjs +2 -0
  347. package/esm2022/lib/view-context/api/model/badgeDescriptor.mjs +13 -0
  348. package/esm2022/lib/view-context/api/model/clipboardData.mjs +13 -0
  349. package/esm2022/lib/view-context/api/model/closeResult.mjs +18 -0
  350. package/esm2022/lib/view-context/api/model/componentConstraint.mjs +2 -0
  351. package/esm2022/lib/view-context/api/model/componentModel.mjs +2 -0
  352. package/esm2022/lib/view-context/api/model/componentModelChange.mjs +13 -0
  353. package/esm2022/lib/view-context/api/model/dataChange.mjs +2 -0
  354. package/esm2022/lib/view-context/api/model/dataChangeEvent.mjs +2 -0
  355. package/esm2022/lib/view-context/api/model/dataChangeKind.mjs +21 -0
  356. package/esm2022/lib/view-context/api/model/deviceInfo.mjs +13 -0
  357. package/esm2022/lib/view-context/api/model/downloadedFile.mjs +13 -0
  358. package/esm2022/lib/view-context/api/model/iconPosition.mjs +21 -0
  359. package/esm2022/lib/view-context/api/model/imageResource.mjs +8 -0
  360. package/esm2022/lib/view-context/api/model/link.mjs +20 -0
  361. package/esm2022/lib/view-context/api/model/messageData.mjs +2 -0
  362. package/esm2022/lib/view-context/api/model/messageOption.mjs +2 -0
  363. package/esm2022/lib/view-context/api/model/messageOptionType.mjs +18 -0
  364. package/esm2022/lib/view-context/api/model/messageResult.mjs +2 -0
  365. package/esm2022/lib/view-context/api/model/messageTextType.mjs +17 -0
  366. package/esm2022/lib/view-context/api/model/messageType.mjs +19 -0
  367. package/esm2022/lib/view-context/api/model/models.mjs +63 -0
  368. package/esm2022/lib/view-context/api/model/multiComboBoxElement.mjs +13 -0
  369. package/esm2022/lib/view-context/api/model/multiComboBoxModel.mjs +2 -0
  370. package/esm2022/lib/view-context/api/model/namedValidator.mjs +19 -0
  371. package/esm2022/lib/view-context/api/model/openPendingData.mjs +2 -0
  372. package/esm2022/lib/view-context/api/model/serverRequestExecutionStat.mjs +2 -0
  373. package/esm2022/lib/view-context/api/model/serverRequestTrack.mjs +2 -0
  374. package/esm2022/lib/view-context/api/model/serverRequestType.mjs +24 -0
  375. package/esm2022/lib/view-context/api/model/smartLinkData.mjs +2 -0
  376. package/esm2022/lib/view-context/api/model/smartLinkMigrationStatus.mjs +8 -0
  377. package/esm2022/lib/view-context/api/model/statisticRecord.mjs +13 -0
  378. package/esm2022/lib/view-context/api/model/style.mjs +13 -0
  379. package/esm2022/lib/view-context/api/model/uiAction.mjs +2 -0
  380. package/esm2022/lib/view-context/api/model/uiActionButtonDescriptor.mjs +2 -0
  381. package/esm2022/lib/view-context/api/model/uiActionButtonType.mjs +27 -0
  382. package/esm2022/lib/view-context/api/model/uiActionConstraint.mjs +13 -0
  383. package/esm2022/lib/view-context/api/model/uiActionDefinition.mjs +2 -0
  384. package/esm2022/lib/view-context/api/model/uiActionDefinitionEntry.mjs +2 -0
  385. package/esm2022/lib/view-context/api/model/uiActionDescriptor.mjs +2 -0
  386. package/esm2022/lib/view-context/api/model/uiActionDialogDescriptor.mjs +2 -0
  387. package/esm2022/lib/view-context/api/model/uiActionFeedbackType.mjs +20 -0
  388. package/esm2022/lib/view-context/api/model/uiActionInputType.mjs +21 -0
  389. package/esm2022/lib/view-context/api/model/uiActionRequest.mjs +13 -0
  390. package/esm2022/lib/view-context/api/model/uiActionSchedule.mjs +13 -0
  391. package/esm2022/lib/view-context/api/model/uiActionTooltip.mjs +22 -0
  392. package/esm2022/lib/view-context/api/model/uiActionUploadDescriptor.mjs +2 -0
  393. package/esm2022/lib/view-context/api/model/uploadWidgetType.mjs +18 -0
  394. package/esm2022/lib/view-context/api/model/uploadedFile.mjs +2 -0
  395. package/esm2022/lib/view-context/api/model/valueSet.mjs +2 -0
  396. package/esm2022/lib/view-context/api/model/view.mjs +2 -0
  397. package/esm2022/lib/view-context/api/model/viewApiError.mjs +13 -0
  398. package/esm2022/lib/view-context/api/model/viewConstraint.mjs +2 -0
  399. package/esm2022/lib/view-context/api/model/viewContext.mjs +2 -0
  400. package/esm2022/lib/view-context/api/model/viewContextChange.mjs +2 -0
  401. package/esm2022/lib/view-context/api/model/viewContextData.mjs +2 -0
  402. package/esm2022/lib/view-context/api/model/viewContextUpdate.mjs +2 -0
  403. package/esm2022/lib/view-context/api/model/viewData.mjs +2 -0
  404. package/esm2022/lib/view-context/api/model/viewEventHandler.mjs +8 -0
  405. package/esm2022/lib/view-context/api/model/viewPlaceholder.mjs +13 -0
  406. package/esm2022/lib/view-context/api/model/viewState.mjs +22 -0
  407. package/esm2022/lib/view-context/api/model/viewStateUpdate.mjs +2 -0
  408. package/esm2022/lib/view-context/api/model/viewType.mjs +18 -0
  409. package/esm2022/lib/view-context/api/param.mjs +2 -0
  410. package/esm2022/lib/view-context/api/variables.mjs +9 -0
  411. package/esm2022/lib/view-context/default-view-components.token.mjs +9 -0
  412. package/esm2022/lib/view-context/invalid-fields-snack-bar/invalid-fields-snack-bar.component.mjs +20 -0
  413. package/esm2022/lib/view-context/message-dialog/message-dialog.component.mjs +93 -0
  414. package/esm2022/lib/view-context/projects.mjs +29 -0
  415. package/esm2022/lib/view-context/property-definition-data.mjs +2 -0
  416. package/esm2022/lib/view-context/reuse-router-slot.token.mjs +4 -0
  417. package/esm2022/lib/view-context/smart-embedded-slot.directive.mjs +57 -0
  418. package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.component.mjs +199 -0
  419. package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.constants.mjs +72 -0
  420. package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.service.mjs +21 -0
  421. package/esm2022/lib/view-context/smart-ui-action/components/success-snack-bar/success-snack-bar.component.mjs +30 -0
  422. package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component.mjs +198 -0
  423. package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/prime-file-uploader/prime-file-uploader.component.mjs +95 -0
  424. package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.mjs +134 -0
  425. package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.utils.mjs +12 -0
  426. package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/voice-record-widget/voice-record-widget.component.mjs +256 -0
  427. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.mjs +77 -0
  428. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.mjs +54 -0
  429. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-dialog-button/ui-action-dialog-button.component.mjs +60 -0
  430. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +106 -0
  431. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.mjs +60 -0
  432. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.mjs +132 -0
  433. package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.mjs +58 -0
  434. package/esm2022/lib/view-context/smart-ui-action/file-editor-toolbar/file-editor-toolbar.component.mjs +33 -0
  435. package/esm2022/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.mjs +215 -0
  436. package/esm2022/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +319 -0
  437. package/esm2022/lib/view-context/smart-ui-action/ui-action.descriptor.service.mjs +185 -0
  438. package/esm2022/lib/view-context/smart-ui-action/ui-action.model.mjs +7 -0
  439. package/esm2022/lib/view-context/smart-ui-action/ui-action.service.mjs +235 -0
  440. package/esm2022/lib/view-context/smart-view-context-dialog.service.mjs +77 -0
  441. package/esm2022/lib/view-context/smart-view-context-error-dialog/smart-view-context-error-dialog.component.mjs +35 -0
  442. package/esm2022/lib/view-context/smart-view-context-error-dialog/smart-view-context-error-dialog.service.mjs +74 -0
  443. package/esm2022/lib/view-context/smart-view-context.interceptor.mjs +63 -0
  444. package/esm2022/lib/view-context/smart-view-context.model.mjs +2 -0
  445. package/esm2022/lib/view-context/smart-view-context.module.mjs +397 -0
  446. package/esm2022/lib/view-context/smart-view-context.service.mjs +1074 -0
  447. package/esm2022/lib/view-context/smart-view-redirect/smart-view-redirect.mjs +41 -0
  448. package/esm2022/lib/view-context/utility/componentLibrary.mjs +9 -0
  449. package/esm2022/lib/view-context/utility/smart-object-utility.mjs +44 -0
  450. package/esm2022/lib/view-context/utility/smart-style-utility.mjs +68 -0
  451. package/esm2022/lib/view-context/value-api/api/api.mjs +4 -0
  452. package/esm2022/lib/view-context/value-api/api/value.service.mjs +138 -0
  453. package/esm2022/lib/view-context/value-api/api.module.mjs +40 -0
  454. package/esm2022/lib/view-context/value-api/configuration.mjs +91 -0
  455. package/esm2022/lib/view-context/value-api/encoder.mjs +19 -0
  456. package/esm2022/lib/view-context/value-api/index.mjs +7 -0
  457. package/esm2022/lib/view-context/value-api/model/genericValue.mjs +13 -0
  458. package/esm2022/lib/view-context/value-api/model/models.mjs +11 -0
  459. package/esm2022/lib/view-context/value-api/model/value.mjs +13 -0
  460. package/esm2022/lib/view-context/value-api/model/valueSetData.mjs +2 -0
  461. package/esm2022/lib/view-context/value-api/model/valueSetDefinition.mjs +2 -0
  462. package/esm2022/lib/view-context/value-api/model/valueSetDefinitionData.mjs +2 -0
  463. package/esm2022/lib/view-context/value-api/model/valueSetDefinitionIdentifier.mjs +13 -0
  464. package/esm2022/lib/view-context/value-api/model/valueSetDefinitionKind.mjs +24 -0
  465. package/esm2022/lib/view-context/value-api/model/valueSetExpression.mjs +2 -0
  466. package/esm2022/lib/view-context/value-api/model/valueSetOperand.mjs +2 -0
  467. package/esm2022/lib/view-context/value-api/model/valueSetOperation.mjs +19 -0
  468. package/esm2022/lib/view-context/value-api/param.mjs +2 -0
  469. package/esm2022/lib/view-context/value-api/variables.mjs +9 -0
  470. package/esm2022/lib/view-context/view-handler-resolution.mjs +21 -0
  471. package/esm2022/lib/view-context/view-op.mjs +41 -0
  472. package/esm2022/lib/view-context/view-slot-resolution.mjs +28 -0
  473. package/esm2022/projects.mjs +30 -0
  474. package/esm2022/smartbit4all-ng-client.mjs +5 -0
  475. package/fesm2022/smartbit4all-ng-client.mjs +8990 -4553
  476. package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
  477. package/lib/session/api/model/accountInfo.d.ts +2 -0
  478. package/lib/session/projects.d.ts +3 -0
  479. package/lib/session/smart-backend-bootstrap.config.d.ts +65 -0
  480. package/lib/session/smart-backend-bootstrap.service.d.ts +55 -0
  481. package/lib/session/smart-default-error-ui.service.d.ts +90 -0
  482. package/lib/session/smart-error-catching.interceptor.d.ts +4 -1
  483. package/lib/session/smart-session-handler.service.d.ts +2 -1
  484. package/lib/session/smart-session.service.d.ts +16 -1
  485. package/lib/session/smart-timer/smart-session-timer.component.d.ts +3 -1
  486. package/lib/smart-client/projects.d.ts +0 -1
  487. package/lib/smart-client/smart-component-api-client.d.ts +45 -19
  488. package/lib/smart-client/smart.component.d.ts +7 -5
  489. package/lib/smart-client/smart.service.d.ts +4 -5
  490. package/lib/smart-component-layout/api/model/componentWidgetType.d.ts +3 -1
  491. package/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.d.ts +19 -0
  492. package/lib/smart-component-layout/api/model/models.d.ts +3 -0
  493. package/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.d.ts +2 -0
  494. package/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.d.ts +6 -0
  495. package/{src/lib/smart-chart/smart-chart/api/model/chartData.d.ts → lib/smart-component-layout/api/model/toolbarDirection.d.ts} +5 -6
  496. package/lib/smart-component-layout/api/model/toolbarProperties.d.ts +16 -0
  497. package/lib/smart-component-layout/smart-component-layout-utility.d.ts +9 -1
  498. package/lib/smart-component-layout/smart-component-layout.component.d.ts +31 -5
  499. package/lib/smart-component-layout/smart-component-layout.module.d.ts +4 -1
  500. package/lib/smart-diagram/api/api/api.d.ts +3 -0
  501. package/lib/smart-diagram/api/api/diagramService.service.d.ts +36 -0
  502. package/lib/smart-diagram/api/encoder.d.ts +11 -0
  503. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramColor.d.ts +2 -2
  504. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataContainer.d.ts +2 -3
  505. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataItem.d.ts +3 -3
  506. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataSet.d.ts +4 -4
  507. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDescriptor.d.ts +13 -9
  508. package/{src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramUiModel.d.ts → lib/smart-diagram/api/model/diagramModel.d.ts} +5 -4
  509. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramShape.d.ts +2 -2
  510. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/drawTime.d.ts +2 -2
  511. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/labelText.d.ts +2 -2
  512. package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/models.d.ts +1 -2
  513. package/lib/smart-diagram/component/default-smart-diagram-options.provider.d.ts +33 -0
  514. package/lib/smart-diagram/component/smart-diagram.component.d.ts +43 -0
  515. package/lib/smart-diagram/component/smart-diagram.module.d.ts +11 -0
  516. package/lib/smart-diagram/component/smart-diagram.util.d.ts +1 -0
  517. package/lib/smart-diagram/projects.d.ts +4 -0
  518. package/lib/smart-dialog/smartdialog.model.d.ts +2 -1
  519. package/lib/smart-dialog/smartdialog.module.d.ts +1 -2
  520. package/lib/smart-dialog/smartdialog.service.d.ts +1 -3
  521. package/lib/smart-expandable-section/expandable-section.component.d.ts +3 -1
  522. package/lib/smart-expandable-section/expandable-section.model.d.ts +1 -0
  523. package/lib/smart-expandable-section/smart-expandable-section.module.d.ts +2 -1
  524. package/lib/smart-filter-editor/smart-filter-editor.service.d.ts +4 -2
  525. package/{src/lib/smart-chart/smart-chart/api/model/chartOrientation.d.ts → lib/smart-form/api/model/dateFieldProperties.d.ts} +6 -7
  526. package/lib/smart-form/api/model/fileUploaderProperties.d.ts +20 -0
  527. package/lib/smart-form/api/model/imageProperties.d.ts +15 -0
  528. package/lib/smart-form/api/model/models.d.ts +7 -0
  529. package/lib/smart-form/api/model/multiFileUploaderProperties.d.ts +19 -0
  530. package/lib/smart-form/api/model/recordingUploaderProperties.d.ts +20 -0
  531. package/lib/smart-form/api/model/selectionDefinition.d.ts +17 -0
  532. package/lib/smart-form/api/model/smartFormWidgetType.d.ts +4 -1
  533. package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +5 -0
  534. package/lib/smart-form/api/model/textBoxProperties.d.ts +15 -0
  535. package/{src/lib/smart-chart/smart-chart/api/model/chartValue.d.ts → lib/smart-form/api/model/textFieldProperties.d.ts} +4 -6
  536. package/lib/smart-form/api/model/valueChangeMode.d.ts +3 -2
  537. package/lib/smart-form/projects.d.ts +3 -0
  538. package/lib/smart-form/services/smartform.layout-definition.service.d.ts +6 -2
  539. package/lib/smart-form/services/smartform.service.d.ts +3 -2
  540. package/lib/smart-form/smartfileuploader/smartfileuploader.component.d.ts +19 -3
  541. package/lib/smart-form/smartform.component.d.ts +3 -2
  542. package/lib/smart-form/smartform.form-model.d.ts +160 -11
  543. package/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.d.ts +54 -0
  544. package/lib/smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component.d.ts +57 -0
  545. package/lib/smart-form/widgets/components/smart-voice-recorder/smart-voice-recorder.component.d.ts +50 -0
  546. package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +38 -7
  547. package/lib/smart-generic-pages/acl-editing-view/acl-editing-view.component.d.ts +21 -0
  548. package/lib/smart-generic-pages/api/platform/acl/model/aCL.d.ts +18 -0
  549. package/lib/smart-generic-pages/api/platform/acl/model/aCLEntry.d.ts +54 -0
  550. package/lib/smart-generic-pages/api/platform/acl/model/objectValidationSeverity.d.ts +19 -0
  551. package/lib/smart-generic-pages/api/platform/acl/model/subject.d.ts +24 -0
  552. package/lib/smart-generic-pages/api/platform/api-default/objectHistoryRangeData.d.ts +2 -0
  553. package/lib/smart-generic-pages/api/platform/searchpage/model/searchPageModel.d.ts +27 -0
  554. package/lib/smart-generic-pages/api/platform/subjectselector/model/subjectSelectorPageModel.d.ts +14 -0
  555. package/lib/smart-generic-pages/api/platform/validation/model/validationItem.d.ts +17 -0
  556. package/lib/smart-generic-pages/api/platform/validation/model/validationResultPageModel.d.ts +18 -0
  557. package/lib/smart-generic-pages/generic-page/generic-page.component.d.ts +12 -0
  558. package/lib/smart-generic-pages/invalid-smartlink/invalid-smartlink.component.d.ts +11 -0
  559. package/lib/smart-generic-pages/no-permission-page/no-permission-page.component.d.ts +11 -0
  560. package/lib/smart-generic-pages/projects.d.ts +9 -0
  561. package/lib/smart-generic-pages/search-page/search-page.component.d.ts +25 -0
  562. package/lib/smart-generic-pages/smart-generic-pages.module.d.ts +19 -0
  563. package/lib/smart-generic-pages/subject-selector/subject-selector.component.d.ts +17 -0
  564. package/lib/smart-generic-pages/validation-result-page/validation-result-page.component.d.ts +25 -0
  565. package/lib/smart-grid/api/grid-api/api/grid.service.d.ts +27 -6
  566. package/lib/smart-grid/api/grid-api/model/gridDataAccessConfig.d.ts +4 -0
  567. package/lib/smart-grid/api/grid-api/model/gridExportDescriptor.d.ts +2 -2
  568. package/lib/smart-grid/api/grid-api/model/gridModel.d.ts +2 -0
  569. package/lib/smart-grid/api/grid-api/model/gridSelectionChange.d.ts +6 -0
  570. package/lib/smart-grid/components/generic-component/expanded-row-renderer.component.d.ts +21 -0
  571. package/lib/smart-grid/components/smart-grid-card/smart-grid-card.component.d.ts +1 -0
  572. package/lib/smart-grid/components/table-layout-definer/table-layout-definer.component.d.ts +1 -0
  573. package/lib/smart-grid/smart-grid-toolbar-util.d.ts +1 -0
  574. package/lib/smart-grid/smart-grid.component.d.ts +20 -6
  575. package/lib/smart-grid/smart-grid.module.d.ts +20 -21
  576. package/lib/smart-grid/smart-grid.service.d.ts +2 -0
  577. package/lib/smart-icon/projects.d.ts +2 -0
  578. package/lib/smart-icon/smart-icon/smart-icon.component.d.ts +10 -4
  579. package/lib/smart-icon/smart-icon/ui-badge/ui-badge.component.d.ts +12 -0
  580. package/lib/smart-icon/smart-icon/ui-badge/ui-badge.directive.d.ts +14 -0
  581. package/lib/smart-icon/smart-icon.module.d.ts +8 -5
  582. package/lib/smart-map/abstract-map.d.ts +1 -1
  583. package/lib/smart-navigation/smart-navigation.interface.d.ts +1 -7
  584. package/lib/smart-navigation/smart-navigation.service.d.ts +2 -8
  585. package/lib/smart-ng-client.module.d.ts +3 -4
  586. package/lib/smart-tab-group/projects.d.ts +0 -4
  587. package/lib/smart-tab-group/smart-tab-group.module.d.ts +5 -8
  588. package/lib/smart-table/tables/material-table/material-table.component.d.ts +2 -3
  589. package/lib/smart-table/tables/mobile-table/mobile-table.component.d.ts +1 -2
  590. package/lib/smart-table/tables/table.d.ts +5 -5
  591. package/lib/smart-tree/smarttree-generic.service.d.ts +0 -1
  592. package/lib/smart-tree/smarttree.component.d.ts +1 -0
  593. package/lib/smart-tree/smarttree.model.d.ts +1 -0
  594. package/lib/smart-tree/smarttree.service.d.ts +1 -0
  595. package/lib/view-context/api/api/view.service.d.ts +14 -13
  596. package/lib/view-context/api/api-default/invocationRun.d.ts +2 -0
  597. package/lib/view-context/api/model/backgroundProcessInfo.d.ts +25 -0
  598. package/lib/view-context/api/model/componentModel.d.ts +5 -0
  599. package/lib/view-context/api/model/deviceInfo.d.ts +4 -0
  600. package/lib/view-context/api/model/iconPosition.d.ts +2 -1
  601. package/lib/view-context/api/model/imageResource.d.ts +2 -0
  602. package/lib/view-context/api/model/messageOption.d.ts +2 -0
  603. package/lib/view-context/api/model/models.d.ts +6 -0
  604. package/lib/view-context/api/model/multiComboBoxElement.d.ts +16 -0
  605. package/lib/view-context/api/model/multiComboBoxModel.d.ts +16 -0
  606. package/lib/view-context/api/model/namedValidator.d.ts +1 -0
  607. package/lib/view-context/api/model/smartLinkData.d.ts +3 -0
  608. package/lib/view-context/api/model/uiAction.d.ts +8 -0
  609. package/lib/view-context/api/model/uiActionDefinition.d.ts +19 -0
  610. package/lib/view-context/api/model/uiActionDefinitionEntry.d.ts +18 -0
  611. package/lib/view-context/api/model/uiActionDescriptor.d.ts +4 -0
  612. package/lib/view-context/api/model/uiActionRequest.d.ts +3 -0
  613. package/lib/view-context/api/model/uiActionSchedule.d.ts +14 -0
  614. package/lib/view-context/api/model/uiActionUploadDescriptor.d.ts +2 -0
  615. package/lib/view-context/api/model/view.d.ts +7 -0
  616. package/lib/view-context/api/model/viewContext.d.ts +1 -0
  617. package/lib/view-context/api/model/viewData.d.ts +2 -0
  618. package/lib/view-context/api/model/viewEventHandler.d.ts +5 -0
  619. package/lib/view-context/api/model/viewPlaceholder.d.ts +1 -0
  620. package/lib/view-context/default-view-components.token.d.ts +18 -0
  621. package/lib/view-context/message-dialog/message-dialog.component.d.ts +1 -0
  622. package/lib/view-context/projects.d.ts +8 -3
  623. package/lib/view-context/reuse-router-slot.token.d.ts +3 -0
  624. package/lib/view-context/smart-embedded-slot.directive.d.ts +20 -0
  625. package/lib/view-context/smart-ui-action/components/menu/menu.component.d.ts +6 -2
  626. package/lib/view-context/smart-ui-action/components/upload-widget/prime-file-uploader/prime-file-uploader.component.d.ts +32 -0
  627. package/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.d.ts +40 -0
  628. package/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.utils.d.ts +3 -0
  629. package/lib/view-context/smart-ui-action/{dialogs/ui-action-file-upload-dialog → components/upload-widget}/voice-record-widget/voice-record-widget.component.d.ts +15 -6
  630. package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.d.ts +1 -2
  631. package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.d.ts +2 -16
  632. package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.d.ts +3 -3
  633. package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.d.ts +1 -2
  634. package/lib/view-context/smart-ui-action/file-editor-toolbar/file-editor-toolbar.component.d.ts +13 -0
  635. package/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.d.ts +14 -7
  636. package/lib/view-context/smart-ui-action/ui-action-toolbar.component.d.ts +27 -3
  637. package/lib/view-context/smart-ui-action/ui-action.service.d.ts +4 -3
  638. package/lib/view-context/smart-view-context-dialog.service.d.ts +1 -3
  639. package/lib/view-context/smart-view-context-error-dialog/smart-view-context-error-dialog.service.d.ts +1 -2
  640. package/lib/view-context/smart-view-context.model.d.ts +7 -2
  641. package/lib/view-context/smart-view-context.module.d.ts +74 -65
  642. package/lib/view-context/smart-view-context.service.d.ts +55 -8
  643. package/lib/view-context/smart-view-redirect/smart-view-redirect.d.ts +3 -1
  644. package/lib/view-context/view-handler-resolution.d.ts +11 -0
  645. package/lib/view-context/view-op.d.ts +18 -0
  646. package/lib/view-context/view-slot-resolution.d.ts +27 -0
  647. package/package.json +16 -18
  648. package/projects.d.ts +2 -0
  649. package/smartbit4all-ng-client-6.0.1.tgz +0 -0
  650. package/fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs +0 -686
  651. package/fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs.map +0 -1
  652. package/lib/smart-client/smart-authentication.service.d.ts +0 -15
  653. package/lib/smart-tab-group/smart-tab-group.component.d.ts +0 -21
  654. package/lib/smart-tab-group/smart-tab-group.service.d.ts +0 -6
  655. package/lib/smart-tab-group/tab-content/tab-content.component.d.ts +0 -14
  656. package/lib/smart-tab-group/tab-group-simplified/tab-group.component.d.ts +0 -29
  657. package/lib/smart-tab-group/tabTile.model.d.ts +0 -8
  658. package/lib/view-context/smart-ui-action/components/action-badge/action-badge.component.d.ts +0 -12
  659. package/smartbit4all-ng-client-5.0.21.tgz +0 -0
  660. package/src/lib/smart-chart/index.d.ts +0 -5
  661. package/src/lib/smart-chart/smart-chart/api/model/chartDescriptor.d.ts +0 -37
  662. package/src/lib/smart-chart/smart-chart/api/model/chartType.d.ts +0 -21
  663. package/src/lib/smart-chart/smart-chart/api/model/models.d.ts +0 -6
  664. package/src/lib/smart-chart/smart-chart/api/model/pieChartLegendPosition.d.ts +0 -16
  665. package/src/lib/smart-chart/smart-chart/default-chart-options.provider.d.ts +0 -31
  666. package/src/lib/smart-chart/smart-chart/smart-chart.component.d.ts +0 -33
  667. package/src/lib/smart-chart/smart-chart/smart-chart.module.d.ts +0 -11
  668. package/src/lib/smart-chart/smart-chart/smart-chart2/api/api/api.d.ts +0 -1
  669. package/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataSetConstructionInstruction.d.ts +0 -21
  670. package/src/lib/smart-chart/smart-chart-projects.d.ts +0 -5
  671. package/src/lib/smart-chart/view-context/utility/componentLibrary.d.ts +0 -6
  672. /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/api.module.d.ts +0 -0
  673. /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/configuration.d.ts +0 -0
  674. /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/index.d.ts +0 -0
  675. /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/param.d.ts +0 -0
  676. /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/variables.d.ts +0 -0
  677. /package/lib/view-context/smart-ui-action/{dialogs/ui-action-file-upload-dialog → components/upload-widget}/photo-capture-widget/photo-capture-widget.component.d.ts +0 -0
@@ -1,6 +1,5 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { MatDialog } from '@angular/material/dialog';
3
- import { Router } from '@angular/router';
4
3
  import { Subject } from 'rxjs';
5
4
  import { UiAction } from '../../../api';
6
5
  import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
@@ -15,11 +14,12 @@ export declare class UiActionFileUploadDialogService extends SmartdialogService
15
14
  nodeName?: string;
16
15
  onAction: Subject<void>;
17
16
  files?: any;
17
+ uploadDescriptor?: any;
18
18
  isMultiple: boolean;
19
- constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
19
+ constructor(dialog: MatDialog, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
20
20
  setDataAndOpenDialog(action: UiAction, nodeName?: string): void;
21
21
  openDialog(): void;
22
- onSave(files: any[]): Promise<void>;
22
+ onSave(files: any[], uploadDescriptor?: any): Promise<void>;
23
23
  cancel(): void;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<UiActionFileUploadDialogService, never>;
25
25
  static ɵprov: i0.ɵɵInjectableDeclaration<UiActionFileUploadDialogService>;
@@ -1,6 +1,5 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { MatDialog } from '@angular/material/dialog';
3
- import { Router } from '@angular/router';
4
3
  import { Subject } from 'rxjs';
5
4
  import { UiAction, UiActionRequest } from '../../../api';
6
5
  import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
@@ -15,7 +14,7 @@ export declare class UiActionInputDialogService extends SmartdialogService {
15
14
  nodeName?: string;
16
15
  onAction: Subject<EditFolderAction>;
17
16
  params?: any;
18
- constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
17
+ constructor(dialog: MatDialog, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
19
18
  setDataAndOpenDialog(action: UiAction, nodeName?: string): void;
20
19
  openDialog(): void;
21
20
  onSave(params: any): Promise<void>;
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { UiActionToolbarComponent } from '../ui-action-toolbar.component';
3
+ import { UiActionModel } from '../ui-action.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FileEditorToolbarComponent extends UiActionToolbarComponent {
6
+ dataUri: string;
7
+ actionEvent: EventEmitter<{
8
+ uiActionModel: UiActionModel;
9
+ }>;
10
+ fireAction(uiActionModel: UiActionModel): Promise<void>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileEditorToolbarComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileEditorToolbarComponent, "file-editor-toolbar", never, { "dataUri": { "alias": "dataUri"; "required": false; }; }, { "actionEvent": "actionEvent"; }, never, never, false, never>;
13
+ }
@@ -2,7 +2,7 @@ import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, SimpleChanges } fro
2
2
  import { UiActionModel } from '../ui-action.model';
3
3
  import { ComponentLibrary } from '../../utility/componentLibrary';
4
4
  import { IconPosition } from '../../api/model/iconPosition';
5
- import { UiAction, UiActionDescriptor } from '../../api';
5
+ import { Style, UiAction, UiActionDescriptor } from '../../api';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class UiActionButtonComponent implements OnInit, OnDestroy {
8
8
  changeDetector: ChangeDetectorRef;
@@ -11,16 +11,17 @@ export declare class UiActionButtonComponent implements OnInit, OnDestroy {
11
11
  descriptor: UiActionDescriptor;
12
12
  code?: string;
13
13
  addedCssClass?: string;
14
+ addBasicClasses: boolean;
14
15
  actionClick: EventEmitter<{
15
16
  event: MouseEvent;
16
- descriptor?: UiActionDescriptor;
17
- code?: string;
18
- uiAction?: UiAction;
17
+ descriptor?: UiActionDescriptor | undefined;
18
+ code?: string | undefined;
19
+ uiAction?: UiAction | undefined;
19
20
  }>;
20
21
  actionDoubleClick: EventEmitter<{
21
22
  event: any;
22
- descriptor?: UiActionDescriptor;
23
- code?: string;
23
+ descriptor?: UiActionDescriptor | undefined;
24
+ code?: string | undefined;
24
25
  }>;
25
26
  componentLibrary: typeof ComponentLibrary;
26
27
  compLib: ComponentLibrary;
@@ -37,6 +38,12 @@ export declare class UiActionButtonComponent implements OnInit, OnDestroy {
37
38
  isOnlyIcon(): boolean;
38
39
  getbtnClass(): string;
39
40
  getType(): any;
41
+ calcStyle(style?: Style): any;
42
+ calcClasses(style?: Style): any;
43
+ getCombinedClasses(): any;
44
+ renderPre(): boolean;
45
+ renderEmpty(): boolean;
46
+ renderPost(): boolean;
40
47
  static ɵfac: i0.ɵɵFactoryDeclaration<UiActionButtonComponent, [null, { optional: true; }]>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<UiActionButtonComponent, "ui-action-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "descriptor": { "alias": "descriptor"; "required": false; }; "code": { "alias": "code"; "required": false; }; "addedCssClass": { "alias": "addedCssClass"; "required": false; }; }, { "actionClick": "actionClick"; "actionDoubleClick": "actionDoubleClick"; }, never, never, false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<UiActionButtonComponent, "ui-action-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "descriptor": { "alias": "descriptor"; "required": false; }; "code": { "alias": "code"; "required": false; }; "addedCssClass": { "alias": "addedCssClass"; "required": false; }; "addBasicClasses": { "alias": "addBasicClasses"; "required": false; }; }, { "actionClick": "actionClick"; "actionDoubleClick": "actionDoubleClick"; }, never, never, false, never>;
42
49
  }
@@ -1,32 +1,48 @@
1
- import { ChangeDetectorRef, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { TooltipPosition } from '@angular/material/tooltip';
3
- import { IconPosition, UiActionTooltipTooltipPositionEnum } from '../api';
3
+ import { IconPosition, UiActionDescriptor, UiActionTooltipTooltipPositionEnum } from '../api';
4
4
  import { UiActionDescriptorService } from './ui-action.descriptor.service';
5
5
  import { UiActionModel } from './ui-action.model';
6
6
  import { UiActionService } from './ui-action.service';
7
7
  import { ComponentLibrary } from '../utility/componentLibrary';
8
+ import { ToolbarProperties } from '../../smart-component-layout/api';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDestroy {
10
11
  private service;
11
12
  private inject;
12
13
  changeDetector: ChangeDetectorRef;
13
14
  compLib: ComponentLibrary;
15
+ containerRef: ElementRef;
14
16
  private _destroy$;
15
17
  componentLibrary: typeof ComponentLibrary;
16
18
  pressedButtonActive: boolean;
17
19
  uiActionModels?: UiActionModel[];
18
20
  uiActionDescriptorService?: UiActionDescriptorService;
19
21
  id?: string;
22
+ scrollOnWrap: boolean;
23
+ toolbarPropertes?: ToolbarProperties;
20
24
  uiActionModelsWithDescriptions?: UiActionModel[];
21
25
  private manager;
22
26
  private languageChangedSubscription?;
27
+ isScrollable: boolean;
28
+ private scrollInterval;
29
+ private scrollTimeout;
30
+ private scrollSpeed;
31
+ private scrollDelay;
32
+ private scrollHoldDelay;
33
+ private schedules;
23
34
  constructor(service: UiActionService, inject: Injector, changeDetector: ChangeDetectorRef, compLib: ComponentLibrary);
24
35
  ngOnInit(): void;
36
+ ngAfterViewInit(): void;
37
+ onResize(): void;
25
38
  ngOnChanges(changes: SimpleChanges): void;
26
39
  ngOnDestroy(): void;
27
40
  private subscribeToLanguageChange;
28
41
  setUp(): Promise<void>;
42
+ clearSchedule(): void;
43
+ scheduleActions(uiActionModels: UiActionModel[]): void;
29
44
  trackByFn(idx: number, m: UiActionModel): string | number;
45
+ fireAction(uiActionModel: UiActionModel): Promise<void>;
30
46
  onActionClicked(event: any, uiActionModel: UiActionModel): Promise<void>;
31
47
  onActionDoubleClicked(event: any, uiActionModel: UiActionModel): void;
32
48
  getbtnClass(uiActionModel: UiActionModel): string;
@@ -36,6 +52,14 @@ export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDe
36
52
  getTooltipPos(pos?: UiActionTooltipTooltipPositionEnum): TooltipPosition;
37
53
  getTooltipDelay(delay?: number): number;
38
54
  getTooltipHideDelay(delay?: number): number;
55
+ checkScrollable(): void;
56
+ scrollLeft(): void;
57
+ scrollRight(): void;
58
+ scrollStart(direction: 'left' | 'right'): void;
59
+ stopScroll(): void;
60
+ buttonLeft: UiActionDescriptor;
61
+ buttonRight: UiActionDescriptor;
62
+ get isVertical(): boolean;
39
63
  static ɵfac: i0.ɵɵFactoryDeclaration<UiActionToolbarComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<UiActionToolbarComponent, "smart-ui-action-toolbar", never, { "uiActionModels": { "alias": "uiActionModels"; "required": false; }; "uiActionDescriptorService": { "alias": "uiActionDescriptorService"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<UiActionToolbarComponent, "smart-ui-action-toolbar", never, { "uiActionModels": { "alias": "uiActionModels"; "required": false; }; "uiActionDescriptorService": { "alias": "uiActionDescriptorService"; "required": false; }; "id": { "alias": "id"; "required": false; }; "scrollOnWrap": { "alias": "scrollOnWrap"; "required": false; }; "toolbarPropertes": { "alias": "toolbarPropertes"; "required": false; }; }, {}, never, never, false, never>;
41
65
  }
@@ -6,6 +6,7 @@ import type { UiActionInputDialogService } from './dialogs/ui-action-input-dialo
6
6
  import { UiActionModel } from './ui-action.model';
7
7
  import type { UiActionFileUploadDialogService } from './dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service';
8
8
  import { SmartFormInvalidFields } from '../../smart-form/smartform.model';
9
+ import { SmartViewContextService } from '../smart-view-context.service';
9
10
  import * as i0 from "@angular/core";
10
11
  export interface ExecuteUiActionOptions {
11
12
  /**
@@ -22,11 +23,11 @@ export declare class UiActionService implements OnDestroy {
22
23
  private textFieldDialogService;
23
24
  private fileUploadDialogService;
24
25
  private _snackBar;
25
- uiActionModel: UiActionModel;
26
+ private viewContext;
26
27
  private _destroy$;
27
- constructor(confirmDialogService: UiActionConfirmDialogService, textFieldDialogService: UiActionInputDialogService, fileUploadDialogService: UiActionFileUploadDialogService, _snackBar: MatSnackBar);
28
+ constructor(confirmDialogService: UiActionConfirmDialogService, textFieldDialogService: UiActionInputDialogService, fileUploadDialogService: UiActionFileUploadDialogService, _snackBar: MatSnackBar, viewContext: SmartViewContextService);
28
29
  ngOnDestroy(): void;
29
- execute(uiAction: UiAction, options?: ExecuteUiActionOptions): Promise<void>;
30
+ execute(uiAction: UiAction, uiActionModel: UiActionModel, options?: ExecuteUiActionOptions): Promise<void>;
30
31
  private handleInputType;
31
32
  private handleInputTypeTextField;
32
33
  private handleInputTypeUpload;
@@ -1,14 +1,12 @@
1
1
  import { ComponentType } from '@angular/cdk/portal';
2
2
  import { Injector } from '@angular/core';
3
3
  import { MatDialog, MatDialogRef } from '@angular/material/dialog';
4
- import { Router } from '@angular/router';
5
4
  import { SmartDialogData } from '../smart-dialog/smartdialog.model';
6
5
  import { DialogService, DynamicDialogRef } from 'primeng/dynamicdialog';
7
6
  import { ComponentLibrary } from './utility/componentLibrary';
8
7
  import * as i0 from "@angular/core";
9
8
  export declare class SmartViewContextDialogService {
10
9
  protected dialog: MatDialog;
11
- protected router: Router;
12
10
  protected dialogService: DialogService;
13
11
  protected inject: Injector;
14
12
  compLib: ComponentLibrary;
@@ -16,7 +14,7 @@ export declare class SmartViewContextDialogService {
16
14
  private constructor();
17
15
  createDialog(smartDialog: SmartDialogData, component: ComponentType<any>): MatDialogRef<any, any> | DynamicDialogRef;
18
16
  createDialogRef(smartDialog: SmartDialogData, component: ComponentType<any>): MatDialogRef<any, any> | DynamicDialogRef;
19
- openComponentAsDialog(component: ComponentType<any>, viewName: string): MatDialogRef<any, any> | DynamicDialogRef;
17
+ openComponentAsDialog(component: ComponentType<any>, viewName: string, uuid?: string): MatDialogRef<any, any> | DynamicDialogRef;
20
18
  closeDialog(dialogRef: MatDialogRef<any, any> | DynamicDialogRef, dialogData: SmartDialogData): Promise<void>;
21
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextDialogService, never>;
22
20
  static ɵprov: i0.ɵɵInjectableDeclaration<SmartViewContextDialogService>;
@@ -1,6 +1,5 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { MatDialog } from '@angular/material/dialog';
3
- import { Router } from '@angular/router';
4
3
  import { SmartdialogService } from '../../smart-dialog/projects';
5
4
  import { ViewApiError } from '../api';
6
5
  import { SmartViewContextApiError } from '../smart-view-context.model';
@@ -12,7 +11,7 @@ export declare class SmartViewContextErrorDialogService extends SmartdialogServi
12
11
  private viewContext;
13
12
  viewApiError?: ViewApiError;
14
13
  dialogRefs: any[];
15
- constructor(dialog: MatDialog, router: Router, viewContext: SmartViewContextService, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary);
14
+ constructor(dialog: MatDialog, viewContext: SmartViewContextService, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary);
16
15
  handleAfterClosed(result: any): void;
17
16
  openDialog(): void;
18
17
  closeDialog(): Promise<void>;
@@ -1,11 +1,10 @@
1
1
  import { ComponentType } from '@angular/cdk/portal';
2
- import { EventEmitter } from '@angular/core';
2
+ import { ComponentRef, EventEmitter } from '@angular/core';
3
3
  import { MatDialogRef } from '@angular/material/dialog';
4
4
  import { DynamicDialogRef } from 'primeng/dynamicdialog';
5
5
  import { Observable } from 'rxjs';
6
6
  export interface SmartViewHandlerModel {
7
7
  name: string;
8
- route?: string;
9
8
  component?: ComponentType<any>;
10
9
  componentName?: string;
11
10
  }
@@ -23,6 +22,12 @@ export interface SmartViewDialogRef {
23
22
  uuid: string;
24
23
  dialogRef: MatDialogRef<any, any> | DynamicDialogRef;
25
24
  }
25
+ export interface SmartEmbeddedViewRef {
26
+ uuid: string;
27
+ containerUuid: string;
28
+ containerId: string;
29
+ componentRef: ComponentRef<any>;
30
+ }
26
31
  export interface SmartTranslateService {
27
32
  get(key: string | Array<string>, interpolateParams?: Object): Observable<string | any>;
28
33
  get onLangChange(): EventEmitter<any>;
@@ -3,72 +3,81 @@ import * as i1 from "./message-dialog/message-dialog.component";
3
3
  import * as i2 from "./smart-view-context-error-dialog/smart-view-context-error-dialog.component";
4
4
  import * as i3 from "./smart-view-redirect/smart-view-redirect";
5
5
  import * as i4 from "./smart-ui-action/ui-action-toolbar.component";
6
- import * as i5 from "./smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component";
7
- import * as i6 from "./smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component";
8
- import * as i7 from "./smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component";
9
- import * as i8 from "./invalid-fields-snack-bar/invalid-fields-snack-bar.component";
10
- import * as i9 from "../smart-form/smartform.component";
11
- import * as i10 from "./smart-ui-action/dialogs/ui-action-dialog-button/ui-action-dialog-button.component";
12
- import * as i11 from "../smart-form/widgets/smartformwidget/smartformwidget.component";
13
- import * as i12 from "../smart-form/smartfileuploader/smartfileuploader.component";
14
- import * as i13 from "../smart-form/widgets/smartformwidget/trackCaps.directive";
15
- import * as i14 from "../smart-form/widgets/directives/comparable-dropdown.directive";
16
- import * as i15 from "../smart-form/widgets/directives/comparable-multiselect.directive";
17
- import * as i16 from "../smart-form/smartfileuploader/large-file-snack-bar/large-file-snack-bar.component";
18
- import * as i17 from "../smart-form/widgets/smartformwidget/sortable-widget/sortable-widget.component";
19
- import * as i18 from "../smart-form/widgets/components/smart-month-picker/smart-month-picker.component";
20
- import * as i19 from "../smart-form/highlightMacthingString-pipe";
21
- import * as i20 from "./smart-ui-action/dialogs/ui-action-file-upload-dialog/voice-record-widget/voice-record-widget.component";
22
- import * as i21 from "./smart-ui-action/dialogs/ui-action-file-upload-dialog/photo-capture-widget/photo-capture-widget.component";
23
- import * as i22 from "./smart-ui-action/ui-action-button/ui-action-button.component";
24
- import * as i23 from "./smart-ui-action/components/action-badge/action-badge.component";
25
- import * as i24 from "./smart-ui-action/components/menu/menu.component";
26
- import * as i25 from "@angular/common";
27
- import * as i26 from "@angular/material/core";
28
- import * as i27 from "@angular/material/button";
29
- import * as i28 from "primeng/button";
30
- import * as i29 from "@angular/material/icon";
31
- import * as i30 from "@angular/material/snack-bar";
32
- import * as i31 from "../smart-icon/smart-icon.module";
33
- import * as i32 from "@angular/material/tooltip";
34
- import * as i33 from "../shared/shared.module";
35
- import * as i34 from "primeng/api";
36
- import * as i35 from "@angular/platform-browser";
37
- import * as i36 from "@angular/material/chips";
38
- import * as i37 from "@angular/forms";
39
- import * as i38 from "@angular/material/form-field";
40
- import * as i39 from "@angular/material/checkbox";
41
- import * as i40 from "@angular/material/select";
42
- import * as i41 from "@angular/material/input";
43
- import * as i42 from "@angular/material/datepicker";
44
- import * as i43 from "@angular/material-moment-adapter";
45
- import * as i44 from "@angular/material/radio";
46
- import * as i45 from "@angular/material/slide-toggle";
47
- import * as i46 from "@angular/material/autocomplete";
48
- import * as i47 from "ngx-quill";
49
- import * as i48 from "@angular/cdk/drag-drop";
50
- import * as i49 from "@angular/youtube-player";
51
- import * as i50 from "primeng/inputtext";
52
- import * as i51 from "primeng/dropdown";
53
- import * as i52 from "primeng/multiselect";
54
- import * as i53 from "primeng/inputswitch";
55
- import * as i54 from "primeng/inputnumber";
56
- import * as i55 from "primeng/textarea";
57
- import * as i56 from "primeng/image";
58
- import * as i57 from "primeng/floatlabel";
59
- import * as i58 from "primeng/toast";
60
- import * as i59 from "primeng/dynamicdialog";
61
- import * as i60 from "primeng/fileupload";
62
- import * as i61 from "primeng/chips";
63
- import * as i62 from "primeng/calendar";
64
- import * as i63 from "primeng/checkbox";
65
- import * as i64 from "primeng/orderlist";
66
- import * as i65 from "primeng/inputmask";
67
- import * as i66 from "primeng/editor";
68
- import * as i67 from "@angular/material/menu";
69
- import * as i68 from "primeng/tieredmenu";
6
+ import * as i5 from "./smart-ui-action/file-editor-toolbar/file-editor-toolbar.component";
7
+ import * as i6 from "./smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component";
8
+ import * as i7 from "./smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component";
9
+ import * as i8 from "./smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component";
10
+ import * as i9 from "./invalid-fields-snack-bar/invalid-fields-snack-bar.component";
11
+ import * as i10 from "../smart-form/smartform.component";
12
+ import * as i11 from "./smart-ui-action/dialogs/ui-action-dialog-button/ui-action-dialog-button.component";
13
+ import * as i12 from "../smart-form/widgets/smartformwidget/smartformwidget.component";
14
+ import * as i13 from "../smart-form/smartfileuploader/smartfileuploader.component";
15
+ import * as i14 from "../smart-form/widgets/smartformwidget/trackCaps.directive";
16
+ import * as i15 from "../smart-form/widgets/directives/comparable-dropdown.directive";
17
+ import * as i16 from "../smart-form/widgets/directives/comparable-multiselect.directive";
18
+ import * as i17 from "../smart-form/smartfileuploader/large-file-snack-bar/large-file-snack-bar.component";
19
+ import * as i18 from "../smart-form/widgets/smartformwidget/sortable-widget/sortable-widget.component";
20
+ import * as i19 from "../smart-form/widgets/components/smart-month-picker/smart-month-picker.component";
21
+ import * as i20 from "../smart-form/widgets/components/smart-file-editor/smart-file-editor.component";
22
+ import * as i21 from "../smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component";
23
+ import * as i22 from "../smart-form/widgets/components/smart-voice-recorder/smart-voice-recorder.component";
24
+ import * as i23 from "../smart-form/highlightMacthingString-pipe";
25
+ import * as i24 from "./smart-ui-action/ui-action-button/ui-action-button.component";
26
+ import * as i25 from "./smart-ui-action/components/menu/menu.component";
27
+ import * as i26 from "./smart-ui-action/components/upload-widget/upload-widget.component";
28
+ import * as i27 from "./smart-ui-action/components/upload-widget/voice-record-widget/voice-record-widget.component";
29
+ import * as i28 from "./smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component";
30
+ import * as i29 from "./smart-ui-action/components/upload-widget/prime-file-uploader/prime-file-uploader.component";
31
+ import * as i30 from "./smart-embedded-slot.directive";
32
+ import * as i31 from "@angular/common";
33
+ import * as i32 from "@angular/common/http";
34
+ import * as i33 from "@angular/material/core";
35
+ import * as i34 from "@angular/material/button";
36
+ import * as i35 from "primeng/button";
37
+ import * as i36 from "@angular/material/icon";
38
+ import * as i37 from "@angular/material/snack-bar";
39
+ import * as i38 from "../smart-icon/smart-icon.module";
40
+ import * as i39 from "@angular/material/tooltip";
41
+ import * as i40 from "../shared/shared.module";
42
+ import * as i41 from "primeng/api";
43
+ import * as i42 from "@angular/platform-browser";
44
+ import * as i43 from "@angular/material/chips";
45
+ import * as i44 from "@angular/forms";
46
+ import * as i45 from "@angular/material/form-field";
47
+ import * as i46 from "@angular/material/checkbox";
48
+ import * as i47 from "@angular/material/select";
49
+ import * as i48 from "@angular/material/input";
50
+ import * as i49 from "@angular/material/datepicker";
51
+ import * as i50 from "@angular/material-moment-adapter";
52
+ import * as i51 from "@angular/material/radio";
53
+ import * as i52 from "@angular/material/slide-toggle";
54
+ import * as i53 from "@angular/material/autocomplete";
55
+ import * as i54 from "ngx-quill";
56
+ import * as i55 from "@angular/cdk/drag-drop";
57
+ import * as i56 from "@angular/youtube-player";
58
+ import * as i57 from "primeng/inputtext";
59
+ import * as i58 from "primeng/messages";
60
+ import * as i59 from "primeng/overlaypanel";
61
+ import * as i60 from "primeng/dropdown";
62
+ import * as i61 from "primeng/multiselect";
63
+ import * as i62 from "primeng/inputswitch";
64
+ import * as i63 from "primeng/inputnumber";
65
+ import * as i64 from "primeng/tooltip";
66
+ import * as i65 from "primeng/inputtextarea";
67
+ import * as i66 from "primeng/image";
68
+ import * as i67 from "primeng/floatlabel";
69
+ import * as i68 from "primeng/toast";
70
+ import * as i69 from "primeng/dynamicdialog";
71
+ import * as i70 from "primeng/fileupload";
72
+ import * as i71 from "primeng/chips";
73
+ import * as i72 from "primeng/calendar";
74
+ import * as i73 from "primeng/checkbox";
75
+ import * as i74 from "primeng/orderlist";
76
+ import * as i75 from "primeng/inputmask";
77
+ import * as i76 from "primeng/editor";
78
+ import * as i77 from "@angular/material/menu";
70
79
  export declare class SmartViewContextModule {
71
80
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextModule, never>;
72
- static ɵmod: i0.ɵɵNgModuleDeclaration<SmartViewContextModule, [typeof i1.MessageDialogComponent, typeof i2.SmartViewContextErrorDialogComponent, typeof i3.SmartViewRedirect, typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i6.UiActionConfirmDialogComponent, typeof i7.UiActionFileUploadDialogComponent, typeof i8.InvalidFieldsSnackBarComponent, typeof i9.SmartformComponent, typeof i10.UiActionDialogButtonComponent, typeof i11.SmartformwidgetComponent, typeof i12.SmartfileuploaderComponent, typeof i13.TrackCapsDirective, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i16.LargeFileSnackBarComponent, typeof i17.SortableWidgetComponent, typeof i18.SmartMonthPickerComponent, typeof i19.HighlightPipe, typeof i20.VoiceRecordWidgetComponent, typeof i21.PhotoCaptureWidgetComponent, typeof i22.UiActionButtonComponent, typeof i23.ActionBadgeComponent, typeof i24.MenuComponent], [typeof i25.CommonModule, typeof i26.MatCommonModule, typeof i27.MatButtonModule, typeof i28.ButtonModule, typeof i29.MatIconModule, typeof i30.MatSnackBarModule, typeof i31.SmartIconModule, typeof i32.MatTooltipModule, typeof i33.SharedModule, typeof i34.SharedModule, typeof i35.BrowserModule, typeof i36.MatChipsModule, typeof i37.FormsModule, typeof i37.ReactiveFormsModule, typeof i38.MatFormFieldModule, typeof i39.MatCheckboxModule, typeof i40.MatSelectModule, typeof i41.MatInputModule, typeof i42.MatDatepickerModule, typeof i43.MatMomentDateModule, typeof i44.MatRadioModule, typeof i45.MatSlideToggleModule, typeof i46.MatAutocompleteModule, typeof i47.QuillModule, typeof i48.DragDropModule, typeof i49.YouTubePlayerModule, typeof i50.InputTextModule, typeof i51.DropdownModule, typeof i52.MultiSelectModule, typeof i37.FormsModule, typeof i53.InputSwitchModule, typeof i54.InputNumberModule, typeof i55.TextareaModule, typeof i56.ImageModule, typeof i57.FloatLabelModule, typeof i25.CommonModule, typeof i58.ToastModule, typeof i59.DynamicDialogModule, typeof i60.FileUploadModule, typeof i61.ChipsModule, typeof i62.CalendarModule, typeof i63.CheckboxModule, typeof i64.OrderListModule, typeof i65.InputMaskModule, typeof i66.EditorModule, typeof i67.MatMenuModule, typeof i68.TieredMenuModule], [typeof i4.UiActionToolbarComponent, typeof i5.UiActionInputDialogComponent, typeof i9.SmartformComponent, typeof i11.SmartformwidgetComponent, typeof i10.UiActionDialogButtonComponent, typeof i12.SmartfileuploaderComponent, typeof i19.HighlightPipe, typeof i14.ComparableDropdownDirective, typeof i15.ComparableMultiselectDirective, typeof i20.VoiceRecordWidgetComponent, typeof i21.PhotoCaptureWidgetComponent, typeof i22.UiActionButtonComponent, typeof i23.ActionBadgeComponent, typeof i24.MenuComponent]>;
81
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SmartViewContextModule, [typeof i1.MessageDialogComponent, typeof i2.SmartViewContextErrorDialogComponent, typeof i3.SmartViewRedirect, typeof i4.UiActionToolbarComponent, typeof i5.FileEditorToolbarComponent, typeof i6.UiActionInputDialogComponent, typeof i7.UiActionConfirmDialogComponent, typeof i8.UiActionFileUploadDialogComponent, typeof i9.InvalidFieldsSnackBarComponent, typeof i10.SmartformComponent, typeof i11.UiActionDialogButtonComponent, typeof i12.SmartformwidgetComponent, typeof i13.SmartfileuploaderComponent, typeof i14.TrackCapsDirective, typeof i15.ComparableDropdownDirective, typeof i16.ComparableMultiselectDirective, typeof i17.LargeFileSnackBarComponent, typeof i18.SortableWidgetComponent, typeof i19.SmartMonthPickerComponent, typeof i20.SmartFileEditorComponent, typeof i21.SmartMultiFileEditorComponent, typeof i22.SmartVoiceRecorderComponent, typeof i23.HighlightPipe, typeof i24.UiActionButtonComponent, typeof i25.MenuComponent, typeof i26.UploadWidgetComponent, typeof i27.VoiceRecordWidgetComponent, typeof i28.PhotoCaptureWidgetComponent, typeof i29.PrimeFileUploaderComponent, typeof i30.SmartEmbeddedSlotDirective], [typeof i31.CommonModule, typeof i32.HttpClientModule, typeof i33.MatCommonModule, typeof i34.MatButtonModule, typeof i35.ButtonModule, typeof i36.MatIconModule, typeof i37.MatSnackBarModule, typeof i38.SmartIconModule, typeof i39.MatTooltipModule, typeof i40.SharedModule, typeof i41.SharedModule, typeof i42.BrowserModule, typeof i43.MatChipsModule, typeof i44.FormsModule, typeof i44.ReactiveFormsModule, typeof i45.MatFormFieldModule, typeof i46.MatCheckboxModule, typeof i47.MatSelectModule, typeof i48.MatInputModule, typeof i49.MatDatepickerModule, typeof i50.MatMomentDateModule, typeof i51.MatRadioModule, typeof i52.MatSlideToggleModule, typeof i53.MatAutocompleteModule, typeof i54.QuillModule, typeof i55.DragDropModule, typeof i56.YouTubePlayerModule, typeof i57.InputTextModule, typeof i58.MessagesModule, typeof i59.OverlayPanelModule, typeof i60.DropdownModule, typeof i61.MultiSelectModule, typeof i44.FormsModule, typeof i62.InputSwitchModule, typeof i63.InputNumberModule, typeof i64.TooltipModule, typeof i65.InputTextareaModule, typeof i66.ImageModule, typeof i67.FloatLabelModule, typeof i31.CommonModule, typeof i68.ToastModule, typeof i69.DynamicDialogModule, typeof i70.FileUploadModule, typeof i71.ChipsModule, typeof i72.CalendarModule, typeof i73.CheckboxModule, typeof i74.OrderListModule, typeof i75.InputMaskModule, typeof i76.EditorModule, typeof i77.MatMenuModule, typeof i38.SmartIconModule], [typeof i4.UiActionToolbarComponent, typeof i6.UiActionInputDialogComponent, typeof i10.SmartformComponent, typeof i12.SmartformwidgetComponent, typeof i11.UiActionDialogButtonComponent, typeof i13.SmartfileuploaderComponent, typeof i23.HighlightPipe, typeof i15.ComparableDropdownDirective, typeof i16.ComparableMultiselectDirective, typeof i24.UiActionButtonComponent, typeof i25.MenuComponent, typeof i26.UploadWidgetComponent, typeof i27.VoiceRecordWidgetComponent, typeof i28.PhotoCaptureWidgetComponent, typeof i20.SmartFileEditorComponent, typeof i21.SmartMultiFileEditorComponent, typeof i22.SmartVoiceRecorderComponent, typeof i30.SmartEmbeddedSlotDirective]>;
73
82
  static ɵinj: i0.ɵɵInjectorDeclaration<SmartViewContextModule>;
74
83
  }
@@ -1,11 +1,14 @@
1
- import { InjectionToken, Injector, OnDestroy } from '@angular/core';
1
+ import { InjectionToken, Injector, OnDestroy, ViewContainerRef } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
+ import { SmartFormInvalidFields } from '../smart-form/smartform.model';
3
4
  import { SmartSessionService } from '../session/smart-session.service';
4
5
  import { ComponentModel, DataChange, DownloadedFile, MessageData, MessageResult, UiActionDescriptor, UiActionRequest, ViewConstraint, ViewContextChange, ViewContextData, ViewContextUpdate, ViewData, ViewService, ViewStateUpdate } from './api';
5
6
  import { SmartTranslateService, SmartViewContextApiError, SmartViewContextApiErrors, SmartViewHandlerModel } from './smart-view-context.model';
6
7
  import { SmartSubject } from '../smart-subject/projects';
7
- import { SmartNavigationService } from '../smart-navigation/projects';
8
8
  import { SmartViewContextDialogService } from './smart-view-context-dialog.service';
9
+ import { ComponentLibrary } from './utility/componentLibrary';
10
+ import { SlotKind } from './view-slot-resolution';
11
+ import { DefaultViewComponentEntry } from './default-view-components.token';
9
12
  import * as i0 from "@angular/core";
10
13
  export declare const SmartViewContextErrorDialogButtonLabel = "SmartViewContextErrorDialogButtonLabel";
11
14
  export declare const SmartViewContextErrorDialogTitle = "SmartViewContextErrorDialogTitle";
@@ -15,7 +18,6 @@ export declare const DIALOG_DISABLE_CLOSE: InjectionToken<boolean>;
15
18
  export declare class SmartViewContextService implements OnDestroy {
16
19
  private view;
17
20
  private session;
18
- private navigation;
19
21
  private dialog;
20
22
  private apiQueueService;
21
23
  private inject;
@@ -27,16 +29,22 @@ export declare class SmartViewContextService implements OnDestroy {
27
29
  private url?;
28
30
  private viewContext?;
29
31
  private viewHandlers;
32
+ private defaultComponents;
30
33
  private openedViewUuids;
31
34
  private openedViewData;
35
+ private generation;
32
36
  private _destroy$;
33
37
  uuidOfPageHasBeenChanged: Subject<string>;
34
38
  viewContextHasBeenSynced: Subject<void>;
35
39
  private initializeRunning;
40
+ private initiNewContextRunning;
36
41
  smartViewContextApiErrors?: SmartViewContextApiErrors;
37
- openSmartLink: Subject<void>;
42
+ openSmartLink: Subject<string>;
38
43
  isOpeningSmartLink: boolean;
39
44
  private dialogRefs;
45
+ private embeddedContainers;
46
+ private embeddedViewRefs;
47
+ private pendingEmbeddedViews;
40
48
  private actionDescriptors?;
41
49
  private moduleUrlsByModule?;
42
50
  commonFeedbackText?: string;
@@ -45,10 +53,25 @@ export declare class SmartViewContextService implements OnDestroy {
45
53
  get translateService(): SmartTranslateService | undefined;
46
54
  private _translateService?;
47
55
  translateServiceChanged: Subject<void>;
48
- constructor(view: ViewService, session: SmartSessionService, navigation: SmartNavigationService, dialog: SmartViewContextDialogService, apiQueueService: ApiQueueService, inject: Injector);
56
+ componentLibrary: ComponentLibrary | undefined;
57
+ constructor(view: ViewService, session: SmartSessionService, dialog: SmartViewContextDialogService, apiQueueService: ApiQueueService, inject: Injector, compLib?: ComponentLibrary, defaultViewComponents?: DefaultViewComponentEntry[]);
49
58
  ngOnDestroy(): void;
50
59
  follow(uuid: string, detectChange: SmartSubject<any>): void;
51
60
  unfollow(uuid: string): void;
61
+ registerEmbeddedSlot(containerUuid: string, containerId: string, vcRef: ViewContainerRef, kind: SlotKind): void;
62
+ detachAllEmbeddedViews(containerUuid: string): void;
63
+ cleanupOrphanedEmbeddedViews(containerUuid: string): void;
64
+ getCompositeModel(containerUuid: string): {
65
+ [key: string]: any;
66
+ };
67
+ submitEmbeddedForms(containerUuid: string, validate: boolean): SmartFormInvalidFields;
68
+ unregisterEmbeddedSlot(containerUuid: string, containerId: string): void;
69
+ private getEmbeddedSlot;
70
+ /**
71
+ * Create the view's component into its resolved slot. Returns false and queues
72
+ * the view if the slot is not registered yet (drained on registration).
73
+ */
74
+ private insertViewIntoSlot;
52
75
  setActionDescriptors(actionDescriptors: Map<string, UiActionDescriptor>): void;
53
76
  getActionDescriptors(): Map<string, UiActionDescriptor> | undefined;
54
77
  setViewHandlers(viewHandlers: Array<SmartViewHandlerModel>): void;
@@ -63,13 +86,37 @@ export declare class SmartViewContextService implements OnDestroy {
63
86
  getViewContextDataByPageName(pageName: string): Promise<ViewData>;
64
87
  updateViewContext(viewContextUpdate: ViewContextUpdate): Promise<ViewContextData | undefined>;
65
88
  private clearSessionStorage;
89
+ /**
90
+ * Tear down all slot-hosted view components on a viewContext reset (e.g. logout /
91
+ * viewcontext-lost). Without this the previous view tree stays mounted in the root
92
+ * slot and the new tree is appended alongside it. Destroying a parent cascades to
93
+ * its nested slot directives (which unregister their containers via ngOnDestroy),
94
+ * leaving only the host-owned root slot registered.
95
+ */
96
+ private clearEmbeddedViews;
66
97
  startViewContext(): Promise<ViewContextData>;
98
+ getGeneration(): number;
67
99
  initialize(uuid?: string): Promise<ViewContextData | undefined>;
100
+ initViewContext(): Promise<void>;
101
+ /**
102
+ * Hydrates the view-context state from an already-existing UUID provided
103
+ * externally (e.g. by a native mobile shell via URL fragment). Unlike
104
+ * `initialize(uuid)`, this method does NOT fall back to creating a fresh
105
+ * viewContext if the backend rejects the UUID — the caller is expected to
106
+ * surface the failure (typically via the bootstrap's `onStartError` hook).
107
+ */
108
+ initFromExistingViewContext(uuid: string): Promise<void>;
109
+ initNewViewContext(): Promise<void>;
68
110
  openView(view: ViewData): ViewStateUpdate | undefined;
69
- closeView(view: ViewData): ViewStateUpdate;
111
+ closeView(view: ViewData): ViewStateUpdate[];
112
+ private cleanupEmbeddedChildren;
113
+ /** Destroy the component for a view living in a slot, if present (no-op for route-rendered views). */
114
+ private destroyViewRef;
70
115
  private sendViewContextUpdates;
71
116
  restoreViews(uuid: string): Promise<void>;
72
- syncView(): void;
117
+ private reuseEnabled;
118
+ private executeReuse;
119
+ syncView(): Promise<void>;
73
120
  startDownloadsFiles(downloads: DownloadedFile[]): Promise<void>;
74
121
  private setViewContextUuid;
75
122
  getViewContextUuid(): string;
@@ -100,7 +147,7 @@ export declare class SmartViewContextService implements OnDestroy {
100
147
  load(uuid: string): Promise<ComponentModel | undefined>;
101
148
  load2(uuid: string): Promise<ViewContextChange | undefined>;
102
149
  getCurrentViewContext(): ViewContextData | undefined;
103
- static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextService, never>;
150
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextService, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
104
151
  static ɵprov: i0.ɵɵInjectableDeclaration<SmartViewContextService>;
105
152
  }
106
153
  export declare const IS_ASYNC_PARAM_NAME = "isAsync";
@@ -1,3 +1,4 @@
1
+ import { Location } from '@angular/common';
1
2
  import { ActivatedRoute } from '@angular/router';
2
3
  import { SmartViewContextService } from '../smart-view-context.service';
3
4
  import { SmartNavigationService } from '../../smart-navigation/projects';
@@ -6,7 +7,8 @@ export declare class SmartViewRedirect {
6
7
  private service;
7
8
  private navigation;
8
9
  private route;
9
- constructor(service: SmartViewContextService, navigation: SmartNavigationService, route: ActivatedRoute);
10
+ private location;
11
+ constructor(service: SmartViewContextService, navigation: SmartNavigationService, route: ActivatedRoute, location: Location);
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewRedirect, never>;
11
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SmartViewRedirect, "app-redirect", never, {}, {}, never, never, false, never>;
12
14
  }
@@ -0,0 +1,11 @@
1
+ import { ComponentType } from '@angular/cdk/portal';
2
+ import { ViewData } from './api/model/viewData';
3
+ import { SmartViewHandlerModel } from './smart-view-context.model';
4
+ /**
5
+ * Resolve the view handler for a view. A registered handler (matched by
6
+ * viewName) always wins. Otherwise, if the backend named a default component via
7
+ * view.componentName and that name is in the default-component map, synthesize a
8
+ * handler on the fly so the rest of the open/close/sync pipeline is unchanged.
9
+ * Returns undefined when neither path resolves — callers keep the fail-loud throw.
10
+ */
11
+ export declare function resolveViewHandler(viewHandlers: ReadonlyArray<SmartViewHandlerModel>, defaultComponents: ReadonlyMap<string, ComponentType<any>>, view: ViewData): SmartViewHandlerModel | undefined;
@@ -0,0 +1,18 @@
1
+ import { ViewData } from './api/model/viewData';
2
+ export type ViewOp = {
3
+ kind: 'open';
4
+ view: ViewData;
5
+ } | {
6
+ kind: 'close';
7
+ view: ViewData;
8
+ } | {
9
+ kind: 'reuse';
10
+ oldView: ViewData;
11
+ newView: ViewData;
12
+ };
13
+ /**
14
+ * Phase 1: map TO_OPEN/TO_CLOSE views to ops, preserving the views array order.
15
+ * Phase 2: squash each same-slot + same-viewName NORMAL close/open pair (router
16
+ * slot) into a single reuse op placed at the earlier of the two positions.
17
+ */
18
+ export declare function buildViewOps(views: ViewData[], reuseEnabled: boolean): ViewOp[];