UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

35 lines (34 loc) 2.53 kB
import { ReadBatchOperationImpl, IReadBatchOperationState } from '@docsvision/webclient/Platform/ReadBatchOperationImpl'; import { $EmployeeServices } from '@docsvision/webclient/BackOffice/Employee'; import { $BaseCardController, $LayoutTasksController } from '@docsvision/webclient/Generated/DocsVision.WebClient.Controllers'; import { $CheckBoxServices } from '@docsvision/webclient/Platform/CheckBox'; import { $TextAreaServices } from '@docsvision/webclient/Platform/TextArea'; import { $BatchOperations } from '@docsvision/webclient/Platform/$BatchOperations'; import { $BatchOperationsPerformer } from '@docsvision/webclient/Platform/$BatchOperationsPerformer'; import { $TableManagement } from '@docsvision/webclient/Platform/$TableManagement'; import { $TableMode } from '@docsvision/webclient/Platform/$TableMode'; import { $TableRowSelection } from '@docsvision/webclient/Platform/$TableRowSelection'; import { BaseControl, BaseControlParams } from '@docsvision/webclient/System/BaseControl'; import { Router } from '@docsvision/webclient/System/Router'; import { $RefreshUnreadCounters } from '@docsvision/webclient/Platform/$RefreshUnreadCounters'; import { $FolderDataLoading } from '@docsvision/webclient/Platform/$FolderDataLoading'; import { $CurrentFolder } from '@docsvision/webclient/Platform/$CurrentFolder'; import { $FolderGrid } from '@docsvision/webclient/Platform/$FolderGrid'; /** * Содержит публичные свойства элемента управления [ControlTypes_ReadBatchOperation]{@link ControlTypes_ReadBatchOperation}. */ export declare class ReadBatchOperationParams extends BaseControlParams { /** Стандартный CSS класс со стилями элемента управления */ standardCssClass?: string; /** Текст кнопки операции. */ buttonText?: string; services?: $TableRowSelection & $BatchOperationsPerformer & $TableManagement & $TableMode & $BatchOperations & $FolderDataLoading & $LayoutTasksController & $EmployeeServices & $TextAreaServices & $CheckBoxServices & Router & $BaseCardController & $RefreshUnreadCounters & $CurrentFolder & $FolderDataLoading & $FolderGrid; } /** * Класс элемента управления ReadBatchOperation. */ export declare class ReadBatchOperation extends BaseControl<ReadBatchOperationParams, IReadBatchOperationState> { /** @notest @internal */ protected createParams(): ReadBatchOperationParams; protected createImpl(): ReadBatchOperationImpl; }