@docsvision/webclient 5.16.1 → 5.16.4
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/FileListControl.d.ts +5 -2
- package/BackOffice/FileListControlLogic.d.ts +1 -1
- package/BackOffice/FileListItemComponent.d.ts +1 -1
- package/BackOffice/FileListItemProps.d.ts +2 -1
- package/BackOffice/FileSign.d.ts +2 -2
- package/BackOffice/GenderDeterminantPlugin.d.ts +3 -0
- package/BackOffice/IFileSignInteractionModel.d.ts +1 -0
- package/BackOffice/ITaskTableSorting.d.ts +27 -0
- package/BackOffice/PrepareTasksTableModel.d.ts +2 -1
- package/BackOffice/SortingRows.d.ts +6 -0
- package/BackOffice/StaffDirectorySelectDialog.d.ts +4 -1
- package/BackOffice/TasksTable.d.ts +3 -0
- package/BackOffice/TasksTableHeaderCell.d.ts +3 -0
- package/BackOffice/TasksTableLogic.d.ts +8 -0
- package/Generated/DocsVision.WebClient.Controllers.d.ts +73 -2
- package/Generated/DocsVision.WebClient.Models.d.ts +1006 -266
- package/Helpers/Sortable/Data/ClientModels/ISortableItem.d.ts +7 -1
- package/Helpers/Sortable/Sortable.d.ts +11 -1
- package/Helpers/Table/TableHelperHeaderRow.d.ts +1 -0
- package/Helpers/Typeahead/Typeahead.d.ts +1 -1
- package/Legacy/BasicGridHtmlBuilder.d.ts +3 -1
- package/Legacy/TaskCardFilePanelRazorControl.d.ts +1 -0
- package/Legacy/Utils.d.ts +5 -0
- package/Libs/CryptoPro/Crypto.d.ts +102 -0
- package/Libs/FileDrop/FileDrop.d.ts +49 -0
- package/MainBundle.d.ts +1 -0
- package/Platform/$LastSearchParameters.d.ts +10 -0
- package/Platform/$RefreshUnreadCounters.d.ts +10 -0
- package/Platform/$SearchParametersFolder.d.ts +13 -0
- package/Platform/$UnreadCounter.d.ts +2 -0
- package/Platform/$UnreadCountersHealthMonitor.d.ts +6 -0
- package/Platform/CardLink.d.ts +2 -1
- package/Platform/FilePickerImpl.d.ts +1 -0
- package/Platform/FolderSizePlugin.d.ts +2 -1
- package/Platform/LastSearchParametersService.d.ts +13 -0
- package/Platform/Number.d.ts +2 -0
- package/Platform/NumberImpl.d.ts +1 -0
- package/Platform/ReadAllPlugin.d.ts +2 -1
- package/Platform/ReadBatchOperation.d.ts +4 -1
- package/Platform/RefreshUnreadCountersService.d.ts +13 -0
- package/Platform/SearchParametersFolderRequestResolver.d.ts +2 -1
- package/Platform/SearchParametersFolderResponseResolver.d.ts +5 -1
- package/Platform/SearchParametersFolderService.d.ts +12 -0
- package/Platform/UnreadBarService.d.ts +3 -1
- package/Platform/UnreadBarTablePlugins.d.ts +3 -1
- package/Platform/UnreadCounter.d.ts +1 -0
- package/Platform/UnreadCountersHealthMonitorService.d.ts +32 -0
- package/StandardServices.d.ts +4 -1
- package/System/$FileService.d.ts +16 -9
- package/System/$Router.d.ts +1 -0
- package/System/DataGridControl.d.ts +63 -0
- package/System/FileService.d.ts +14 -15
- package/System/ILayoutParams.d.ts +2 -0
- package/System/LayoutManager.d.ts +1 -1
- package/System/PageLeaveConfirmation.d.ts +1 -0
- package/System/Router.d.ts +1 -0
- package/package.json +1 -1
- package/Platform/SearchParametersFolderExtendedData.d.ts +0 -4
|
@@ -8,5 +8,11 @@ export interface ISortableItem<T> {
|
|
|
8
8
|
/** Данные элемента, который будет использоваться для рендеринга */
|
|
9
9
|
data: T;
|
|
10
10
|
/** Компонент, который нужно отрендерить */
|
|
11
|
-
render
|
|
11
|
+
render?: (data: T) => React.ReactNode;
|
|
12
|
+
/**
|
|
13
|
+
* Рендеринг контейнера строки.
|
|
14
|
+
*
|
|
15
|
+
* Должен задавать атрибут data-sortable-id={item.id} и key={item.id}
|
|
16
|
+
*/
|
|
17
|
+
renderSortableRow?: (data: ISortableItem<T>) => React.ReactNode;
|
|
12
18
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ISortableItem } from "@docsvision/webclient/Helpers/Sortable/Data/ClientModels/ISortableItem";
|
|
2
2
|
import React from "react";
|
|
3
|
+
import "./Sortable.css";
|
|
3
4
|
/** @internal Свойства для {@link Sortable} */
|
|
4
5
|
export interface ISortableProps {
|
|
5
6
|
/** дочерние элементы {@link SortableItem}, которые необходимо перемещать */
|
|
@@ -45,6 +46,14 @@ export interface ISortableProps {
|
|
|
45
46
|
zIndex?: number;
|
|
46
47
|
/** Остановить сортировку, если перетаскиваемый элемент вне родителя */
|
|
47
48
|
draggableInParent?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* HTML тэг, который будет отрендерен в качестве родительского узла.
|
|
51
|
+
*
|
|
52
|
+
* Включает режим без рендеринга служебных тегов. Требует от вызывающей стороны соблюдения следующих условий:
|
|
53
|
+
* - rootComponent должен использовать forwardRef
|
|
54
|
+
* - Метод
|
|
55
|
+
*/
|
|
56
|
+
rootComponent?: React.ReactNode;
|
|
48
57
|
}
|
|
49
58
|
/**
|
|
50
59
|
* @review
|
|
@@ -158,10 +167,11 @@ export declare class Sortable extends React.Component<ISortableProps, undefined>
|
|
|
158
167
|
* @param order Идентификаторы элементов, отсортированные в нужном порядке
|
|
159
168
|
*/
|
|
160
169
|
protected sortItems(items: ISortableItem<any>[], order?: string[]): ISortableItem<any>[];
|
|
170
|
+
protected renderRow: (item: ISortableItem<any>) => JSX.Element;
|
|
161
171
|
/**
|
|
162
172
|
* Возвращает отсортированных потомков
|
|
163
173
|
*/
|
|
164
|
-
protected getChildren():
|
|
174
|
+
protected getChildren(): React.ReactNode[];
|
|
165
175
|
/** @internal */
|
|
166
176
|
render(): JSX.Element;
|
|
167
177
|
}
|
|
@@ -23,6 +23,7 @@ export interface ITableHeaderCellHelperProps {
|
|
|
23
23
|
key?: string;
|
|
24
24
|
/** Tooltip */
|
|
25
25
|
title?: string;
|
|
26
|
+
onClick?(ev: React.MouseEvent): void;
|
|
26
27
|
}
|
|
27
28
|
/** @internal */
|
|
28
29
|
export declare const TableHelperHeaderRow: (props: ITableHelperHeaderRowProps) => JSX.Element;
|
|
@@ -41,7 +41,7 @@ export declare class Typeahead extends React.Component<ITypeaheadProps, ITypeahe
|
|
|
41
41
|
private documentClick;
|
|
42
42
|
private documentScroll;
|
|
43
43
|
protected onShowMore(): Promise<ITypeaheadSearchResult>;
|
|
44
|
-
protected onShowVariants(): void;
|
|
44
|
+
protected onShowVariants(ev: React.MouseEvent): void;
|
|
45
45
|
protected onInputKeyDown(ev: React.KeyboardEvent<any>): void;
|
|
46
46
|
protected onItemClick(ev: React.MouseEvent<any>, item: TypeaheadItem): void;
|
|
47
47
|
/** Contains logic for keyboard navigation */
|
|
@@ -6,6 +6,8 @@ import { SimpleEvent } from "@docsvision/webclient/System/SimpleEvent";
|
|
|
6
6
|
import { GridRowsSelectionLogic } from '@docsvision/webclient/Legacy/GridRowsSelectionLogic';
|
|
7
7
|
import { $WebFrameContext } from '@docsvision/webclient/Platform/$WebFrameContext';
|
|
8
8
|
import { $MessageBox } from "@docsvision/webclient/System/$MessageBox";
|
|
9
|
+
import { $CurrentFolder } from "@docsvision/webclient/Platform/$CurrentFolder";
|
|
10
|
+
import { $RefreshUnreadCounters } from "@docsvision/webclient/Platform/$RefreshUnreadCounters";
|
|
9
11
|
export declare const RESIZEABLE_STORAGE_ID = "Storage";
|
|
10
12
|
export declare const WIDTH_STORE = ".widths";
|
|
11
13
|
/** @internal */
|
|
@@ -43,7 +45,7 @@ export declare abstract class BasicGridHtmlBuilder implements IGridHtmlBuilder {
|
|
|
43
45
|
static DefaultBackColor: string;
|
|
44
46
|
static FilterSettingsName: string;
|
|
45
47
|
private traceProvider;
|
|
46
|
-
protected services: $GridController & $WebFrameContext & $MessageBox;
|
|
48
|
+
protected services: $GridController & $WebFrameContext & $MessageBox & $CurrentFolder & $RefreshUnreadCounters;
|
|
47
49
|
constructor(options: GridOptions);
|
|
48
50
|
abstract rowsSelectionMode: boolean;
|
|
49
51
|
abstract buildGrid(model: GenModels.GridViewModel, targetElement: HTMLElement, rootElement: HTMLElement): any;
|
|
@@ -51,6 +51,7 @@ export declare class TaskCardFilePanelRazorControl extends BaseRazorControl<Task
|
|
|
51
51
|
componentDidUpdate(prevProps: any): void;
|
|
52
52
|
private updatePreview;
|
|
53
53
|
private addPreviewHandlers;
|
|
54
|
+
private getVersionedFileModel;
|
|
54
55
|
private saveFileItemsInService;
|
|
55
56
|
private groupFilesByLinkedCard;
|
|
56
57
|
private updateSelectedFile;
|
package/Legacy/Utils.d.ts
CHANGED
|
@@ -168,6 +168,10 @@ export interface RequestOptions {
|
|
|
168
168
|
*/
|
|
169
169
|
services?: $CardId & $CardTimestamp & Partial<$ExtendedDataSourceInfos> & Optional<$RowId>;
|
|
170
170
|
}
|
|
171
|
+
export interface IRequestHeader {
|
|
172
|
+
name: string;
|
|
173
|
+
value: string;
|
|
174
|
+
}
|
|
171
175
|
/** Обертка вокруг XMLHttpRequest с отображением прогресс-бара и обработкой ошибок. */
|
|
172
176
|
export declare class Request {
|
|
173
177
|
private static ActiveRequests;
|
|
@@ -187,6 +191,7 @@ export declare class Request {
|
|
|
187
191
|
private progressOverlay;
|
|
188
192
|
private isForm;
|
|
189
193
|
private noCache;
|
|
194
|
+
private customHeaders?;
|
|
190
195
|
/** Инициализирует объект. */
|
|
191
196
|
constructor(options?: RequestOptions);
|
|
192
197
|
/** Режим выполнения запроса. */
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { $SignatureController } from "@docsvision/webclient/Generated/DocsVision.WebClient.Controllers";
|
|
2
|
+
import { EncryptedInfo } from "@docsvision/webclient/Legacy/EncryptedInfo";
|
|
3
|
+
import { IFileSignInfo } from "@docsvision/webclient/Legacy/IFileSingInfo";
|
|
4
|
+
import { $MessageBox } from "@docsvision/webclient/System/$MessageBox";
|
|
5
|
+
import { Optional } from "@docsvision/web/core/services";
|
|
6
|
+
/** @internal */
|
|
7
|
+
export interface ICryptoCertificate {
|
|
8
|
+
/** Идентификатор сертификата (он же отпечаток). */
|
|
9
|
+
Id: string;
|
|
10
|
+
/** Отображаемое имя сертификата (с краткой информацией и сроком действия сертификата). */
|
|
11
|
+
DisplayName: string;
|
|
12
|
+
/** Дата, отражающая срок действия сертификата. */
|
|
13
|
+
ExpirateDate: string;
|
|
14
|
+
/** Кем серификат выпущен. */
|
|
15
|
+
Issue: string;
|
|
16
|
+
/** Название сертификата. */
|
|
17
|
+
Name: string;
|
|
18
|
+
/** Имеется ли приватный ключ. */
|
|
19
|
+
hasPrivateKey: boolean;
|
|
20
|
+
/** Действителен ли сертификат. */
|
|
21
|
+
isValid: boolean;
|
|
22
|
+
/** Действителен начиная с указанной даты. */
|
|
23
|
+
validFromDate: Date;
|
|
24
|
+
/** Срок действия до указанной даты. */
|
|
25
|
+
validToDate: Date;
|
|
26
|
+
/** Алгоритм шифрования */
|
|
27
|
+
cipherAlgorithm: string;
|
|
28
|
+
}
|
|
29
|
+
/** @internal */
|
|
30
|
+
export interface ICryptoCertificateInfo {
|
|
31
|
+
/** Идентификатор сертификата */
|
|
32
|
+
id: string;
|
|
33
|
+
/** Отображаемое имя сертификата. */
|
|
34
|
+
displayName: string;
|
|
35
|
+
/** Содержимое сертификата в фомате Base64 */
|
|
36
|
+
contentBase64?: string;
|
|
37
|
+
}
|
|
38
|
+
/** @internal */
|
|
39
|
+
export declare enum SignatureItemType {
|
|
40
|
+
MainFileSignaturePartType = 0,
|
|
41
|
+
MainFileWithContentSignaturePartType = 1,
|
|
42
|
+
DocumentFieldsSignaturePartType = 2,
|
|
43
|
+
DocumentAttachmentsSignaturePartType = 3
|
|
44
|
+
}
|
|
45
|
+
/** @internal */
|
|
46
|
+
export declare class Crypto {
|
|
47
|
+
static LabelOIDAttribute: string;
|
|
48
|
+
static DocumentNameOIDAttribute: string;
|
|
49
|
+
static DocumentFileOIDAttribute: string;
|
|
50
|
+
static DocumentVersionOIDAttribute: string;
|
|
51
|
+
static EmployeeOIDAttribute: string;
|
|
52
|
+
static ProviderName: string;
|
|
53
|
+
static ProviderType: string;
|
|
54
|
+
static CADESCOM_CERT_INFO_TYPE_SUBJECT_SIMPLE_NAME: number;
|
|
55
|
+
static CADESCOM_CERT_INFO_TYPE_ISSUER_SIMPLE_NAME: number;
|
|
56
|
+
static CADESCOM_CURRENT_USER_STORE: number;
|
|
57
|
+
static CADESCOM_MY_STORE: string;
|
|
58
|
+
static CADESCOM_STORE_OPEN_MAXIMUM_ALLOWED: number;
|
|
59
|
+
static CADESCOM_CERTIFICATE_FIND_SUBJECT_NAME: number;
|
|
60
|
+
static CADESCOM_CERTIFICATE_FIND_SHA1_HASH: number;
|
|
61
|
+
static CADESCOM_BASE64_TO_BINARY: number;
|
|
62
|
+
static CADESCOM_CADES_BES: number;
|
|
63
|
+
static CADESCOM_CADES_T: number;
|
|
64
|
+
static CADESCOM_CADES_X_LONG_TYPE_1: number;
|
|
65
|
+
static CADESCOM_ENCODE_BASE64: number;
|
|
66
|
+
static CADESCOM_ENCODE_BINARY: number;
|
|
67
|
+
static CADESCOM_AUTHENTICATED_ATTRIBUTE_DOCUMENT_NAME: number;
|
|
68
|
+
static CADESCOM_AUTHENTICATED_ATTRIBUTE_DOCUMENT_DESCRIPTION: number;
|
|
69
|
+
static CADESCOM_ATTRIBUTE_OTHER: number;
|
|
70
|
+
private static CertListContainerPrefix;
|
|
71
|
+
private widgetId;
|
|
72
|
+
private widget;
|
|
73
|
+
private certListElement;
|
|
74
|
+
private static asyncCodeIncluded;
|
|
75
|
+
private static asyncPromise;
|
|
76
|
+
private static asyncResolve;
|
|
77
|
+
constructor();
|
|
78
|
+
static include_async_code(): void;
|
|
79
|
+
static GetCertificateByThumbprint(thumbprint: any): Promise<string | undefined>;
|
|
80
|
+
static GetCertificateInfoByThumbprint(thumbprint: any): Promise<ICryptoCertificateInfo>;
|
|
81
|
+
private static GetCertificateByThumbprint_NPAPI;
|
|
82
|
+
static CheckForPlugIn(): any;
|
|
83
|
+
static SignFilesWithCertificate(encryptedInfo: EncryptedInfo, files: NodeListOf<Element>, cardId: string, signFields?: boolean, signAttachments?: boolean, signType?: number, tspService?: string): Promise<any>;
|
|
84
|
+
static SignFilesWithCertificateEx(encryptedInfo: EncryptedInfo, files: IFileSignInfo[], cardId: string, signFields?: boolean, signAttachments?: boolean, signType?: number, tspService?: string): Promise<any>;
|
|
85
|
+
static CanAsync(): boolean;
|
|
86
|
+
static SignData(encryptedInfo: EncryptedInfo, dataToSign: any, signType?: any, tspService?: any): any;
|
|
87
|
+
private static Verify;
|
|
88
|
+
static GetCertsList(): Promise<ICryptoCertificate[]>;
|
|
89
|
+
private static GetCertsList_NPAPI;
|
|
90
|
+
private static CheckForPlugIn_NPAPI;
|
|
91
|
+
private static GetBlobInBase64;
|
|
92
|
+
static VerifySign(signHash: any, fileId: any): Promise<unknown>;
|
|
93
|
+
static GetPluginInfo(): any;
|
|
94
|
+
static SetPluginInfo_NAPI(): void;
|
|
95
|
+
static GetSignatureType(services: $SignatureController & Optional<$MessageBox>, certificate: string): Promise<{
|
|
96
|
+
cadesSignType: number;
|
|
97
|
+
tspAddress: string;
|
|
98
|
+
certificateThumberpint: any;
|
|
99
|
+
}>;
|
|
100
|
+
private static SignData_NPAPI;
|
|
101
|
+
}
|
|
102
|
+
export declare function getBstrBase64(str: string): string;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import React, { DragEvent as ReactDragEvent, DragEventHandler as ReactDragEventHandler } from 'react';
|
|
2
|
+
export declare type TDropEffects = 'copy' | 'move' | 'link' | 'none';
|
|
3
|
+
export interface IFileDropProps {
|
|
4
|
+
className?: string;
|
|
5
|
+
targetClassName?: string;
|
|
6
|
+
draggingOverFrameClassName?: string;
|
|
7
|
+
draggingOverTargetClassName?: string;
|
|
8
|
+
frame?: HTMLElement | Document;
|
|
9
|
+
onFrameDragEnter?: (event: DragEvent) => void;
|
|
10
|
+
onFrameDragLeave?: (event: DragEvent) => void;
|
|
11
|
+
onFrameDrop?: (event: DragEvent) => void;
|
|
12
|
+
onDragOver?: ReactDragEventHandler<HTMLDivElement>;
|
|
13
|
+
onDragLeave?: ReactDragEventHandler<HTMLDivElement>;
|
|
14
|
+
onDrop?: (files: FileList | null, event: ReactDragEvent<HTMLDivElement>) => any;
|
|
15
|
+
dropEffect?: TDropEffects;
|
|
16
|
+
}
|
|
17
|
+
export interface IFileDropState {
|
|
18
|
+
draggingOverFrame: boolean;
|
|
19
|
+
draggingOverTarget: boolean;
|
|
20
|
+
}
|
|
21
|
+
declare class FileDrop extends React.PureComponent<IFileDropProps, IFileDropState> {
|
|
22
|
+
static defaultProps: {
|
|
23
|
+
dropEffect: TDropEffects;
|
|
24
|
+
frame: Document;
|
|
25
|
+
className: string;
|
|
26
|
+
targetClassName: string;
|
|
27
|
+
draggingOverFrameClassName: string;
|
|
28
|
+
draggingOverTargetClassName: string;
|
|
29
|
+
};
|
|
30
|
+
frameDragCounter: number;
|
|
31
|
+
constructor(props: IFileDropProps);
|
|
32
|
+
static isIE: () => boolean;
|
|
33
|
+
static eventHasFiles: (event: DragEvent | ReactDragEvent<HTMLElement>) => boolean;
|
|
34
|
+
resetDragging: () => void;
|
|
35
|
+
handleWindowDragOverOrDrop: (event: DragEvent) => void;
|
|
36
|
+
handleFrameDrag: (event: DragEvent) => void;
|
|
37
|
+
handleFrameDrop: (event: DragEvent) => void;
|
|
38
|
+
handleDragOver: ReactDragEventHandler<HTMLDivElement>;
|
|
39
|
+
handleDragLeave: ReactDragEventHandler<HTMLDivElement>;
|
|
40
|
+
handleDrop: ReactDragEventHandler<HTMLDivElement>;
|
|
41
|
+
handleMouseOver: (event: any) => void;
|
|
42
|
+
stopFrameListeners: (frame: IFileDropProps['frame']) => void;
|
|
43
|
+
startFrameListeners: (frame: IFileDropProps['frame']) => void;
|
|
44
|
+
componentWillReceiveProps(nextProps: IFileDropProps): void;
|
|
45
|
+
componentDidMount(): void;
|
|
46
|
+
componentWillUnmount(): void;
|
|
47
|
+
render(): JSX.Element;
|
|
48
|
+
}
|
|
49
|
+
export default FileDrop;
|
package/MainBundle.d.ts
CHANGED
|
@@ -20,3 +20,4 @@ import "@docsvision/webclient/BackOffice/DirectoryTree";
|
|
|
20
20
|
import "@docsvision/webclient/BackOffice/DirectorySearchResult";
|
|
21
21
|
import "@docsvision/webclient/System/ControlTemplate";
|
|
22
22
|
import "@docsvision/webclient/System/ServiceTemplateService";
|
|
23
|
+
import "@docsvision/webclient/Helpers/TextInput";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
2
|
+
/** Cервис передачи последних поисковых параметров. */
|
|
3
|
+
export interface ILastSearchParametersService {
|
|
4
|
+
getSearchParameters: (folderId: string) => GenModels.SearchParameter[];
|
|
5
|
+
setSearchParameters: (folderId: string, value: GenModels.SearchParameter[]) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare type $LastSearchParameters = {
|
|
8
|
+
lastSearchParameters: ILastSearchParametersService;
|
|
9
|
+
};
|
|
10
|
+
export declare const $LastSearchParameters: string | ((model?: $LastSearchParameters) => ILastSearchParametersService);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
2
|
+
/** Cервис обновления счетчиков непрочитанных карточек. */
|
|
3
|
+
export interface IRefreshUnreadCountersService {
|
|
4
|
+
/** Запрашивает внеоочередной пересчет счетчиков. */
|
|
5
|
+
requestUnreadCounterRecalculation(request: GenModels.RefreshUnreadCounterRequest): void;
|
|
6
|
+
}
|
|
7
|
+
export declare type $RefreshUnreadCounters = {
|
|
8
|
+
refreshUnreadCounters: IRefreshUnreadCountersService;
|
|
9
|
+
};
|
|
10
|
+
export declare const $RefreshUnreadCounters: string | ((model?: $RefreshUnreadCounters) => IRefreshUnreadCountersService);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
2
|
+
import { Store } from 'effector';
|
|
3
|
+
/** Сервис для предоставления информация о поисковых параметрах папке. */
|
|
4
|
+
export interface ISearchParametersFolderService {
|
|
5
|
+
readonly $parameters: Store<GenModels.SearchParameter[]>;
|
|
6
|
+
readonly $requestCanceled: Store<boolean>;
|
|
7
|
+
setParameters(parameters: GenModels.SearchParameter[]): void;
|
|
8
|
+
setRequestCanceled(param: boolean): void;
|
|
9
|
+
}
|
|
10
|
+
export declare type $SearchParametersFolder = {
|
|
11
|
+
searchParametersFolder: ISearchParametersFolderService;
|
|
12
|
+
};
|
|
13
|
+
export declare const $SearchParametersFolder: string | ((model?: $SearchParametersFolder) => ISearchParametersFolderService);
|
|
@@ -8,6 +8,8 @@ export interface IUnreadCounter {
|
|
|
8
8
|
incrementLocalCount(folderId: string, timestamp?: number, shouldNotify?: boolean): void;
|
|
9
9
|
decrementLocalCount(folderId: string, timestamp?: number, shouldNotify?: boolean): void;
|
|
10
10
|
getUnreadCardsCount(folderId: string): number | undefined;
|
|
11
|
+
/** Sends visible folders to server. */
|
|
12
|
+
refreshServerState(): void;
|
|
11
13
|
unreadCardCounters: IUnreadCountersData;
|
|
12
14
|
readonly unreadCardCountersChanged: IBasicEvent<IUnreadCountersData>;
|
|
13
15
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export interface IUnreadCountersHealthMonitor {
|
|
2
|
+
}
|
|
3
|
+
export declare type $UnreadCountersHealthMonitor = {
|
|
4
|
+
unreadCounterHealthMonitor: IUnreadCountersHealthMonitor;
|
|
5
|
+
};
|
|
6
|
+
export declare const $UnreadCountersHealthMonitor: string | ((model?: $UnreadCountersHealthMonitor) => IUnreadCountersHealthMonitor);
|
package/Platform/CardLink.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { IValidationResult } from "@docsvision/webclient/System/IValidationResul
|
|
|
13
13
|
import { Optional } from "@docsvision/web/core/services";
|
|
14
14
|
import { $LabelWidth } from '@docsvision/webclient/System/$LabelWidth';
|
|
15
15
|
import { $LayoutManager } from '@docsvision/webclient/System/$LayoutManager';
|
|
16
|
+
import { $LinksSearchCards } from '@docsvision/webclient/BackOffice/$LinksSearchCardsService';
|
|
16
17
|
import { $Layout } from '@docsvision/webclient/System/$Layout';
|
|
17
18
|
import { $FilePreviewServices } from '@docsvision/webclient/Platform/FilePreview';
|
|
18
19
|
/**
|
|
@@ -64,7 +65,7 @@ export declare class CardLinkParams extends BaseControlParams {
|
|
|
64
65
|
linkFilePreviewed?: BasicApiEvent<IEventArgs>;
|
|
65
66
|
/** Событие, возникающее перед открытием связанной карточки. */
|
|
66
67
|
linkCardOpening?: CancelableApiEvent<IEventArgs>;
|
|
67
|
-
services?: $FileController & $LayoutFileController & $LayoutLinksController & $LayoutController & Optional<$CardId> & $EditOperationStore & $CardId & Optional<$LabelWidth> & $LayoutManager & $Layout & $FilePreviewServices & $CardOperationsController
|
|
68
|
+
services?: $FileController & $LayoutFileController & $LayoutLinksController & $LayoutController & Optional<$CardId> & $EditOperationStore & $CardId & Optional<$LabelWidth> & $LayoutManager & $Layout & $FilePreviewServices & $CardOperationsController & Optional<$LinksSearchCards>;
|
|
68
69
|
}
|
|
69
70
|
/**
|
|
70
71
|
* Представляет элемент управления для редактирования связанной карточки.
|
|
@@ -108,6 +108,7 @@ import("./Components/FilePickerMenuItemsView").IFilePickerMenuItemProps) => JSX.
|
|
|
108
108
|
renderMenu(): JSX.Element;
|
|
109
109
|
renderEmptyModeContent(): JSX.Element;
|
|
110
110
|
renderEmptyMode(): JSX.Element;
|
|
111
|
+
showDeleteButton: () => boolean;
|
|
111
112
|
renderValueContent(): JSX.Element;
|
|
112
113
|
renderValueContentWithPlaceholder(): JSX.Element;
|
|
113
114
|
renderValueContentLabeled(labelText: any): JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { $FolderDataLoading } from "@docsvision/webclient/Platform/$FolderDataLoading";
|
|
2
2
|
import { $FolderInfo } from "@docsvision/webclient/Platform/$FolderInfo";
|
|
3
|
+
import { $SearchParametersFolder } from "@docsvision/webclient/Platform/$SearchParametersFolder";
|
|
3
4
|
import { TablePlugins } from "@docsvision/web/components/table/interfaces";
|
|
4
5
|
import { $CheckboxService } from "@docsvision/web/components/table/plugins/checkbox";
|
|
5
6
|
import { $Grouping } from "@docsvision/web/components/table/plugins/grouping";
|
|
@@ -7,4 +8,4 @@ import { $TableData } from "@docsvision/web/components/table/plugins/table-data"
|
|
|
7
8
|
import { Optional } from "@docsvision/web/core/services";
|
|
8
9
|
import "./FolderSizePlugin.css";
|
|
9
10
|
export declare const FolderSizeToolbarLabelFeature = "FolderSizeToolbarLabelFeature";
|
|
10
|
-
export declare const FolderSizePlugin: TablePlugins.Toolbar.Component<$FolderDataLoading & Optional<$CheckboxService> & $Grouping & $TableData & $FolderInfo>;
|
|
11
|
+
export declare const FolderSizePlugin: TablePlugins.Toolbar.Component<$FolderDataLoading & Optional<$CheckboxService> & $Grouping & $TableData & $FolderInfo & $SearchParametersFolder>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { $GridController } from '@docsvision/webclient/Generated/DocsVision.WebClient.Controllers';
|
|
2
|
+
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
3
|
+
import { ILastSearchParametersService } from '@docsvision/webclient/Platform/$LastSearchParameters';
|
|
4
|
+
/** @internal Реализация {@link ILastSearchParametersService}. */
|
|
5
|
+
export declare class LastSearchParametersService implements ILastSearchParametersService {
|
|
6
|
+
private services;
|
|
7
|
+
_lastParameters: {
|
|
8
|
+
[folderId: string]: GenModels.SearchParameter[];
|
|
9
|
+
};
|
|
10
|
+
constructor(services: $GridController);
|
|
11
|
+
getSearchParameters: (folderId: string) => GenModels.SearchParameter[];
|
|
12
|
+
setSearchParameters: (folderId: string, value: GenModels.SearchParameter[]) => void;
|
|
13
|
+
}
|
package/Platform/Number.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export declare class NumberParams extends InputBasedControlParams<number> {
|
|
|
12
12
|
standardCssClass?: string;
|
|
13
13
|
/** Количество символов в дробной части. Если значение = NumberImpl.INFINITY_FRACTION_DIGITS, то можно писать сколько угодно чисел после запятой. */
|
|
14
14
|
fractionDigits?: number;
|
|
15
|
+
/** Использовать разделитель групп разрядов */
|
|
16
|
+
digitSeparators?: boolean;
|
|
15
17
|
/** Флаг, показывающий, может ли число быть отрицательным */
|
|
16
18
|
negativeFlag?: boolean;
|
|
17
19
|
/** Максимально допустимое число вводимых символов */
|
package/Platform/NumberImpl.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import React from "react";
|
|
|
8
8
|
/** @internal */
|
|
9
9
|
export interface NumberState extends NumberParams, InputBasedControlState<number> {
|
|
10
10
|
binding: IBindingResult<number>;
|
|
11
|
+
isBlur: boolean;
|
|
11
12
|
}
|
|
12
13
|
/** @internal */
|
|
13
14
|
export declare type NumberImplState = NumberState;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { $GridController } from "@docsvision/webclient/Generated/DocsVision.WebClient.Controllers";
|
|
2
|
+
import { $SearchParametersFolder } from "@docsvision/webclient/Platform/$SearchParametersFolder";
|
|
2
3
|
import { $UnreadCounter } from "@docsvision/webclient/Platform/$UnreadCounter";
|
|
3
4
|
import { $DeviceType } from "@docsvision/webclient/StandardServices";
|
|
4
5
|
import { $RequestManager } from "@docsvision/webclient/System/$RequestManager";
|
|
@@ -8,4 +9,4 @@ import { $TableData } from "@docsvision/web/components/table/plugins/table-data"
|
|
|
8
9
|
import { $TableUpdate } from "@docsvision/web/components/table/plugins/table-update/$TableUpdate";
|
|
9
10
|
export declare const ReadAllToolbarButtonFeature = "ReadAllToolbarButtonFeature";
|
|
10
11
|
export declare const orderReadAllPlugin = 40;
|
|
11
|
-
export declare const ReadAllPlugin: TablePlugins.Toolbar.Component<$GridController & $TableData & $TableUpdate & $UnreadCounter & $DeviceType & $RequestManager & $UrlStore>;
|
|
12
|
+
export declare const ReadAllPlugin: TablePlugins.Toolbar.Component<$GridController & $TableData & $TableUpdate & $UnreadCounter & $DeviceType & $RequestManager & $UrlStore & $SearchParametersFolder>;
|
|
@@ -10,6 +10,9 @@ import { $TableMode } from '@docsvision/webclient/Platform/$TableMode';
|
|
|
10
10
|
import { $TableRowSelection } from '@docsvision/webclient/Platform/$TableRowSelection';
|
|
11
11
|
import { BaseControl, BaseControlParams } from '@docsvision/webclient/System/BaseControl';
|
|
12
12
|
import { Router } from '@docsvision/webclient/System/Router';
|
|
13
|
+
import { $RefreshUnreadCounters } from '@docsvision/webclient/Platform/$RefreshUnreadCounters';
|
|
14
|
+
import { $CurrentFolder } from '@docsvision/webclient/Platform/$CurrentFolder';
|
|
15
|
+
import { $FolderDataLoading } from '@docsvision/webclient/Platform/$FolderDataLoading';
|
|
13
16
|
/**
|
|
14
17
|
* Содержит публичные свойства элемента управления [ControlTypes_ReadBatchOperation]{@link ControlTypes_ReadBatchOperation}.
|
|
15
18
|
*/
|
|
@@ -18,7 +21,7 @@ export declare class ReadBatchOperationParams extends BaseControlParams {
|
|
|
18
21
|
standardCssClass?: string;
|
|
19
22
|
/** Текст кнопки операции. */
|
|
20
23
|
buttonText?: string;
|
|
21
|
-
services?: $TableRowSelection & $BatchOperationsPerformer & $TableManagement & $TableMode & $BatchOperations & $LayoutTasksController & $EmployeeServices & $TextAreaServices & $CheckBoxServices & Router & $BaseCardController;
|
|
24
|
+
services?: $TableRowSelection & $BatchOperationsPerformer & $TableManagement & $TableMode & $BatchOperations & $LayoutTasksController & $EmployeeServices & $TextAreaServices & $CheckBoxServices & Router & $BaseCardController & $RefreshUnreadCounters & $CurrentFolder & $FolderDataLoading;
|
|
22
25
|
}
|
|
23
26
|
/**
|
|
24
27
|
* Класс элемента управления ReadBatchOperation.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { $GridController } from '@docsvision/webclient/Generated/DocsVision.WebClient.Controllers';
|
|
2
|
+
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
3
|
+
import { Debouncer } from '@docsvision/webclient/Helpers/Debouncer';
|
|
4
|
+
import { IRefreshUnreadCountersService } from '@docsvision/webclient/Platform/$RefreshUnreadCounters';
|
|
5
|
+
/** @internal Реализация {@link IRefreshUnreadCountersService}. */
|
|
6
|
+
export declare class RefreshUnreadCountersService implements IRefreshUnreadCountersService {
|
|
7
|
+
private services;
|
|
8
|
+
folderDebouncersMap: {
|
|
9
|
+
[folderId: string]: Debouncer;
|
|
10
|
+
};
|
|
11
|
+
constructor(services: $GridController);
|
|
12
|
+
requestUnreadCounterRecalculation(request: GenModels.RefreshUnreadCounterRequest): void;
|
|
13
|
+
}
|
|
@@ -3,9 +3,10 @@ import { PluginOrder } from '@docsvision/webclient/System/PluginOrder';
|
|
|
3
3
|
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
4
4
|
import { IFolderLoadRequest } from '@docsvision/webclient/Platform/IFolderLoadRequest';
|
|
5
5
|
import { ITableData } from '@docsvision/web/components/table/interfaces';
|
|
6
|
+
import { $SearchParametersFolder } from '@docsvision/webclient/Platform/$SearchParametersFolder';
|
|
6
7
|
export declare class SearchParametersFolderRequestResolver implements IFolderDataLoadingPlugin {
|
|
7
8
|
id: string;
|
|
8
9
|
description: string;
|
|
9
10
|
order: PluginOrder;
|
|
10
|
-
resolveRequest(options: IFolderLoadRequest, request: GenModels.CardListRequestModel, currentData: ITableData, previousResponse?: GenModels.GridViewModel): Promise<void>;
|
|
11
|
+
resolveRequest(options: IFolderLoadRequest, request: GenModels.CardListRequestModel, currentData: ITableData, previousResponse?: GenModels.GridViewModel, services?: $SearchParametersFolder): Promise<void>;
|
|
11
12
|
}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
2
|
+
import { $SearchParametersFolder } from '@docsvision/webclient/Platform/$SearchParametersFolder';
|
|
2
3
|
import { IFolderDataLoadingPlugin, ResponseResolveResult } from '@docsvision/webclient/Platform/IFolderDataLoadingPlugin';
|
|
3
4
|
import { PluginOrder } from '@docsvision/webclient/System/PluginOrder';
|
|
4
5
|
import { ITableData } from '@docsvision/web/components/table/interfaces';
|
|
6
|
+
import { $LastSearchParameters } from '@docsvision/webclient/Platform/$LastSearchParameters';
|
|
7
|
+
import { $CurrentFolder } from '@docsvision/webclient/Platform/$CurrentFolder';
|
|
8
|
+
import { $Router } from '@docsvision/webclient/System/$Router';
|
|
5
9
|
export declare class SearchParametersFolderResponseResolver implements IFolderDataLoadingPlugin {
|
|
6
10
|
id: "SearchParametersFolderResponseResolver";
|
|
7
11
|
description?: "Показывает модальное окно с поисковыми параметрами";
|
|
8
12
|
order: PluginOrder.System;
|
|
9
13
|
private layoutSearchParametersDialog;
|
|
10
|
-
resolveResponse?(data: ITableData, response?: GenModels.GridViewModelEx): Promise<void | ResponseResolveResult>;
|
|
14
|
+
resolveResponse?(data: ITableData, response?: GenModels.GridViewModelEx, services?: $SearchParametersFolder & $LastSearchParameters & $CurrentFolder & $Router): Promise<void | ResponseResolveResult>;
|
|
11
15
|
private loadSearchParametres;
|
|
12
16
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
|
+
import { ISearchParametersFolderService } from "@docsvision/webclient/Platform/$SearchParametersFolder";
|
|
3
|
+
import { $Domain } from "@docsvision/web/core/state-management";
|
|
4
|
+
import { Event, Store } from "effector";
|
|
5
|
+
export declare class SearchParametersFolderService implements ISearchParametersFolderService {
|
|
6
|
+
private services;
|
|
7
|
+
$parameters: Store<GenModels.SearchParameter[]>;
|
|
8
|
+
setParameters: Event<GenModels.SearchParameter[]>;
|
|
9
|
+
$requestCanceled: Store<boolean>;
|
|
10
|
+
setRequestCanceled: Event<boolean>;
|
|
11
|
+
constructor(services: $Domain);
|
|
12
|
+
}
|
|
@@ -5,11 +5,13 @@ import { $UnreadCounter } from '@docsvision/webclient/Platform/$UnreadCounter';
|
|
|
5
5
|
import { IRowData } from '@docsvision/web/components/table/interfaces';
|
|
6
6
|
import { $Domain } from '@docsvision/web/core/state-management';
|
|
7
7
|
import { Event } from 'effector';
|
|
8
|
+
import { $RefreshUnreadCounters } from '@docsvision/webclient/Platform/$RefreshUnreadCounters';
|
|
9
|
+
import { $CurrentFolder } from '@docsvision/webclient/Platform/$CurrentFolder';
|
|
8
10
|
/** Сервис для корректного инициирования скачивания файла из скриптов. */
|
|
9
11
|
export declare class UnreadBarService implements IUnreadBarService {
|
|
10
12
|
private services;
|
|
11
13
|
performOnce: PerformOnce;
|
|
12
14
|
rowToggled: Event<IRowData>;
|
|
13
|
-
constructor(services: $CardController & $UnreadCounter & $Domain);
|
|
15
|
+
constructor(services: $CardController & $UnreadCounter & $Domain & $RefreshUnreadCounters & $CurrentFolder);
|
|
14
16
|
toggleUnread(rowData: IRowData): Promise<any>;
|
|
15
17
|
}
|
|
@@ -4,9 +4,11 @@ import { $CardController } from '@docsvision/webclient/Generated/DocsVision.WebC
|
|
|
4
4
|
import { $UnreadCounter } from '@docsvision/webclient/Platform/$UnreadCounter';
|
|
5
5
|
import { TablePlugins, ITablePlugins } from '@docsvision/web/components/table/interfaces';
|
|
6
6
|
import { $Domain } from '@docsvision/web/core/state-management';
|
|
7
|
+
import { $RefreshUnreadCounters } from '@docsvision/webclient/Platform/$RefreshUnreadCounters';
|
|
8
|
+
import { $CurrentFolder } from '@docsvision/webclient/Platform/$CurrentFolder';
|
|
7
9
|
export declare const UnreadBarFeature = "UnreadBarFeature";
|
|
8
10
|
export declare const UnreadBarTableCellPlugin: TablePlugins.Cell.Component<$UnreadBar>;
|
|
9
|
-
export declare const UnreadBarServiceProvider: TablePlugins.ServiceProvider<$UnreadBar & $CardController & $UnreadCounter & $Domain>;
|
|
11
|
+
export declare const UnreadBarServiceProvider: TablePlugins.ServiceProvider<$UnreadBar & $CardController & $UnreadCounter & $Domain & $RefreshUnreadCounters & $CurrentFolder>;
|
|
10
12
|
export declare const UnreadBarTableRowMountEffect: TablePlugins.Row.MountEffect<$ApplicationSettings & $UnreadBar>;
|
|
11
13
|
export declare const UnreadBarTableRowDecorator: TablePlugins.Row.Decorator<$ApplicationSettings & $UnreadBar>;
|
|
12
14
|
export declare const UnreadBarTableHeaderCellPlugin: TablePlugins.HeaderCell.Component<$ApplicationSettings>;
|
|
@@ -51,6 +51,7 @@ export declare class UnreadCounter implements IUnreadCounter {
|
|
|
51
51
|
protected onSessionAwoken: () => void;
|
|
52
52
|
protected onSessionCreated: () => void;
|
|
53
53
|
protected onApplicationActivityRestored(): void;
|
|
54
|
+
refreshServerState(): void;
|
|
54
55
|
protected sendFoldersToService(preventAwakeOrCreateSession?: boolean): void;
|
|
55
56
|
protected sendFoldersToServer: (message: IRealTimeCommunicationMessage<any>, hub: IRealtimeCommunicationHub) => Promise<void>;
|
|
56
57
|
protected processResponse: (response: IRealTimeCommunicationMessage<UnreadCountersResponse>) => void;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
|
+
import { $UnreadCounter } from "@docsvision/webclient/Platform/$UnreadCounter";
|
|
3
|
+
import { IUnreadCountersHealthMonitor } from "@docsvision/webclient/Platform/$UnreadCountersHealthMonitor";
|
|
4
|
+
import { $ApplicationSettings } from "@docsvision/webclient/StandardServices";
|
|
5
|
+
import { $RealtimeCommunicationService } from "@docsvision/webclient/System/$RealtimeCommunicationService";
|
|
6
|
+
import { IRealTimeCommunicationMessage } from "@docsvision/webclient/System/IRealTimeCommunicationMessage";
|
|
7
|
+
/** @internal */
|
|
8
|
+
export declare class UnreadCountersHealthMonitorService implements IUnreadCountersHealthMonitor {
|
|
9
|
+
private services;
|
|
10
|
+
static realtimeMessageType: string;
|
|
11
|
+
constructor(services: $RealtimeCommunicationService & $UnreadCounter & $ApplicationSettings);
|
|
12
|
+
protected onCountersHealthNotification: (message: IRealTimeCommunicationMessage<SystemStateNotification>) => void;
|
|
13
|
+
}
|
|
14
|
+
interface SystemStateNotification {
|
|
15
|
+
/**
|
|
16
|
+
* Notification source
|
|
17
|
+
*/
|
|
18
|
+
Source: GenModels.SystemStateNotificationSource;
|
|
19
|
+
/**
|
|
20
|
+
* Severity
|
|
21
|
+
*/
|
|
22
|
+
Severity: GenModels.SystemStateNotificationSeverity;
|
|
23
|
+
/**
|
|
24
|
+
* Short description
|
|
25
|
+
*/
|
|
26
|
+
Caption: string;
|
|
27
|
+
/**
|
|
28
|
+
* Detailed description
|
|
29
|
+
*/
|
|
30
|
+
Details: string;
|
|
31
|
+
}
|
|
32
|
+
export {};
|
package/StandardServices.d.ts
CHANGED
|
@@ -48,6 +48,9 @@ import { $WebFrameDirectorySearchInfoStorageService } from "@docsvision/webclien
|
|
|
48
48
|
import { $DialogManagement } from "@docsvision/webclient/Helpers/ModalDialog/$DialogManagement";
|
|
49
49
|
import { $WebFrameSearchPanel } from "@docsvision/webclient/Platform/$WebFrameSearchPanel";
|
|
50
50
|
import { $LastSearchResponse } from "@docsvision/webclient/System/$LastSearchResponse";
|
|
51
|
+
import { $RefreshUnreadCounters } from "@docsvision/webclient/Platform/$RefreshUnreadCounters";
|
|
52
|
+
import { $CurrentFolder } from "@docsvision/webclient/Platform/$CurrentFolder";
|
|
53
|
+
import { $LastSearchParameters } from "@docsvision/webclient/Platform/$LastSearchParameters";
|
|
51
54
|
/** Сервис доступа к идентификатору текущего пользователя. */
|
|
52
55
|
export declare type $CurrentEmployeeId = {
|
|
53
56
|
currentEmployeeId: string;
|
|
@@ -137,4 +140,4 @@ export declare type $ApplicationSettings = {
|
|
|
137
140
|
};
|
|
138
141
|
export declare const $ApplicationSettings: string | ((model?: $ApplicationSettings) => GenModels.ApplicationSettings);
|
|
139
142
|
/** Стандартные сервисы Web-клиента. */
|
|
140
|
-
export declare type $StandardServices = $Layout & $Router & $CurrentEmployeeId & $CurrentEmployeeAccountName & $DeviceType & $SiteUrl & $Locale & $FullTextSearchEnabled & $RequestManager & $Sidebar & $FolderViews & $SearchPanel & $NavBar & $Folders & $UnreadCounter & $InstalledCSP & $ApplicationTimestamp & $LayoutManager & $RealtimeCommunicationService & $UserMenu & $LayoutControlFactory & $EditOperationStore & $LayoutInfo & $CardInfo & $RowInfo & $CardId & $RowId & $CardTimestamp & $ControlStore & $LocalStorage & $BaseName & $RouteTimestamp & $EnableRouterLogging & $IsMobileSafari & $LogEnabled & $IsIE & $IsSafari & $LastSearchRequest & $UrlStore & $UrlResolver & $CurrentEmployee & $RouterNavigation & $OwnerLayout & $ApplicationSettings & $ExtensionManager & $WebServices & $BatchOperationsProgressDialog & $BatchOperationsPerformer & $InsideMainMenu & $Timeout & $WebFrameContext & $ExtendedDataSourceInfos & $FilePickerUpload & $MessageBox & $WindowLocation & $FileDownload & $ExperimentalFeature & $UnreadCounterNotification & $EmployeeStatus & $CacheManagement & $FileScan & $LayoutCheck & $ScanDialog & $FileService & $CompanyLogo & $ContentElementProvider & $RootCssClass & $FilePreview & $WebViewIOSEnabled & $FileUpload & Partial<$WebFrameDirectorySearchPanelService> & $Domain & $Resources & $MessageWindow & $DialogManagement & $WebFrameDirectorySearchInfoStorageService & $WebFrameSearchPanel & $LastSearchResponse;
|
|
143
|
+
export declare type $StandardServices = $Layout & $Router & $CurrentEmployeeId & $CurrentEmployeeAccountName & $DeviceType & $SiteUrl & $Locale & $FullTextSearchEnabled & $RequestManager & $Sidebar & $FolderViews & $SearchPanel & $NavBar & $Folders & $UnreadCounter & $InstalledCSP & $ApplicationTimestamp & $LayoutManager & $RealtimeCommunicationService & $UserMenu & $LayoutControlFactory & $EditOperationStore & $LayoutInfo & $CardInfo & $RowInfo & $CardId & $RowId & $CardTimestamp & $ControlStore & $LocalStorage & $BaseName & $RouteTimestamp & $EnableRouterLogging & $IsMobileSafari & $LogEnabled & $IsIE & $IsSafari & $LastSearchRequest & $UrlStore & $UrlResolver & $CurrentEmployee & $RouterNavigation & $OwnerLayout & $ApplicationSettings & $ExtensionManager & $WebServices & $BatchOperationsProgressDialog & $BatchOperationsPerformer & $InsideMainMenu & $Timeout & $WebFrameContext & $ExtendedDataSourceInfos & $FilePickerUpload & $MessageBox & $WindowLocation & $FileDownload & $ExperimentalFeature & $UnreadCounterNotification & $EmployeeStatus & $CacheManagement & $FileScan & $LayoutCheck & $ScanDialog & $FileService & $CompanyLogo & $ContentElementProvider & $RootCssClass & $FilePreview & $WebViewIOSEnabled & $FileUpload & Partial<$WebFrameDirectorySearchPanelService> & $Domain & $Resources & $MessageWindow & $DialogManagement & $WebFrameDirectorySearchInfoStorageService & $WebFrameSearchPanel & $LastSearchResponse & $RefreshUnreadCounters & $LastSearchParameters & $CurrentFolder;
|