@smartbit4all/ng-client 5.0.20 → 6.0.0
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 +928 -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 +433 -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 +289 -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 +55 -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 +1043 -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 +10266 -4870
- 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/{src/lib/smart-chart/smart-chart/api/model/pieChartLegendPosition.d.ts → lib/smart-component-layout/api/model/toolbarProperties.d.ts} +7 -7
- 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 +2 -4
- 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-content/smart-filter-editor-content.component.d.ts +4 -2
- package/lib/smart-filter-editor/smart-filter-editor.service.d.ts +11 -1
- 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 +7 -6
- 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 +49 -18
- 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 +21 -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 +15 -5
- 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 -4
- package/lib/smart-icon/smart-icon.service.d.ts +1 -0
- package/lib/smart-map/abstract-map.d.ts +1 -1
- package/lib/smart-map/api/model/geoMapItem.d.ts +2 -0
- 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/binaryData.d.ts +2 -0
- package/lib/view-context/api/api-default/invocationError.d.ts +2 -0
- package/lib/view-context/api/api-default/invocationRequest.d.ts +2 -0
- 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/badgeDescriptor.d.ts +15 -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 +9 -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 +8 -0
- package/lib/view-context/api/model/smartLinkMigrationStatus.d.ts +39 -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 +6 -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 +4 -0
- package/lib/view-context/api/model/uploadWidgetType.d.ts +16 -0
- package/lib/view-context/api/model/uploadedFile.d.ts +2 -1
- package/lib/view-context/api/model/view.d.ts +8 -0
- package/lib/view-context/api/model/viewContext.d.ts +1 -0
- package/lib/view-context/api/model/viewData.d.ts +3 -0
- package/lib/view-context/api/model/viewEventHandler.d.ts +7 -1
- 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 +8 -2
- package/lib/view-context/projects.d.ts +10 -0
- 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 +42 -0
- package/lib/view-context/smart-ui-action/components/menu/menu.constants.d.ts +3 -0
- package/lib/view-context/smart-ui-action/components/menu/menu.service.d.ts +8 -0
- package/lib/view-context/smart-ui-action/components/upload-widget/photo-capture-widget/photo-capture-widget.component.d.ts +30 -0
- 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/components/upload-widget/voice-record-widget/voice-record-widget.component.d.ts +43 -0
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.d.ts +6 -4
- 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 +10 -11
- 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 +49 -0
- package/lib/view-context/smart-ui-action/ui-action-toolbar.component.d.ts +28 -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.component.d.ts +2 -0
- 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.interceptor.d.ts +5 -1
- package/lib/view-context/smart-view-context.model.d.ts +7 -2
- package/lib/view-context/smart-view-context.module.d.ts +74 -58
- package/lib/view-context/smart-view-context.service.d.ts +59 -9
- 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 +15 -0
- package/package.json +18 -19
- package/projects.d.ts +2 -0
- package/smartbit4all-ng-client-6.0.0.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/smartbit4all-ng-client-5.0.20.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/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
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class UiMenuService {
|
|
3
|
+
private closeMenus$;
|
|
4
|
+
closeAllMenus(): void;
|
|
5
|
+
getCloseSignal(): import("rxjs").Observable<void>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiMenuService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UiMenuService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ComponentLibrary } from '../../../../utility/componentLibrary';
|
|
3
|
+
import { UiActionDescriptor } from '../../../../api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PhotoCaptureWidgetComponent {
|
|
6
|
+
videoRef: ElementRef<HTMLVideoElement>;
|
|
7
|
+
canvasRef: ElementRef<HTMLCanvasElement>;
|
|
8
|
+
fileInputRef: ElementRef<HTMLInputElement>;
|
|
9
|
+
maxFileSize?: number;
|
|
10
|
+
photoCaptured: EventEmitter<File[]>;
|
|
11
|
+
cameraActive: boolean;
|
|
12
|
+
isCaptured: boolean;
|
|
13
|
+
stream?: MediaStream;
|
|
14
|
+
compLib: ComponentLibrary;
|
|
15
|
+
componentLibrary: typeof ComponentLibrary;
|
|
16
|
+
toggleCameraButton: UiActionDescriptor;
|
|
17
|
+
captureButton: UiActionDescriptor;
|
|
18
|
+
constructor(compLib?: ComponentLibrary);
|
|
19
|
+
isMobile(): boolean;
|
|
20
|
+
startCamera(): Promise<void>;
|
|
21
|
+
stopCamera(): void;
|
|
22
|
+
capturePhoto(): Promise<void>;
|
|
23
|
+
getPhotoDataURL(): string;
|
|
24
|
+
onFileSelected(event: Event): Promise<void>;
|
|
25
|
+
toggleCamera(): void;
|
|
26
|
+
updateToggleButton(): void;
|
|
27
|
+
private compressImageFile;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhotoCaptureWidgetComponent, [{ optional: true; }]>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhotoCaptureWidgetComponent, "photo-capture-widget", never, { "maxFileSize": { "alias": "maxFileSize"; "required": false; }; }, { "photoCaptured": "photoCaptured"; }, never, never, false, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FileUpload } from 'primeng/fileupload';
|
|
3
|
+
import { UiActionDescriptor } from '../../../../../view-context/api/model/models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PrimeFileUploaderComponent {
|
|
6
|
+
fileUploadPrime: FileUpload;
|
|
7
|
+
isMultiple: boolean;
|
|
8
|
+
autoUpload?: boolean;
|
|
9
|
+
maxSizeMb: number;
|
|
10
|
+
fileFormats?: string[];
|
|
11
|
+
title?: string;
|
|
12
|
+
subTitle?: string;
|
|
13
|
+
isDisabled?: boolean;
|
|
14
|
+
maxSizeBytes?: number;
|
|
15
|
+
fileFormatsString?: string;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
uploadFilesEvent: EventEmitter<{
|
|
18
|
+
files: any[];
|
|
19
|
+
}>;
|
|
20
|
+
isMobile(): boolean;
|
|
21
|
+
clear(): void;
|
|
22
|
+
onFileSelect(event: any): void;
|
|
23
|
+
select(event: any): void;
|
|
24
|
+
uploadFiles(event: any): void;
|
|
25
|
+
downloadFile(file: File): void;
|
|
26
|
+
formatSize(bytes: number): string;
|
|
27
|
+
get files(): any[];
|
|
28
|
+
set files(files: any[]);
|
|
29
|
+
get uploadButton(): UiActionDescriptor;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimeFileUploaderComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrimeFileUploaderComponent, "prime-file-uploader", never, { "isMultiple": { "alias": "isMultiple"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; "maxSizeMb": { "alias": "maxSizeMb"; "required": false; }; "fileFormats": { "alias": "fileFormats"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
|
|
32
|
+
}
|
package/lib/view-context/smart-ui-action/components/upload-widget/upload-widget.component.d.ts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { UiActionUploadDescriptor, UploadWidgetType } from '../../../api';
|
|
3
|
+
import { ComponentLibrary } from '../../../utility/componentLibrary';
|
|
4
|
+
import { SmartfileuploaderComponent } from '../../../../smart-form/smartfileuploader/smartfileuploader.component';
|
|
5
|
+
import { SmartFileUploaderI18n } from '../../../../smart-form/smartfileuploader/smartfileuploader.model';
|
|
6
|
+
import { PrimeFileUploaderComponent } from './prime-file-uploader/prime-file-uploader.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class UploadWidgetComponent {
|
|
9
|
+
private cdr;
|
|
10
|
+
compLib?: ComponentLibrary | undefined;
|
|
11
|
+
fileUploadPrime: PrimeFileUploaderComponent;
|
|
12
|
+
fileUploadMaterial: SmartfileuploaderComponent;
|
|
13
|
+
uploadDescriptor?: UiActionUploadDescriptor;
|
|
14
|
+
isMultiple: boolean;
|
|
15
|
+
isDisabled?: boolean;
|
|
16
|
+
uploadFilesEvent: EventEmitter<{
|
|
17
|
+
files: any[];
|
|
18
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
componentLibrary: typeof ComponentLibrary;
|
|
21
|
+
uploadWidgetType: typeof UploadWidgetType;
|
|
22
|
+
i18n?: SmartFileUploaderI18n;
|
|
23
|
+
maxSizeMb: number;
|
|
24
|
+
fileFormats?: string[];
|
|
25
|
+
autoUpload?: boolean;
|
|
26
|
+
constructor(cdr: ChangeDetectorRef, compLib?: ComponentLibrary | undefined);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
isMobile(): boolean;
|
|
29
|
+
setUp(): Promise<void>;
|
|
30
|
+
upload(files: any[]): void;
|
|
31
|
+
uploadFiles(event: any): void;
|
|
32
|
+
uploadRecording(file: any): void;
|
|
33
|
+
uploadImage(files: any): void;
|
|
34
|
+
loadFilesIntoWidget(files: File[]): void;
|
|
35
|
+
widgetNeeded(type: UploadWidgetType): boolean;
|
|
36
|
+
choose(event: any, callback: any): void;
|
|
37
|
+
get defaultUploadDescriptor(): UiActionUploadDescriptor;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadWidgetComponent, [null, { optional: true; }]>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploadWidgetComponent, "smart-upload-widget", never, { "uploadDescriptor": { "alias": "uploadDescriptor"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, OnDestroy, AfterViewInit, EventEmitter, OnInit, NgZone } from '@angular/core';
|
|
2
|
+
import { ComponentLibrary } from '../../../../utility/componentLibrary';
|
|
3
|
+
import { UiActionDescriptor } from '../../../../api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class VoiceRecordWidgetComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
6
|
+
private readonly ngZone;
|
|
7
|
+
private readonly changeDetectorRef;
|
|
8
|
+
waveformRef: ElementRef;
|
|
9
|
+
mainButton: ElementRef;
|
|
10
|
+
openDirection: 'LEFT' | 'RIGHT';
|
|
11
|
+
recordingSaved: EventEmitter<Blob>;
|
|
12
|
+
private wavesurfer?;
|
|
13
|
+
private record?;
|
|
14
|
+
compLib: ComponentLibrary;
|
|
15
|
+
componentLibrary: typeof ComponentLibrary;
|
|
16
|
+
isRecording: boolean;
|
|
17
|
+
recordedBlob: Blob | null;
|
|
18
|
+
time: string;
|
|
19
|
+
isPlaying: boolean;
|
|
20
|
+
isWaveformOpen: boolean;
|
|
21
|
+
micButton: UiActionDescriptor;
|
|
22
|
+
stopButton: UiActionDescriptor;
|
|
23
|
+
saveButton: UiActionDescriptor;
|
|
24
|
+
playButton: UiActionDescriptor;
|
|
25
|
+
stopPlaybackButton: UiActionDescriptor;
|
|
26
|
+
constructor(compLib: ComponentLibrary | undefined, ngZone: NgZone, changeDetectorRef: ChangeDetectorRef);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
ngAfterViewInit(): void;
|
|
29
|
+
get isLeftDirection(): boolean;
|
|
30
|
+
private initializeWaveSurferIfNeeded;
|
|
31
|
+
initWaveSurfer(): void;
|
|
32
|
+
startRecording(): Promise<void>;
|
|
33
|
+
private checkHasRecorded;
|
|
34
|
+
updateProgress(time: number): void;
|
|
35
|
+
stopRecording(): void;
|
|
36
|
+
saveRecording(): void;
|
|
37
|
+
replayRecording(): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
private addAlphaToColor;
|
|
40
|
+
private updateViewState;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecordWidgetComponent, [{ optional: true; }, null, null]>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecordWidgetComponent, "voice-record-widget", never, { "openDirection": { "alias": "openDirection"; "required": false; }; }, { "recordingSaved": "recordingSaved"; }, never, never, false, never>;
|
|
43
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { UiActionDescriptor } from '../../../api';
|
|
3
3
|
import { UiActionDescriptorService } from '../../ui-action.descriptor.service';
|
|
4
4
|
import { UiActionConfirmDialogService } from './ui-action-confirm-dialog.service';
|
|
5
5
|
import { ComponentLibrary } from '../../../projects';
|
|
@@ -17,11 +17,13 @@ export declare class UiActionConfirmDialogComponent implements OnDestroy {
|
|
|
17
17
|
ngOnDestroy(): void;
|
|
18
18
|
getTitle(): string;
|
|
19
19
|
getText(): string;
|
|
20
|
-
getActionButton():
|
|
21
|
-
getCancelButton():
|
|
20
|
+
getActionButton(): UiActionDescriptor;
|
|
21
|
+
getCancelButton(): UiActionDescriptor;
|
|
22
|
+
private getUiActionDescriptor;
|
|
23
|
+
getCancelCssClass(): string;
|
|
24
|
+
getActionCssClass(): string;
|
|
22
25
|
doAction(): void;
|
|
23
26
|
cancel(): void;
|
|
24
|
-
UiActionButtonType(): typeof UiActionButtonType;
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiActionConfirmDialogComponent, never>;
|
|
26
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionConfirmDialogComponent, "app-ui-action-confirm-dialog", never, {}, {}, never, never, false, never>;
|
|
27
29
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
3
|
import { Subject } from 'rxjs';
|
|
5
4
|
import { UiAction } from '../../../api';
|
|
6
5
|
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
@@ -13,7 +12,7 @@ export declare class UiActionConfirmDialogService extends SmartdialogService {
|
|
|
13
12
|
action: UiAction;
|
|
14
13
|
onAction: Subject<void>;
|
|
15
14
|
shouldDoAction: boolean;
|
|
16
|
-
constructor(dialog: MatDialog,
|
|
15
|
+
constructor(dialog: MatDialog, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
17
16
|
openDialog(): void;
|
|
18
17
|
doAction(): void;
|
|
19
18
|
cancel(): void;
|
|
@@ -1,24 +1,27 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { UiActionDescriptor } from '../../../api';
|
|
3
3
|
import { UiActionDescriptorService } from '../../ui-action.descriptor.service';
|
|
4
4
|
import { UiActionFileUploadDialogService } from './ui-action-file-upload-dialog.service';
|
|
5
|
-
import { SmartFileUploaderI18n } from '../../../../smart-form/smartfileuploader/smartfileuploader.model';
|
|
6
5
|
import { ComponentLibrary } from '../../../projects';
|
|
6
|
+
import { FileUpload } from 'primeng/fileupload';
|
|
7
|
+
import { SmartfileuploaderComponent } from '../../../../smart-form/smartfileuploader/smartfileuploader.component';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class UiActionFileUploadDialogComponent implements OnDestroy {
|
|
9
10
|
private service;
|
|
10
11
|
compLib: ComponentLibrary;
|
|
11
12
|
private manager;
|
|
13
|
+
private cdr;
|
|
14
|
+
fileUploadPrime: FileUpload;
|
|
15
|
+
fileUploadMaterial: SmartfileuploaderComponent;
|
|
12
16
|
code: string;
|
|
13
17
|
dialogType: 'dialog' | 'inputDialog' | 'input2Dialog';
|
|
14
18
|
descriptor?: UiActionDescriptor;
|
|
15
19
|
componentLibrary: typeof ComponentLibrary;
|
|
16
|
-
i18n?: SmartFileUploaderI18n;
|
|
17
|
-
maxSizeMb: number;
|
|
18
|
-
fileFormats?: string[];
|
|
19
20
|
isMultiple?: boolean;
|
|
20
|
-
|
|
21
|
+
cancelButton: UiActionDescriptor;
|
|
22
|
+
constructor(service: UiActionFileUploadDialogService, compLib: ComponentLibrary, manager: UiActionDescriptorService, cdr: ChangeDetectorRef);
|
|
21
23
|
ngOnDestroy(): void;
|
|
24
|
+
isMobile(): boolean;
|
|
22
25
|
setUp(): Promise<void>;
|
|
23
26
|
getTitle(): string;
|
|
24
27
|
getText(): string;
|
|
@@ -26,11 +29,7 @@ export declare class UiActionFileUploadDialogComponent implements OnDestroy {
|
|
|
26
29
|
getActionButtonColor(): string;
|
|
27
30
|
getCancelButtonLabel(): string;
|
|
28
31
|
getCancelButtonColor(): string;
|
|
29
|
-
upload(
|
|
30
|
-
uploadedFiles: any[];
|
|
31
|
-
onSelect(event: any): void;
|
|
32
|
-
onRemove(event: any): void;
|
|
33
|
-
uploadFiles(event: any): void;
|
|
32
|
+
upload(event: any): void;
|
|
34
33
|
cancel(): void;
|
|
35
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiActionFileUploadDialogComponent, never>;
|
|
36
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionFileUploadDialogComponent, "lib-ui-action-file-upload-dialog", never, {}, {}, never, never, false, never>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
3
|
import { Subject } from 'rxjs';
|
|
5
4
|
import { UiAction } from '../../../api';
|
|
6
5
|
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
@@ -15,11 +14,12 @@ export declare class UiActionFileUploadDialogService extends SmartdialogService
|
|
|
15
14
|
nodeName?: string;
|
|
16
15
|
onAction: Subject<void>;
|
|
17
16
|
files?: any;
|
|
17
|
+
uploadDescriptor?: any;
|
|
18
18
|
isMultiple: boolean;
|
|
19
|
-
constructor(dialog: MatDialog,
|
|
19
|
+
constructor(dialog: MatDialog, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
20
20
|
setDataAndOpenDialog(action: UiAction, nodeName?: string): void;
|
|
21
21
|
openDialog(): void;
|
|
22
|
-
onSave(files: any[]): Promise<void>;
|
|
22
|
+
onSave(files: any[], uploadDescriptor?: any): Promise<void>;
|
|
23
23
|
cancel(): void;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiActionFileUploadDialogService, never>;
|
|
25
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<UiActionFileUploadDialogService>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
3
|
import { Subject } from 'rxjs';
|
|
5
4
|
import { UiAction, UiActionRequest } from '../../../api';
|
|
6
5
|
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
@@ -15,7 +14,7 @@ export declare class UiActionInputDialogService extends SmartdialogService {
|
|
|
15
14
|
nodeName?: string;
|
|
16
15
|
onAction: Subject<EditFolderAction>;
|
|
17
16
|
params?: any;
|
|
18
|
-
constructor(dialog: MatDialog,
|
|
17
|
+
constructor(dialog: MatDialog, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
19
18
|
setDataAndOpenDialog(action: UiAction, nodeName?: string): void;
|
|
20
19
|
openDialog(): void;
|
|
21
20
|
onSave(params: any): Promise<void>;
|
package/lib/view-context/smart-ui-action/file-editor-toolbar/file-editor-toolbar.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { UiActionToolbarComponent } from '../ui-action-toolbar.component';
|
|
3
|
+
import { UiActionModel } from '../ui-action.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FileEditorToolbarComponent extends UiActionToolbarComponent {
|
|
6
|
+
dataUri: string;
|
|
7
|
+
actionEvent: EventEmitter<{
|
|
8
|
+
uiActionModel: UiActionModel;
|
|
9
|
+
}>;
|
|
10
|
+
fireAction(uiActionModel: UiActionModel): Promise<void>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileEditorToolbarComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileEditorToolbarComponent, "file-editor-toolbar", never, { "dataUri": { "alias": "dataUri"; "required": false; }; }, { "actionEvent": "actionEvent"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { UiActionModel } from '../ui-action.model';
|
|
3
|
+
import { ComponentLibrary } from '../../utility/componentLibrary';
|
|
4
|
+
import { IconPosition } from '../../api/model/iconPosition';
|
|
5
|
+
import { Style, UiAction, UiActionDescriptor } from '../../api';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class UiActionButtonComponent implements OnInit, OnDestroy {
|
|
8
|
+
changeDetector: ChangeDetectorRef;
|
|
9
|
+
private _destroy$;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
descriptor: UiActionDescriptor;
|
|
12
|
+
code?: string;
|
|
13
|
+
addedCssClass?: string;
|
|
14
|
+
addBasicClasses: boolean;
|
|
15
|
+
actionClick: EventEmitter<{
|
|
16
|
+
event: MouseEvent;
|
|
17
|
+
descriptor?: UiActionDescriptor | undefined;
|
|
18
|
+
code?: string | undefined;
|
|
19
|
+
uiAction?: UiAction | undefined;
|
|
20
|
+
}>;
|
|
21
|
+
actionDoubleClick: EventEmitter<{
|
|
22
|
+
event: any;
|
|
23
|
+
descriptor?: UiActionDescriptor | undefined;
|
|
24
|
+
code?: string | undefined;
|
|
25
|
+
}>;
|
|
26
|
+
componentLibrary: typeof ComponentLibrary;
|
|
27
|
+
compLib: ComponentLibrary;
|
|
28
|
+
mainActionModel: UiActionModel;
|
|
29
|
+
pressedButtonActive: boolean;
|
|
30
|
+
menuOpened: boolean;
|
|
31
|
+
constructor(changeDetector: ChangeDetectorRef, compLib?: ComponentLibrary);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
onActionClicked(event: MouseEvent, model: UiActionModel): Promise<void>;
|
|
36
|
+
onActionDoubleClicked(event: any): void;
|
|
37
|
+
iconPosition(): typeof IconPosition;
|
|
38
|
+
isOnlyIcon(): boolean;
|
|
39
|
+
getbtnClass(): string;
|
|
40
|
+
getType(): any;
|
|
41
|
+
calcStyle(style?: Style): any;
|
|
42
|
+
calcClasses(style?: Style): any;
|
|
43
|
+
getCombinedClasses(): any;
|
|
44
|
+
renderPre(): boolean;
|
|
45
|
+
renderEmpty(): boolean;
|
|
46
|
+
renderPost(): boolean;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiActionButtonComponent, [null, { optional: true; }]>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionButtonComponent, "ui-action-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "descriptor": { "alias": "descriptor"; "required": false; }; "code": { "alias": "code"; "required": false; }; "addedCssClass": { "alias": "addedCssClass"; "required": false; }; "addBasicClasses": { "alias": "addBasicClasses"; "required": false; }; }, { "actionClick": "actionClick"; "actionDoubleClick": "actionDoubleClick"; }, never, never, false, never>;
|
|
49
|
+
}
|
|
@@ -1,31 +1,48 @@
|
|
|
1
|
-
import { ChangeDetectorRef, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { TooltipPosition } from '@angular/material/tooltip';
|
|
3
|
-
import { IconPosition, UiActionTooltipTooltipPositionEnum } from '../api';
|
|
3
|
+
import { IconPosition, UiActionDescriptor, UiActionTooltipTooltipPositionEnum } from '../api';
|
|
4
4
|
import { UiActionDescriptorService } from './ui-action.descriptor.service';
|
|
5
5
|
import { UiActionModel } from './ui-action.model';
|
|
6
6
|
import { UiActionService } from './ui-action.service';
|
|
7
7
|
import { ComponentLibrary } from '../utility/componentLibrary';
|
|
8
|
+
import { ToolbarProperties } from '../../smart-component-layout/api';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDestroy {
|
|
10
11
|
private service;
|
|
11
12
|
private inject;
|
|
12
13
|
changeDetector: ChangeDetectorRef;
|
|
13
14
|
compLib: ComponentLibrary;
|
|
15
|
+
containerRef: ElementRef;
|
|
14
16
|
private _destroy$;
|
|
15
17
|
componentLibrary: typeof ComponentLibrary;
|
|
16
18
|
pressedButtonActive: boolean;
|
|
17
19
|
uiActionModels?: UiActionModel[];
|
|
18
20
|
uiActionDescriptorService?: UiActionDescriptorService;
|
|
19
21
|
id?: string;
|
|
22
|
+
scrollOnWrap: boolean;
|
|
23
|
+
toolbarPropertes?: ToolbarProperties;
|
|
20
24
|
uiActionModelsWithDescriptions?: UiActionModel[];
|
|
21
25
|
private manager;
|
|
22
26
|
private languageChangedSubscription?;
|
|
27
|
+
isScrollable: boolean;
|
|
28
|
+
private scrollInterval;
|
|
29
|
+
private scrollTimeout;
|
|
30
|
+
private scrollSpeed;
|
|
31
|
+
private scrollDelay;
|
|
32
|
+
private scrollHoldDelay;
|
|
33
|
+
private schedules;
|
|
23
34
|
constructor(service: UiActionService, inject: Injector, changeDetector: ChangeDetectorRef, compLib: ComponentLibrary);
|
|
24
35
|
ngOnInit(): void;
|
|
36
|
+
ngAfterViewInit(): void;
|
|
37
|
+
onResize(): void;
|
|
25
38
|
ngOnChanges(changes: SimpleChanges): void;
|
|
26
39
|
ngOnDestroy(): void;
|
|
27
40
|
private subscribeToLanguageChange;
|
|
28
41
|
setUp(): Promise<void>;
|
|
42
|
+
clearSchedule(): void;
|
|
43
|
+
scheduleActions(uiActionModels: UiActionModel[]): void;
|
|
44
|
+
trackByFn(idx: number, m: UiActionModel): string | number;
|
|
45
|
+
fireAction(uiActionModel: UiActionModel): Promise<void>;
|
|
29
46
|
onActionClicked(event: any, uiActionModel: UiActionModel): Promise<void>;
|
|
30
47
|
onActionDoubleClicked(event: any, uiActionModel: UiActionModel): void;
|
|
31
48
|
getbtnClass(uiActionModel: UiActionModel): string;
|
|
@@ -35,6 +52,14 @@ export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDe
|
|
|
35
52
|
getTooltipPos(pos?: UiActionTooltipTooltipPositionEnum): TooltipPosition;
|
|
36
53
|
getTooltipDelay(delay?: number): number;
|
|
37
54
|
getTooltipHideDelay(delay?: number): number;
|
|
55
|
+
checkScrollable(): void;
|
|
56
|
+
scrollLeft(): void;
|
|
57
|
+
scrollRight(): void;
|
|
58
|
+
scrollStart(direction: 'left' | 'right'): void;
|
|
59
|
+
stopScroll(): void;
|
|
60
|
+
buttonLeft: UiActionDescriptor;
|
|
61
|
+
buttonRight: UiActionDescriptor;
|
|
62
|
+
get isVertical(): boolean;
|
|
38
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiActionToolbarComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionToolbarComponent, "smart-ui-action-toolbar", never, { "uiActionModels": { "alias": "uiActionModels"; "required": false; }; "uiActionDescriptorService": { "alias": "uiActionDescriptorService"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionToolbarComponent, "smart-ui-action-toolbar", never, { "uiActionModels": { "alias": "uiActionModels"; "required": false; }; "uiActionDescriptorService": { "alias": "uiActionDescriptorService"; "required": false; }; "id": { "alias": "id"; "required": false; }; "scrollOnWrap": { "alias": "scrollOnWrap"; "required": false; }; "toolbarPropertes": { "alias": "toolbarPropertes"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
65
|
}
|
|
@@ -6,6 +6,7 @@ import type { UiActionInputDialogService } from './dialogs/ui-action-input-dialo
|
|
|
6
6
|
import { UiActionModel } from './ui-action.model';
|
|
7
7
|
import type { UiActionFileUploadDialogService } from './dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service';
|
|
8
8
|
import { SmartFormInvalidFields } from '../../smart-form/smartform.model';
|
|
9
|
+
import { SmartViewContextService } from '../smart-view-context.service';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export interface ExecuteUiActionOptions {
|
|
11
12
|
/**
|
|
@@ -22,11 +23,11 @@ export declare class UiActionService implements OnDestroy {
|
|
|
22
23
|
private textFieldDialogService;
|
|
23
24
|
private fileUploadDialogService;
|
|
24
25
|
private _snackBar;
|
|
25
|
-
|
|
26
|
+
private viewContext;
|
|
26
27
|
private _destroy$;
|
|
27
|
-
constructor(confirmDialogService: UiActionConfirmDialogService, textFieldDialogService: UiActionInputDialogService, fileUploadDialogService: UiActionFileUploadDialogService, _snackBar: MatSnackBar);
|
|
28
|
+
constructor(confirmDialogService: UiActionConfirmDialogService, textFieldDialogService: UiActionInputDialogService, fileUploadDialogService: UiActionFileUploadDialogService, _snackBar: MatSnackBar, viewContext: SmartViewContextService);
|
|
28
29
|
ngOnDestroy(): void;
|
|
29
|
-
execute(uiAction: UiAction, options?: ExecuteUiActionOptions): Promise<void>;
|
|
30
|
+
execute(uiAction: UiAction, uiActionModel: UiActionModel, options?: ExecuteUiActionOptions): Promise<void>;
|
|
30
31
|
private handleInputType;
|
|
31
32
|
private handleInputTypeTextField;
|
|
32
33
|
private handleInputTypeUpload;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { ComponentType } from '@angular/cdk/portal';
|
|
2
2
|
import { Injector } from '@angular/core';
|
|
3
3
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
4
|
-
import { Router } from '@angular/router';
|
|
5
4
|
import { SmartDialogData } from '../smart-dialog/smartdialog.model';
|
|
6
5
|
import { DialogService, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
7
6
|
import { ComponentLibrary } from './utility/componentLibrary';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class SmartViewContextDialogService {
|
|
10
9
|
protected dialog: MatDialog;
|
|
11
|
-
protected router: Router;
|
|
12
10
|
protected dialogService: DialogService;
|
|
13
11
|
protected inject: Injector;
|
|
14
12
|
compLib: ComponentLibrary;
|
|
@@ -16,7 +14,7 @@ export declare class SmartViewContextDialogService {
|
|
|
16
14
|
private constructor();
|
|
17
15
|
createDialog(smartDialog: SmartDialogData, component: ComponentType<any>): MatDialogRef<any, any> | DynamicDialogRef;
|
|
18
16
|
createDialogRef(smartDialog: SmartDialogData, component: ComponentType<any>): MatDialogRef<any, any> | DynamicDialogRef;
|
|
19
|
-
openComponentAsDialog(component: ComponentType<any>, viewName: string): MatDialogRef<any, any> | DynamicDialogRef;
|
|
17
|
+
openComponentAsDialog(component: ComponentType<any>, viewName: string, uuid?: string): MatDialogRef<any, any> | DynamicDialogRef;
|
|
20
18
|
closeDialog(dialogRef: MatDialogRef<any, any> | DynamicDialogRef, dialogData: SmartDialogData): Promise<void>;
|
|
21
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextDialogService, never>;
|
|
22
20
|
static ɵprov: i0.ɵɵInjectableDeclaration<SmartViewContextDialogService>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { SmartViewContextApiError } from '../smart-view-context.model';
|
|
3
3
|
import { SmartViewContextErrorDialogService } from './smart-view-context-error-dialog.service';
|
|
4
|
+
import { UiActionDescriptor } from '../api';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class SmartViewContextErrorDialogComponent implements OnInit {
|
|
6
7
|
private service;
|
|
7
8
|
smartViewContextApiError?: SmartViewContextApiError;
|
|
9
|
+
buttonDescriptor: UiActionDescriptor;
|
|
8
10
|
constructor(service: SmartViewContextErrorDialogService);
|
|
9
11
|
ngOnInit(): void;
|
|
10
12
|
onActionClick(): void;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
3
|
import { SmartdialogService } from '../../smart-dialog/projects';
|
|
5
4
|
import { ViewApiError } from '../api';
|
|
6
5
|
import { SmartViewContextApiError } from '../smart-view-context.model';
|
|
@@ -12,7 +11,7 @@ export declare class SmartViewContextErrorDialogService extends SmartdialogServi
|
|
|
12
11
|
private viewContext;
|
|
13
12
|
viewApiError?: ViewApiError;
|
|
14
13
|
dialogRefs: any[];
|
|
15
|
-
constructor(dialog: MatDialog,
|
|
14
|
+
constructor(dialog: MatDialog, viewContext: SmartViewContextService, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary);
|
|
16
15
|
handleAfterClosed(result: any): void;
|
|
17
16
|
openDialog(): void;
|
|
18
17
|
closeDialog(): Promise<void>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
|
|
2
|
+
import { Injector } from '@angular/core';
|
|
2
3
|
import { Observable } from 'rxjs';
|
|
3
4
|
import { ViewApiError } from './api';
|
|
4
5
|
import { SmartViewContextErrorDialogService } from './smart-view-context-error-dialog/smart-view-context-error-dialog.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class SmartViewContextInterceptor implements HttpInterceptor {
|
|
7
8
|
private viewContextErrorDialog;
|
|
8
|
-
|
|
9
|
+
private injector;
|
|
10
|
+
private viewContextService;
|
|
11
|
+
private sessionService;
|
|
12
|
+
constructor(viewContextErrorDialog: SmartViewContextErrorDialogService, injector: Injector);
|
|
9
13
|
intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
|
|
10
14
|
openErrorDialog(viewApiError: ViewApiError): void;
|
|
11
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartViewContextInterceptor, never>;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { ComponentType } from '@angular/cdk/portal';
|
|
2
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ComponentRef, EventEmitter } from '@angular/core';
|
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
4
|
import { DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
6
6
|
export interface SmartViewHandlerModel {
|
|
7
7
|
name: string;
|
|
8
|
-
route?: string;
|
|
9
8
|
component?: ComponentType<any>;
|
|
10
9
|
componentName?: string;
|
|
11
10
|
}
|
|
@@ -23,6 +22,12 @@ export interface SmartViewDialogRef {
|
|
|
23
22
|
uuid: string;
|
|
24
23
|
dialogRef: MatDialogRef<any, any> | DynamicDialogRef;
|
|
25
24
|
}
|
|
25
|
+
export interface SmartEmbeddedViewRef {
|
|
26
|
+
uuid: string;
|
|
27
|
+
containerUuid: string;
|
|
28
|
+
containerId: string;
|
|
29
|
+
componentRef: ComponentRef<any>;
|
|
30
|
+
}
|
|
26
31
|
export interface SmartTranslateService {
|
|
27
32
|
get(key: string | Array<string>, interpolateParams?: Object): Observable<string | any>;
|
|
28
33
|
get onLangChange(): EventEmitter<any>;
|