@smartbit4all/ng-client 5.0.21 → 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 +8945 -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 +54 -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 +15 -0
- package/package.json +16 -18
- 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/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,8 +1,8 @@
|
|
|
1
|
-
import { QuillModules } from
|
|
2
|
-
import { SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, SortDefinition, ValueChangeMode } from
|
|
3
|
-
import { SmartFormTextFieldButton, SmartFormWidgetWidth, SmartIndicator, SmartValidator, ToggleLabelPosition } from
|
|
4
|
-
import { Style } from
|
|
5
|
-
export declare type SmartFormWidget<T> = SmartTextField<T> | SmartTextFieldNumber<T> | SmartTextFieldChips<T> | SmartTextFieldLookup<T> | SmartTextBox<T> | SmartSelect<T> | SmartSelectMultiple<T> | SmartCheckBox<T> | SmartCheckBox2<T> | SmartRadioButton<T> | SmartDatePicker<T> | SmartDateTimePicker<T> | SmartContainer<T> | SmartLabel | SmartTime<T> | SmartToggle<T> | SmartIndicatorItem | SmartFileUploader | SmartImage | SmartDivider | SmartButton | SmartFormInlineComponent | SmartRichText | SmartSortable<T> | SmartMatrix | SmartYoutubePlayer | SmartMonthPicker | SmartSvg;
|
|
1
|
+
import { QuillModules } from 'ngx-quill';
|
|
2
|
+
import { DateFieldProperties, FileUploaderProperties, MultiFileUploaderProperties, RecordingUploaderProperties, ImageProperties, SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, SortDefinition, TextFieldProperties, ValueChangeMode, TextBoxProperties } from './api';
|
|
3
|
+
import { SmartFormTextFieldButton, SmartFormWidgetWidth, SmartIndicator, SmartValidator, ToggleLabelPosition } from './smartform.model';
|
|
4
|
+
import { IconPosition, ImageResource, Style } from '../view-context/api';
|
|
5
|
+
export declare type SmartFormWidget<T> = SmartTextField<T> | SmartTextFieldNumber<T> | SmartTextFieldChips<T> | SmartTextFieldLookup<T> | SmartTextBox<T> | SmartSelect<T> | SmartSelectMultiple<T> | SmartCheckBox<T> | SmartCheckBox2<T> | SmartRadioButton<T> | SmartDatePicker<T> | SmartDateTimePicker<T> | SmartContainer<T> | SmartLabel | SmartTime<T> | SmartToggle<T> | SmartIndicatorItem | SmartFileUploader | SmartMultiFileUploader | SmartRecordingUploader | SmartImage | SmartDivider | SmartButton | SmartFormInlineComponent | SmartRichText | SmartSortable<T> | SmartMatrix | SmartYoutubePlayer | SmartMonthPicker | SmartSvg | SmartDiv;
|
|
6
6
|
export interface SmartTextField<T> {
|
|
7
7
|
type: SmartFormWidgetType.TEXT_FIELD;
|
|
8
8
|
key: string;
|
|
@@ -21,6 +21,8 @@ export interface SmartTextField<T> {
|
|
|
21
21
|
validators?: SmartValidator[];
|
|
22
22
|
cssClass?: string;
|
|
23
23
|
cssLabelClass?: string;
|
|
24
|
+
labelPositionClass?: string;
|
|
25
|
+
isFloatLabel?: boolean;
|
|
24
26
|
style?: Style;
|
|
25
27
|
labelStyle?: Style;
|
|
26
28
|
isPassword?: boolean;
|
|
@@ -32,7 +34,7 @@ export interface SmartTextField<T> {
|
|
|
32
34
|
error?: string;
|
|
33
35
|
icon?: string;
|
|
34
36
|
iconColor?: string;
|
|
35
|
-
iconPosition?:
|
|
37
|
+
iconPosition?: IconPosition;
|
|
36
38
|
errorIcon?: string;
|
|
37
39
|
errorIconColor?: string;
|
|
38
40
|
serverErrorMessage?: string;
|
|
@@ -46,6 +48,7 @@ export interface SmartTextField<T> {
|
|
|
46
48
|
showCharacterLimitSuffix?: boolean;
|
|
47
49
|
toolbarId?: string;
|
|
48
50
|
inputMode?: SmartFormInputMode;
|
|
51
|
+
textFieldProperties?: TextFieldProperties;
|
|
49
52
|
}
|
|
50
53
|
export interface SmartTextFieldNumber<T> {
|
|
51
54
|
type: SmartFormWidgetType.TEXT_FIELD_NUMBER;
|
|
@@ -65,6 +68,8 @@ export interface SmartTextFieldNumber<T> {
|
|
|
65
68
|
validators?: SmartValidator[];
|
|
66
69
|
cssClass?: string;
|
|
67
70
|
cssLabelClass?: string;
|
|
71
|
+
labelPositionClass?: string;
|
|
72
|
+
isFloatLabel?: boolean;
|
|
68
73
|
style?: Style;
|
|
69
74
|
labelStyle?: Style;
|
|
70
75
|
textFieldButton?: SmartFormTextFieldButton;
|
|
@@ -97,6 +102,8 @@ export interface SmartTextFieldChips<T> {
|
|
|
97
102
|
validators?: SmartValidator[];
|
|
98
103
|
cssClass?: string;
|
|
99
104
|
cssLabelClass?: string;
|
|
105
|
+
labelPositionClass?: string;
|
|
106
|
+
isFloatLabel?: boolean;
|
|
100
107
|
style?: Style;
|
|
101
108
|
labelStyle?: Style;
|
|
102
109
|
isVisible?: boolean;
|
|
@@ -127,6 +134,8 @@ export interface SmartTextFieldLookup<T> {
|
|
|
127
134
|
validators?: SmartValidator[];
|
|
128
135
|
cssClass?: string;
|
|
129
136
|
cssLabelClass?: string;
|
|
137
|
+
labelPositionClass?: string;
|
|
138
|
+
isFloatLabel?: boolean;
|
|
130
139
|
style?: Style;
|
|
131
140
|
labelStyle?: Style;
|
|
132
141
|
isVisible?: boolean;
|
|
@@ -157,6 +166,8 @@ export interface SmartTextBox<T> {
|
|
|
157
166
|
validators?: SmartValidator[];
|
|
158
167
|
cssClass?: string;
|
|
159
168
|
cssLabelClass?: string;
|
|
169
|
+
labelPositionClass?: string;
|
|
170
|
+
isFloatLabel?: boolean;
|
|
160
171
|
style?: Style;
|
|
161
172
|
labelStyle?: Style;
|
|
162
173
|
isVisible?: boolean;
|
|
@@ -169,6 +180,7 @@ export interface SmartTextBox<T> {
|
|
|
169
180
|
hint?: SmartWidgetHint;
|
|
170
181
|
maxLength?: number;
|
|
171
182
|
showCharacterLimitSuffix?: boolean;
|
|
183
|
+
textBoxProperties?: TextBoxProperties;
|
|
172
184
|
}
|
|
173
185
|
export interface SmartSelect<T> {
|
|
174
186
|
type: SmartFormWidgetType.SELECT;
|
|
@@ -185,6 +197,8 @@ export interface SmartSelect<T> {
|
|
|
185
197
|
validators?: SmartValidator[];
|
|
186
198
|
cssClass?: string;
|
|
187
199
|
cssLabelClass?: string;
|
|
200
|
+
labelPositionClass?: string;
|
|
201
|
+
isFloatLabel?: boolean;
|
|
188
202
|
style?: Style;
|
|
189
203
|
labelStyle?: Style;
|
|
190
204
|
isVisible?: boolean;
|
|
@@ -198,6 +212,11 @@ export interface SmartSelect<T> {
|
|
|
198
212
|
selection?: SelectionDefinition;
|
|
199
213
|
hint?: SmartWidgetHint;
|
|
200
214
|
compareWith?: (o1: any, o2: any) => boolean;
|
|
215
|
+
icon?: string;
|
|
216
|
+
iconPosition?: IconPosition;
|
|
217
|
+
iconColor?: string;
|
|
218
|
+
suffix?: string;
|
|
219
|
+
toolbarId?: string;
|
|
201
220
|
}
|
|
202
221
|
export interface SmartSelectMultiple<T> {
|
|
203
222
|
type: SmartFormWidgetType.SELECT_MULTIPLE;
|
|
@@ -213,6 +232,8 @@ export interface SmartSelectMultiple<T> {
|
|
|
213
232
|
validators?: SmartValidator[];
|
|
214
233
|
cssClass?: string;
|
|
215
234
|
cssLabelClass?: string;
|
|
235
|
+
labelPositionClass?: string;
|
|
236
|
+
isFloatLabel?: boolean;
|
|
216
237
|
style?: Style;
|
|
217
238
|
labelStyle?: Style;
|
|
218
239
|
placeholder?: string;
|
|
@@ -227,6 +248,7 @@ export interface SmartSelectMultiple<T> {
|
|
|
227
248
|
selection?: SelectionDefinition;
|
|
228
249
|
hint?: SmartWidgetHint;
|
|
229
250
|
compareWith?: (o1: any, o2: any) => boolean;
|
|
251
|
+
toolbarId?: string;
|
|
230
252
|
}
|
|
231
253
|
export interface SmartCheckBox<T> {
|
|
232
254
|
type: SmartFormWidgetType.CHECK_BOX;
|
|
@@ -242,6 +264,8 @@ export interface SmartCheckBox<T> {
|
|
|
242
264
|
validators?: SmartValidator[];
|
|
243
265
|
cssClass?: string;
|
|
244
266
|
cssLabelClass?: string;
|
|
267
|
+
labelPositionClass?: string;
|
|
268
|
+
isFloatLabel?: boolean;
|
|
245
269
|
style?: Style;
|
|
246
270
|
labelStyle?: Style;
|
|
247
271
|
isVisible?: boolean;
|
|
@@ -251,7 +275,6 @@ export interface SmartCheckBox<T> {
|
|
|
251
275
|
serverErrorMessage?: string;
|
|
252
276
|
serverErrorIcon?: string;
|
|
253
277
|
serverErrorColor?: string;
|
|
254
|
-
valueList: SmartItem<T>[];
|
|
255
278
|
selection?: SelectionDefinition;
|
|
256
279
|
direction?: SmartFormWidgetDirection;
|
|
257
280
|
hint?: SmartWidgetHint;
|
|
@@ -270,6 +293,8 @@ export interface SmartCheckBox2<T> {
|
|
|
270
293
|
validators?: SmartValidator[];
|
|
271
294
|
cssClass?: string;
|
|
272
295
|
cssLabelClass?: string;
|
|
296
|
+
labelPositionClass?: string;
|
|
297
|
+
isFloatLabel?: boolean;
|
|
273
298
|
style?: Style;
|
|
274
299
|
labelStyle?: Style;
|
|
275
300
|
isVisible?: boolean;
|
|
@@ -298,6 +323,8 @@ export interface SmartRadioButton<T> {
|
|
|
298
323
|
validators?: SmartValidator[];
|
|
299
324
|
cssClass?: string;
|
|
300
325
|
cssLabelClass?: string;
|
|
326
|
+
labelPositionClass?: string;
|
|
327
|
+
isFloatLabel?: boolean;
|
|
301
328
|
style?: Style;
|
|
302
329
|
labelStyle?: Style;
|
|
303
330
|
isVisible?: boolean;
|
|
@@ -310,6 +337,11 @@ export interface SmartRadioButton<T> {
|
|
|
310
337
|
valueList: SmartItem<T>[];
|
|
311
338
|
selection?: SelectionDefinition;
|
|
312
339
|
direction?: SmartFormWidgetDirection;
|
|
340
|
+
icon?: string;
|
|
341
|
+
iconPosition?: IconPosition;
|
|
342
|
+
iconColor?: string;
|
|
343
|
+
prefix?: string;
|
|
344
|
+
suffix?: string;
|
|
313
345
|
hint?: SmartWidgetHint;
|
|
314
346
|
}
|
|
315
347
|
export interface SmartDatePicker<T> {
|
|
@@ -327,6 +359,8 @@ export interface SmartDatePicker<T> {
|
|
|
327
359
|
validators?: SmartValidator[];
|
|
328
360
|
cssClass?: string;
|
|
329
361
|
cssLabelClass?: string;
|
|
362
|
+
labelPositionClass?: string;
|
|
363
|
+
isFloatLabel?: boolean;
|
|
330
364
|
style?: Style;
|
|
331
365
|
labelStyle?: Style;
|
|
332
366
|
isVisible?: boolean;
|
|
@@ -337,9 +371,13 @@ export interface SmartDatePicker<T> {
|
|
|
337
371
|
serverErrorIcon?: string;
|
|
338
372
|
serverErrorColor?: string;
|
|
339
373
|
dateFormatHint?: string;
|
|
340
|
-
|
|
341
|
-
maxDate?: Date;
|
|
374
|
+
dateFieldProperties?: DateFieldProperties;
|
|
342
375
|
filter?: (d: Date | null) => boolean;
|
|
376
|
+
icon?: string;
|
|
377
|
+
iconPosition?: IconPosition;
|
|
378
|
+
iconColor?: string;
|
|
379
|
+
prefix?: string;
|
|
380
|
+
suffix?: string;
|
|
343
381
|
hint?: SmartWidgetHint;
|
|
344
382
|
}
|
|
345
383
|
export interface SmartDateTimePicker<T> {
|
|
@@ -357,6 +395,8 @@ export interface SmartDateTimePicker<T> {
|
|
|
357
395
|
validators?: SmartValidator[];
|
|
358
396
|
cssClass?: string;
|
|
359
397
|
cssLabelClass?: string;
|
|
398
|
+
labelPositionClass?: string;
|
|
399
|
+
isFloatLabel?: boolean;
|
|
360
400
|
style?: Style;
|
|
361
401
|
labelStyle?: Style;
|
|
362
402
|
isVisible?: boolean;
|
|
@@ -367,7 +407,13 @@ export interface SmartDateTimePicker<T> {
|
|
|
367
407
|
serverErrorIcon?: string;
|
|
368
408
|
serverErrorColor?: string;
|
|
369
409
|
dateFormatHint?: string;
|
|
410
|
+
dateFieldProperties?: DateFieldProperties;
|
|
370
411
|
filter?: (d: Date | null) => boolean;
|
|
412
|
+
icon?: string;
|
|
413
|
+
iconPosition?: IconPosition;
|
|
414
|
+
iconColor?: string;
|
|
415
|
+
prefix?: string;
|
|
416
|
+
suffix?: string;
|
|
371
417
|
hint?: SmartWidgetHint;
|
|
372
418
|
}
|
|
373
419
|
export interface SmartContainer<T> {
|
|
@@ -407,6 +453,8 @@ export interface SmartTime<T> {
|
|
|
407
453
|
isVisible?: boolean;
|
|
408
454
|
cssClass?: string;
|
|
409
455
|
cssLabelClass?: string;
|
|
456
|
+
labelPositionClass?: string;
|
|
457
|
+
isFloatLabel?: boolean;
|
|
410
458
|
style?: Style;
|
|
411
459
|
labelStyle?: Style;
|
|
412
460
|
isDisabled?: boolean;
|
|
@@ -432,6 +480,8 @@ export interface SmartToggle<T> {
|
|
|
432
480
|
isVisible?: boolean;
|
|
433
481
|
cssClass?: string;
|
|
434
482
|
cssLabelClass?: string;
|
|
483
|
+
labelPositionClass?: string;
|
|
484
|
+
isFloatLabel?: boolean;
|
|
435
485
|
style?: Style;
|
|
436
486
|
labelStyle?: Style;
|
|
437
487
|
isDisabled?: boolean;
|
|
@@ -457,6 +507,8 @@ export interface SmartIndicatorItem {
|
|
|
457
507
|
isVisible?: boolean;
|
|
458
508
|
cssClass?: string;
|
|
459
509
|
cssLabelClass?: string;
|
|
510
|
+
labelPositionClass?: string;
|
|
511
|
+
isFloatLabel?: boolean;
|
|
460
512
|
style?: Style;
|
|
461
513
|
labelStyle?: Style;
|
|
462
514
|
}
|
|
@@ -467,6 +519,8 @@ export interface SmartItem<T> {
|
|
|
467
519
|
valueChangeMode?: ValueChangeMode;
|
|
468
520
|
label: string;
|
|
469
521
|
cssLabelClass?: string;
|
|
522
|
+
labelPositionClass?: string;
|
|
523
|
+
isFloatLabel?: boolean;
|
|
470
524
|
style?: Style;
|
|
471
525
|
labelStyle?: Style;
|
|
472
526
|
originalLabel?: string;
|
|
@@ -482,6 +536,8 @@ export interface SmartItemGroup<T> {
|
|
|
482
536
|
valueChangeMode?: ValueChangeMode;
|
|
483
537
|
label: string;
|
|
484
538
|
cssLabelClass?: string;
|
|
539
|
+
labelPositionClass?: string;
|
|
540
|
+
isFloatLabel?: boolean;
|
|
485
541
|
style?: Style;
|
|
486
542
|
labelStyle?: Style;
|
|
487
543
|
originalLabel?: string;
|
|
@@ -490,20 +546,75 @@ export interface SmartItemGroup<T> {
|
|
|
490
546
|
}
|
|
491
547
|
export interface SmartFileUploader {
|
|
492
548
|
type: SmartFormWidgetType.FILE_UPLOADER;
|
|
549
|
+
value?: any;
|
|
493
550
|
key: string;
|
|
494
551
|
valueChangeMode?: ValueChangeMode;
|
|
495
552
|
label: string;
|
|
553
|
+
isDisabled?: boolean;
|
|
554
|
+
validators?: SmartValidator[];
|
|
496
555
|
originalLabel?: string;
|
|
497
556
|
showLabel?: boolean;
|
|
498
557
|
isVisible?: boolean;
|
|
499
558
|
cssClass?: string;
|
|
500
559
|
cssLabelClass?: string;
|
|
560
|
+
labelPositionClass?: string;
|
|
561
|
+
isFloatLabel?: boolean;
|
|
501
562
|
style?: Style;
|
|
502
563
|
labelStyle?: Style;
|
|
503
|
-
uploadCallback: (key: string, files: any[]) => void;
|
|
504
564
|
fileFormats?: string[];
|
|
505
565
|
maxSizeMb?: number;
|
|
506
566
|
i18n?: any;
|
|
567
|
+
fileUploaderProperties?: FileUploaderProperties;
|
|
568
|
+
hint?: SmartWidgetHint;
|
|
569
|
+
toolbarId?: string;
|
|
570
|
+
}
|
|
571
|
+
export interface SmartMultiFileUploader {
|
|
572
|
+
type: SmartFormWidgetType.MULTI_FILE_UPLOADER;
|
|
573
|
+
value?: any;
|
|
574
|
+
key: string;
|
|
575
|
+
valueChangeMode?: ValueChangeMode;
|
|
576
|
+
label: string;
|
|
577
|
+
isDisabled?: boolean;
|
|
578
|
+
validators?: SmartValidator[];
|
|
579
|
+
originalLabel?: string;
|
|
580
|
+
showLabel?: boolean;
|
|
581
|
+
isVisible?: boolean;
|
|
582
|
+
cssClass?: string;
|
|
583
|
+
cssLabelClass?: string;
|
|
584
|
+
labelPositionClass?: string;
|
|
585
|
+
isFloatLabel?: boolean;
|
|
586
|
+
style?: Style;
|
|
587
|
+
labelStyle?: Style;
|
|
588
|
+
fileFormats?: string[];
|
|
589
|
+
maxSizeMb?: number;
|
|
590
|
+
i18n?: any;
|
|
591
|
+
multiFileUploaderProperties?: MultiFileUploaderProperties;
|
|
592
|
+
hint?: SmartWidgetHint;
|
|
593
|
+
toolbarId?: string;
|
|
594
|
+
}
|
|
595
|
+
export interface SmartRecordingUploader {
|
|
596
|
+
type: SmartFormWidgetType.RECORDING_UPLOADER;
|
|
597
|
+
value?: any;
|
|
598
|
+
key: string;
|
|
599
|
+
valueChangeMode?: ValueChangeMode;
|
|
600
|
+
label: string;
|
|
601
|
+
isDisabled?: boolean;
|
|
602
|
+
validators?: SmartValidator[];
|
|
603
|
+
originalLabel?: string;
|
|
604
|
+
showLabel?: boolean;
|
|
605
|
+
isVisible?: boolean;
|
|
606
|
+
cssClass?: string;
|
|
607
|
+
cssLabelClass?: string;
|
|
608
|
+
labelPositionClass?: string;
|
|
609
|
+
isFloatLabel?: boolean;
|
|
610
|
+
style?: Style;
|
|
611
|
+
labelStyle?: Style;
|
|
612
|
+
fileFormats?: string[];
|
|
613
|
+
maxSizeMb?: number;
|
|
614
|
+
i18n?: any;
|
|
615
|
+
recordingUploaderProperties?: RecordingUploaderProperties;
|
|
616
|
+
hint?: SmartWidgetHint;
|
|
617
|
+
toolbarId?: string;
|
|
507
618
|
}
|
|
508
619
|
export interface SmartImage {
|
|
509
620
|
type: SmartFormWidgetType.IMAGE;
|
|
@@ -515,10 +626,13 @@ export interface SmartImage {
|
|
|
515
626
|
isVisible?: boolean;
|
|
516
627
|
cssClass?: string;
|
|
517
628
|
cssLabelClass?: string;
|
|
629
|
+
labelPositionClass?: string;
|
|
630
|
+
isFloatLabel?: boolean;
|
|
518
631
|
style?: Style;
|
|
519
632
|
labelStyle?: Style;
|
|
520
|
-
value?:
|
|
633
|
+
value?: ImageResource;
|
|
521
634
|
imageCss?: string;
|
|
635
|
+
imageProperties?: ImageProperties;
|
|
522
636
|
}
|
|
523
637
|
export interface SmartDivider {
|
|
524
638
|
type: SmartFormWidgetType.DIVIDER;
|
|
@@ -530,6 +644,8 @@ export interface SmartDivider {
|
|
|
530
644
|
isVisible?: boolean;
|
|
531
645
|
cssClass?: string;
|
|
532
646
|
cssLabelClass?: string;
|
|
647
|
+
labelPositionClass?: string;
|
|
648
|
+
isFloatLabel?: boolean;
|
|
533
649
|
style?: Style;
|
|
534
650
|
labelStyle?: Style;
|
|
535
651
|
value?: string;
|
|
@@ -544,6 +660,8 @@ export interface SmartButton {
|
|
|
544
660
|
isVisible?: boolean;
|
|
545
661
|
cssClass?: string;
|
|
546
662
|
cssLabelClass?: string;
|
|
663
|
+
labelPositionClass?: string;
|
|
664
|
+
isFloatLabel?: boolean;
|
|
547
665
|
style?: Style;
|
|
548
666
|
labelStyle?: Style;
|
|
549
667
|
value?: string;
|
|
@@ -561,6 +679,8 @@ export interface SmartFormInlineComponent {
|
|
|
561
679
|
isVisible?: boolean;
|
|
562
680
|
cssClass?: string;
|
|
563
681
|
cssLabelClass?: string;
|
|
682
|
+
labelPositionClass?: string;
|
|
683
|
+
isFloatLabel?: boolean;
|
|
564
684
|
style?: Style;
|
|
565
685
|
labelStyle?: Style;
|
|
566
686
|
component: any;
|
|
@@ -580,6 +700,8 @@ export interface SmartRichText {
|
|
|
580
700
|
isVisible?: boolean;
|
|
581
701
|
cssClass?: string;
|
|
582
702
|
cssLabelClass?: string;
|
|
703
|
+
labelPositionClass?: string;
|
|
704
|
+
isFloatLabel?: boolean;
|
|
583
705
|
style?: Style;
|
|
584
706
|
labelStyle?: Style;
|
|
585
707
|
isDisabled?: boolean;
|
|
@@ -606,6 +728,8 @@ export interface SmartSortable<T> {
|
|
|
606
728
|
isVisible?: boolean;
|
|
607
729
|
cssClass?: string;
|
|
608
730
|
cssLabelClass?: string;
|
|
731
|
+
labelPositionClass?: string;
|
|
732
|
+
isFloatLabel?: boolean;
|
|
609
733
|
style?: Style;
|
|
610
734
|
labelStyle?: Style;
|
|
611
735
|
isDisabled?: boolean;
|
|
@@ -634,6 +758,8 @@ export interface SmartMatrix {
|
|
|
634
758
|
isVisible?: boolean;
|
|
635
759
|
cssClass?: string;
|
|
636
760
|
cssLabelClass?: string;
|
|
761
|
+
labelPositionClass?: string;
|
|
762
|
+
isFloatLabel?: boolean;
|
|
637
763
|
style?: Style;
|
|
638
764
|
labelStyle?: Style;
|
|
639
765
|
isDisabled?: boolean;
|
|
@@ -666,6 +792,8 @@ export interface SmartYoutubePlayer {
|
|
|
666
792
|
endSeconds?: number;
|
|
667
793
|
cssClass?: string;
|
|
668
794
|
cssLabelClass?: string;
|
|
795
|
+
labelPositionClass?: string;
|
|
796
|
+
isFloatLabel?: boolean;
|
|
669
797
|
style?: Style;
|
|
670
798
|
labelStyle?: Style;
|
|
671
799
|
isVisible?: boolean;
|
|
@@ -690,6 +818,8 @@ export interface SmartMonthPicker {
|
|
|
690
818
|
serverErrorColor?: string;
|
|
691
819
|
cssClass?: string;
|
|
692
820
|
cssLabelClass?: string;
|
|
821
|
+
labelPositionClass?: string;
|
|
822
|
+
isFloatLabel?: boolean;
|
|
693
823
|
style?: Style;
|
|
694
824
|
labelStyle?: Style;
|
|
695
825
|
isVisible?: boolean;
|
|
@@ -707,6 +837,25 @@ export interface SmartSvg {
|
|
|
707
837
|
isVisible?: boolean;
|
|
708
838
|
cssClass?: string;
|
|
709
839
|
cssLabelClass?: string;
|
|
840
|
+
labelPositionClass?: string;
|
|
841
|
+
isFloatLabel?: boolean;
|
|
842
|
+
style?: Style;
|
|
843
|
+
labelStyle?: Style;
|
|
844
|
+
value?: string;
|
|
845
|
+
minWidth?: SmartFormWidgetWidth | number;
|
|
846
|
+
}
|
|
847
|
+
export interface SmartDiv {
|
|
848
|
+
type: SmartFormWidgetType.DIV;
|
|
849
|
+
key: string;
|
|
850
|
+
valueChangeMode?: ValueChangeMode;
|
|
851
|
+
label: string;
|
|
852
|
+
originalLabel?: string;
|
|
853
|
+
showLabel?: boolean;
|
|
854
|
+
isVisible?: boolean;
|
|
855
|
+
cssClass?: string;
|
|
856
|
+
cssLabelClass?: string;
|
|
857
|
+
labelPositionClass?: string;
|
|
858
|
+
isFloatLabel?: boolean;
|
|
710
859
|
style?: Style;
|
|
711
860
|
labelStyle?: Style;
|
|
712
861
|
value?: string;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { SmartFileUploader } from '../../../smartform.form-model';
|
|
3
|
+
import { UiAction, UiActionDescriptor, UiActionUploadDescriptor } from '../../../../view-context/api/model/models';
|
|
4
|
+
import { ComponentLibrary } from '../../../../view-context/utility/componentLibrary';
|
|
5
|
+
import { UiActionToolbarComponent } from '../../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
6
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SmartFileEditorComponent implements ControlValueAccessor {
|
|
9
|
+
private cdr;
|
|
10
|
+
compLib?: ComponentLibrary | undefined;
|
|
11
|
+
toolbar: UiActionToolbarComponent;
|
|
12
|
+
private _widgetInstance;
|
|
13
|
+
get widgetInstance(): SmartFileUploader;
|
|
14
|
+
set widgetInstance(value: SmartFileUploader);
|
|
15
|
+
uploadFilesEvent: EventEmitter<{
|
|
16
|
+
files: any[];
|
|
17
|
+
uiAction: UiAction;
|
|
18
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
fileToChange?: any;
|
|
21
|
+
constructor(cdr: ChangeDetectorRef, compLib?: ComponentLibrary | undefined);
|
|
22
|
+
private clone;
|
|
23
|
+
upload(event: any): void;
|
|
24
|
+
change(file: any): void;
|
|
25
|
+
cancelChange(): void;
|
|
26
|
+
isTypeSupported(value: any): boolean;
|
|
27
|
+
formatSize(bytes: number): string;
|
|
28
|
+
getLabelNgClass(): {
|
|
29
|
+
[className: string]: boolean;
|
|
30
|
+
};
|
|
31
|
+
getLabelStyle(): {
|
|
32
|
+
[key: string]: string | number;
|
|
33
|
+
};
|
|
34
|
+
getNgClass(): {
|
|
35
|
+
[className: string]: boolean;
|
|
36
|
+
};
|
|
37
|
+
getStyle(): {
|
|
38
|
+
[key: string]: string | number;
|
|
39
|
+
};
|
|
40
|
+
onChange: (value: any) => void;
|
|
41
|
+
onTouched: () => void;
|
|
42
|
+
isDisabled: boolean;
|
|
43
|
+
writeValue(value: any): void;
|
|
44
|
+
registerOnChange(fn: any): void;
|
|
45
|
+
registerOnTouched(fn: any): void;
|
|
46
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
47
|
+
get fileIcon(): string;
|
|
48
|
+
get changeButton(): UiActionDescriptor;
|
|
49
|
+
get removeButton(): UiActionDescriptor;
|
|
50
|
+
get errorIcon(): string;
|
|
51
|
+
get toolbarComponent(): UiActionToolbarComponent;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartFileEditorComponent, [null, { optional: true; }]>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartFileEditorComponent, "smart-file-editor", never, { "widgetInstance": { "alias": "widgetInstance"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { SmartMultiFileUploader } from '../../../smartform.form-model';
|
|
3
|
+
import { UiAction, UiActionUploadDescriptor } from '../../../../view-context/api/model/models';
|
|
4
|
+
import { ComponentLibrary } from '../../../../view-context/utility/componentLibrary';
|
|
5
|
+
import { UiActionToolbarComponent } from '../../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
6
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SmartMultiFileEditorComponent implements ControlValueAccessor {
|
|
9
|
+
private cdr;
|
|
10
|
+
compLib?: ComponentLibrary | undefined;
|
|
11
|
+
toolbar: UiActionToolbarComponent;
|
|
12
|
+
private _widgetInstance;
|
|
13
|
+
get widgetInstance(): SmartMultiFileUploader;
|
|
14
|
+
set widgetInstance(value: SmartMultiFileUploader);
|
|
15
|
+
uploadFilesEvent: EventEmitter<{
|
|
16
|
+
files: any[];
|
|
17
|
+
uiAction: UiAction;
|
|
18
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
fileEvent: EventEmitter<{
|
|
21
|
+
uiAction: UiAction;
|
|
22
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
constructor(cdr: ChangeDetectorRef, compLib?: ComponentLibrary | undefined);
|
|
25
|
+
private clone;
|
|
26
|
+
upload(event: any): void;
|
|
27
|
+
private emitFileAction;
|
|
28
|
+
deleteFile(dataUri: string): void;
|
|
29
|
+
downloadFile(dataUri: string): void;
|
|
30
|
+
isTypeSupported(value: any): boolean;
|
|
31
|
+
formatSize(bytes: number): string;
|
|
32
|
+
getLabelNgClass(): {
|
|
33
|
+
[className: string]: boolean;
|
|
34
|
+
};
|
|
35
|
+
getLabelStyle(): {
|
|
36
|
+
[key: string]: string | number;
|
|
37
|
+
};
|
|
38
|
+
getNgClass(): {
|
|
39
|
+
[className: string]: boolean;
|
|
40
|
+
};
|
|
41
|
+
getStyle(): {
|
|
42
|
+
[key: string]: string | number;
|
|
43
|
+
};
|
|
44
|
+
onChange: (value: any) => void;
|
|
45
|
+
onTouched: () => void;
|
|
46
|
+
isDisabled: boolean;
|
|
47
|
+
writeValue(value: any): void;
|
|
48
|
+
registerOnChange(fn: any): void;
|
|
49
|
+
registerOnTouched(fn: any): void;
|
|
50
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
51
|
+
get removeIcon(): string;
|
|
52
|
+
get fileIcon(): string;
|
|
53
|
+
get errorIcon(): string;
|
|
54
|
+
get toolbarComponent(): UiActionToolbarComponent;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartMultiFileEditorComponent, [null, { optional: true; }]>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartMultiFileEditorComponent, "smart-multi-file-editor", never, { "widgetInstance": { "alias": "widgetInstance"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; "fileEvent": "fileEvent"; }, never, never, false, never>;
|
|
57
|
+
}
|
package/lib/smart-form/widgets/components/smart-voice-recorder/smart-voice-recorder.component.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { SmartRecordingUploader } from '../../../smartform.form-model';
|
|
4
|
+
import { UiAction, UiActionUploadDescriptor } from '../../../../view-context/api/model/models';
|
|
5
|
+
import { ComponentLibrary } from '../../../../view-context/utility/componentLibrary';
|
|
6
|
+
import { UiActionToolbarComponent } from '../../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SmartVoiceRecorderComponent implements ControlValueAccessor {
|
|
9
|
+
private cdr;
|
|
10
|
+
compLib?: ComponentLibrary | undefined;
|
|
11
|
+
toolbar: UiActionToolbarComponent;
|
|
12
|
+
private _widgetInstance;
|
|
13
|
+
get widgetInstance(): SmartRecordingUploader;
|
|
14
|
+
set widgetInstance(value: SmartRecordingUploader);
|
|
15
|
+
uploadFilesEvent: EventEmitter<{
|
|
16
|
+
files: any[];
|
|
17
|
+
uiAction: UiAction;
|
|
18
|
+
uploadDescriptor?: UiActionUploadDescriptor | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
fileToChange?: any;
|
|
21
|
+
constructor(cdr: ChangeDetectorRef, compLib?: ComponentLibrary | undefined);
|
|
22
|
+
private clone;
|
|
23
|
+
upload(event: any): void;
|
|
24
|
+
isTypeSupported(value: any): boolean;
|
|
25
|
+
formatSize(bytes: number): string;
|
|
26
|
+
getLabelNgClass(): {
|
|
27
|
+
[className: string]: boolean;
|
|
28
|
+
};
|
|
29
|
+
getLabelStyle(): {
|
|
30
|
+
[key: string]: string | number;
|
|
31
|
+
};
|
|
32
|
+
getNgClass(): {
|
|
33
|
+
[className: string]: boolean;
|
|
34
|
+
};
|
|
35
|
+
getStyle(): {
|
|
36
|
+
[key: string]: string | number;
|
|
37
|
+
};
|
|
38
|
+
onChange: (value: any) => void;
|
|
39
|
+
onTouched: () => void;
|
|
40
|
+
isDisabled: boolean;
|
|
41
|
+
writeValue(value: any): void;
|
|
42
|
+
registerOnChange(fn: any): void;
|
|
43
|
+
registerOnTouched(fn: any): void;
|
|
44
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
45
|
+
get toolbarComponent(): UiActionToolbarComponent;
|
|
46
|
+
get openDirection(): 'LEFT' | 'RIGHT';
|
|
47
|
+
uploadRecording(file: any): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartVoiceRecorderComponent, [null, { optional: true; }]>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartVoiceRecorderComponent, "smart-voice-recorder", never, { "widgetInstance": { "alias": "widgetInstance"; "required": false; }; }, { "uploadFilesEvent": "uploadFilesEvent"; }, never, never, false, never>;
|
|
50
|
+
}
|