@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
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { UiAction } from '../view-context/api';
|
|
2
2
|
import { GridRow } from './api/grid-api';
|
|
3
3
|
export declare class SmartGridToolbarActionsUtil {
|
|
4
|
+
static defaultActionToolbarId: string;
|
|
4
5
|
static showMenu(row: GridRow, orderedColumns: string[]): boolean;
|
|
5
6
|
static showToolbar(row: GridRow, columnName: string): boolean;
|
|
6
7
|
static calculateCellToActionMap(rows: GridRow[], serviceToUse: any, gridId: string): Record<string, any[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
2
2
|
import { FlatTreeControl } from '@angular/cdk/tree';
|
|
3
|
-
import { AfterViewInit, ComponentRef, Injector, OnChanges, OnDestroy, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import { AfterViewInit, ComponentRef, Injector, OnChanges, OnDestroy, QueryList, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
4
4
|
import { MatDialog } from '@angular/material/dialog';
|
|
5
5
|
import { PageEvent } from '@angular/material/paginator';
|
|
6
6
|
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree';
|
|
@@ -9,7 +9,7 @@ import { ComponentFactoryService } from '../component-factory-service/projects';
|
|
|
9
9
|
import { ExpandableSection } from '../smart-expandable-section/projects';
|
|
10
10
|
import { SmartTable, SmarttableComponent } from '../smart-table/projects';
|
|
11
11
|
import { ImageResource, UiAction, UiActionDescriptor } from '../view-context/api';
|
|
12
|
-
import { ComponentLibrary, UiActionDescriptorService, UiActionModel,
|
|
12
|
+
import { ComponentLibrary, UiActionDescriptorService, UiActionModel, UiActionToolbarComponent } from '../view-context/projects';
|
|
13
13
|
import { GridColumnMeta, GridRow } from './api/grid-api';
|
|
14
14
|
import { SmartGrid, SmartLayoutDef } from './models/model';
|
|
15
15
|
import { SmartGridService } from './smart-grid.service';
|
|
@@ -17,6 +17,8 @@ import { MenuItem, SortMeta } from 'primeng/api';
|
|
|
17
17
|
import { Menu } from 'primeng/menu';
|
|
18
18
|
import { TableColumnReorderEvent, TableHeaderCheckboxToggleEvent, TableLazyLoadEvent, TableRowSelectEvent, TableRowUnSelectEvent } from 'primeng/table';
|
|
19
19
|
import { MultiSelectChangeEvent } from 'primeng/multiselect';
|
|
20
|
+
import { ExpandedRowRendererComponent } from './components/generic-component/expanded-row-renderer.component';
|
|
21
|
+
import { SmartDatePipe, SmartDateTimePipe, SmartTimePipe } from '../shared/smarttable.date-pipe';
|
|
20
22
|
import * as i0 from "@angular/core";
|
|
21
23
|
export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
22
24
|
private service;
|
|
@@ -24,7 +26,9 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
24
26
|
private dialog;
|
|
25
27
|
private injector;
|
|
26
28
|
private uiActionDescriptorService;
|
|
27
|
-
private
|
|
29
|
+
private smartDatePipe;
|
|
30
|
+
private smartDateTimePipe;
|
|
31
|
+
private smartTimePipe;
|
|
28
32
|
compLib: ComponentLibrary;
|
|
29
33
|
private gridMenuIcon?;
|
|
30
34
|
private readonly defaultPageSizeOptions;
|
|
@@ -32,12 +36,17 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
32
36
|
private _destroy$;
|
|
33
37
|
smartGrid?: SmartGrid;
|
|
34
38
|
uuid?: string;
|
|
39
|
+
get testId(): string | null;
|
|
35
40
|
dev: boolean;
|
|
36
41
|
vcRefTable?: ViewContainerRef;
|
|
37
42
|
componentRefTable?: ComponentRef<SmarttableComponent>;
|
|
38
43
|
smartTable: SmartTable<GridRow>;
|
|
39
44
|
toolbar?: UiActionToolbarComponent;
|
|
45
|
+
_headerToolbar?: UiActionToolbarComponent;
|
|
46
|
+
defaultActionToolbarId: string;
|
|
47
|
+
expandedRowsComps: QueryList<ExpandedRowRendererComponent>;
|
|
40
48
|
expandableSections?: ExpandableSection<any>[];
|
|
49
|
+
expandedRows: {};
|
|
41
50
|
pageEvent?: PageEvent;
|
|
42
51
|
datasource?: null;
|
|
43
52
|
pageSize?: number;
|
|
@@ -49,6 +58,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
49
58
|
selectedRows: GridRow[];
|
|
50
59
|
tableType?: any;
|
|
51
60
|
pageSizeOptions: number[];
|
|
61
|
+
columnMetaByName?: Map<string, GridColumnMeta>;
|
|
52
62
|
selectionChanges: Subject<any>;
|
|
53
63
|
uiActionDescriptors: Map<string, UiActionDescriptor>;
|
|
54
64
|
cellToActionMap: Record<string, UiActionModel[]>;
|
|
@@ -58,7 +68,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
58
68
|
treeFlattener?: MatTreeFlattener<GridRow, GridRow>;
|
|
59
69
|
treeDataSource?: MatTreeFlatDataSource<GridRow, GridRow>;
|
|
60
70
|
treeChecklistSelection?: SelectionModel<GridRow>;
|
|
61
|
-
constructor(service: SmartGridService, cfService: ComponentFactoryService, dialog: MatDialog, injector: Injector, uiActionDescriptorService: UiActionDescriptorService,
|
|
71
|
+
constructor(service: SmartGridService, cfService: ComponentFactoryService, dialog: MatDialog, injector: Injector, uiActionDescriptorService: UiActionDescriptorService, smartDatePipe: SmartDatePipe, smartDateTimePipe: SmartDateTimePipe, smartTimePipe: SmartTimePipe, compLib: ComponentLibrary, gridMenuIcon?: string | undefined);
|
|
62
72
|
ngOnChanges(changes: SimpleChanges): void;
|
|
63
73
|
ngOnDestroy(): void;
|
|
64
74
|
ngAfterViewInit(): void;
|
|
@@ -74,6 +84,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
74
84
|
refresh(): Promise<void>;
|
|
75
85
|
getStyle(row: any): string[];
|
|
76
86
|
setupToolbar(): void;
|
|
87
|
+
get headerToolbar(): UiActionToolbarComponent | undefined;
|
|
77
88
|
private render;
|
|
78
89
|
private clearTable;
|
|
79
90
|
private renderTable;
|
|
@@ -100,8 +111,10 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
100
111
|
/** Whether part of the descendants are selected */
|
|
101
112
|
descendantsPartiallySelected(node: GridRow): boolean;
|
|
102
113
|
private constructHeader;
|
|
114
|
+
private getSmartTableProperty;
|
|
103
115
|
onChangePage(event: PageEvent): Promise<void>;
|
|
104
116
|
onPrimeChangePage(event: any): Promise<void>;
|
|
117
|
+
refreshPartialResults(): Promise<void>;
|
|
105
118
|
private execute;
|
|
106
119
|
private buttonTranslator;
|
|
107
120
|
layoutDef(): typeof SmartLayoutDef;
|
|
@@ -112,7 +125,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
112
125
|
private onSelectAll;
|
|
113
126
|
private onSelectRows;
|
|
114
127
|
onRowSelect(event: TableRowSelectEvent): Promise<void>;
|
|
115
|
-
onRowUnselect(event: TableRowUnSelectEvent
|
|
128
|
+
onRowUnselect(event: TableRowUnSelectEvent): Promise<void>;
|
|
116
129
|
onSelectAllRow(event: TableHeaderCheckboxToggleEvent): Promise<void>;
|
|
117
130
|
editColumns(): void;
|
|
118
131
|
columns: GridColumnMeta[];
|
|
@@ -125,7 +138,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
125
138
|
headerChange(event: MultiSelectChangeEvent): Promise<void>;
|
|
126
139
|
onColOrder(event: TableColumnReorderEvent): Promise<void>;
|
|
127
140
|
getOrderColumNames(columns: GridColumnMeta[]): string[];
|
|
128
|
-
getColValue(col: string, row: any):
|
|
141
|
+
getColValue(col: string, row: any): string | undefined;
|
|
129
142
|
getImageResourceIcons(row: any, header: string): ImageResource[];
|
|
130
143
|
getImageResourceStyle(resource: ImageResource): any;
|
|
131
144
|
getRowColumnAction(row: any, columnName: string): UiActionModel[];
|
|
@@ -133,6 +146,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
133
146
|
shouldShowOptionsButton(row: any): boolean;
|
|
134
147
|
calculateMenuActions(row: GridRow): UiAction[];
|
|
135
148
|
createCellToActionMap(): void;
|
|
149
|
+
rowTrackByFn(index: number, row: any): any;
|
|
136
150
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartGridComponent, never>;
|
|
137
151
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartGridComponent, "smart-grid", never, { "smartGrid": { "alias": "smartGrid"; "required": false; }; "uuid": { "alias": "uuid"; "required": false; }; "dev": { "alias": "dev"; "required": false; }; }, {}, never, never, false, never>;
|
|
138
152
|
}
|
|
@@ -3,28 +3,27 @@ import * as i1 from "./smart-grid.component";
|
|
|
3
3
|
import * as i2 from "./components/smart-grid-card/smart-grid-card.component";
|
|
4
4
|
import * as i3 from "./components/expandable-grid/expandable-grid.component";
|
|
5
5
|
import * as i4 from "./components/table-layout-definer/table-layout-definer.component";
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "../smart-
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "@angular/material/
|
|
12
|
-
import * as i11 from "@angular/material/
|
|
13
|
-
import * as i12 from "@angular/material/
|
|
14
|
-
import * as i13 from "@angular/material/
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "@angular/
|
|
18
|
-
import * as i17 from "
|
|
19
|
-
import * as i18 from "
|
|
20
|
-
import * as i19 from "primeng/
|
|
21
|
-
import * as i20 from "primeng/
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "
|
|
24
|
-
import * as i23 from "primeng/
|
|
25
|
-
import * as i24 from "primeng/multiselect";
|
|
6
|
+
import * as i5 from "./components/generic-component/expanded-row-renderer.component";
|
|
7
|
+
import * as i6 from "@angular/platform-browser";
|
|
8
|
+
import * as i7 from "../smart-icon/smart-icon.module";
|
|
9
|
+
import * as i8 from "../smart-table/smarttable.module";
|
|
10
|
+
import * as i9 from "@angular/material/icon";
|
|
11
|
+
import * as i10 from "@angular/material/button";
|
|
12
|
+
import * as i11 from "@angular/material/paginator";
|
|
13
|
+
import * as i12 from "@angular/material/tree";
|
|
14
|
+
import * as i13 from "@angular/material/checkbox";
|
|
15
|
+
import * as i14 from "../smart-expandable-section/smart-expandable-section.module";
|
|
16
|
+
import * as i15 from "@angular/cdk/drag-drop";
|
|
17
|
+
import * as i16 from "@angular/material/select";
|
|
18
|
+
import * as i17 from "../view-context/smart-view-context.module";
|
|
19
|
+
import * as i18 from "primeng/table";
|
|
20
|
+
import * as i19 from "primeng/button";
|
|
21
|
+
import * as i20 from "primeng/menu";
|
|
22
|
+
import * as i21 from "../shared/shared.module";
|
|
23
|
+
import * as i22 from "primeng/paginator";
|
|
24
|
+
import * as i23 from "primeng/multiselect";
|
|
26
25
|
export declare class SmartGridModule {
|
|
27
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartGridModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartGridModule, [typeof i1.SmartGridComponent, typeof i2.SmartGridCardComponent, typeof i3.ExpandableGridComponent, typeof i4.TableLayoutDefinerComponent
|
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartGridModule, [typeof i1.SmartGridComponent, typeof i2.SmartGridCardComponent, typeof i3.ExpandableGridComponent, typeof i4.TableLayoutDefinerComponent, typeof i5.ExpandedRowRendererComponent], [typeof i6.BrowserModule, typeof i7.SmartIconModule, typeof i8.SmarttableModule, typeof i9.MatIconModule, typeof i10.MatButtonModule, typeof i11.MatPaginatorModule, typeof i12.MatTreeModule, typeof i13.MatCheckboxModule, typeof i14.SmartExpandableSectionModule, typeof i15.DragDropModule, typeof i16.MatSelectModule, typeof i17.SmartViewContextModule, typeof i18.TableModule, typeof i19.ButtonModule, typeof i20.MenuModule, typeof i21.SharedModule, typeof i22.PaginatorModule, typeof i23.MultiSelectModule], [typeof i1.SmartGridComponent]>;
|
|
29
28
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartGridModule>;
|
|
30
29
|
}
|
|
@@ -12,10 +12,12 @@ export declare class SmartGridService {
|
|
|
12
12
|
load(uuid: string, gridIdentifier: string): Promise<void>;
|
|
13
13
|
setPage(uuid: string, gridIdentifier: string, offset: string, limit: string): Promise<void>;
|
|
14
14
|
sort(smartGrid: SmartGrid, gridUpdateData: GridUpdateData): Promise<void>;
|
|
15
|
+
refresh(uuid: string, identifier: string): Promise<void>;
|
|
15
16
|
expand(smartGrid: SmartGrid, rowId: string): Promise<any>;
|
|
16
17
|
select(smartGrid: SmartGrid, gridRow: GridRow): Promise<ViewContextChange | undefined>;
|
|
17
18
|
selectRows(smartGrid: SmartGrid, selected: string[], unselected: string[]): Promise<ViewContextChange | undefined>;
|
|
18
19
|
selectAll(smartGrid: SmartGrid, selected: boolean): Promise<ViewContextChange | undefined>;
|
|
20
|
+
private buildGridSelectionChange;
|
|
19
21
|
update(uuid: string, identifier: string, updateData: GridUpdateData): Promise<void>;
|
|
20
22
|
private updateGrid;
|
|
21
23
|
private getCurrentPageSize;
|
|
@@ -2,19 +2,23 @@ import { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
|
2
2
|
import { SmartIconService } from '../smart-icon.service';
|
|
3
3
|
import { ComponentLibrary } from '../../view-context/utility/componentLibrary';
|
|
4
4
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
5
|
+
import { ImageResource, ImageResourceKindEnum } from '../../view-context/api';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class SmartIconComponent implements OnChanges {
|
|
7
8
|
private service;
|
|
8
9
|
changeDetector: ChangeDetectorRef;
|
|
9
10
|
private sanitizer;
|
|
10
11
|
compLib: ComponentLibrary;
|
|
11
|
-
iconWithoutNamespace
|
|
12
|
+
iconWithoutNamespace?: string;
|
|
12
13
|
color?: string;
|
|
13
|
-
|
|
14
|
+
imageResource?: ImageResource;
|
|
15
|
+
icon?: string;
|
|
14
16
|
iconHtml?: SafeHtml;
|
|
15
17
|
isCustom: boolean;
|
|
16
18
|
componentLibrary: typeof ComponentLibrary;
|
|
19
|
+
imageResourceKind: typeof ImageResourceKindEnum;
|
|
17
20
|
constructor(service: SmartIconService, changeDetector: ChangeDetectorRef, sanitizer: DomSanitizer, compLib: ComponentLibrary);
|
|
21
|
+
ngOnInit(): void;
|
|
18
22
|
ngOnChanges(changes: SimpleChanges): void;
|
|
19
23
|
getIcon(icon: string): string;
|
|
20
24
|
getStyle(iconcolor?: string): {
|
|
@@ -22,7 +26,9 @@ export declare class SmartIconComponent implements OnChanges {
|
|
|
22
26
|
display: string;
|
|
23
27
|
fill: string | undefined;
|
|
24
28
|
};
|
|
25
|
-
checkIcon(): Promise<void>;
|
|
29
|
+
checkIcon(iconName: string): Promise<void>;
|
|
30
|
+
getImageResourceStyle(resource?: ImageResource): any;
|
|
31
|
+
mergeStyles(...styles: Array<Record<string, any> | null | undefined>): Record<string, any>;
|
|
26
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartIconComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartIconComponent, "smart-icon", never, { "iconWithoutNamespace": { "alias": "icon"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartIconComponent, "smart-icon", never, { "iconWithoutNamespace": { "alias": "icon"; "required": false; }; "color": { "alias": "color"; "required": false; }; "imageResource": { "alias": "imageResource"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
34
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BadgeDescriptor } from '../../../view-context/api/model/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UiBadgeComponent implements OnInit {
|
|
5
|
+
descriptor?: BadgeDescriptor;
|
|
6
|
+
inputValue?: string;
|
|
7
|
+
effectiveValue?: string;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
getBadgeClass(): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiBadgeComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UiBadgeComponent, "ui-badge", never, { "descriptor": { "alias": "descriptor"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit, ViewContainerRef, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { BadgeDescriptor } from '../../../view-context/api/model/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UiBadgeDirective implements OnInit {
|
|
5
|
+
private vcr;
|
|
6
|
+
private el;
|
|
7
|
+
private renderer;
|
|
8
|
+
descriptor?: BadgeDescriptor;
|
|
9
|
+
inputValue?: string;
|
|
10
|
+
constructor(vcr: ViewContainerRef, el: ElementRef, renderer: Renderer2);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiBadgeDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UiBadgeDirective, "[uiBadge], [uiBadgeValue]", never, { "descriptor": { "alias": "uiBadge"; "required": false; }; "inputValue": { "alias": "uiBadgeValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./smart-icon/smart-icon.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "@angular/
|
|
6
|
-
import * as i5 from "
|
|
3
|
+
import * as i2 from "./smart-icon/ui-badge/ui-badge.component";
|
|
4
|
+
import * as i3 from "./smart-icon/ui-badge/ui-badge.directive";
|
|
5
|
+
import * as i4 from "@angular/platform-browser";
|
|
6
|
+
import * as i5 from "@angular/material/core";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "primeng/badge";
|
|
9
|
+
import * as i8 from "../shared/shared.module";
|
|
7
10
|
export declare class SmartIconModule {
|
|
8
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartIconModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartIconModule, [typeof i1.SmartIconComponent], [typeof
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartIconModule, [typeof i1.SmartIconComponent, typeof i2.UiBadgeComponent, typeof i3.UiBadgeDirective], [typeof i4.BrowserModule, typeof i5.MatCommonModule, typeof i6.MatIconModule, typeof i7.BadgeModule, typeof i8.SharedModule], [typeof i1.SmartIconComponent, typeof i2.UiBadgeComponent, typeof i3.UiBadgeDirective]>;
|
|
10
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartIconModule>;
|
|
11
14
|
}
|
|
@@ -33,5 +33,5 @@ export declare abstract class AbstractMap {
|
|
|
33
33
|
abstract handleEditingItemChanges(toRemove: Array<RecordWithId>, toAdd: Array<RecordWithId>): void;
|
|
34
34
|
abstract toBase64(): Promise<string>;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractMap, never>;
|
|
36
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractMap, never, never, { "model": { "alias": "model"; "required": true; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "editingSession": { "alias": "editingSession"; "required": false; "isSignal": true; }; }, { "onMapClick": "onMapClick"; "onOverlayClick": "onOverlayClick"; "onMapDragEnd": "onMapDragEnd"; "onZoomChanged": "onZoomChanged"; "onEditingOverlayClick": "onEditingOverlayClick"; "onEditingOverlayDrag": "onEditingOverlayDrag"; }, never, never,
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractMap, never, never, { "model": { "alias": "model"; "required": true; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "editingSession": { "alias": "editingSession"; "required": false; "isSignal": true; }; }, { "onMapClick": "onMapClick"; "onOverlayClick": "onOverlayClick"; "onMapDragEnd": "onMapDragEnd"; "onZoomChanged": "onZoomChanged"; "onEditingOverlayClick": "onEditingOverlayClick"; "onEditingOverlayDrag": "onEditingOverlayDrag"; }, never, never, false, never>;
|
|
37
37
|
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { Params, QueryParamsHandling } from "@angular/router";
|
|
2
1
|
import { Subscription } from "rxjs";
|
|
3
2
|
export interface SmartNavigation {
|
|
4
3
|
urlSubscription?: Subscription;
|
|
5
|
-
|
|
6
|
-
navigateTo(urls: string[], queryParams?: Params, queryParamsHandling?: QueryParamsHandling, relativeToThis?: boolean): void;
|
|
7
|
-
subscribeToUrlChange(callback: (url: string) => void): void;
|
|
8
|
-
subscribeToQueryChange(callback: (params: Params) => void): void;
|
|
9
|
-
unsubscribeFromQueryChanges(): void;
|
|
10
|
-
getCurrentPath(): string;
|
|
4
|
+
subscribeToUrlChange(callback: (url: string) => void): Subscription;
|
|
11
5
|
}
|
|
@@ -1,18 +1,12 @@
|
|
|
1
|
-
import { ActivatedRoute
|
|
1
|
+
import { ActivatedRoute } from "@angular/router";
|
|
2
2
|
import { Subscription } from "rxjs";
|
|
3
3
|
import { SmartNavigation } from "./smart-navigation.interface";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class SmartNavigationService implements SmartNavigation {
|
|
6
|
-
private router;
|
|
7
6
|
route?: ActivatedRoute;
|
|
8
|
-
constructor(
|
|
7
|
+
constructor();
|
|
9
8
|
urlSubscription?: Subscription;
|
|
10
|
-
querySubscription?: Subscription;
|
|
11
|
-
navigateTo(urls: string[], queryParams?: Params | undefined, queryParamsHandling?: QueryParamsHandling | undefined, relativeToThis?: boolean): void;
|
|
12
9
|
subscribeToUrlChange(callback: (url: string) => void): Subscription;
|
|
13
|
-
subscribeToQueryChange(callback: (params: Params) => void): void;
|
|
14
|
-
unsubscribeFromQueryChanges(): void;
|
|
15
|
-
getCurrentPath(): string;
|
|
16
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartNavigationService, never>;
|
|
17
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<SmartNavigationService>;
|
|
18
12
|
}
|
|
@@ -16,11 +16,10 @@ import * as i14 from "./smart-expandable-section/smart-expandable-section.module
|
|
|
16
16
|
import * as i15 from "./smart-component-layout/smart-component-layout.module";
|
|
17
17
|
import * as i16 from "./smart-filter-editor/smart-filter-editor.module";
|
|
18
18
|
import * as i17 from "./shared/shared.module";
|
|
19
|
-
import * as i18 from "primeng/
|
|
20
|
-
import * as i19 from "
|
|
21
|
-
import * as i20 from "./smart-tree/smarttree.module";
|
|
19
|
+
import * as i18 from "primeng/fileupload";
|
|
20
|
+
import * as i19 from "./smart-tree/smarttree.module";
|
|
22
21
|
export declare class SmartNgClientModule {
|
|
23
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartNgClientModule, never>;
|
|
24
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartNgClientModule, [typeof i1.SmartFileUploaderComponent], [typeof i2.BrowserModule, typeof i3.MatCommonModule, typeof i4.ComponentFactoryServiceModule, typeof i5.SmartViewContextModule, typeof i6.SmartdialogModule, typeof i7.SmartFilterModule, typeof i8.SmartGridModule, typeof i9.SmartIconModule, typeof i10.SmartNavbarModule, typeof i11.SmartSessionModule, typeof i12.SmartTabGroupModule, typeof i13.SmarttableModule, typeof i14.SmartExpandableSectionModule, typeof i15.SmartComponentLayoutModule, typeof i16.SmartFilterEditorModule, typeof i17.SharedModule, typeof i18.
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartNgClientModule, [typeof i1.SmartFileUploaderComponent], [typeof i2.BrowserModule, typeof i3.MatCommonModule, typeof i4.ComponentFactoryServiceModule, typeof i5.SmartViewContextModule, typeof i6.SmartdialogModule, typeof i7.SmartFilterModule, typeof i8.SmartGridModule, typeof i9.SmartIconModule, typeof i10.SmartNavbarModule, typeof i11.SmartSessionModule, typeof i12.SmartTabGroupModule, typeof i13.SmarttableModule, typeof i14.SmartExpandableSectionModule, typeof i15.SmartComponentLayoutModule, typeof i16.SmartFilterEditorModule, typeof i17.SharedModule, typeof i18.FileUploadModule], [typeof i4.ComponentFactoryServiceModule, typeof i15.SmartComponentLayoutModule, typeof i6.SmartdialogModule, typeof i14.SmartExpandableSectionModule, typeof i7.SmartFilterModule, typeof i8.SmartGridModule, typeof i9.SmartIconModule, typeof i10.SmartNavbarModule, typeof i11.SmartSessionModule, typeof i12.SmartTabGroupModule, typeof i13.SmarttableModule, typeof i5.SmartViewContextModule, typeof i1.SmartFileUploaderComponent, typeof i19.SmarttreeModule, typeof i17.SharedModule]>;
|
|
25
24
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartNgClientModule>;
|
|
26
25
|
}
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "@angular/material/tabs";
|
|
7
|
-
import * as i6 from "../component-factory-service/component-factory-service.module";
|
|
8
|
-
import * as i7 from "../view-context/smart-view-context.module";
|
|
2
|
+
import * as i1 from "@angular/platform-browser";
|
|
3
|
+
import * as i2 from "@angular/material/tabs";
|
|
4
|
+
import * as i3 from "../component-factory-service/component-factory-service.module";
|
|
5
|
+
import * as i4 from "../view-context/smart-view-context.module";
|
|
9
6
|
export declare class SmartTabGroupModule {
|
|
10
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTabGroupModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTabGroupModule,
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTabGroupModule, never, [typeof i1.BrowserModule, typeof i2.MatTabsModule, typeof i3.ComponentFactoryServiceModule, typeof i4.SmartViewContextModule], never>;
|
|
12
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartTabGroupModule>;
|
|
13
10
|
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
2
1
|
import { Table } from '../table';
|
|
3
2
|
import { ComponentFactoryService } from '../../../component-factory-service/projects';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class MaterialTableComponent extends Table {
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
defaultActionToolbarId: string;
|
|
6
|
+
constructor(cfService: ComponentFactoryService);
|
|
8
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTableComponent, never>;
|
|
9
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTableComponent, "lib-material-table", never, {}, {}, never, never, false, never>;
|
|
10
9
|
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
2
1
|
import { Table } from '../table';
|
|
3
2
|
import { ComponentFactoryService } from '../../../component-factory-service/projects';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class MobileTableComponent extends Table {
|
|
6
|
-
constructor(cfService: ComponentFactoryService
|
|
5
|
+
constructor(cfService: ComponentFactoryService);
|
|
7
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileTableComponent, never>;
|
|
8
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<MobileTableComponent, "lib-mobile-table", never, {}, {}, never, never, false, never>;
|
|
9
8
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ComponentRef, OnDestroy, OnInit, QueryList, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ThemePalette } from '@angular/material/core';
|
|
3
3
|
import { MatMenuTrigger } from '@angular/material/menu';
|
|
4
4
|
import { MatTable } from '@angular/material/table';
|
|
@@ -8,15 +8,15 @@ import { ImageResource, UiAction, UiActionTooltip } from '../../view-context/api
|
|
|
8
8
|
import { DefaultActionsPopupComponent } from '../components/default-actions-popup/default-actions-popup.component';
|
|
9
9
|
import { SmartTable, SmartTableButton, SmartTableButtonType, SmartTableHeader, SmartTableHeaderPropertyType, SmartTableOptionButtonDirection, SmartTableType } from '../smarttable.model';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class Table implements OnInit, OnDestroy
|
|
11
|
+
export declare class Table implements OnInit, OnDestroy {
|
|
12
12
|
protected cfService: ComponentFactoryService;
|
|
13
|
-
protected changeDetector: ChangeDetectorRef;
|
|
14
13
|
_destroy$: Subject<void>;
|
|
15
14
|
triggers: QueryList<MatMenuTrigger>;
|
|
16
15
|
vcRef?: ViewContainerRef[];
|
|
17
16
|
componentRef?: ComponentRef<any>;
|
|
18
17
|
defaultActionMenuComponents: QueryList<DefaultActionsPopupComponent>;
|
|
19
18
|
myTableChild: MatTable<any>;
|
|
19
|
+
headerToolbar: any;
|
|
20
20
|
smartTable: SmartTable<any>;
|
|
21
21
|
tableType: typeof SmartTableType;
|
|
22
22
|
smartTableButtonType: typeof SmartTableButtonType;
|
|
@@ -26,15 +26,15 @@ export declare class Table implements OnInit, OnDestroy, AfterViewInit {
|
|
|
26
26
|
element?: any;
|
|
27
27
|
cellToActionMap: Record<string, any[]>;
|
|
28
28
|
onSelectionChanged: Subject<void>;
|
|
29
|
-
constructor(cfService: ComponentFactoryService
|
|
29
|
+
constructor(cfService: ComponentFactoryService);
|
|
30
30
|
asyncTranslationResult: (translator: any, param: string) => any;
|
|
31
31
|
readonly ACTION_SEPERATOR = "_actionSeparator_";
|
|
32
32
|
ngOnInit(): void;
|
|
33
33
|
ngOnDestroy(): void;
|
|
34
|
-
ngAfterViewInit(): void;
|
|
35
34
|
handleOnRowClick(element: any): void;
|
|
36
35
|
updateSmartTable(smartTable: SmartTable<any>): void;
|
|
37
36
|
renderRows(): void;
|
|
37
|
+
createCellToActionMap(): void;
|
|
38
38
|
handleOnRowDoubleClick(event: any, element: any): void;
|
|
39
39
|
type(): typeof SmartTableHeaderPropertyType;
|
|
40
40
|
sortButtonClicked(event: any, header: SmartTableHeader): void;
|
|
@@ -10,7 +10,6 @@ export interface SmarttreeConfiguration {
|
|
|
10
10
|
}
|
|
11
11
|
export declare class SmarttreeGenericService extends SmarttreeService<SmartTreeNode[]> implements UseUiAction {
|
|
12
12
|
protected pageName: string;
|
|
13
|
-
protected treeId: string;
|
|
14
13
|
private treeMenuIcon?;
|
|
15
14
|
submit: Subject<void>;
|
|
16
15
|
reSubscribeToChange: Subject<void>;
|
|
@@ -18,6 +18,7 @@ export declare class SmartTreeComponent implements OnInit, OnDestroy {
|
|
|
18
18
|
treeData?: SmartTreeModel;
|
|
19
19
|
treeStyle?: TreeStyle;
|
|
20
20
|
treeService: SmarttreeService<any>;
|
|
21
|
+
get testId(): string | null;
|
|
21
22
|
smartTreeNodeButtonType: typeof SmartTreeNodeButtonType;
|
|
22
23
|
errorMessage?: string;
|
|
23
24
|
uiActionModels: UiActionModel[];
|
|
@@ -5,6 +5,7 @@ import { UiActionModel } from '../view-context/smart-ui-action/ui-action.model';
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class SmarttreeService<T> implements SmarttreeServiceDescriptor<T> {
|
|
7
7
|
errorMessage: string;
|
|
8
|
+
treeId?: string;
|
|
8
9
|
treeFromBackend: T | undefined;
|
|
9
10
|
smartTreeModel: SmartTreeModel | undefined;
|
|
10
11
|
smartTreeModelChanged: Subject<SmartTreeModel>;
|
|
@@ -191,19 +191,19 @@ export declare class ViewService {
|
|
|
191
191
|
/**
|
|
192
192
|
* Performs a generic UI action.
|
|
193
193
|
* @param uuid
|
|
194
|
-
* @param
|
|
194
|
+
* @param uiActionRequest
|
|
195
195
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
196
196
|
* @param reportProgress flag to report request and response progress.
|
|
197
197
|
*/
|
|
198
|
-
performAction(uuid: string,
|
|
198
|
+
performAction(uuid: string, uiActionRequest: UiActionRequest, observe?: 'body', reportProgress?: boolean, options?: {
|
|
199
199
|
httpHeaderAccept?: 'application/json';
|
|
200
200
|
context?: HttpContext;
|
|
201
201
|
}): Observable<ViewContextChange>;
|
|
202
|
-
performAction(uuid: string,
|
|
202
|
+
performAction(uuid: string, uiActionRequest: UiActionRequest, observe?: 'response', reportProgress?: boolean, options?: {
|
|
203
203
|
httpHeaderAccept?: 'application/json';
|
|
204
204
|
context?: HttpContext;
|
|
205
205
|
}): Observable<HttpResponse<ViewContextChange>>;
|
|
206
|
-
performAction(uuid: string,
|
|
206
|
+
performAction(uuid: string, uiActionRequest: UiActionRequest, observe?: 'events', reportProgress?: boolean, options?: {
|
|
207
207
|
httpHeaderAccept?: 'application/json';
|
|
208
208
|
context?: HttpContext;
|
|
209
209
|
}): Observable<HttpEvent<ViewContextChange>>;
|
|
@@ -212,19 +212,19 @@ export declare class ViewService {
|
|
|
212
212
|
* @param uuid
|
|
213
213
|
* @param widgetId
|
|
214
214
|
* @param nodeId
|
|
215
|
-
* @param
|
|
215
|
+
* @param uiActionRequest
|
|
216
216
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
217
217
|
* @param reportProgress flag to report request and response progress.
|
|
218
218
|
*/
|
|
219
|
-
performWidgetAction(uuid: string, widgetId: string, nodeId: string,
|
|
219
|
+
performWidgetAction(uuid: string, widgetId: string, nodeId: string, uiActionRequest: UiActionRequest, observe?: 'body', reportProgress?: boolean, options?: {
|
|
220
220
|
httpHeaderAccept?: 'application/json';
|
|
221
221
|
context?: HttpContext;
|
|
222
222
|
}): Observable<ViewContextChange>;
|
|
223
|
-
performWidgetAction(uuid: string, widgetId: string, nodeId: string,
|
|
223
|
+
performWidgetAction(uuid: string, widgetId: string, nodeId: string, uiActionRequest: UiActionRequest, observe?: 'response', reportProgress?: boolean, options?: {
|
|
224
224
|
httpHeaderAccept?: 'application/json';
|
|
225
225
|
context?: HttpContext;
|
|
226
226
|
}): Observable<HttpResponse<ViewContextChange>>;
|
|
227
|
-
performWidgetAction(uuid: string, widgetId: string, nodeId: string,
|
|
227
|
+
performWidgetAction(uuid: string, widgetId: string, nodeId: string, uiActionRequest: UiActionRequest, observe?: 'events', reportProgress?: boolean, options?: {
|
|
228
228
|
httpHeaderAccept?: 'application/json';
|
|
229
229
|
context?: HttpContext;
|
|
230
230
|
}): Observable<HttpEvent<ViewContextChange>>;
|
|
@@ -232,25 +232,26 @@ export declare class ViewService {
|
|
|
232
232
|
* Performs a widget UI action.
|
|
233
233
|
* @param uuid
|
|
234
234
|
* @param widgetId
|
|
235
|
-
* @param
|
|
235
|
+
* @param uiActionRequest
|
|
236
236
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
237
237
|
* @param reportProgress flag to report request and response progress.
|
|
238
238
|
*/
|
|
239
|
-
performWidgetMainAction(uuid: string, widgetId: string,
|
|
239
|
+
performWidgetMainAction(uuid: string, widgetId: string, uiActionRequest: UiActionRequest, observe?: 'body', reportProgress?: boolean, options?: {
|
|
240
240
|
httpHeaderAccept?: 'application/json';
|
|
241
241
|
context?: HttpContext;
|
|
242
242
|
}): Observable<ViewContextChange>;
|
|
243
|
-
performWidgetMainAction(uuid: string, widgetId: string,
|
|
243
|
+
performWidgetMainAction(uuid: string, widgetId: string, uiActionRequest: UiActionRequest, observe?: 'response', reportProgress?: boolean, options?: {
|
|
244
244
|
httpHeaderAccept?: 'application/json';
|
|
245
245
|
context?: HttpContext;
|
|
246
246
|
}): Observable<HttpResponse<ViewContextChange>>;
|
|
247
|
-
performWidgetMainAction(uuid: string, widgetId: string,
|
|
247
|
+
performWidgetMainAction(uuid: string, widgetId: string, uiActionRequest: UiActionRequest, observe?: 'events', reportProgress?: boolean, options?: {
|
|
248
248
|
httpHeaderAccept?: 'application/json';
|
|
249
249
|
context?: HttpContext;
|
|
250
250
|
}): Observable<HttpEvent<ViewContextChange>>;
|
|
251
251
|
/**
|
|
252
|
+
* Show Published View
|
|
252
253
|
* @param channel Smartlink\'s channel.
|
|
253
|
-
* @param uuid Smartlink\'s unique identifier
|
|
254
|
+
* @param uuid Smartlink\'s unique identifier. Not a UUID anymore.
|
|
254
255
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
255
256
|
* @param reportProgress flag to report request and response progress.
|
|
256
257
|
*/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* View API
|
|
3
|
+
* View API
|
|
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 { UiAction } from './uiAction';
|
|
13
|
+
export interface BackgroundProcessInfo {
|
|
14
|
+
/**
|
|
15
|
+
* Code of the running process.
|
|
16
|
+
*/
|
|
17
|
+
code?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The message displayed to the user to describe the process.
|
|
20
|
+
*/
|
|
21
|
+
headline?: string;
|
|
22
|
+
progress?: number;
|
|
23
|
+
refreshAction?: UiAction;
|
|
24
|
+
cancelAction?: UiAction;
|
|
25
|
+
}
|
|
@@ -13,6 +13,7 @@ import { SmartLayoutDefinition } from '../../../smart-form/api';
|
|
|
13
13
|
import { ComponentConstraint } from './componentConstraint';
|
|
14
14
|
import { SmartComponentLayoutDefinition } from '../../../smart-component-layout/api';
|
|
15
15
|
import { Style } from './style';
|
|
16
|
+
import { BackgroundProcessInfo } from './backgroundProcessInfo';
|
|
16
17
|
import { UiAction } from './uiAction';
|
|
17
18
|
import { ValueSet } from './valueSet';
|
|
18
19
|
/**
|
|
@@ -30,6 +31,10 @@ export interface ComponentModel {
|
|
|
30
31
|
[key: string]: SmartComponentLayoutDefinition;
|
|
31
32
|
};
|
|
32
33
|
actions: Array<UiAction>;
|
|
34
|
+
/**
|
|
35
|
+
* List of processes (related and important to the view\'s content) running in the background.
|
|
36
|
+
*/
|
|
37
|
+
backgroundProcesses?: Array<BackgroundProcessInfo>;
|
|
33
38
|
valueSets?: {
|
|
34
39
|
[key: string]: ValueSet;
|
|
35
40
|
};
|