@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,18 +1,22 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ComponentRef, ElementRef, OnDestroy, OnInit, QueryList, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ComponentRef, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { UntypedFormGroup } from '@angular/forms';
|
|
3
3
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
4
4
|
import { MatChipInputEvent } from '@angular/material/chips';
|
|
5
5
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
6
6
|
import { ContentChange, QuillEditorComponent, QuillModules } from 'ngx-quill';
|
|
7
|
+
import { EditorTextChangeEvent } from 'primeng/editor';
|
|
7
8
|
import { Observable, Subject } from 'rxjs';
|
|
8
9
|
import { ComponentFactoryService } from '../../../component-factory-service/projects';
|
|
10
|
+
import { UiAction, UiActionDescriptor } from '../../../view-context/api';
|
|
9
11
|
import { UiActionToolbarComponent } from '../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
10
|
-
import {
|
|
12
|
+
import { ComponentLibrary } from '../../../view-context/utility/componentLibrary';
|
|
13
|
+
import { SmartFormWidgetType, SmartWidgetHintPositionEnum } from '../../api/model/models';
|
|
11
14
|
import { SmartFormService } from '../../services/smartform.service';
|
|
12
15
|
import { SmartButton, SmartFormWidget, SmartItem, SmartItems } from '../../smartform.form-model';
|
|
13
16
|
import { SmartFormTextFieldButtonIconPosition, SmartValidator, SophisticatedValueChange, Value } from '../../smartform.model';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
17
|
+
import { SmartFileEditorComponent } from '../components/smart-file-editor/smart-file-editor.component';
|
|
18
|
+
import { SmartMultiFileEditorComponent } from '../components/smart-multi-file-editor/smart-multi-file-editor.component';
|
|
19
|
+
import { Message } from 'primeng/api';
|
|
16
20
|
import * as i0 from "@angular/core";
|
|
17
21
|
export declare class SmartWidgetSettings {
|
|
18
22
|
static useUtc: boolean;
|
|
@@ -25,12 +29,19 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
25
29
|
changeDetector: ChangeDetectorRef;
|
|
26
30
|
private _destroy$;
|
|
27
31
|
hidePassword: boolean;
|
|
32
|
+
smartComponent: any;
|
|
33
|
+
errorMessages: Message[];
|
|
28
34
|
form: UntypedFormGroup;
|
|
29
35
|
widgetInstance: SmartFormWidget<any>;
|
|
30
36
|
onBlur?: Subject<any>;
|
|
31
37
|
onValueChange?: Subject<any>;
|
|
32
38
|
labelColor?: string;
|
|
33
39
|
sophisticatedValueChange: Subject<SophisticatedValueChange>;
|
|
40
|
+
blurSophisticatedValueChange: Subject<SophisticatedValueChange>;
|
|
41
|
+
valueCleared: EventEmitter<{
|
|
42
|
+
event?: any;
|
|
43
|
+
key: any;
|
|
44
|
+
}>;
|
|
34
45
|
smartFormWidgetType: typeof SmartFormWidgetType;
|
|
35
46
|
capsOn: any;
|
|
36
47
|
chipInputChild?: ElementRef<HTMLInputElement>;
|
|
@@ -51,8 +62,12 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
51
62
|
childrenWidgetsQL?: QueryList<SmartformwidgetComponent>;
|
|
52
63
|
componentLibrary: typeof ComponentLibrary;
|
|
53
64
|
emptyQuillToolbar: QuillModules;
|
|
65
|
+
sb4Textarea: ElementRef<HTMLTextAreaElement>;
|
|
66
|
+
fileUploader: SmartFileEditorComponent;
|
|
67
|
+
multiFileUploader?: SmartMultiFileEditorComponent;
|
|
54
68
|
constructor(service: SmartFormService, cfService: ComponentFactoryService, sanitizer: DomSanitizer, compLib: ComponentLibrary, changeDetector: ChangeDetectorRef);
|
|
55
69
|
ngOnInit(): void;
|
|
70
|
+
private getSophisticatedEventKind;
|
|
56
71
|
parseYoutubeUrl(url: string): string | false;
|
|
57
72
|
_hasJustChanged: boolean;
|
|
58
73
|
get hasJustChanged(): boolean;
|
|
@@ -115,14 +130,15 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
115
130
|
smartFormTextFieldButtonIconPosition(): typeof SmartFormTextFieldButtonIconPosition;
|
|
116
131
|
getType(): typeof SmartFormWidgetType;
|
|
117
132
|
getWidgetLabel(widget: SmartFormWidget<any>): string;
|
|
118
|
-
|
|
133
|
+
sanitizeHtml(value?: string): SafeHtml | null;
|
|
119
134
|
private fieldIsRequired;
|
|
120
135
|
hasCustomError(widget: SmartFormWidget<any>, validator: SmartValidator): boolean;
|
|
121
136
|
getErrorMessage(widgetInstance: SmartFormWidget<any>): boolean;
|
|
122
137
|
getIndicatorItemClass(index: number): string;
|
|
123
138
|
getIndicatorStatusLabelColor(): string;
|
|
124
139
|
getIndicatorStatusLabel(): string;
|
|
125
|
-
upload(
|
|
140
|
+
upload(event: any): void;
|
|
141
|
+
executeUiAction(uiAction: UiAction): void;
|
|
126
142
|
getButtonType(descriptor: any): string;
|
|
127
143
|
isOnlyIcon(descriptor: any): boolean;
|
|
128
144
|
onButtonClicked(instance: SmartButton): void;
|
|
@@ -136,6 +152,21 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
136
152
|
isToolbarPresent(): boolean;
|
|
137
153
|
getChipsValue(value: any): any;
|
|
138
154
|
getOptions(items: SmartItems<any>[]): any[];
|
|
155
|
+
get clearButtonDescriptor(): UiActionDescriptor;
|
|
156
|
+
clearField(key: string): void;
|
|
157
|
+
onTextareaChange(value: string): void;
|
|
158
|
+
handleBlurEvent(eventData: any): void;
|
|
159
|
+
dorpdownOpening: boolean;
|
|
160
|
+
onDropDownShow(): void;
|
|
161
|
+
onDropDownInput(): void;
|
|
162
|
+
safeDropDownBlur(event: any): void;
|
|
163
|
+
calendarOpening: boolean;
|
|
164
|
+
onCalendarShow(): void;
|
|
165
|
+
onCalendarInput(): void;
|
|
166
|
+
safeCalendarBlur(event: any): void;
|
|
167
|
+
convertToLocalDateTime(value: string | null): Date | null;
|
|
168
|
+
getControlMessages(controlName: string): void;
|
|
169
|
+
isHtml(text: string): boolean;
|
|
139
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartformwidgetComponent, never>;
|
|
140
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartformwidgetComponent, "smartformwidget", never, { "form": { "alias": "form"; "required": false; }; "widgetInstance": { "alias": "widgetInstance"; "required": false; }; "onBlur": { "alias": "onBlur"; "required": false; }; "onValueChange": { "alias": "onValueChange"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "sophisticatedValueChange": { "alias": "sophisticatedValueChange"; "required": false; }; }, {}, never, never, false, never>;
|
|
171
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartformwidgetComponent, "smartformwidget", never, { "form": { "alias": "form"; "required": false; }; "widgetInstance": { "alias": "widgetInstance"; "required": false; }; "onBlur": { "alias": "onBlur"; "required": false; }; "onValueChange": { "alias": "onValueChange"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "sophisticatedValueChange": { "alias": "sophisticatedValueChange"; "required": false; }; "blurSophisticatedValueChange": { "alias": "blurSophisticatedValueChange"; "required": false; }; }, { "valueCleared": "valueCleared"; }, never, never, false, never>;
|
|
141
172
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
3
|
+
import { UiAction, UiActionRequest, UiActionSpecificDemandResponse } from '../../view-context/projects';
|
|
4
|
+
import { SmartForm, SmartformComponent, SmartformLayoutDefinitionService } from '../../smart-form/projects';
|
|
5
|
+
import { ACL } from '../api/platform/acl/model/aCL';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AclEditingViewComponent extends SmartComponent<ACL> {
|
|
8
|
+
private formService;
|
|
9
|
+
smartForm?: SmartForm;
|
|
10
|
+
formChild: SmartformComponent;
|
|
11
|
+
constructor(inject: Injector, pageName: string, formService: SmartformLayoutDefinitionService);
|
|
12
|
+
initActions(): void;
|
|
13
|
+
constructForm(): void;
|
|
14
|
+
handleMatrixButtonCallback(widget: any, row: any): any;
|
|
15
|
+
private mapMatrixDataForCheckbox;
|
|
16
|
+
apply(): void;
|
|
17
|
+
handleSpecificDemandsAsynchronously(uiAction: UiAction, uiActionRequest: UiActionRequest): Promise<UiActionSpecificDemandResponse>;
|
|
18
|
+
private setEntryOperation;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AclEditingViewComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AclEditingViewComponent, "lib-acl-editing-view", never, {}, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* org api
|
|
3
|
+
* org 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 { ACLEntry } from './aCLEntry';
|
|
13
|
+
/**
|
|
14
|
+
* The ACL config can be attached as aspect to every object in the storage. This describes available oparations for the subjects. The subjects can be contributed by adding new AccessControlApi to the application. It defines the available subjects and produce the list of subjects a given user belongs to. It does not have any uri because it usually saved as aspect or inner object as well.
|
|
15
|
+
*/
|
|
16
|
+
export interface ACL {
|
|
17
|
+
rootEntry: ACLEntry;
|
|
18
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* org api
|
|
3
|
+
* org 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 { Subject } from './subject';
|
|
13
|
+
/**
|
|
14
|
+
* The ACL entry refers to one subject and defines the operations available for the given subject. If it is a set then ACL set is an oragnization unit for other ACLEntries referring to the Subjects. An ACLSet can define the operation that can be all the set operations like: UNION, INTERSECT, DIF, SYMMETRICDIF. It is used when evaluating the ACL and calculate the operations available for a user or try to identify the set of users for an operation.
|
|
15
|
+
*/
|
|
16
|
+
export interface ACLEntry {
|
|
17
|
+
/**
|
|
18
|
+
* The entry can refer to a subject that defines a set of users. Or else it can be a set of other ACLEnries recursively. The evaluation is using the theories if mathematical sets.
|
|
19
|
+
*/
|
|
20
|
+
entryKind: ACLEntry.EntryKindEnum;
|
|
21
|
+
subject?: Subject;
|
|
22
|
+
/**
|
|
23
|
+
* If the subject defines the users belongs to the given referred object then the condition is IN. If we would like to define the inverse situation then the condition is NOTIN.
|
|
24
|
+
*/
|
|
25
|
+
subjectCondition?: ACLEntry.SubjectConditionEnum;
|
|
26
|
+
setOperation?: ACLEntry.SetOperationEnum;
|
|
27
|
+
/**
|
|
28
|
+
* The unique identifiers of the operations defined in the given application.
|
|
29
|
+
*/
|
|
30
|
+
operations: Array<string>;
|
|
31
|
+
/**
|
|
32
|
+
* The list if entries in the given set if the kind is SET.
|
|
33
|
+
*/
|
|
34
|
+
entries: Array<ACLEntry>;
|
|
35
|
+
}
|
|
36
|
+
export declare namespace ACLEntry {
|
|
37
|
+
type EntryKindEnum = 'SUBJECT' | 'SET';
|
|
38
|
+
const EntryKindEnum: {
|
|
39
|
+
Subject: EntryKindEnum;
|
|
40
|
+
Set: EntryKindEnum;
|
|
41
|
+
};
|
|
42
|
+
type SubjectConditionEnum = 'IN' | 'NOTIN';
|
|
43
|
+
const SubjectConditionEnum: {
|
|
44
|
+
In: SubjectConditionEnum;
|
|
45
|
+
Notin: SubjectConditionEnum;
|
|
46
|
+
};
|
|
47
|
+
type SetOperationEnum = 'UNION' | 'INTERSECT' | 'DIF' | 'SYMMETRICDIF';
|
|
48
|
+
const SetOperationEnum: {
|
|
49
|
+
Union: SetOperationEnum;
|
|
50
|
+
Intersect: SetOperationEnum;
|
|
51
|
+
Dif: SetOperationEnum;
|
|
52
|
+
Symmetricdif: SetOperationEnum;
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object api
|
|
3
|
+
* The object api responsible for the domain object meta information including the object definitions and the relations among them. These objects are stored because the modules can contribute. The modules have their own ObjectApi that manages the storage and ensure the up-to-date view of the current data. The algorithms are running on the ObjectApi cache refreshed periodically.
|
|
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
|
+
export type ObjectValidationSeverity = 'BLOCKER' | 'ERROR' | 'WARNING' | 'INFO' | 'OK';
|
|
13
|
+
export declare const ObjectValidationSeverity: {
|
|
14
|
+
Blocker: ObjectValidationSeverity;
|
|
15
|
+
Error: ObjectValidationSeverity;
|
|
16
|
+
Warning: ObjectValidationSeverity;
|
|
17
|
+
Info: ObjectValidationSeverity;
|
|
18
|
+
Ok: ObjectValidationSeverity;
|
|
19
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* org api
|
|
3
|
+
* org 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
|
+
/**
|
|
13
|
+
* The subject is a special selector for users where we assign a subject or a filter for subjects to an object. This object is always a inline object, part of the object that describes the given situation.
|
|
14
|
+
*/
|
|
15
|
+
export interface Subject {
|
|
16
|
+
/**
|
|
17
|
+
* The unique identifier of the type in the SubjectModel. The helps to evaluate if a given user is part of this subject. The subject model is saved here it is managed by the code that uses this Subject. Like the ACL knows that the ACLSubjectModel is used to assign the access control list for the given objects.
|
|
18
|
+
*/
|
|
19
|
+
type: string;
|
|
20
|
+
/**
|
|
21
|
+
* The reference to the object referred by this subject. It can be the latest uri of a user, a group or whatever subject we have.
|
|
22
|
+
*/
|
|
23
|
+
ref: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generic PageApi
|
|
3
|
+
* Generic page api models.
|
|
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 { ObjectHistoryRangeData } from '../../api-default/objectHistoryRangeData';
|
|
13
|
+
import { FilterExpressionFieldList } from '../../../../../smart-filter-editor/api/model/filterExpressionFieldList';
|
|
14
|
+
export interface SearchPageModel {
|
|
15
|
+
/**
|
|
16
|
+
* Title of this page.
|
|
17
|
+
*/
|
|
18
|
+
pageTitle?: string;
|
|
19
|
+
cssClassOfPage?: string;
|
|
20
|
+
filters?: FilterExpressionFieldList;
|
|
21
|
+
historyRange?: ObjectHistoryRangeData;
|
|
22
|
+
historyPageSize?: number;
|
|
23
|
+
/**
|
|
24
|
+
* If there is no result for the search, then show this text instead of the empty table.
|
|
25
|
+
*/
|
|
26
|
+
noResultText?: string;
|
|
27
|
+
}
|
package/lib/smart-generic-pages/api/platform/subjectselector/model/subjectSelectorPageModel.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Subject selector api
|
|
3
|
+
* Subject selector ui 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
|
+
export interface SubjectSelectorPageModel {
|
|
13
|
+
selectedDescriptor?: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ValidationResult api
|
|
3
|
+
* Definition of the ValidationResult page and 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 { ObjectValidationSeverity } from '../../acl/model/objectValidationSeverity';
|
|
13
|
+
export interface ValidationItem {
|
|
14
|
+
severity?: ObjectValidationSeverity;
|
|
15
|
+
message?: string;
|
|
16
|
+
isHtml?: boolean;
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ValidationResult api
|
|
3
|
+
* Definition of the ValidationResult page and 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 { ValidationItem } from './validationItem';
|
|
13
|
+
export interface ValidationResultPageModel {
|
|
14
|
+
/**
|
|
15
|
+
* List of ValidationItem holds the severity | and the localized message from the origin ObjectValidationItem
|
|
16
|
+
*/
|
|
17
|
+
validationItems?: Array<ValidationItem>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
3
|
+
import { SmartComponentLayoutDefinition } from '../../smart-component-layout/projects';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class GenericPageComponent extends SmartComponent<Object> {
|
|
6
|
+
componentLayout?: SmartComponentLayoutDefinition;
|
|
7
|
+
constructor(inject: Injector, _myPageName?: string, _myComponentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
8
|
+
private setUpComponentLayout;
|
|
9
|
+
showRouterOutlet(): Boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GenericPageComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenericPageComponent, "app-generic-page", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
3
|
+
import { SmartComponentLayoutDefinition } from '../../smart-component-layout/projects';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InvalidSmartlinkComponent extends SmartComponent<Object> {
|
|
6
|
+
componentLayout?: SmartComponentLayoutDefinition;
|
|
7
|
+
constructor(inject: Injector, _myPageName?: string, _myComponentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
8
|
+
private setUpComponentLayout;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InvalidSmartlinkComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InvalidSmartlinkComponent, "lib-invalid-smartlink", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
3
|
+
import { SmartComponentLayoutDefinition } from '../../smart-component-layout/projects';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NoPermissionPageComponent extends SmartComponent<Object> {
|
|
6
|
+
componentLayout?: SmartComponentLayoutDefinition;
|
|
7
|
+
constructor(inject: Injector, _myPageName?: string, _myComponentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
8
|
+
private setUpComponentLayout;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NoPermissionPageComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NoPermissionPageComponent, "lib-no-permission-page", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './api/platform/searchpage/model/searchPageModel';
|
|
2
|
+
export * from './search-page/search-page.component';
|
|
3
|
+
export * from './generic-page/generic-page.component';
|
|
4
|
+
export * from './smart-generic-pages.module';
|
|
5
|
+
export * from './acl-editing-view/acl-editing-view.component';
|
|
6
|
+
export * from './subject-selector/subject-selector.component';
|
|
7
|
+
export * from './validation-result-page/validation-result-page.component';
|
|
8
|
+
export * from './no-permission-page/no-permission-page.component';
|
|
9
|
+
export * from './invalid-smartlink/invalid-smartlink.component';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SmartGridComponent } from '../../smart-grid/projects';
|
|
3
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
4
|
+
import { SmartComponentLayoutDefinition } from '../../smart-component-layout/projects';
|
|
5
|
+
import { SmartFilter } from '../../smart-filter/projects';
|
|
6
|
+
import { SmartFilterEditorService } from '../../smart-filter-editor/smart-filter-editor.service';
|
|
7
|
+
import { SearchPageModel } from '../api/platform/searchpage/model/searchPageModel';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SearchPageComponent extends SmartComponent<SearchPageModel> implements AfterViewInit {
|
|
10
|
+
filterService: SmartFilterEditorService;
|
|
11
|
+
private readonly GRID_IDENTIFIER;
|
|
12
|
+
protected readonly FILTER_BUILDER_WIDGET_ID = "FILTER_BUILDER_WIDGET";
|
|
13
|
+
readonly componentName = "SearchPageComponent";
|
|
14
|
+
layout?: SmartComponentLayoutDefinition;
|
|
15
|
+
grid?: SmartGridComponent;
|
|
16
|
+
filter?: SmartFilter;
|
|
17
|
+
constructor(inject: Injector, filterService: SmartFilterEditorService, _myPageName?: string, _myComponentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
18
|
+
protected onUuidResolved(uuid: string): void;
|
|
19
|
+
initLayout(): void;
|
|
20
|
+
getGridIdentifier(): string;
|
|
21
|
+
setupGrid(): void;
|
|
22
|
+
isShowNoResultText(): boolean;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchPageComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchPageComponent, "search-page", never, {}, {}, never, never, false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./search-page/search-page.component";
|
|
3
|
+
import * as i2 from "./generic-page/generic-page.component";
|
|
4
|
+
import * as i3 from "./acl-editing-view/acl-editing-view.component";
|
|
5
|
+
import * as i4 from "./subject-selector/subject-selector.component";
|
|
6
|
+
import * as i5 from "./validation-result-page/validation-result-page.component";
|
|
7
|
+
import * as i6 from "./no-permission-page/no-permission-page.component";
|
|
8
|
+
import * as i7 from "./invalid-smartlink/invalid-smartlink.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "../smart-grid/smart-grid.module";
|
|
11
|
+
import * as i10 from "../smart-filter/smart-filter.module";
|
|
12
|
+
import * as i11 from "../smart-ng-client.module";
|
|
13
|
+
import * as i12 from "../view-context/smart-view-context.module";
|
|
14
|
+
import * as i13 from "../smart-filter-editor/smart-filter-editor.module";
|
|
15
|
+
export declare class SmartGenericPagesModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartGenericPagesModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartGenericPagesModule, [typeof i1.SearchPageComponent, typeof i2.GenericPageComponent, typeof i3.AclEditingViewComponent, typeof i4.SubjectSelectorComponent, typeof i5.ValidationResultPageComponent, typeof i6.NoPermissionPageComponent, typeof i7.InvalidSmartlinkComponent], [typeof i8.CommonModule, typeof i9.SmartGridModule, typeof i10.SmartFilterModule, typeof i11.SmartNgClientModule, typeof i12.SmartViewContextModule, typeof i13.SmartFilterEditorModule], [typeof i1.SearchPageComponent, typeof i2.GenericPageComponent, typeof i4.SubjectSelectorComponent, typeof i7.InvalidSmartlinkComponent]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmartGenericPagesModule>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SmartForm } from '../../smart-form/projects';
|
|
3
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
4
|
+
import { SmartFilterEditorService } from '../../smart-filter-editor/smart-filter-editor.service';
|
|
5
|
+
import { SubjectSelectorPageModel } from '../api/platform/subjectselector/model/subjectSelectorPageModel';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SubjectSelectorComponent extends SmartComponent<SubjectSelectorPageModel> implements AfterViewInit {
|
|
8
|
+
filterService: SmartFilterEditorService;
|
|
9
|
+
private readonly GRID_ID;
|
|
10
|
+
protected readonly FILTER_ID = "SUBJECT_FILTER";
|
|
11
|
+
smartForm: SmartForm;
|
|
12
|
+
constructor(inject: Injector, filterService: SmartFilterEditorService, _myPageName?: string, _myComponentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
13
|
+
protected onUuidResolved(uuid: string): void;
|
|
14
|
+
setup(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SubjectSelectorComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubjectSelectorComponent, "app-subject-selector", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SmartComponent } from '../../smart-client/projects';
|
|
3
|
+
import { ComponentLibrary } from '../../view-context/projects';
|
|
4
|
+
import { ValidationResultPageModel } from '../api/platform/validation/model/validationResultPageModel';
|
|
5
|
+
import { ValidationItem } from '../api/platform/validation/model/validationItem';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface ValidationUiItem {
|
|
8
|
+
class: string;
|
|
9
|
+
color: string;
|
|
10
|
+
icon: string;
|
|
11
|
+
message: string;
|
|
12
|
+
html: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class ValidationResultPageComponent extends SmartComponent<ValidationResultPageModel> {
|
|
15
|
+
compLib: ComponentLibrary;
|
|
16
|
+
items?: ValidationUiItem[];
|
|
17
|
+
componentLibrary: typeof ComponentLibrary;
|
|
18
|
+
constructor(inject: Injector, compLib: ComponentLibrary, _myPageName?: string, _myComponentName?: string);
|
|
19
|
+
mapValidationItem(item: ValidationItem): ValidationUiItem;
|
|
20
|
+
getIcon(item: ValidationItem): string;
|
|
21
|
+
getColor(item: ValidationItem): string;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationResultPageComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationResultPageComponent, "validation-result-page", never, {}, {}, never, never, false, never>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -54,24 +54,44 @@ export declare class GridService {
|
|
|
54
54
|
httpHeaderAccept?: 'application/json';
|
|
55
55
|
context?: HttpContext;
|
|
56
56
|
}): Observable<HttpEvent<GridModel>>;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @param uuid
|
|
60
|
+
* @param gridIdentifier
|
|
61
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
62
|
+
* @param reportProgress flag to report request and response progress.
|
|
63
|
+
*/
|
|
64
|
+
refresh(uuid: string, gridIdentifier: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
65
|
+
httpHeaderAccept?: 'application/json';
|
|
66
|
+
context?: HttpContext;
|
|
67
|
+
}): Observable<GridModel>;
|
|
68
|
+
refresh(uuid: string, gridIdentifier: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
69
|
+
httpHeaderAccept?: 'application/json';
|
|
70
|
+
context?: HttpContext;
|
|
71
|
+
}): Observable<HttpResponse<GridModel>>;
|
|
72
|
+
refresh(uuid: string, gridIdentifier: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
73
|
+
httpHeaderAccept?: 'application/json';
|
|
74
|
+
context?: HttpContext;
|
|
75
|
+
}): Observable<HttpEvent<GridModel>>;
|
|
57
76
|
/**
|
|
58
77
|
*
|
|
59
78
|
* @param uuid
|
|
60
79
|
* @param gridId
|
|
61
80
|
* @param rowId
|
|
62
81
|
* @param selected
|
|
82
|
+
* @param gridSelectionChange
|
|
63
83
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
64
84
|
* @param reportProgress flag to report request and response progress.
|
|
65
85
|
*/
|
|
66
|
-
select(uuid: string, gridId: string, rowId: string, selected?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
86
|
+
select(uuid: string, gridId: string, rowId: string, selected?: boolean, gridSelectionChange?: GridSelectionChange, observe?: 'body', reportProgress?: boolean, options?: {
|
|
67
87
|
httpHeaderAccept?: 'application/json';
|
|
68
88
|
context?: HttpContext;
|
|
69
89
|
}): Observable<ViewContextChange>;
|
|
70
|
-
select(uuid: string, gridId: string, rowId: string, selected?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
90
|
+
select(uuid: string, gridId: string, rowId: string, selected?: boolean, gridSelectionChange?: GridSelectionChange, observe?: 'response', reportProgress?: boolean, options?: {
|
|
71
91
|
httpHeaderAccept?: 'application/json';
|
|
72
92
|
context?: HttpContext;
|
|
73
93
|
}): Observable<HttpResponse<ViewContextChange>>;
|
|
74
|
-
select(uuid: string, gridId: string, rowId: string, selected?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
94
|
+
select(uuid: string, gridId: string, rowId: string, selected?: boolean, gridSelectionChange?: GridSelectionChange, observe?: 'events', reportProgress?: boolean, options?: {
|
|
75
95
|
httpHeaderAccept?: 'application/json';
|
|
76
96
|
context?: HttpContext;
|
|
77
97
|
}): Observable<HttpEvent<ViewContextChange>>;
|
|
@@ -80,18 +100,19 @@ export declare class GridService {
|
|
|
80
100
|
* @param uuid
|
|
81
101
|
* @param gridId
|
|
82
102
|
* @param selected
|
|
103
|
+
* @param gridSelectionChange
|
|
83
104
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
84
105
|
* @param reportProgress flag to report request and response progress.
|
|
85
106
|
*/
|
|
86
|
-
selectAll(uuid: string, gridId: string, selected?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
107
|
+
selectAll(uuid: string, gridId: string, selected?: boolean, gridSelectionChange?: GridSelectionChange, observe?: 'body', reportProgress?: boolean, options?: {
|
|
87
108
|
httpHeaderAccept?: 'application/json';
|
|
88
109
|
context?: HttpContext;
|
|
89
110
|
}): Observable<ViewContextChange>;
|
|
90
|
-
selectAll(uuid: string, gridId: string, selected?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
111
|
+
selectAll(uuid: string, gridId: string, selected?: boolean, gridSelectionChange?: GridSelectionChange, observe?: 'response', reportProgress?: boolean, options?: {
|
|
91
112
|
httpHeaderAccept?: 'application/json';
|
|
92
113
|
context?: HttpContext;
|
|
93
114
|
}): Observable<HttpResponse<ViewContextChange>>;
|
|
94
|
-
selectAll(uuid: string, gridId: string, selected?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
115
|
+
selectAll(uuid: string, gridId: string, selected?: boolean, gridSelectionChange?: GridSelectionChange, observe?: 'events', reportProgress?: boolean, options?: {
|
|
95
116
|
httpHeaderAccept?: 'application/json';
|
|
96
117
|
context?: HttpContext;
|
|
97
118
|
}): Observable<HttpEvent<ViewContextChange>>;
|
|
@@ -17,6 +17,10 @@ export interface GridDataAccessConfig {
|
|
|
17
17
|
* The uri of the table data that contains the data of the list.
|
|
18
18
|
*/
|
|
19
19
|
dataUri?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The uri of the table data object that contains the data of the list.
|
|
22
|
+
*/
|
|
23
|
+
tableDataObjectUri?: string;
|
|
20
24
|
/**
|
|
21
25
|
* The path to access the identifier GridRow.data
|
|
22
26
|
*/
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { UiActionDescriptor } from '../../../../view-context/api';
|
|
12
13
|
export interface GridExportDescriptor {
|
|
13
14
|
isExportable?: boolean;
|
|
14
15
|
exportMimeType?: string;
|
|
15
16
|
columnsToExport: Array<string>;
|
|
16
|
-
buttonColor?: string;
|
|
17
17
|
buttonToolbar?: string;
|
|
18
|
-
|
|
18
|
+
uiActionDescriptor?: UiActionDescriptor;
|
|
19
19
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { AfterViewInit, ViewContainerRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ComponentFactoryService } from '../../../component-factory-service/component-factory-service.service';
|
|
3
|
+
import { SmartTableRowExpander } from '../../../smart-table/projects';
|
|
4
|
+
import { SmartGrid } from '../../models/model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ExpandedRowRendererComponent implements AfterViewInit, OnDestroy {
|
|
7
|
+
private cfService;
|
|
8
|
+
vcRef: ViewContainerRef;
|
|
9
|
+
rowId: number;
|
|
10
|
+
rowExpander: SmartTableRowExpander<any>;
|
|
11
|
+
expandedComponent: any;
|
|
12
|
+
smartGrid: SmartGrid;
|
|
13
|
+
private componentRef?;
|
|
14
|
+
constructor(cfService: ComponentFactoryService);
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
ngAfterViewInit(): Promise<void>;
|
|
17
|
+
private loadComponent;
|
|
18
|
+
refreshRowData(): Promise<void>;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandedRowRendererComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedRowRendererComponent, "lib-expanded-row-renderer-component", never, { "rowId": { "alias": "rowId"; "required": false; }; "rowExpander": { "alias": "rowExpander"; "required": false; }; "expandedComponent": { "alias": "expandedComponent"; "required": false; }; "smartGrid": { "alias": "smartGrid"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -8,6 +8,7 @@ export declare class SmartGridCardComponent implements AfterViewInit, OnDestroy
|
|
|
8
8
|
item: GridRow;
|
|
9
9
|
smartGrid: SmartGrid;
|
|
10
10
|
onSelect: (rowId: string) => Promise<void>;
|
|
11
|
+
get testId(): string | null;
|
|
11
12
|
vcRef?: ViewContainerRef;
|
|
12
13
|
componentRef?: ComponentRef<any>;
|
|
13
14
|
uiActionModels: any[];
|
|
@@ -28,6 +28,7 @@ export declare class TableLayoutDefinerComponent implements AfterViewInit, OnDes
|
|
|
28
28
|
ngOnDestroy(): void;
|
|
29
29
|
ngAfterViewInit(): void;
|
|
30
30
|
private subscibeForValueChange;
|
|
31
|
+
isWidgetSavable(): void;
|
|
31
32
|
hasEmptyValue(updatedOrderedColumns: string[]): boolean;
|
|
32
33
|
constructForms(): void;
|
|
33
34
|
addColumn(): void;
|