@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.
- package/README.md +386 -386
- package/esm2022/lib/component-factory-service/component-factory-service.module.mjs +17 -0
- package/esm2022/lib/component-factory-service/component-factory-service.service.mjs +35 -0
- package/esm2022/lib/component-factory-service/projects.mjs +6 -0
- package/esm2022/lib/session/api/api/api.mjs +4 -0
- package/esm2022/lib/session/api/api/session.service.mjs +306 -0
- package/esm2022/lib/session/api/configuration.mjs +91 -0
- package/esm2022/lib/session/api/encoder.mjs +19 -0
- package/esm2022/lib/session/api/index.mjs +3 -0
- package/esm2022/lib/session/api/model/accountInfo.mjs +13 -0
- package/esm2022/lib/session/api/model/apiError.mjs +13 -0
- package/esm2022/lib/session/api/model/authenticationProviderData.mjs +13 -0
- package/esm2022/lib/session/api/model/getAuthenticationProvidersResponse.mjs +2 -0
- package/esm2022/lib/session/api/model/models.mjs +9 -0
- package/esm2022/lib/session/api/model/refreshSessionRequest.mjs +13 -0
- package/esm2022/lib/session/api/model/session.mjs +2 -0
- package/esm2022/lib/session/api/model/sessionInfoData.mjs +2 -0
- package/esm2022/lib/session/api/model/userActivityLog.mjs +13 -0
- package/esm2022/lib/session/api/param.mjs +2 -0
- package/esm2022/lib/session/api/variables.mjs +9 -0
- package/esm2022/lib/session/cookie-service/smart-cookie.service.mjs +225 -0
- package/esm2022/lib/session/projects.mjs +13 -0
- package/esm2022/lib/session/smart-backend-bootstrap.config.mjs +2 -0
- package/esm2022/lib/session/smart-backend-bootstrap.service.mjs +214 -0
- package/esm2022/lib/session/smart-default-error-ui.service.mjs +134 -0
- package/esm2022/lib/session/smart-error-catching.interceptor.mjs +109 -0
- package/esm2022/lib/session/smart-header-maintainer.interceptor.mjs +44 -0
- package/esm2022/lib/session/smart-session-handler.service.mjs +7 -0
- package/esm2022/lib/session/smart-session.module.mjs +58 -0
- package/esm2022/lib/session/smart-session.service.mjs +284 -0
- package/esm2022/lib/session/smart-timer/smart-session-timer.component.mjs +39 -0
- package/esm2022/lib/session/smart-timer/smart-session-timer.service.mjs +63 -0
- package/esm2022/lib/shared/projects.mjs +4 -0
- package/esm2022/lib/shared/shared.module.mjs +19 -0
- package/esm2022/lib/shared/smart-tooltip.directive.mjs +58 -0
- package/esm2022/lib/shared/smarttable.date-pipe.mjs +43 -0
- package/esm2022/lib/smart-client/projects.mjs +4 -0
- package/esm2022/lib/smart-client/smart-component-api-client.mjs +934 -0
- package/esm2022/lib/smart-client/smart-file-uploader/smart-file-uploader.component.mjs +79 -0
- package/esm2022/lib/smart-client/smart.component.mjs +88 -0
- package/esm2022/lib/smart-client/smart.service.mjs +71 -0
- package/esm2022/lib/smart-component-layout/api/api/api.mjs +4 -0
- package/esm2022/lib/smart-component-layout/api/api/default.service.mjs +133 -0
- package/esm2022/lib/smart-component-layout/api/api.module.mjs +40 -0
- package/esm2022/lib/smart-component-layout/api/configuration.mjs +91 -0
- package/esm2022/lib/smart-component-layout/api/encoder.mjs +19 -0
- package/esm2022/lib/smart-component-layout/api/index.mjs +7 -0
- package/esm2022/lib/smart-component-layout/api/model/componentType.mjs +18 -0
- package/esm2022/lib/smart-component-layout/api/model/componentWidgetType.mjs +22 -0
- package/esm2022/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.mjs +2 -0
- package/esm2022/lib/smart-component-layout/api/model/layoutDirection.mjs +17 -0
- package/esm2022/lib/smart-component-layout/api/model/models.mjs +9 -0
- package/esm2022/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.mjs +2 -0
- package/esm2022/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.mjs +2 -0
- package/esm2022/lib/smart-component-layout/api/model/toolbarDirection.mjs +17 -0
- package/esm2022/lib/smart-component-layout/api/model/toolbarProperties.mjs +2 -0
- package/esm2022/lib/smart-component-layout/api/param.mjs +2 -0
- package/esm2022/lib/smart-component-layout/api/variables.mjs +9 -0
- package/esm2022/lib/smart-component-layout/projects.mjs +8 -0
- package/esm2022/lib/smart-component-layout/smart-component-layout-utility.mjs +169 -0
- package/esm2022/lib/smart-component-layout/smart-component-layout.component.mjs +436 -0
- package/esm2022/lib/smart-component-layout/smart-component-layout.module.mjs +57 -0
- package/esm2022/lib/smart-diagram/api/api/api.mjs +4 -0
- package/esm2022/lib/smart-diagram/api/api/diagramService.service.mjs +141 -0
- package/esm2022/lib/smart-diagram/api/api.module.mjs +40 -0
- package/esm2022/lib/smart-diagram/api/configuration.mjs +91 -0
- package/esm2022/lib/smart-diagram/api/encoder.mjs +19 -0
- package/esm2022/lib/smart-diagram/api/index.mjs +7 -0
- package/esm2022/lib/smart-diagram/api/model/diagramColor.mjs +13 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDataContainer.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDataItem.mjs +13 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDataSet.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDescriptor.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramModel.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramShape.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/drawTime.mjs +18 -0
- package/esm2022/lib/smart-diagram/api/model/labelText.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/models.mjs +10 -0
- package/esm2022/lib/smart-diagram/api/param.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/variables.mjs +9 -0
- package/esm2022/lib/smart-diagram/component/default-smart-diagram-options.provider.mjs +312 -0
- package/esm2022/lib/smart-diagram/component/smart-diagram.component.mjs +359 -0
- package/esm2022/lib/smart-diagram/component/smart-diagram.module.mjs +40 -0
- package/esm2022/lib/smart-diagram/component/smart-diagram.util.mjs +10 -0
- package/esm2022/lib/smart-diagram/projects.mjs +5 -0
- package/esm2022/lib/smart-dialog/projects.mjs +8 -0
- package/esm2022/lib/smart-dialog/smartdialog.component.mjs +54 -0
- package/esm2022/lib/smart-dialog/smartdialog.model.mjs +16 -0
- package/esm2022/lib/smart-dialog/smartdialog.module.mjs +46 -0
- package/esm2022/lib/smart-dialog/smartdialog.service.mjs +86 -0
- package/esm2022/lib/smart-expandable-section/expandable-section.component.mjs +101 -0
- package/esm2022/lib/smart-expandable-section/expandable-section.model.mjs +12 -0
- package/esm2022/lib/smart-expandable-section/projects.mjs +8 -0
- package/esm2022/lib/smart-expandable-section/smart-expandable-section.module.mjs +57 -0
- package/esm2022/lib/smart-expandable-section/smart-expandable-section.service.mjs +14 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBoolOperator.mjs +17 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBuilderField.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBuilderGroup.mjs +8 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionBuilderModel.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionData.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionDataType.mjs +20 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionField.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionFieldList.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionFieldWidgetType.mjs +28 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionList.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionOperandData.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionOperation.mjs +32 -0
- package/esm2022/lib/smart-filter/api/filter/model/filterExpressionOrderBy.mjs +18 -0
- package/esm2022/lib/smart-filter/api/filter/model/model.mjs +16 -0
- package/esm2022/lib/smart-filter/api/filter/model/searchIndexObjectDefinitionData.mjs +2 -0
- package/esm2022/lib/smart-filter/api/filter/model/searchIndexPropertyDefinitionData.mjs +13 -0
- package/esm2022/lib/smart-filter/api/value/model/value.mjs +13 -0
- package/esm2022/lib/smart-filter/projects.mjs +9 -0
- package/esm2022/lib/smart-filter/smart-filter/components/smart-filter-expression-field/smart-filter-expression-field.component.mjs +14 -0
- package/esm2022/lib/smart-filter/smart-filter/components/smart-filter-simple/components/smart-filter-simple-field/smart-filter-simple-field.component.mjs +166 -0
- package/esm2022/lib/smart-filter/smart-filter/components/smart-filter-simple/smart-filter-simple.component.mjs +45 -0
- package/esm2022/lib/smart-filter/smart-filter/smart-filter.component.mjs +36 -0
- package/esm2022/lib/smart-filter/smart-filter/smart-filter.service.mjs +31 -0
- package/esm2022/lib/smart-filter/smart-filter.model.mjs +13 -0
- package/esm2022/lib/smart-filter/smart-filter.module.mjs +33 -0
- package/esm2022/lib/smart-filter-editor/api/api/filter.service.mjs +198 -0
- package/esm2022/lib/smart-filter-editor/api/configuration.mjs +91 -0
- package/esm2022/lib/smart-filter-editor/api/encoder.mjs +19 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBoolOperator.mjs +17 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderApiConfig.mjs +13 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderField.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderGroup.mjs +8 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderModel.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionBuilderUiModel.mjs +7 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionData.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionDataType.mjs +20 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionField.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionFieldEditor.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionFieldList.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionFieldWidgetType.mjs +28 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionList.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionOperandData.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionOperation.mjs +32 -0
- package/esm2022/lib/smart-filter-editor/api/model/filterExpressionOrderBy.mjs +19 -0
- package/esm2022/lib/smart-filter-editor/api/model/smartFilterType.mjs +17 -0
- package/esm2022/lib/smart-filter-editor/api/param.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/api/variables.mjs +9 -0
- package/esm2022/lib/smart-filter-editor/filterExpressionBuilderApiActions.mjs +15 -0
- package/esm2022/lib/smart-filter-editor/project.mjs +8 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/components/smart-filter-expression-item/smart-filter-expression-item.component.mjs +73 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/components/smart-filter-expression-items/smart-filter-expression-items.component.mjs +40 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component.mjs +294 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-editor.model.mjs +2 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-editor.module.mjs +69 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-editor.service.mjs +63 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-params/components/smart-filter-param/smart-filter-param.component.mjs +24 -0
- package/esm2022/lib/smart-filter-editor/smart-filter-params/smart-filter-params.component.mjs +57 -0
- package/esm2022/lib/smart-form/api/api/api.mjs +4 -0
- package/esm2022/lib/smart-form/api/api/default.service.mjs +133 -0
- package/esm2022/lib/smart-form/api/api.module.mjs +40 -0
- package/esm2022/lib/smart-form/api/configuration.mjs +91 -0
- package/esm2022/lib/smart-form/api/encoder.mjs +19 -0
- package/esm2022/lib/smart-form/api/index.mjs +7 -0
- package/esm2022/lib/smart-form/api/model/dateFieldProperties.mjs +13 -0
- package/esm2022/lib/smart-form/api/model/fileUploaderProperties.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/imageProperties.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/models.mjs +19 -0
- package/esm2022/lib/smart-form/api/model/multiFileUploaderProperties.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/propertyMapping.mjs +13 -0
- package/esm2022/lib/smart-form/api/model/recordingUploaderProperties.mjs +7 -0
- package/esm2022/lib/smart-form/api/model/selectionDefinition.mjs +14 -0
- package/esm2022/lib/smart-form/api/model/smartFormInputMode.mjs +22 -0
- package/esm2022/lib/smart-form/api/model/smartFormWidgetDirection.mjs +17 -0
- package/esm2022/lib/smart-form/api/model/smartFormWidgetType.mjs +49 -0
- package/esm2022/lib/smart-form/api/model/smartLayoutDefinition.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/smartMatrixModel.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/smartWidgetDefinition.mjs +2 -0
- package/esm2022/lib/smart-form/api/model/smartWidgetHint.mjs +18 -0
- package/esm2022/lib/smart-form/api/model/sortDefinition.mjs +13 -0
- package/esm2022/lib/smart-form/api/model/textBoxProperties.mjs +13 -0
- package/esm2022/lib/smart-form/api/model/textFieldProperties.mjs +13 -0
- package/esm2022/lib/smart-form/api/model/valueChangeMode.mjs +21 -0
- package/esm2022/lib/smart-form/api/param.mjs +2 -0
- package/esm2022/lib/smart-form/api/variables.mjs +9 -0
- package/esm2022/lib/smart-form/highlightMacthingString-pipe.mjs +20 -0
- package/esm2022/lib/smart-form/projects.mjs +18 -0
- package/esm2022/lib/smart-form/services/smartform.layout-definition.service.mjs +753 -0
- package/esm2022/lib/smart-form/services/smartform.service.mjs +683 -0
- package/esm2022/lib/smart-form/smartfileuploader/large-file-snack-bar/large-file-snack-bar.component.mjs +15 -0
- package/esm2022/lib/smart-form/smartfileuploader/smartfileuploader.component.mjs +193 -0
- package/esm2022/lib/smart-form/smartfileuploader/smartfileuploader.model.mjs +2 -0
- package/esm2022/lib/smart-form/smartform.component.mjs +190 -0
- package/esm2022/lib/smart-form/smartform.form-model.mjs +2 -0
- package/esm2022/lib/smart-form/smartform.model.mjs +38 -0
- package/esm2022/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.mjs +179 -0
- package/esm2022/lib/smart-form/widgets/components/smart-month-picker/smart-month-picker.component.mjs +83 -0
- package/esm2022/lib/smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component.mjs +170 -0
- package/esm2022/lib/smart-form/widgets/components/smart-voice-recorder/smart-voice-recorder.component.mjs +151 -0
- package/esm2022/lib/smart-form/widgets/directives/comparable-dropdown.directive.mjs +35 -0
- package/esm2022/lib/smart-form/widgets/directives/comparable-multiselect.directive.mjs +79 -0
- package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +1038 -0
- package/esm2022/lib/smart-form/widgets/smartformwidget/sortable-widget/sortable-widget.component.mjs +78 -0
- package/esm2022/lib/smart-form/widgets/smartformwidget/trackCaps.directive.mjs +31 -0
- package/esm2022/lib/smart-generic-pages/acl-editing-view/acl-editing-view.component.mjs +98 -0
- package/esm2022/lib/smart-generic-pages/api/platform/acl/model/aCL.mjs +2 -0
- package/esm2022/lib/smart-generic-pages/api/platform/acl/model/aCLEntry.mjs +18 -0
- package/esm2022/lib/smart-generic-pages/api/platform/acl/model/objectValidationSeverity.mjs +19 -0
- package/esm2022/lib/smart-generic-pages/api/platform/acl/model/subject.mjs +13 -0
- package/esm2022/lib/smart-generic-pages/api/platform/api-default/objectHistoryRangeData.mjs +2 -0
- package/esm2022/lib/smart-generic-pages/api/platform/searchpage/model/searchPageModel.mjs +2 -0
- package/esm2022/lib/smart-generic-pages/api/platform/subjectselector/model/subjectSelectorPageModel.mjs +13 -0
- package/esm2022/lib/smart-generic-pages/api/platform/validation/model/validationItem.mjs +2 -0
- package/esm2022/lib/smart-generic-pages/api/platform/validation/model/validationResultPageModel.mjs +2 -0
- package/esm2022/lib/smart-generic-pages/generic-page/generic-page.component.mjs +54 -0
- package/esm2022/lib/smart-generic-pages/invalid-smartlink/invalid-smartlink.component.mjs +40 -0
- package/esm2022/lib/smart-generic-pages/no-permission-page/no-permission-page.component.mjs +40 -0
- package/esm2022/lib/smart-generic-pages/projects.mjs +13 -0
- package/esm2022/lib/smart-generic-pages/search-page/search-page.component.mjs +80 -0
- package/esm2022/lib/smart-generic-pages/smart-generic-pages.module.mjs +116 -0
- package/esm2022/lib/smart-generic-pages/subject-selector/subject-selector.component.mjs +77 -0
- package/esm2022/lib/smart-generic-pages/validation-result-page/validation-result-page.component.mjs +93 -0
- package/esm2022/lib/smart-grid/api/grid-api/api/api.mjs +4 -0
- package/esm2022/lib/smart-grid/api/grid-api/api/grid.service.mjs +514 -0
- package/esm2022/lib/smart-grid/api/grid-api/api.module.mjs +40 -0
- package/esm2022/lib/smart-grid/api/grid-api/configuration.mjs +91 -0
- package/esm2022/lib/smart-grid/api/grid-api/encoder.mjs +19 -0
- package/esm2022/lib/smart-grid/api/grid-api/index.mjs +7 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridColumnContentType.mjs +17 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridColumnMeta.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridDataAccessConfig.mjs +20 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridExportDescriptor.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridModel.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridPage.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridRow.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridSelectionChange.mjs +13 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridSelectionMode.mjs +18 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridSelectionType.mjs +17 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridServerModel.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridUpdateData.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridView.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/gridViewDescriptor.mjs +8 -0
- package/esm2022/lib/smart-grid/api/grid-api/model/models.mjs +15 -0
- package/esm2022/lib/smart-grid/api/grid-api/param.mjs +2 -0
- package/esm2022/lib/smart-grid/api/grid-api/variables.mjs +9 -0
- package/esm2022/lib/smart-grid/components/expandable-grid/expandable-grid.component.mjs +20 -0
- package/esm2022/lib/smart-grid/components/generic-component/expanded-row-renderer.component.mjs +47 -0
- package/esm2022/lib/smart-grid/components/smart-grid-card/smart-grid-card.component.mjs +72 -0
- package/esm2022/lib/smart-grid/components/table-layout-definer/table-layout-definer.component.mjs +200 -0
- package/esm2022/lib/smart-grid/models/model.mjs +29 -0
- package/esm2022/lib/smart-grid/projects.mjs +9 -0
- package/esm2022/lib/smart-grid/smart-grid-toolbar-util.mjs +65 -0
- package/esm2022/lib/smart-grid/smart-grid.component.mjs +1035 -0
- package/esm2022/lib/smart-grid/smart-grid.module.mjs +103 -0
- package/esm2022/lib/smart-grid/smart-grid.service.mjs +92 -0
- package/esm2022/lib/smart-icon/projects.mjs +9 -0
- package/esm2022/lib/smart-icon/smart-icon/smart-icon.component.mjs +95 -0
- package/esm2022/lib/smart-icon/smart-icon/ui-badge/ui-badge.component.mjs +40 -0
- package/esm2022/lib/smart-icon/smart-icon/ui-badge/ui-badge.directive.mjs +37 -0
- package/esm2022/lib/smart-icon/smart-icon.module.mjs +26 -0
- package/esm2022/lib/smart-icon/smart-icon.service.mjs +93 -0
- package/esm2022/lib/smart-map/abstract-map.mjs +112 -0
- package/esm2022/lib/smart-map/api/api/api.mjs +4 -0
- package/esm2022/lib/smart-map/api/api/geoMap.service.mjs +312 -0
- package/esm2022/lib/smart-map/api/api.module.mjs +40 -0
- package/esm2022/lib/smart-map/api/configuration.mjs +91 -0
- package/esm2022/lib/smart-map/api/encoder.mjs +19 -0
- package/esm2022/lib/smart-map/api/index.mjs +7 -0
- package/esm2022/lib/smart-map/api/model/gPSPosition.mjs +13 -0
- package/esm2022/lib/smart-map/api/model/gPSRoute.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapChange.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapDataLoadingMode.mjs +17 -0
- package/esm2022/lib/smart-map/api/model/geoMapDataSourceDescriptor.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapDataSourceType.mjs +19 -0
- package/esm2022/lib/smart-map/api/model/geoMapEditingSession.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapInteraction.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapItem.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapItemKind.mjs +18 -0
- package/esm2022/lib/smart-map/api/model/geoMapLayer.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapLayerChange.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapLayerDescriptor.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapModel.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapOperationMode.mjs +17 -0
- package/esm2022/lib/smart-map/api/model/geoMapSelectionMode.mjs +18 -0
- package/esm2022/lib/smart-map/api/model/geoMapServerModel.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapTextType.mjs +17 -0
- package/esm2022/lib/smart-map/api/model/geoMapViewState.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/geoMapViewport.mjs +2 -0
- package/esm2022/lib/smart-map/api/model/models.mjs +21 -0
- package/esm2022/lib/smart-map/api/param.mjs +2 -0
- package/esm2022/lib/smart-map/api/variables.mjs +9 -0
- package/esm2022/lib/smart-map/api-default/api-default.mjs +2 -0
- package/esm2022/lib/smart-map/impl/google-map.mjs +224 -0
- package/esm2022/lib/smart-map/impl/leaflet-map.mjs +422 -0
- package/esm2022/lib/smart-map/projects.mjs +9 -0
- package/esm2022/lib/smart-map/smart-map.component.mjs +222 -0
- package/esm2022/lib/smart-map/smart-map.module.mjs +22 -0
- package/esm2022/lib/smart-map/smart-map.types.mjs +2 -0
- package/esm2022/lib/smart-navbar/projects.mjs +8 -0
- package/esm2022/lib/smart-navbar/smart-navbar.component.mjs +61 -0
- package/esm2022/lib/smart-navbar/smart-navbar.model.mjs +6 -0
- package/esm2022/lib/smart-navbar/smart-navbar.module.mjs +63 -0
- package/esm2022/lib/smart-navbar/smart-navbar.service.mjs +14 -0
- package/esm2022/lib/smart-navigation/projects.mjs +6 -0
- package/esm2022/lib/smart-navigation/smart-navigation.interface.mjs +2 -0
- package/esm2022/lib/smart-navigation/smart-navigation.module.mjs +18 -0
- package/esm2022/lib/smart-navigation/smart-navigation.service.mjs +27 -0
- package/esm2022/lib/smart-ng-client.module.mjs +130 -0
- package/esm2022/lib/smart-ng-client.service.mjs +19 -0
- package/esm2022/lib/smart-subject/projects.mjs +5 -0
- package/esm2022/lib/smart-subject/smart-subject.mjs +21 -0
- package/esm2022/lib/smart-tab-group/projects.mjs +5 -0
- package/esm2022/lib/smart-tab-group/smart-tab-group.module.mjs +22 -0
- package/esm2022/lib/smart-table/components/default-actions-popup/default-actions-popup.component.mjs +43 -0
- package/esm2022/lib/smart-table/components/loading/loading.component.mjs +15 -0
- package/esm2022/lib/smart-table/directives/mat-context-menu-trigger-for.directive.mjs +52 -0
- package/esm2022/lib/smart-table/projects.mjs +8 -0
- package/esm2022/lib/smart-table/smarttable.component.mjs +98 -0
- package/esm2022/lib/smart-table/smarttable.model.mjs +177 -0
- package/esm2022/lib/smart-table/smarttable.module.mjs +109 -0
- package/esm2022/lib/smart-table/smarttable.service.mjs +14 -0
- package/esm2022/lib/smart-table/tables/material-table/material-table.component.mjs +42 -0
- package/esm2022/lib/smart-table/tables/mobile-table/mobile-table.component.mjs +23 -0
- package/esm2022/lib/smart-table/tables/table.mjs +573 -0
- package/esm2022/lib/smart-tree/projects.mjs +9 -0
- package/esm2022/lib/smart-tree/smarttree-generic.service.mjs +292 -0
- package/esm2022/lib/smart-tree/smarttree.component.mjs +187 -0
- package/esm2022/lib/smart-tree/smarttree.model.mjs +7 -0
- package/esm2022/lib/smart-tree/smarttree.module.mjs +60 -0
- package/esm2022/lib/smart-tree/smarttree.node.model.mjs +6 -0
- package/esm2022/lib/smart-tree/smarttree.service.interface.mjs +2 -0
- package/esm2022/lib/smart-tree/smarttree.service.mjs +47 -0
- package/esm2022/lib/smart-tree/tree-api/api/tree.service.mjs +1190 -0
- package/esm2022/lib/smart-tree/tree-api/configuration.mjs +91 -0
- package/esm2022/lib/smart-tree/tree-api/encoder.mjs +19 -0
- package/esm2022/lib/smart-tree/tree-api/param.mjs +2 -0
- package/esm2022/lib/smart-tree/tree-api/variables.mjs +9 -0
- package/esm2022/lib/smart-validation/named-validator.service.mjs +115 -0
- package/esm2022/lib/smart-validation/projects.mjs +4 -0
- package/esm2022/lib/smart-validation/smart-validation.module.mjs +24 -0
- package/esm2022/lib/smart-validation/smart-validation.types.mjs +4 -0
- package/esm2022/lib/view-context/api/api/api.mjs +4 -0
- package/esm2022/lib/view-context/api/api/view.service.mjs +903 -0
- package/esm2022/lib/view-context/api/api-default/binaryData.mjs +2 -0
- package/esm2022/lib/view-context/api/api-default/invocationError.mjs +2 -0
- package/esm2022/lib/view-context/api/api-default/invocationRequest.mjs +2 -0
- package/esm2022/lib/view-context/api/api-default/invocationRun.mjs +2 -0
- package/esm2022/lib/view-context/api/api.module.mjs +40 -0
- package/esm2022/lib/view-context/api/configuration.mjs +91 -0
- package/esm2022/lib/view-context/api/encoder.mjs +19 -0
- package/esm2022/lib/view-context/api/index.mjs +7 -0
- package/esm2022/lib/view-context/api/model/backgroundProcessInfo.mjs +2 -0
- package/esm2022/lib/view-context/api/model/badgeDescriptor.mjs +13 -0
- package/esm2022/lib/view-context/api/model/clipboardData.mjs +13 -0
- package/esm2022/lib/view-context/api/model/closeResult.mjs +18 -0
- package/esm2022/lib/view-context/api/model/componentConstraint.mjs +2 -0
- package/esm2022/lib/view-context/api/model/componentModel.mjs +2 -0
- package/esm2022/lib/view-context/api/model/componentModelChange.mjs +13 -0
- package/esm2022/lib/view-context/api/model/dataChange.mjs +2 -0
- package/esm2022/lib/view-context/api/model/dataChangeEvent.mjs +2 -0
- package/esm2022/lib/view-context/api/model/dataChangeKind.mjs +21 -0
- package/esm2022/lib/view-context/api/model/deviceInfo.mjs +13 -0
- package/esm2022/lib/view-context/api/model/downloadedFile.mjs +13 -0
- package/esm2022/lib/view-context/api/model/iconPosition.mjs +21 -0
- package/esm2022/lib/view-context/api/model/imageResource.mjs +8 -0
- package/esm2022/lib/view-context/api/model/link.mjs +20 -0
- package/esm2022/lib/view-context/api/model/messageData.mjs +2 -0
- package/esm2022/lib/view-context/api/model/messageOption.mjs +2 -0
- package/esm2022/lib/view-context/api/model/messageOptionType.mjs +18 -0
- package/esm2022/lib/view-context/api/model/messageResult.mjs +2 -0
- package/esm2022/lib/view-context/api/model/messageTextType.mjs +17 -0
- package/esm2022/lib/view-context/api/model/messageType.mjs +19 -0
- package/esm2022/lib/view-context/api/model/models.mjs +63 -0
- package/esm2022/lib/view-context/api/model/multiComboBoxElement.mjs +13 -0
- package/esm2022/lib/view-context/api/model/multiComboBoxModel.mjs +2 -0
- package/esm2022/lib/view-context/api/model/namedValidator.mjs +19 -0
- package/esm2022/lib/view-context/api/model/openPendingData.mjs +2 -0
- package/esm2022/lib/view-context/api/model/serverRequestExecutionStat.mjs +2 -0
- package/esm2022/lib/view-context/api/model/serverRequestTrack.mjs +2 -0
- package/esm2022/lib/view-context/api/model/serverRequestType.mjs +24 -0
- package/esm2022/lib/view-context/api/model/smartLinkData.mjs +2 -0
- package/esm2022/lib/view-context/api/model/smartLinkMigrationStatus.mjs +8 -0
- package/esm2022/lib/view-context/api/model/statisticRecord.mjs +13 -0
- package/esm2022/lib/view-context/api/model/style.mjs +13 -0
- package/esm2022/lib/view-context/api/model/uiAction.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uiActionButtonDescriptor.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uiActionButtonType.mjs +27 -0
- package/esm2022/lib/view-context/api/model/uiActionConstraint.mjs +13 -0
- package/esm2022/lib/view-context/api/model/uiActionDefinition.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uiActionDefinitionEntry.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uiActionDescriptor.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uiActionDialogDescriptor.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uiActionFeedbackType.mjs +20 -0
- package/esm2022/lib/view-context/api/model/uiActionInputType.mjs +21 -0
- package/esm2022/lib/view-context/api/model/uiActionRequest.mjs +13 -0
- package/esm2022/lib/view-context/api/model/uiActionSchedule.mjs +13 -0
- package/esm2022/lib/view-context/api/model/uiActionTooltip.mjs +22 -0
- package/esm2022/lib/view-context/api/model/uiActionUploadDescriptor.mjs +2 -0
- package/esm2022/lib/view-context/api/model/uploadWidgetType.mjs +18 -0
- package/esm2022/lib/view-context/api/model/uploadedFile.mjs +2 -0
- package/esm2022/lib/view-context/api/model/valueSet.mjs +2 -0
- package/esm2022/lib/view-context/api/model/view.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewApiError.mjs +13 -0
- package/esm2022/lib/view-context/api/model/viewConstraint.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewContext.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewContextChange.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewContextData.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewContextUpdate.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewData.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewEventHandler.mjs +8 -0
- package/esm2022/lib/view-context/api/model/viewPlaceholder.mjs +13 -0
- package/esm2022/lib/view-context/api/model/viewState.mjs +22 -0
- package/esm2022/lib/view-context/api/model/viewStateUpdate.mjs +2 -0
- package/esm2022/lib/view-context/api/model/viewType.mjs +18 -0
- package/esm2022/lib/view-context/api/param.mjs +2 -0
- package/esm2022/lib/view-context/api/variables.mjs +9 -0
- package/esm2022/lib/view-context/default-view-components.token.mjs +9 -0
- package/esm2022/lib/view-context/invalid-fields-snack-bar/invalid-fields-snack-bar.component.mjs +20 -0
- package/esm2022/lib/view-context/message-dialog/message-dialog.component.mjs +93 -0
- package/esm2022/lib/view-context/projects.mjs +29 -0
- package/esm2022/lib/view-context/property-definition-data.mjs +2 -0
- package/esm2022/lib/view-context/reuse-router-slot.token.mjs +4 -0
- package/esm2022/lib/view-context/smart-embedded-slot.directive.mjs +57 -0
- package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.component.mjs +199 -0
- package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.constants.mjs +72 -0
- package/esm2022/lib/view-context/smart-ui-action/components/menu/menu.service.mjs +21 -0
- package/esm2022/lib/view-context/smart-ui-action/components/success-snack-bar/success-snack-bar.component.mjs +30 -0
- package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component.mjs +198 -0
- package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/prime-file-uploader/prime-file-uploader.component.mjs +95 -0
- package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.mjs +134 -0
- package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.utils.mjs +12 -0
- package/esm2022/lib/view-context/smart-ui-action/components/upload-widget/voice-record-widget/voice-record-widget.component.mjs +256 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.mjs +77 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.mjs +54 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-dialog-button/ui-action-dialog-button.component.mjs +60 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +106 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.mjs +60 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.mjs +132 -0
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.mjs +58 -0
- package/esm2022/lib/view-context/smart-ui-action/file-editor-toolbar/file-editor-toolbar.component.mjs +33 -0
- package/esm2022/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.mjs +215 -0
- package/esm2022/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +319 -0
- package/esm2022/lib/view-context/smart-ui-action/ui-action.descriptor.service.mjs +185 -0
- package/esm2022/lib/view-context/smart-ui-action/ui-action.model.mjs +7 -0
- package/esm2022/lib/view-context/smart-ui-action/ui-action.service.mjs +235 -0
- package/esm2022/lib/view-context/smart-view-context-dialog.service.mjs +77 -0
- package/esm2022/lib/view-context/smart-view-context-error-dialog/smart-view-context-error-dialog.component.mjs +35 -0
- package/esm2022/lib/view-context/smart-view-context-error-dialog/smart-view-context-error-dialog.service.mjs +74 -0
- package/esm2022/lib/view-context/smart-view-context.interceptor.mjs +63 -0
- package/esm2022/lib/view-context/smart-view-context.model.mjs +2 -0
- package/esm2022/lib/view-context/smart-view-context.module.mjs +397 -0
- package/esm2022/lib/view-context/smart-view-context.service.mjs +1074 -0
- package/esm2022/lib/view-context/smart-view-redirect/smart-view-redirect.mjs +41 -0
- package/esm2022/lib/view-context/utility/componentLibrary.mjs +9 -0
- package/esm2022/lib/view-context/utility/smart-object-utility.mjs +44 -0
- package/esm2022/lib/view-context/utility/smart-style-utility.mjs +68 -0
- package/esm2022/lib/view-context/value-api/api/api.mjs +4 -0
- package/esm2022/lib/view-context/value-api/api/value.service.mjs +138 -0
- package/esm2022/lib/view-context/value-api/api.module.mjs +40 -0
- package/esm2022/lib/view-context/value-api/configuration.mjs +91 -0
- package/esm2022/lib/view-context/value-api/encoder.mjs +19 -0
- package/esm2022/lib/view-context/value-api/index.mjs +7 -0
- package/esm2022/lib/view-context/value-api/model/genericValue.mjs +13 -0
- package/esm2022/lib/view-context/value-api/model/models.mjs +11 -0
- package/esm2022/lib/view-context/value-api/model/value.mjs +13 -0
- package/esm2022/lib/view-context/value-api/model/valueSetData.mjs +2 -0
- package/esm2022/lib/view-context/value-api/model/valueSetDefinition.mjs +2 -0
- package/esm2022/lib/view-context/value-api/model/valueSetDefinitionData.mjs +2 -0
- package/esm2022/lib/view-context/value-api/model/valueSetDefinitionIdentifier.mjs +13 -0
- package/esm2022/lib/view-context/value-api/model/valueSetDefinitionKind.mjs +24 -0
- package/esm2022/lib/view-context/value-api/model/valueSetExpression.mjs +2 -0
- package/esm2022/lib/view-context/value-api/model/valueSetOperand.mjs +2 -0
- package/esm2022/lib/view-context/value-api/model/valueSetOperation.mjs +19 -0
- package/esm2022/lib/view-context/value-api/param.mjs +2 -0
- package/esm2022/lib/view-context/value-api/variables.mjs +9 -0
- package/esm2022/lib/view-context/view-handler-resolution.mjs +21 -0
- package/esm2022/lib/view-context/view-op.mjs +41 -0
- package/esm2022/lib/view-context/view-slot-resolution.mjs +28 -0
- package/esm2022/projects.mjs +30 -0
- package/esm2022/smartbit4all-ng-client.mjs +5 -0
- package/fesm2022/smartbit4all-ng-client.mjs +8990 -4553
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/session/api/model/accountInfo.d.ts +2 -0
- package/lib/session/projects.d.ts +3 -0
- package/lib/session/smart-backend-bootstrap.config.d.ts +65 -0
- package/lib/session/smart-backend-bootstrap.service.d.ts +55 -0
- package/lib/session/smart-default-error-ui.service.d.ts +90 -0
- package/lib/session/smart-error-catching.interceptor.d.ts +4 -1
- package/lib/session/smart-session-handler.service.d.ts +2 -1
- package/lib/session/smart-session.service.d.ts +16 -1
- package/lib/session/smart-timer/smart-session-timer.component.d.ts +3 -1
- package/lib/smart-client/projects.d.ts +0 -1
- package/lib/smart-client/smart-component-api-client.d.ts +45 -19
- package/lib/smart-client/smart.component.d.ts +7 -5
- package/lib/smart-client/smart.service.d.ts +4 -5
- package/lib/smart-component-layout/api/model/componentWidgetType.d.ts +3 -1
- package/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.d.ts +19 -0
- package/lib/smart-component-layout/api/model/models.d.ts +3 -0
- package/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.d.ts +2 -0
- package/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.d.ts +6 -0
- package/{src/lib/smart-chart/smart-chart/api/model/chartData.d.ts → lib/smart-component-layout/api/model/toolbarDirection.d.ts} +5 -6
- package/lib/smart-component-layout/api/model/toolbarProperties.d.ts +16 -0
- package/lib/smart-component-layout/smart-component-layout-utility.d.ts +9 -1
- package/lib/smart-component-layout/smart-component-layout.component.d.ts +31 -5
- package/lib/smart-component-layout/smart-component-layout.module.d.ts +4 -1
- package/lib/smart-diagram/api/api/api.d.ts +3 -0
- package/lib/smart-diagram/api/api/diagramService.service.d.ts +36 -0
- package/lib/smart-diagram/api/encoder.d.ts +11 -0
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramColor.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataContainer.d.ts +2 -3
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataItem.d.ts +3 -3
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataSet.d.ts +4 -4
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDescriptor.d.ts +13 -9
- package/{src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramUiModel.d.ts → lib/smart-diagram/api/model/diagramModel.d.ts} +5 -4
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramShape.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/drawTime.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/labelText.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/models.d.ts +1 -2
- package/lib/smart-diagram/component/default-smart-diagram-options.provider.d.ts +33 -0
- package/lib/smart-diagram/component/smart-diagram.component.d.ts +43 -0
- package/lib/smart-diagram/component/smart-diagram.module.d.ts +11 -0
- package/lib/smart-diagram/component/smart-diagram.util.d.ts +1 -0
- package/lib/smart-diagram/projects.d.ts +4 -0
- package/lib/smart-dialog/smartdialog.model.d.ts +2 -1
- package/lib/smart-dialog/smartdialog.module.d.ts +1 -2
- package/lib/smart-dialog/smartdialog.service.d.ts +1 -3
- package/lib/smart-expandable-section/expandable-section.component.d.ts +3 -1
- package/lib/smart-expandable-section/expandable-section.model.d.ts +1 -0
- package/lib/smart-expandable-section/smart-expandable-section.module.d.ts +2 -1
- package/lib/smart-filter-editor/smart-filter-editor.service.d.ts +4 -2
- package/{src/lib/smart-chart/smart-chart/api/model/chartOrientation.d.ts → lib/smart-form/api/model/dateFieldProperties.d.ts} +6 -7
- package/lib/smart-form/api/model/fileUploaderProperties.d.ts +20 -0
- package/lib/smart-form/api/model/imageProperties.d.ts +15 -0
- package/lib/smart-form/api/model/models.d.ts +7 -0
- package/lib/smart-form/api/model/multiFileUploaderProperties.d.ts +19 -0
- package/lib/smart-form/api/model/recordingUploaderProperties.d.ts +20 -0
- package/lib/smart-form/api/model/selectionDefinition.d.ts +17 -0
- package/lib/smart-form/api/model/smartFormWidgetType.d.ts +4 -1
- package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +5 -0
- package/lib/smart-form/api/model/textBoxProperties.d.ts +15 -0
- package/{src/lib/smart-chart/smart-chart/api/model/chartValue.d.ts → lib/smart-form/api/model/textFieldProperties.d.ts} +4 -6
- package/lib/smart-form/api/model/valueChangeMode.d.ts +3 -2
- package/lib/smart-form/projects.d.ts +3 -0
- package/lib/smart-form/services/smartform.layout-definition.service.d.ts +6 -2
- package/lib/smart-form/services/smartform.service.d.ts +3 -2
- package/lib/smart-form/smartfileuploader/smartfileuploader.component.d.ts +19 -3
- package/lib/smart-form/smartform.component.d.ts +3 -2
- package/lib/smart-form/smartform.form-model.d.ts +160 -11
- package/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.d.ts +54 -0
- package/lib/smart-form/widgets/components/smart-multi-file-editor/smart-multi-file-editor.component.d.ts +57 -0
- package/lib/smart-form/widgets/components/smart-voice-recorder/smart-voice-recorder.component.d.ts +50 -0
- package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +38 -7
- package/lib/smart-generic-pages/acl-editing-view/acl-editing-view.component.d.ts +21 -0
- package/lib/smart-generic-pages/api/platform/acl/model/aCL.d.ts +18 -0
- package/lib/smart-generic-pages/api/platform/acl/model/aCLEntry.d.ts +54 -0
- package/lib/smart-generic-pages/api/platform/acl/model/objectValidationSeverity.d.ts +19 -0
- package/lib/smart-generic-pages/api/platform/acl/model/subject.d.ts +24 -0
- package/lib/smart-generic-pages/api/platform/api-default/objectHistoryRangeData.d.ts +2 -0
- package/lib/smart-generic-pages/api/platform/searchpage/model/searchPageModel.d.ts +27 -0
- package/lib/smart-generic-pages/api/platform/subjectselector/model/subjectSelectorPageModel.d.ts +14 -0
- package/lib/smart-generic-pages/api/platform/validation/model/validationItem.d.ts +17 -0
- package/lib/smart-generic-pages/api/platform/validation/model/validationResultPageModel.d.ts +18 -0
- package/lib/smart-generic-pages/generic-page/generic-page.component.d.ts +12 -0
- package/lib/smart-generic-pages/invalid-smartlink/invalid-smartlink.component.d.ts +11 -0
- package/lib/smart-generic-pages/no-permission-page/no-permission-page.component.d.ts +11 -0
- package/lib/smart-generic-pages/projects.d.ts +9 -0
- package/lib/smart-generic-pages/search-page/search-page.component.d.ts +25 -0
- package/lib/smart-generic-pages/smart-generic-pages.module.d.ts +19 -0
- package/lib/smart-generic-pages/subject-selector/subject-selector.component.d.ts +17 -0
- package/lib/smart-generic-pages/validation-result-page/validation-result-page.component.d.ts +25 -0
- package/lib/smart-grid/api/grid-api/api/grid.service.d.ts +27 -6
- package/lib/smart-grid/api/grid-api/model/gridDataAccessConfig.d.ts +4 -0
- package/lib/smart-grid/api/grid-api/model/gridExportDescriptor.d.ts +2 -2
- package/lib/smart-grid/api/grid-api/model/gridModel.d.ts +2 -0
- package/lib/smart-grid/api/grid-api/model/gridSelectionChange.d.ts +6 -0
- package/lib/smart-grid/components/generic-component/expanded-row-renderer.component.d.ts +21 -0
- package/lib/smart-grid/components/smart-grid-card/smart-grid-card.component.d.ts +1 -0
- package/lib/smart-grid/components/table-layout-definer/table-layout-definer.component.d.ts +1 -0
- package/lib/smart-grid/smart-grid-toolbar-util.d.ts +1 -0
- package/lib/smart-grid/smart-grid.component.d.ts +20 -6
- package/lib/smart-grid/smart-grid.module.d.ts +20 -21
- package/lib/smart-grid/smart-grid.service.d.ts +2 -0
- package/lib/smart-icon/projects.d.ts +2 -0
- package/lib/smart-icon/smart-icon/smart-icon.component.d.ts +10 -4
- package/lib/smart-icon/smart-icon/ui-badge/ui-badge.component.d.ts +12 -0
- package/lib/smart-icon/smart-icon/ui-badge/ui-badge.directive.d.ts +14 -0
- package/lib/smart-icon/smart-icon.module.d.ts +8 -5
- package/lib/smart-map/abstract-map.d.ts +1 -1
- package/lib/smart-navigation/smart-navigation.interface.d.ts +1 -7
- package/lib/smart-navigation/smart-navigation.service.d.ts +2 -8
- package/lib/smart-ng-client.module.d.ts +3 -4
- package/lib/smart-tab-group/projects.d.ts +0 -4
- package/lib/smart-tab-group/smart-tab-group.module.d.ts +5 -8
- package/lib/smart-table/tables/material-table/material-table.component.d.ts +2 -3
- package/lib/smart-table/tables/mobile-table/mobile-table.component.d.ts +1 -2
- package/lib/smart-table/tables/table.d.ts +5 -5
- package/lib/smart-tree/smarttree-generic.service.d.ts +0 -1
- package/lib/smart-tree/smarttree.component.d.ts +1 -0
- package/lib/smart-tree/smarttree.model.d.ts +1 -0
- package/lib/smart-tree/smarttree.service.d.ts +1 -0
- package/lib/view-context/api/api/view.service.d.ts +14 -13
- package/lib/view-context/api/api-default/invocationRun.d.ts +2 -0
- package/lib/view-context/api/model/backgroundProcessInfo.d.ts +25 -0
- package/lib/view-context/api/model/componentModel.d.ts +5 -0
- package/lib/view-context/api/model/deviceInfo.d.ts +4 -0
- package/lib/view-context/api/model/iconPosition.d.ts +2 -1
- package/lib/view-context/api/model/imageResource.d.ts +2 -0
- package/lib/view-context/api/model/messageOption.d.ts +2 -0
- package/lib/view-context/api/model/models.d.ts +6 -0
- package/lib/view-context/api/model/multiComboBoxElement.d.ts +16 -0
- package/lib/view-context/api/model/multiComboBoxModel.d.ts +16 -0
- package/lib/view-context/api/model/namedValidator.d.ts +1 -0
- package/lib/view-context/api/model/smartLinkData.d.ts +3 -0
- package/lib/view-context/api/model/uiAction.d.ts +8 -0
- package/lib/view-context/api/model/uiActionDefinition.d.ts +19 -0
- package/lib/view-context/api/model/uiActionDefinitionEntry.d.ts +18 -0
- package/lib/view-context/api/model/uiActionDescriptor.d.ts +4 -0
- package/lib/view-context/api/model/uiActionRequest.d.ts +3 -0
- package/lib/view-context/api/model/uiActionSchedule.d.ts +14 -0
- package/lib/view-context/api/model/uiActionUploadDescriptor.d.ts +2 -0
- package/lib/view-context/api/model/view.d.ts +7 -0
- package/lib/view-context/api/model/viewContext.d.ts +1 -0
- package/lib/view-context/api/model/viewData.d.ts +2 -0
- package/lib/view-context/api/model/viewEventHandler.d.ts +5 -0
- package/lib/view-context/api/model/viewPlaceholder.d.ts +1 -0
- package/lib/view-context/default-view-components.token.d.ts +18 -0
- package/lib/view-context/message-dialog/message-dialog.component.d.ts +1 -0
- package/lib/view-context/projects.d.ts +8 -3
- package/lib/view-context/reuse-router-slot.token.d.ts +3 -0
- package/lib/view-context/smart-embedded-slot.directive.d.ts +20 -0
- package/lib/view-context/smart-ui-action/components/menu/menu.component.d.ts +6 -2
- package/lib/view-context/smart-ui-action/components/upload-widget/prime-file-uploader/prime-file-uploader.component.d.ts +32 -0
- package/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.d.ts +40 -0
- package/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.utils.d.ts +3 -0
- 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
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.d.ts +1 -2
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.d.ts +2 -16
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.d.ts +3 -3
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.d.ts +1 -2
- package/lib/view-context/smart-ui-action/file-editor-toolbar/file-editor-toolbar.component.d.ts +13 -0
- package/lib/view-context/smart-ui-action/ui-action-button/ui-action-button.component.d.ts +14 -7
- package/lib/view-context/smart-ui-action/ui-action-toolbar.component.d.ts +27 -3
- package/lib/view-context/smart-ui-action/ui-action.service.d.ts +4 -3
- package/lib/view-context/smart-view-context-dialog.service.d.ts +1 -3
- package/lib/view-context/smart-view-context-error-dialog/smart-view-context-error-dialog.service.d.ts +1 -2
- package/lib/view-context/smart-view-context.model.d.ts +7 -2
- package/lib/view-context/smart-view-context.module.d.ts +74 -65
- package/lib/view-context/smart-view-context.service.d.ts +55 -8
- package/lib/view-context/smart-view-redirect/smart-view-redirect.d.ts +3 -1
- package/lib/view-context/view-handler-resolution.d.ts +11 -0
- package/lib/view-context/view-op.d.ts +18 -0
- package/lib/view-context/view-slot-resolution.d.ts +27 -0
- package/package.json +16 -18
- package/projects.d.ts +2 -0
- package/smartbit4all-ng-client-6.0.1.tgz +0 -0
- package/fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs +0 -686
- package/fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs.map +0 -1
- package/lib/smart-client/smart-authentication.service.d.ts +0 -15
- package/lib/smart-tab-group/smart-tab-group.component.d.ts +0 -21
- package/lib/smart-tab-group/smart-tab-group.service.d.ts +0 -6
- package/lib/smart-tab-group/tab-content/tab-content.component.d.ts +0 -14
- package/lib/smart-tab-group/tab-group-simplified/tab-group.component.d.ts +0 -29
- package/lib/smart-tab-group/tabTile.model.d.ts +0 -8
- package/lib/view-context/smart-ui-action/components/action-badge/action-badge.component.d.ts +0 -12
- package/smartbit4all-ng-client-5.0.21.tgz +0 -0
- package/src/lib/smart-chart/index.d.ts +0 -5
- package/src/lib/smart-chart/smart-chart/api/model/chartDescriptor.d.ts +0 -37
- package/src/lib/smart-chart/smart-chart/api/model/chartType.d.ts +0 -21
- package/src/lib/smart-chart/smart-chart/api/model/models.d.ts +0 -6
- package/src/lib/smart-chart/smart-chart/api/model/pieChartLegendPosition.d.ts +0 -16
- package/src/lib/smart-chart/smart-chart/default-chart-options.provider.d.ts +0 -31
- package/src/lib/smart-chart/smart-chart/smart-chart.component.d.ts +0 -33
- package/src/lib/smart-chart/smart-chart/smart-chart.module.d.ts +0 -11
- package/src/lib/smart-chart/smart-chart/smart-chart2/api/api/api.d.ts +0 -1
- package/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataSetConstructionInstruction.d.ts +0 -21
- package/src/lib/smart-chart/smart-chart-projects.d.ts +0 -5
- package/src/lib/smart-chart/view-context/utility/componentLibrary.d.ts +0 -6
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/api.module.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/configuration.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/index.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/param.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/variables.d.ts +0 -0
- /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
|
@@ -4,3 +4,6 @@ export * from './smart-session.module';
|
|
|
4
4
|
export * from './smart-session-handler.service';
|
|
5
5
|
export * from './smart-timer/smart-session-timer.component';
|
|
6
6
|
export * from './smart-timer/smart-session-timer.service';
|
|
7
|
+
export * from './smart-backend-bootstrap.service';
|
|
8
|
+
export * from './smart-backend-bootstrap.config';
|
|
9
|
+
export * from './smart-default-error-ui.service';
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import { UiActionDescriptor } from '../view-context/api';
|
|
3
|
+
import { SmartViewHandlerModel } from '../view-context/smart-view-context.model';
|
|
4
|
+
import { SessionError } from './smart-session-handler.service';
|
|
5
|
+
/**
|
|
6
|
+
* Externally provided session + viewContext to hydrate the bootstrap with,
|
|
7
|
+
* bypassing the regular `start()` flow. Typical use case: a native mobile
|
|
8
|
+
* shell that performed authentication itself and hands off the result to a
|
|
9
|
+
* webview-hosted Angular app via URL fragment.
|
|
10
|
+
*/
|
|
11
|
+
export interface SmartBackendBootstrapCredentials {
|
|
12
|
+
/** SID issued by the backend; will be sent as `Authorization: Bearer <sessionToken>`. */
|
|
13
|
+
sessionToken: string;
|
|
14
|
+
/** UUID of an already-existing viewContext on the backend. */
|
|
15
|
+
viewContextUuid: string;
|
|
16
|
+
/**
|
|
17
|
+
* Optional long-lived refresh token paired with the SID. If provided, it is
|
|
18
|
+
* persisted to localStorage so the autonomous `SmartErrorCatchingInterceptor`
|
|
19
|
+
* REFRESH flow can recover from `session.expired` errors without dropping
|
|
20
|
+
* the user back to a fresh anonymous session.
|
|
21
|
+
*/
|
|
22
|
+
refreshToken?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface SmartBackendBootstrapConfig {
|
|
25
|
+
url: string;
|
|
26
|
+
cookieName: string;
|
|
27
|
+
/**
|
|
28
|
+
* View name the backend uses for generic message dialogs. Defaults to
|
|
29
|
+
* `'message-dialog'` (the platform convention) when omitted.
|
|
30
|
+
*/
|
|
31
|
+
messageDialogName?: string;
|
|
32
|
+
viewHandlers: SmartViewHandlerModel[];
|
|
33
|
+
actionDescriptors: Map<string, UiActionDescriptor>;
|
|
34
|
+
/** Optional override for the default `handleSessionError` flow. */
|
|
35
|
+
onSessionError?: (err: SessionError) => Promise<void> | void;
|
|
36
|
+
/** Optional override for the default `openSmartLink` handler. */
|
|
37
|
+
onSmartLink?: (channel: string) => Promise<void> | void;
|
|
38
|
+
/** Hook for host UX when `start()` rejects (snackbar + retry). */
|
|
39
|
+
onStartError?: (err: unknown) => Promise<void> | void;
|
|
40
|
+
/**
|
|
41
|
+
* Hook called when a BFF call fails at the transport level — server
|
|
42
|
+
* unreachable (status 0), gateway/service-unavailable (502/503/504), or
|
|
43
|
+
* generic server-error (500). Default: a console.warn line; the request
|
|
44
|
+
* still rejects with the original error, allowing per-call handling.
|
|
45
|
+
*
|
|
46
|
+
* Fire-and-forget: every failed request invokes the hook (no dedup); the
|
|
47
|
+
* host is responsible for own UI deduplication if needed (e.g. snackbar
|
|
48
|
+
* with a "this message is already showing" guard).
|
|
49
|
+
*/
|
|
50
|
+
onTransportError?: (err: HttpErrorResponse) => Promise<void> | void;
|
|
51
|
+
/**
|
|
52
|
+
* Hook called when the backend reports the current viewContext is gone
|
|
53
|
+
* (logout, session expiry, backend restart) — i.e. when the
|
|
54
|
+
* `SmartErrorCatchingInterceptor` would historically auto-trigger
|
|
55
|
+
* `RESTART_VIEWCONTEXT`.
|
|
56
|
+
*
|
|
57
|
+
* Default: rebuilds a fresh anonymous viewContext via
|
|
58
|
+
* `viewContext.initNewViewContext()` (the historical web flow).
|
|
59
|
+
*
|
|
60
|
+
* Mobile/embedded hosts override this to fully delegate to the shell —
|
|
61
|
+
* typically by calling a JS bridge that signals the native side to
|
|
62
|
+
* tear down the webview and return to the native login page.
|
|
63
|
+
*/
|
|
64
|
+
onViewContextLost?: (err: SessionError) => Promise<void> | void;
|
|
65
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import { SmartSessionService } from './smart-session.service';
|
|
3
|
+
import { SmartViewContextService } from '../view-context/smart-view-context.service';
|
|
4
|
+
import { SessionError, SmartSessionHandlerService } from './smart-session-handler.service';
|
|
5
|
+
import { SmartBackendBootstrapConfig, SmartBackendBootstrapCredentials } from './smart-backend-bootstrap.config';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Thrown by `whenReady()` when the viewcontext was rebuilt between the
|
|
9
|
+
* caller's entry into `whenReady()` and the gate releasing. Any uuid the
|
|
10
|
+
* caller resolved before entering is now stale; `SmartComponentApiClient.run()`
|
|
11
|
+
* catches this and skips the load — the component is expected to receive a
|
|
12
|
+
* fresh uuid through `uuidOfPageHasBeenChanged` (NORMAL views) or to be
|
|
13
|
+
* recreated by `openView` (EMBEDDED/DIALOG views).
|
|
14
|
+
*/
|
|
15
|
+
export declare class ViewContextRebuiltError extends Error {
|
|
16
|
+
constructor();
|
|
17
|
+
}
|
|
18
|
+
export declare class SmartBackendBootstrapService implements SmartSessionHandlerService {
|
|
19
|
+
private session;
|
|
20
|
+
private viewContext;
|
|
21
|
+
private config?;
|
|
22
|
+
private runningInit?;
|
|
23
|
+
private lastInitFailed;
|
|
24
|
+
private mode?;
|
|
25
|
+
private runningViewContextLost?;
|
|
26
|
+
private runningSessionError?;
|
|
27
|
+
constructor(session: SmartSessionService, viewContext: SmartViewContextService);
|
|
28
|
+
configure(config: SmartBackendBootstrapConfig): void;
|
|
29
|
+
private handleSmartLink;
|
|
30
|
+
start(): Promise<void>;
|
|
31
|
+
bootstrapWith(creds: SmartBackendBootstrapCredentials): Promise<void>;
|
|
32
|
+
whenReady(): Promise<void>;
|
|
33
|
+
reset(): Promise<void>;
|
|
34
|
+
/**
|
|
35
|
+
* Called by `SmartErrorCatchingInterceptor` when the backend reports
|
|
36
|
+
* `session.viewcontext.missing`. Idempotent across concurrent and
|
|
37
|
+
* sequential calls until the next `reset()` — multiple racing BFF
|
|
38
|
+
* failures collapse into a single recovery attempt.
|
|
39
|
+
*/
|
|
40
|
+
handleViewContextLost(err: SessionError): Promise<void>;
|
|
41
|
+
private runViewContextLost;
|
|
42
|
+
/**
|
|
43
|
+
* Called by `SmartErrorCatchingInterceptor` for transport-level failures
|
|
44
|
+
* (status 0, 5xx). Fire-and-forget; the request still rejects with the
|
|
45
|
+
* original error so callers can do per-call handling.
|
|
46
|
+
*/
|
|
47
|
+
handleTransportError(err: HttpErrorResponse): Promise<void>;
|
|
48
|
+
private runInit;
|
|
49
|
+
private runBootstrapWith;
|
|
50
|
+
private handleInitFailure;
|
|
51
|
+
handleSessionError(err: SessionError): Promise<void>;
|
|
52
|
+
private runSessionError;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartBackendBootstrapService, never>;
|
|
54
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SmartBackendBootstrapService>;
|
|
55
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import { SessionError } from './smart-session-handler.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export type DefaultErrorUiLanguage = 'hu' | 'en' | 'auto';
|
|
5
|
+
export interface DefaultErrorUiStrings {
|
|
6
|
+
startErrorMessage: string;
|
|
7
|
+
startErrorRetry: string;
|
|
8
|
+
transportErrorMessage: string;
|
|
9
|
+
transportErrorReload: string;
|
|
10
|
+
sessionErrorMessage: string;
|
|
11
|
+
sessionErrorAction: string;
|
|
12
|
+
}
|
|
13
|
+
export interface DefaultErrorUiOptions {
|
|
14
|
+
/** 'auto' (default) picks 'hu' if navigator.language starts with 'hu', else 'en'. */
|
|
15
|
+
language?: DefaultErrorUiLanguage;
|
|
16
|
+
/** Override individual strings; missing keys fall back to the language default. */
|
|
17
|
+
strings?: Partial<DefaultErrorUiStrings>;
|
|
18
|
+
/**
|
|
19
|
+
* Snackbar auto-dismiss in ms for transportError. Default: 0 (sticky).
|
|
20
|
+
*
|
|
21
|
+
* Sticky default rationale: a transport error commonly leaves the screen in
|
|
22
|
+
* an inconsistent state (failed component loads, stuck spinners) that does
|
|
23
|
+
* NOT self-recover when the server returns. An auto-dismissing snackbar
|
|
24
|
+
* would hide the notification before the user can act, leaving them with a
|
|
25
|
+
* broken UI and no way back. Sticky forces the Reload action.
|
|
26
|
+
*
|
|
27
|
+
* Set a positive number to opt into auto-dismiss (e.g. mobile-shell flows
|
|
28
|
+
* where the shell tears down the webview on transport error anyway).
|
|
29
|
+
*
|
|
30
|
+
* `startError` is always sticky regardless — the app is unusable until the
|
|
31
|
+
* user retries.
|
|
32
|
+
*/
|
|
33
|
+
transportErrorDuration?: number;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Opt-in default UX for `SmartBackendBootstrapService` error hooks.
|
|
37
|
+
*
|
|
38
|
+
* Spread the result of `hooks(options)` into `bootstrap.configure()` to get a
|
|
39
|
+
* MatSnackBar-based "error + retry" UI without writing the host glue:
|
|
40
|
+
*
|
|
41
|
+
* ```ts
|
|
42
|
+
* bootstrap.configure({
|
|
43
|
+
* ...minimalConfig,
|
|
44
|
+
* ...defaultErrorUi.hooks({ language: 'hu' }),
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* Hosts that want custom logic can omit this service and write their own
|
|
49
|
+
* `onStartError` / `onTransportError` callbacks directly.
|
|
50
|
+
*/
|
|
51
|
+
export declare class SmartDefaultErrorUiService {
|
|
52
|
+
private snackBar;
|
|
53
|
+
private session;
|
|
54
|
+
/** Returns a hooks bundle ready to spread into `bootstrap.configure()`. */
|
|
55
|
+
hooks(options?: DefaultErrorUiOptions): {
|
|
56
|
+
onStartError: (err: unknown) => void;
|
|
57
|
+
onTransportError: (err: HttpErrorResponse) => void;
|
|
58
|
+
onSessionError: (err: SessionError) => void;
|
|
59
|
+
};
|
|
60
|
+
showStartError(_err: unknown, options?: DefaultErrorUiOptions): void;
|
|
61
|
+
showTransportError(_err: HttpErrorResponse, options?: DefaultErrorUiOptions): void;
|
|
62
|
+
showSessionError(_err: SessionError, options?: DefaultErrorUiOptions): void;
|
|
63
|
+
/**
|
|
64
|
+
* Clears the dead session and reloads. Unlike `verifyServerAndReload`, this
|
|
65
|
+
* does NOT pre-check via `getSession()` — the SID is known to be invalid,
|
|
66
|
+
* so the check would fail. We best-effort `clearAndStartNewSession()`
|
|
67
|
+
* (creates a fresh anonymous session); reload happens regardless so the
|
|
68
|
+
* user is not stuck if the clear fails (e.g., server flapping).
|
|
69
|
+
*
|
|
70
|
+
* Overridable in tests.
|
|
71
|
+
*/
|
|
72
|
+
protected recoverSession(): Promise<void>;
|
|
73
|
+
/**
|
|
74
|
+
* Pings `getSession()` before reloading: if the server is still down, the
|
|
75
|
+
* reload would just re-trigger the broken-screen state. The failed check
|
|
76
|
+
* goes through `SmartErrorCatchingInterceptor` and re-fires `onTransportError`,
|
|
77
|
+
* so the user sees a fresh snackbar — they get visible feedback that the
|
|
78
|
+
* server is still unreachable, without paying the cost of a full bundle
|
|
79
|
+
* reload that lands on the same broken state.
|
|
80
|
+
*
|
|
81
|
+
* Overridable in tests.
|
|
82
|
+
*/
|
|
83
|
+
protected verifyServerAndReload(): Promise<void>;
|
|
84
|
+
/** Overridable in tests. */
|
|
85
|
+
protected reloadPage(): void;
|
|
86
|
+
private resolveStrings;
|
|
87
|
+
private resolveLanguage;
|
|
88
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartDefaultErrorUiService, never>;
|
|
89
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SmartDefaultErrorUiService>;
|
|
90
|
+
}
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { SessionError, SmartSessionService } from './projects';
|
|
4
|
+
import { SmartBackendBootstrapService } from './smart-backend-bootstrap.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class SmartErrorCatchingInterceptor implements HttpInterceptor {
|
|
6
7
|
private session;
|
|
8
|
+
private bootstrap;
|
|
7
9
|
sessionErrorCodes: SessionError[];
|
|
8
|
-
constructor(session: SmartSessionService);
|
|
10
|
+
constructor(session: SmartSessionService, bootstrap: SmartBackendBootstrapService);
|
|
9
11
|
intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
|
|
10
12
|
private handleError;
|
|
11
13
|
private isSessionError;
|
|
14
|
+
private isTransportError;
|
|
12
15
|
private getSessionError;
|
|
13
16
|
private resolveError;
|
|
14
17
|
private updateRequestHeaders;
|
|
@@ -22,10 +22,10 @@ export declare class SmartSessionService implements OnDestroy {
|
|
|
22
22
|
isAuthenticated: boolean;
|
|
23
23
|
authenticationStateChanged: Subject<boolean>;
|
|
24
24
|
headerParams: Array<HeaderParam>;
|
|
25
|
-
headersUpdated: Subject<void>;
|
|
26
25
|
private localStorageLocaleName;
|
|
27
26
|
localeChanged: Subject<void>;
|
|
28
27
|
private initializeRunning;
|
|
28
|
+
private runningRefresh?;
|
|
29
29
|
sessionExpiracyChanged: Subject<void>;
|
|
30
30
|
private sessionHandlerService?;
|
|
31
31
|
constructor(apiService: SessionService, cookieService: SmartCookieService);
|
|
@@ -34,6 +34,19 @@ export declare class SmartSessionService implements OnDestroy {
|
|
|
34
34
|
handleSessionError(sessionError: SessionError): Promise<void>;
|
|
35
35
|
addHeaderParam(headerParam: HeaderParam): void;
|
|
36
36
|
private setUpTokenForSessionService;
|
|
37
|
+
/**
|
|
38
|
+
* Hydrates the session with an externally obtained SID, bypassing
|
|
39
|
+
* `initialize()`'s backend round-trip. Used by the
|
|
40
|
+
* `SmartBackendBootstrapService.bootstrapWith()` flow when a host
|
|
41
|
+
* (e.g. native mobile shell) hands over an already-authenticated session.
|
|
42
|
+
*
|
|
43
|
+
* Persists the SID to localStorage + cookie so that a page reload can
|
|
44
|
+
* rehydrate the session through `initialize()`'s regular
|
|
45
|
+
* `tokenFromLocalStorage === tokenFromCookies` path. The optional
|
|
46
|
+
* refreshToken is persisted to enable autonomous refresh via
|
|
47
|
+
* `refreshSession()` when the SID expires.
|
|
48
|
+
*/
|
|
49
|
+
setSessionToken(token: string, refreshToken?: string): void;
|
|
37
50
|
setUrl(url: string): void;
|
|
38
51
|
getBasePath(): string;
|
|
39
52
|
setCookieName(name: string): void;
|
|
@@ -44,10 +57,12 @@ export declare class SmartSessionService implements OnDestroy {
|
|
|
44
57
|
private startSession;
|
|
45
58
|
getSession(): Promise<SessionInfoData>;
|
|
46
59
|
refreshSession(): Promise<SessionInfoData>;
|
|
60
|
+
private doRefreshSession;
|
|
47
61
|
private updateSessionInfo;
|
|
48
62
|
private isInvalidRefreshTokenError;
|
|
49
63
|
getAuthenticationProviders(): Promise<Array<AuthenticationProviderData>>;
|
|
50
64
|
getIsAuthenticated(): Promise<boolean>;
|
|
65
|
+
is2FANecessary(): Promise<boolean>;
|
|
51
66
|
clearAndStartNewSession(): Promise<void>;
|
|
52
67
|
getLocale(): string;
|
|
53
68
|
changeLocale(locale: string): Promise<void>;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { SmartSessionTimerService } from './smart-session-timer.service';
|
|
3
|
+
import { SmartBackendBootstrapService } from '../smart-backend-bootstrap.service';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class SmartSessionTimerComponent implements OnInit, OnDestroy {
|
|
5
6
|
service: SmartSessionTimerService;
|
|
7
|
+
private bootstrap;
|
|
6
8
|
private _destroy$;
|
|
7
9
|
timeInSeconds?: number;
|
|
8
|
-
constructor(service: SmartSessionTimerService);
|
|
10
|
+
constructor(service: SmartSessionTimerService, bootstrap: SmartBackendBootstrapService);
|
|
9
11
|
ngOnInit(): void;
|
|
10
12
|
ngOnDestroy(): void;
|
|
11
13
|
formatTime(seconds: number): string;
|
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, Injector, QueryList, Renderer2 } from '@angular/core';
|
|
2
2
|
import { Subject, Subscription } from 'rxjs';
|
|
3
3
|
import { SmartComponentLayoutComponent } from '../smart-component-layout/projects';
|
|
4
|
-
import {
|
|
4
|
+
import { SmartDiagramComponent } from '../smart-diagram/projects';
|
|
5
|
+
import { SmartFilterEditorContentComponent } from '../smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component';
|
|
6
|
+
import { SmartForm, SmartFormInvalidFields, SmartformComponent, SophisticatedValueChange, ValueChangeMode } from '../smart-form/projects';
|
|
5
7
|
import { GridOptions, SmartGrid, SmartGridComponent } from '../smart-grid/projects';
|
|
6
8
|
import { SmartMapComponent } from '../smart-map/smart-map.component';
|
|
7
|
-
import { SmarttreeGenericService } from '../smart-tree/projects';
|
|
9
|
+
import { SmartTreeComponent, SmarttreeGenericService, SmarttreeService } from '../smart-tree/projects';
|
|
8
10
|
import { ComponentModel, ComponentModelChange, ExecuteUiActionOptions, SmartTranslateService, SmartViewContextService, UiAction, UiActionAdditionalParams, UiActionDescriptorService, UiActionModel, UiActionRequest, UiActionService, UiActionSpecificDemandResponse, UiActionToolbarComponent, UseUiAction2 } from '../view-context/projects';
|
|
9
|
-
import {
|
|
10
|
-
import { SmartFilterEditorContentComponent } from '../smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component';
|
|
11
|
+
import { SmartBackendBootstrapService } from '../session/smart-backend-bootstrap.service';
|
|
11
12
|
export declare abstract class SmartComponentApiClient<T> implements UseUiAction2 {
|
|
12
13
|
protected inject: Injector;
|
|
13
|
-
protected auth: SmartAuthenticationServiceInterface;
|
|
14
14
|
protected pageName?: string | undefined;
|
|
15
15
|
protected _componentName?: string | undefined;
|
|
16
|
-
protected element?: ElementRef | undefined;
|
|
16
|
+
protected element?: ElementRef<any> | undefined;
|
|
17
17
|
protected renderer?: Renderer2 | undefined;
|
|
18
18
|
protected _destroy$: Subject<void>;
|
|
19
19
|
private detectChange;
|
|
20
20
|
private _uuid?;
|
|
21
|
-
private uuidOfPageHasBeenChangedSubscription?;
|
|
22
21
|
protected componentModelLoaded: boolean;
|
|
23
22
|
get uuid(): string | undefined;
|
|
24
23
|
set uuid(uuid: string | undefined);
|
|
@@ -32,6 +31,7 @@ export declare abstract class SmartComponentApiClient<T> implements UseUiAction2
|
|
|
32
31
|
dataChanged: Subject<void>;
|
|
33
32
|
smartGrid?: SmartGrid;
|
|
34
33
|
protected viewContext: SmartViewContextService;
|
|
34
|
+
protected bootstrap: SmartBackendBootstrapService;
|
|
35
35
|
protected uiActionService: UiActionService;
|
|
36
36
|
protected uiActionDescriptorService: UiActionDescriptorService;
|
|
37
37
|
protected translate?: SmartTranslateService;
|
|
@@ -40,46 +40,63 @@ export declare abstract class SmartComponentApiClient<T> implements UseUiAction2
|
|
|
40
40
|
set smartTreeService(smartTreeService: SmarttreeGenericService | undefined);
|
|
41
41
|
widgets: Map<string, SmartGridComponent | SmarttreeGenericService | SmartMapComponent | undefined>;
|
|
42
42
|
formWidgets: Map<string, SmartformComponent | undefined>;
|
|
43
|
-
|
|
43
|
+
private _useQueryLists;
|
|
44
|
+
get useQueryLists(): boolean;
|
|
45
|
+
set useQueryLists(value: boolean);
|
|
44
46
|
sendModelOnWidgetAction: boolean;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
+
inmediateDataChangeKeys: string[];
|
|
48
|
+
blurDataChangeKeys: string[];
|
|
49
|
+
protected dataChangeActionHandlers: Map<SmartformComponent, Subscription[]>;
|
|
47
50
|
protected filterModelChangeSubjects: Map<string, Subject<void>>;
|
|
48
51
|
protected changeDetector?: ChangeDetectorRef;
|
|
49
|
-
constructor(inject: Injector,
|
|
52
|
+
constructor(inject: Injector, pageName?: string | undefined, _componentName?: string | undefined, element?: ElementRef<any> | undefined, renderer?: Renderer2 | undefined);
|
|
50
53
|
_ngOnInit(): void;
|
|
51
54
|
_ngOnDestroy(): void;
|
|
55
|
+
/**
|
|
56
|
+
* Called whenever this component's uuid is set to a non-null value (it may
|
|
57
|
+
* fire more than once if the uuid changes). Default: no-op.
|
|
58
|
+
* Consumers that resolved their uuid in the constructor (e.g. filter config)
|
|
59
|
+
* override this to defer that wiring until the uuid is injected — required for
|
|
60
|
+
* dynamic default components whose uuid is not known at construction. (#28870)
|
|
61
|
+
*/
|
|
62
|
+
protected onUuidResolved(uuid: string): void;
|
|
52
63
|
_ngAfterViewInit(): void;
|
|
53
|
-
|
|
64
|
+
setupGridServices(grid: SmartGridComponent): void;
|
|
54
65
|
private setupFilterServices;
|
|
55
66
|
protected handleQueryListSimple<T>(ql: QueryList<T>, handler: () => void): void;
|
|
56
67
|
protected handleQueryList<T>(ql: QueryList<T>, handler: (el: T) => void): void;
|
|
57
68
|
protected abstract getSmartFormsQL(): QueryList<SmartformComponent> | undefined;
|
|
58
69
|
protected abstract getSmartGridsQL(): QueryList<SmartGridComponent> | undefined;
|
|
59
|
-
protected abstract getSmartTreesQL(): QueryList<
|
|
70
|
+
protected abstract getSmartTreesQL(): QueryList<SmartTreeComponent> | undefined;
|
|
60
71
|
protected abstract getSmartFilterEditorContentComponentsQL(): QueryList<SmartFilterEditorContentComponent> | undefined;
|
|
61
72
|
protected abstract getSmartUiActionToolbarsQL(): QueryList<UiActionToolbarComponent> | undefined;
|
|
62
73
|
protected abstract getSmartComponentLayoutsQL(): QueryList<SmartComponentLayoutComponent> | undefined;
|
|
63
74
|
protected abstract getSmartMapQL(): QueryList<SmartMapComponent> | undefined;
|
|
64
|
-
protected
|
|
75
|
+
protected abstract getSmartDiagramQL(): QueryList<SmartDiagramComponent> | undefined;
|
|
76
|
+
protected getWidgets(): Map<string, SmartGridComponent | SmarttreeService<any> | SmartFilterEditorContentComponent | SmartMapComponent | SmartDiagramComponent | undefined>;
|
|
65
77
|
initComponentByModel(): void;
|
|
66
78
|
protected getAllSmartFormComponents(): SmartformComponent[];
|
|
67
79
|
protected getAllSmartGridComponents(): SmartGridComponent[];
|
|
68
80
|
protected getAllSmartMapComponents(): Array<SmartMapComponent>;
|
|
69
|
-
protected
|
|
81
|
+
protected getAllSmartDiagramComponents(): Array<SmartDiagramComponent>;
|
|
82
|
+
protected getAllSmartTreeComponents(): SmarttreeService<any>[];
|
|
70
83
|
protected getAllSmartFilterEditorContentComponents(): SmartFilterEditorContentComponent[];
|
|
71
84
|
protected getAllSmartUiActionToolbars(): UiActionToolbarComponent[];
|
|
72
85
|
protected getAllFilterUiActionToolbars(): UiActionToolbarComponent[];
|
|
73
86
|
initData(): void;
|
|
74
87
|
initActions(): void;
|
|
75
88
|
setupAllToolbars(toolbars: UiActionToolbarComponent[], toolbarsWithoutId: UiActionToolbarComponent[], toolbarModels: Map<string, UiActionModel[]>): Promise<void>;
|
|
76
|
-
run(): void
|
|
89
|
+
run(): Promise<void>;
|
|
77
90
|
load(): Promise<void>;
|
|
78
91
|
executeUiAction(uiAction: UiAction, options?: ExecuteUiActionOptions): Promise<void>;
|
|
79
|
-
addDataChangeActionHandler(key: string): void;
|
|
92
|
+
addDataChangeActionHandler(key: string, valueChangeMode: ValueChangeMode): void;
|
|
93
|
+
protected getChangeKeys(valueChangeMode: ValueChangeMode): string[];
|
|
80
94
|
removeDataChangeActionHandler(key: string): void;
|
|
81
|
-
protected dataChangeActionHandler(event: SophisticatedValueChange): void;
|
|
82
|
-
protected
|
|
95
|
+
protected dataChangeActionHandler(event: SophisticatedValueChange, valueChangeMode: ValueChangeMode): void;
|
|
96
|
+
protected handleLayoutUploadCallback(comp: SmartComponentLayoutComponent): void;
|
|
97
|
+
protected handleUploadCallback(form: SmartformComponent): void;
|
|
98
|
+
protected handleFormSubscriptions(form: SmartformComponent): void;
|
|
99
|
+
handleDataChangeSubscriptions(formComponent?: SmartformComponent): void;
|
|
83
100
|
getInvalidFields(): SmartFormInvalidFields;
|
|
84
101
|
protected validateForm(form: SmartformComponent | undefined, aggregatedInvalidFields: SmartFormInvalidFields): void;
|
|
85
102
|
getAdditionalParams(uiAction: UiAction): UiActionAdditionalParams;
|
|
@@ -87,6 +104,9 @@ export declare abstract class SmartComponentApiClient<T> implements UseUiAction2
|
|
|
87
104
|
submitForm(validate: boolean): void;
|
|
88
105
|
performUiActionRequest(uiActionRequest: UiActionRequest, widgetId?: string, nodeId?: string): Promise<any>;
|
|
89
106
|
protected addModelToWidgetAction(uiActionRequest: UiActionRequest): void;
|
|
107
|
+
addModelToWidgetParams(params: {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
}): void;
|
|
90
110
|
handleSpecificDemandsAsynchronously(uiAction: UiAction, uiActionRequest: UiActionRequest): Promise<UiActionSpecificDemandResponse>;
|
|
91
111
|
/**
|
|
92
112
|
* Submits all the registered forms in the SmartComponent
|
|
@@ -97,6 +117,12 @@ export declare abstract class SmartComponentApiClient<T> implements UseUiAction2
|
|
|
97
117
|
setUpDefaultTree(treeId: string): void;
|
|
98
118
|
createTreeService(treeId: string): SmarttreeGenericService;
|
|
99
119
|
addFileUploader(uiActionCode: string, fileFormats?: string[], maxSizeMb?: number, isMultiple?: boolean): SmartComponentFileUploader;
|
|
120
|
+
/**
|
|
121
|
+
* For dialog-hosted default components, the view uuid is passed through the
|
|
122
|
+
* dialog data (MAT_DIALOG_DATA for Material, DynamicDialogConfig.data for
|
|
123
|
+
* PrimeNG). Returns undefined for slot-hosted components (no dialog data). (#28870)
|
|
124
|
+
*/
|
|
125
|
+
private readDialogDataUuid;
|
|
100
126
|
private handleValueChanges;
|
|
101
127
|
protected handleChanges(change: ComponentModelChange): void;
|
|
102
128
|
protected handleChangeWidgets(changedWidgets: string[], skipLoad?: boolean): void;
|
|
@@ -4,30 +4,32 @@ import { SmartFilterEditorContentComponent } from '../smart-filter-editor/projec
|
|
|
4
4
|
import { SmartformComponent } from '../smart-form/projects';
|
|
5
5
|
import { SmartGridComponent } from '../smart-grid/projects';
|
|
6
6
|
import { SmartMapComponent } from '../smart-map/smart-map.component';
|
|
7
|
-
import {
|
|
7
|
+
import { SmartTreeComponent } from '../smart-tree/projects';
|
|
8
8
|
import { UiActionToolbarComponent } from '../view-context/projects';
|
|
9
|
-
import { SmartAuthenticationServiceInterface } from './smart-authentication.service';
|
|
10
9
|
import { SmartComponentApiClient } from './smart-component-api-client';
|
|
10
|
+
import { SmartDiagramComponent } from '../smart-diagram/projects';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare abstract class SmartComponent<T> extends SmartComponentApiClient<T> implements OnInit, OnDestroy, AfterViewInit {
|
|
13
13
|
smartFormsQL: QueryList<SmartformComponent>;
|
|
14
14
|
smartGridsQL: QueryList<SmartGridComponent>;
|
|
15
|
-
smartTreesQL: QueryList<
|
|
15
|
+
smartTreesQL: QueryList<SmartTreeComponent>;
|
|
16
16
|
smartComponentLayoutsQL: QueryList<SmartComponentLayoutComponent>;
|
|
17
17
|
smartFilterEditorContentComponentsQL: QueryList<SmartFilterEditorContentComponent>;
|
|
18
18
|
smartUiActionToolbarsQL: QueryList<UiActionToolbarComponent>;
|
|
19
19
|
smartMapQL: QueryList<SmartMapComponent>;
|
|
20
|
-
|
|
20
|
+
smartDiagramQL: QueryList<SmartDiagramComponent>;
|
|
21
|
+
constructor(inject: Injector, pageName?: string, _componentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
21
22
|
ngOnInit(): void;
|
|
22
23
|
ngOnDestroy(): void;
|
|
23
24
|
ngAfterViewInit(): void;
|
|
24
25
|
getSmartFormsQL(): QueryList<SmartformComponent> | undefined;
|
|
25
26
|
getSmartGridsQL(): QueryList<SmartGridComponent> | undefined;
|
|
26
|
-
getSmartTreesQL(): QueryList<
|
|
27
|
+
getSmartTreesQL(): QueryList<SmartTreeComponent> | undefined;
|
|
27
28
|
getSmartComponentLayoutsQL(): QueryList<SmartComponentLayoutComponent> | undefined;
|
|
28
29
|
getSmartFilterEditorContentComponentsQL(): QueryList<SmartFilterEditorContentComponent> | undefined;
|
|
29
30
|
getSmartUiActionToolbarsQL(): QueryList<UiActionToolbarComponent> | undefined;
|
|
30
31
|
getSmartMapQL(): QueryList<SmartMapComponent> | undefined;
|
|
32
|
+
getSmartDiagramQL(): QueryList<SmartDiagramComponent> | undefined;
|
|
31
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartComponent<any>, never>;
|
|
32
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
33
35
|
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { AfterViewInit, Injector, OnDestroy, OnInit, QueryList } from '@angular/core';
|
|
2
|
-
import { SmartAuthenticationServiceInterface } from './smart-authentication.service';
|
|
3
2
|
import { SmartComponentApiClient } from './smart-component-api-client';
|
|
4
3
|
import { SmartformComponent } from '../smart-form/projects';
|
|
5
4
|
import { SmartGridComponent } from '../smart-grid/projects';
|
|
6
|
-
import {
|
|
5
|
+
import { SmartTreeComponent } from '../smart-tree/projects';
|
|
7
6
|
import { SmartComponentLayoutComponent } from '../smart-component-layout/projects';
|
|
8
7
|
import { SmartFilterEditorContentComponent } from '../smart-filter-editor/project';
|
|
9
8
|
import { UiActionToolbarComponent } from '../view-context/projects';
|
|
@@ -11,17 +10,17 @@ import * as i0 from "@angular/core";
|
|
|
11
10
|
export declare abstract class SmartService<T> extends SmartComponentApiClient<T> implements OnInit, OnDestroy, AfterViewInit {
|
|
12
11
|
smartFormsQL: QueryList<SmartformComponent>;
|
|
13
12
|
smartGridsQL: QueryList<SmartGridComponent>;
|
|
14
|
-
smartTreesQL: QueryList<
|
|
13
|
+
smartTreesQL: QueryList<SmartTreeComponent>;
|
|
15
14
|
smartComponentLayoutsQL: QueryList<SmartComponentLayoutComponent>;
|
|
16
15
|
smartFilterEditorContentComponentsQL: QueryList<SmartFilterEditorContentComponent>;
|
|
17
16
|
smartUiActionToolbarsQL: QueryList<UiActionToolbarComponent>;
|
|
18
|
-
constructor(inject: Injector,
|
|
17
|
+
constructor(inject: Injector, pageName: string);
|
|
19
18
|
ngOnInit(): void;
|
|
20
19
|
ngOnDestroy(): void;
|
|
21
20
|
ngAfterViewInit(): void;
|
|
22
21
|
getSmartFormsQL(): QueryList<SmartformComponent> | undefined;
|
|
23
22
|
getSmartGridsQL(): QueryList<SmartGridComponent> | undefined;
|
|
24
|
-
getSmartTreesQL(): QueryList<
|
|
23
|
+
getSmartTreesQL(): QueryList<SmartTreeComponent> | undefined;
|
|
25
24
|
getSmartComponentLayoutsQL(): QueryList<SmartComponentLayoutComponent> | undefined;
|
|
26
25
|
getSmartFilterEditorContentComponentsQL(): QueryList<SmartFilterEditorContentComponent> | undefined;
|
|
27
26
|
getSmartUiActionToolbarsQL(): QueryList<UiActionToolbarComponent> | undefined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form layout definition
|
|
3
|
+
* Contains form layout definition objects.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: info@it4all.hu
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SmartComponentLayoutDefinition } from './smartComponentLayoutDefinition';
|
|
13
|
+
import { ViewConstraint } from '../../../view-context/api';
|
|
14
|
+
export interface LayoutDefinitionDescriptor {
|
|
15
|
+
uri?: string;
|
|
16
|
+
name?: string;
|
|
17
|
+
layout?: SmartComponentLayoutDefinition;
|
|
18
|
+
constraint?: ViewConstraint;
|
|
19
|
+
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from './componentType';
|
|
2
2
|
export * from './componentWidgetType';
|
|
3
|
+
export * from './layoutDefinitionDescriptor';
|
|
3
4
|
export * from './layoutDirection';
|
|
4
5
|
export * from './smartComponentLayoutDefinition';
|
|
5
6
|
export * from './smartComponentWidgetDefinition';
|
|
7
|
+
export * from './toolbarDirection';
|
|
8
|
+
export * from './toolbarProperties';
|
|
@@ -22,6 +22,8 @@ export interface SmartComponentLayoutDefinition {
|
|
|
22
22
|
type: ComponentType;
|
|
23
23
|
expandable?: boolean;
|
|
24
24
|
expandableSectionLabel?: string;
|
|
25
|
+
expandableSectionSubtitle?: string;
|
|
26
|
+
expandableSectionHeaderToolbarId?: string;
|
|
25
27
|
direction?: LayoutDirection;
|
|
26
28
|
components?: Array<SmartComponentLayoutDefinition>;
|
|
27
29
|
widget?: SmartComponentWidgetDefinition;
|
|
@@ -17,4 +17,10 @@ export interface SmartComponentWidgetDefinition {
|
|
|
17
17
|
identifier?: string;
|
|
18
18
|
filterExpressionFieldList?: FilterExpressionFieldList;
|
|
19
19
|
filterType?: SmartFilterType;
|
|
20
|
+
/**
|
|
21
|
+
* Additional properties the client may use to customise the appearance or behaviour of the widget.
|
|
22
|
+
*/
|
|
23
|
+
properties?: {
|
|
24
|
+
[key: string]: object;
|
|
25
|
+
};
|
|
20
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
2
|
+
* Form layout definition
|
|
3
|
+
* Contains form layout definition objects.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0.0
|
|
6
6
|
* Contact: info@it4all.hu
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
chartValues: Array<ChartValue>;
|
|
12
|
+
export declare enum ToolbarDirection {
|
|
13
|
+
HORIZONTAL = "HORIZONTAL",
|
|
14
|
+
VERTICAL = "VERTICAL"
|
|
16
15
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form layout definition
|
|
3
|
+
* Contains form layout definition objects.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: info@it4all.hu
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { ToolbarDirection } from './toolbarDirection';
|
|
13
|
+
export interface ToolbarProperties {
|
|
14
|
+
scrollable?: boolean;
|
|
15
|
+
direction?: ToolbarDirection;
|
|
16
|
+
}
|