@docsvision/webclient 6.1.9 → 6.1.11
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/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 +2 -2
- package/Generated/DocsVision.WebClient.Models.d.ts +338 -2597
- package/Legacy/$UserMenu.d.ts +1 -0
- package/Legacy/UserMenu.d.ts +8 -3
- package/Platform/ApplicationInfoDialog.d.ts +11 -0
- package/Platform/ApplicationInfoDialogData.d.ts +11 -0
- package/System/ApplicationInfoModelStub.d.ts +2 -0
- package/System/ExtensionManagerStub.d.ts +7 -0
- package/System/TaskGroupWorkStatusStub.d.ts +62 -0
- package/package.json +1 -1
- package/Legacy/TaskGroupWorkStatusRazorControl.d.ts +0 -5
|
@@ -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
|
+
}
|
|
@@ -3090,7 +3090,7 @@ export declare namespace GenControllers {
|
|
|
3090
3090
|
/**
|
|
3091
3091
|
* HTTP: /Navigator/About
|
|
3092
3092
|
*/
|
|
3093
|
-
about(options?: RequestOptions): Promise<
|
|
3093
|
+
about(options?: RequestOptions): Promise<GenModels.ApplicationInfoModel>;
|
|
3094
3094
|
/**
|
|
3095
3095
|
* HTTP: /Navigator/SwitchView
|
|
3096
3096
|
*/
|
|
@@ -3143,7 +3143,7 @@ export declare namespace GenControllers {
|
|
|
3143
3143
|
class NavigatorController extends ControllerBase implements INavigatorController {
|
|
3144
3144
|
index(options?: RequestOptions): Promise<any>;
|
|
3145
3145
|
awake(options?: RequestOptions): Promise<any>;
|
|
3146
|
-
about(options?: RequestOptions): Promise<
|
|
3146
|
+
about(options?: RequestOptions): Promise<GenModels.ApplicationInfoModel>;
|
|
3147
3147
|
switchView(options?: RequestOptions): Promise<string>;
|
|
3148
3148
|
getCardCreateLinks(folderId: string, options?: RequestOptions): Promise<any>;
|
|
3149
3149
|
getCardCreateTemplates(folderId: string, options?: RequestOptions): Promise<any>;
|