@docsvision/webclient 6.1.9-beta.1 → 6.1.10
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/BackOffice/ContentText.d.ts +20 -0
- package/BackOffice/DisplayPerformersStoriesData.d.ts +2 -2
- package/BackOffice/MultipleEmployeesStoriesData.d.ts +10 -6
- package/BackOffice/TaskGroupStatusComponent.d.ts +7 -0
- package/BackOffice/TaskGroupStatusTableComponent.d.ts +5 -0
- package/BackOffice/TaskGroupStatusTableRowComponent.d.ts +9 -0
- package/BackOffice/TaskGroupWorkStatus.d.ts +22 -0
- package/BackOffice/TaskGroupWorkStatusContainer.d.ts +11 -0
- package/BackOffice/TaskGroupWorkStatusLogic.d.ts +13 -0
- package/BackOffice/TaskGroupWorkStatusOptions.d.ts +18 -0
- package/BackOffice/TaskGroupWorkStatusView.d.ts +10 -0
- package/BackOffice/TaskGroupWrapper.d.ts +3 -0
- package/Generated/DocsVision.WebClient.Controllers.d.ts +7 -0
- package/Generated/DocsVision.WebClient.Models.d.ts +331 -2592
- package/Platform/ExportESignButton.d.ts +2 -0
- package/Platform/FileExtensions.d.ts +2 -1
- package/Platform/FolderCardsDashboardWidget.d.ts +2 -0
- package/Platform/GroupingResponseResolver.d.ts +13 -0
- package/Platform/RecentCardsDashboardWidget.d.ts +2 -0
- package/Platform/RecentCardsDashboardWidgetDataLoader.d.ts +2 -2
- package/Platform/UnreadCounter.d.ts +2 -1
- package/System/RealtimeServerSender.d.ts +2 -1
- package/System/TaskGroupWorkStatusStub.d.ts +62 -0
- package/package.json +1 -1
- package/Legacy/TaskGroupWorkStatusRazorControl.d.ts +0 -5
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
/** @internal */
|
|
3
|
+
export interface IContentTextProps {
|
|
4
|
+
text: string;
|
|
5
|
+
}
|
|
6
|
+
/** @internal */
|
|
7
|
+
export interface IContentTextState {
|
|
8
|
+
isHTMLContent: () => boolean;
|
|
9
|
+
maxHeight?: string;
|
|
10
|
+
}
|
|
11
|
+
/** @internal */
|
|
12
|
+
export declare class ContentText extends React.Component<IContentTextProps, IContentTextState> {
|
|
13
|
+
private rootRef;
|
|
14
|
+
constructor(props: IContentTextProps);
|
|
15
|
+
componentWillUnmount(): void;
|
|
16
|
+
private setRef;
|
|
17
|
+
private getHeight;
|
|
18
|
+
private isHTMLContent;
|
|
19
|
+
render(): JSX.Element;
|
|
20
|
+
}
|
|
@@ -45,7 +45,7 @@ export declare function getDisplayPerformersMockDelegateRecords(): {
|
|
|
45
45
|
displayName: string;
|
|
46
46
|
firstName: string;
|
|
47
47
|
lastName: string;
|
|
48
|
-
middleName:
|
|
48
|
+
middleName: string;
|
|
49
49
|
position: any;
|
|
50
50
|
fieldPath: string;
|
|
51
51
|
unitId: string;
|
|
@@ -59,7 +59,7 @@ export declare function getDisplayPerformersMockDelegateRecords(): {
|
|
|
59
59
|
displayName: string;
|
|
60
60
|
firstName: string;
|
|
61
61
|
lastName: string;
|
|
62
|
-
middleName:
|
|
62
|
+
middleName: string;
|
|
63
63
|
position: any;
|
|
64
64
|
fieldPath: string;
|
|
65
65
|
unitId: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { $LayoutStaffController, $EmployeeController } from "@docsvision/webclient/Generated/DocsVision.WebClient.Controllers";
|
|
2
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
3
|
import { $EditOperationStore, $LayoutInfo } from "@docsvision/webclient/System/LayoutServices";
|
|
3
4
|
import { $LocalStorage } from "@docsvision/webclient/System/$LocalStorage";
|
|
4
5
|
export declare function getMultipleEmployeesMockServices():
|
|
@@ -9,7 +10,7 @@ export declare function getMultipleEmployeesMockValue(): {
|
|
|
9
10
|
displayName: string;
|
|
10
11
|
firstName: string;
|
|
11
12
|
lastName: string;
|
|
12
|
-
middleName:
|
|
13
|
+
middleName: string;
|
|
13
14
|
position: any;
|
|
14
15
|
fieldPath: string;
|
|
15
16
|
unitId: string;
|
|
@@ -18,16 +19,19 @@ export declare function getMultipleEmployeesMockValue(): {
|
|
|
18
19
|
status: number;
|
|
19
20
|
}[];
|
|
20
21
|
export declare function getMultipleEmployeesMockFindItems(): {
|
|
21
|
-
|
|
22
|
+
id: string;
|
|
23
|
+
isCurrent: boolean;
|
|
24
|
+
middleName: string;
|
|
22
25
|
displayName: string;
|
|
23
26
|
firstName: string;
|
|
24
27
|
lastName: string;
|
|
25
28
|
email: string;
|
|
26
29
|
position: any;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
unitId: string;
|
|
31
|
+
units: any[];
|
|
32
|
+
dataType: GenModels.DirectoryDataType;
|
|
33
|
+
status: any;
|
|
34
|
+
departmentName: any;
|
|
31
35
|
accountName: string;
|
|
32
36
|
deputyDisplayName: string;
|
|
33
37
|
isFavoritePerformer: boolean;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
3
|
+
export interface ITaskGroupStatusComponentProps {
|
|
4
|
+
executionType: GenModels.ExecutionType;
|
|
5
|
+
executionTypeName: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function TaskGroupStatusComponent(props: ITaskGroupStatusComponentProps): JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
3
|
+
import { $ApplicationSettings } from "@docsvision/webclient/StandardServices";
|
|
4
|
+
export interface ITaskGroupStatusTableRowComponentProps {
|
|
5
|
+
taskItem: GenModels.LinkedTaskModel;
|
|
6
|
+
responsible?: string;
|
|
7
|
+
services: $ApplicationSettings;
|
|
8
|
+
}
|
|
9
|
+
export declare function TaskGroupStatusTableRowComponent(props: ITaskGroupStatusTableRowComponentProps): JSX.Element;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TaskGroupWorkStatusLogic } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusLogic";
|
|
3
|
+
import { TaskGroupWorkStatusParams } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusOptions";
|
|
4
|
+
import { TaskGroupWorkStatusView } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusView";
|
|
5
|
+
import { BaseControl } from "@docsvision/webclient/System/BaseControl";
|
|
6
|
+
import { BaseControlImplState } from "@docsvision/webclient/System/BaseControlImpl";
|
|
7
|
+
import { ControlImpl } from "@docsvision/webclient/System/ControlImpl";
|
|
8
|
+
export interface ITaskGroupWorkStatusState extends BaseControlImplState, TaskGroupWorkStatusParams {
|
|
9
|
+
logic: TaskGroupWorkStatusLogic;
|
|
10
|
+
view: TaskGroupWorkStatusView;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Класс элемента управления TaskGroupWorkStatus.
|
|
14
|
+
*/
|
|
15
|
+
export declare class TaskGroupWorkStatus extends BaseControl<TaskGroupWorkStatusParams, ITaskGroupWorkStatusState> {
|
|
16
|
+
construct(): void;
|
|
17
|
+
private set setContent(value);
|
|
18
|
+
private set setBinding(value);
|
|
19
|
+
protected createParams(): TaskGroupWorkStatusParams;
|
|
20
|
+
protected createImpl(): ControlImpl;
|
|
21
|
+
renderControl(): JSX.Element;
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TaskGroupWorkStatusLogic } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusLogic";
|
|
3
|
+
import { TaskGroupWorkStatusParams } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusOptions";
|
|
4
|
+
import { TaskGroupWorkStatusView } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusView";
|
|
5
|
+
import { HtmlProps } from "@docsvision/web/core/component";
|
|
6
|
+
|
|
7
|
+
export interface ITaskGroupWorkStatusContainerProps extends TaskGroupWorkStatusParams, HtmlProps.div {
|
|
8
|
+
logic: TaskGroupWorkStatusLogic;
|
|
9
|
+
view: TaskGroupWorkStatusView;
|
|
10
|
+
}
|
|
11
|
+
export declare function TaskGroupWorkStatusContainer(props: ITaskGroupWorkStatusContainerProps): JSX.Element;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TaskGroupWorkStatusParams } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusOptions";
|
|
2
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
3
|
+
export declare class TaskGroupWorkStatusLogic {
|
|
4
|
+
options: TaskGroupWorkStatusParams;
|
|
5
|
+
constructor(options: TaskGroupWorkStatusParams);
|
|
6
|
+
domain:
|
|
7
|
+
import("effector").Domain;
|
|
8
|
+
$taskGroupExecutionTasks:
|
|
9
|
+
import("effector").Store<GenModels.TaskGroupExecutionTasksModel>;
|
|
10
|
+
setTaskGroupExecutionTasks:
|
|
11
|
+
import("effector").Event<GenModels.TaskGroupExecutionTasksModel>;
|
|
12
|
+
init(): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TaskGroupWorkStatusLogic } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusLogic";
|
|
2
|
+
import { TaskGroupWorkStatusView } from "@docsvision/webclient/BackOffice/TaskGroupWorkStatusView";
|
|
3
|
+
import { $ApplicationSettings } from "@docsvision/webclient/StandardServices";
|
|
4
|
+
import { BaseControlParams } from "@docsvision/webclient/System/BaseControl";
|
|
5
|
+
import { IControlOptions } from "@docsvision/webclient/System/IControlOptions";
|
|
6
|
+
import { Optional } from "@docsvision/web/core/services";
|
|
7
|
+
/**
|
|
8
|
+
* Содержит публичные свойства элемента управления [TaskGroupWorkStatus]{@link TaskGroupWorkStatus}.
|
|
9
|
+
*/
|
|
10
|
+
export declare class TaskGroupWorkStatusParams extends BaseControlParams {
|
|
11
|
+
/** Стандартный CSS класс со стилями элемента управления */
|
|
12
|
+
standardCssClass?: string;
|
|
13
|
+
services?: Optional<$TaskGroupWorkStatusOptions> & $ApplicationSettings;
|
|
14
|
+
}
|
|
15
|
+
export declare type $TaskGroupWorkStatusOptions = {
|
|
16
|
+
taskGroupWorkStatusOptions: IControlOptions<TaskGroupWorkStatusParams, TaskGroupWorkStatusLogic, TaskGroupWorkStatusView>;
|
|
17
|
+
};
|
|
18
|
+
export declare const $TaskGroupWorkStatusOptions: string | ((model?: $TaskGroupWorkStatusOptions) => IControlOptions<TaskGroupWorkStatusParams, TaskGroupWorkStatusLogic, TaskGroupWorkStatusView>);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TaskGroupStatusComponent } from "@docsvision/webclient/BackOffice/TaskGroupStatusComponent";
|
|
2
|
+
import { TaskGroupStatusTableComponent } from "@docsvision/webclient/BackOffice/TaskGroupStatusTableComponent";
|
|
3
|
+
import { TaskGroupStatusTableRowComponent } from "@docsvision/webclient/BackOffice/TaskGroupStatusTableRowComponent";
|
|
4
|
+
import { TaskGroupWrapper } from "@docsvision/webclient/BackOffice/TaskGroupWrapper";
|
|
5
|
+
export declare class TaskGroupWorkStatusView {
|
|
6
|
+
taskGroupWrapper: typeof TaskGroupWrapper;
|
|
7
|
+
taskGroupStatus: typeof TaskGroupStatusComponent;
|
|
8
|
+
taskGroupTable: typeof TaskGroupStatusTableComponent;
|
|
9
|
+
taskGroupTableRow: typeof TaskGroupStatusTableRowComponent;
|
|
10
|
+
}
|
|
@@ -2400,6 +2400,12 @@ export declare namespace GenControllers {
|
|
|
2400
2400
|
* @param signatureFormat Signature export format
|
|
2401
2401
|
*/
|
|
2402
2402
|
exportESignWithPowerOfAttorney(cardId: string, signatureFormat: GenModels.SignatureFormat, options?: RequestOptions): Promise<any>;
|
|
2403
|
+
/**
|
|
2404
|
+
* Exports zip-archive with electronic signature files and visualization ESign
|
|
2405
|
+
*
|
|
2406
|
+
* @param exportSignatureRequest
|
|
2407
|
+
*/
|
|
2408
|
+
exportSignature(exportSignatureRequest: GenModels.ExportSignatureRequest, options?: RequestOptions): Promise<any>;
|
|
2403
2409
|
/**
|
|
2404
2410
|
* Downloads signature byte array
|
|
2405
2411
|
*/
|
|
@@ -2421,6 +2427,7 @@ export declare namespace GenControllers {
|
|
|
2421
2427
|
checkUniqueAttributes(uniqueAttributeValues: GenModels.UniqueAttributesValuesList, options?: RequestOptions): Promise<Array<GenModels.UniqueAttributeCard>>;
|
|
2422
2428
|
exportESign(cardId: string, signatureFormat: GenModels.SignatureFormat, options?: RequestOptions): Promise<any>;
|
|
2423
2429
|
exportESignWithPowerOfAttorney(cardId: string, signatureFormat: GenModels.SignatureFormat, options?: RequestOptions): Promise<any>;
|
|
2430
|
+
exportSignature(exportSignatureRequest: GenModels.ExportSignatureRequest, options?: RequestOptions): Promise<any>;
|
|
2424
2431
|
downloadSignature(request: GenModels.SignatureRequest, options?: RequestOptions): Promise<any>;
|
|
2425
2432
|
getSignatureInfo(documentId: string, signaturePartId: string, signatureId: string, options?: RequestOptions): Promise<GenModels.SignatureInfoModel>;
|
|
2426
2433
|
getAcknowledgemenList(request: GenModels.GetAcknowledgemenListRequest, options?: RequestOptions): Promise<string>;
|