UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

33 lines (32 loc) 2.27 kB
import { DelegateBatchOperationImpl, DelegateBatchOperationState } from '@docsvision/webclient/BackOffice/DelegateBatchOperationImpl'; import { $EmployeeServices } from '@docsvision/webclient/BackOffice/Employee'; import { $LayoutTasksController } from '@docsvision/webclient/Generated/DocsVision.WebClient.Controllers'; import { $CheckBoxServices } from '@docsvision/webclient/Platform/CheckBox'; import { $TextAreaServices } from '@docsvision/webclient/Platform/TextArea'; import { $FolderDataLoading } from '@docsvision/webclient/Platform/$FolderDataLoading'; import { $FolderGrid } from '@docsvision/webclient/Platform/$FolderGrid'; 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'; export declare type $BatchOperationServices = $TableRowSelection & $BatchOperationsPerformer & $TableManagement & $TableMode & $BatchOperations & $LayoutTasksController & $EmployeeServices & $TextAreaServices & $CheckBoxServices; /** * Содержит публичные свойства элемента управления [GridDelegateOperation]{@link GridDelegateOperation}. */ export declare class DelegateBatchOperationParams extends BaseControlParams { /** Стандартный CSS класс со стилями элемента управления */ standardCssClass?: string; /** Текст кнопки операции. */ buttonText?: string; services?: $BatchOperationServices & $FolderGrid & $FolderDataLoading; } /** * Класс элемента управления GridDelegateOperation. */ export declare class DelegateBatchOperation extends BaseControl<DelegateBatchOperationParams, DelegateBatchOperationState> { /** @notest @internal */ protected createParams(): DelegateBatchOperationParams; protected createImpl(): DelegateBatchOperationImpl; }