@docsvision/webclient 6.1.2 → 6.2.0-beta.2
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/$DigitalSignature.d.ts +2 -0
- package/BackOffice/AddressImpl.d.ts +1 -0
- package/BackOffice/CardKindTreeNode.d.ts +1 -1
- package/BackOffice/ChildTasksPerformingImpl.d.ts +2 -2
- package/BackOffice/CreateWindow.d.ts +2 -2
- package/BackOffice/DepartmentFilterViewComponents.d.ts +1 -1
- package/BackOffice/DepartmentImpl.d.ts +2 -0
- package/BackOffice/DepartmentSelectDialogFlat.d.ts +3 -3
- package/BackOffice/DirectoryDesRowSelectDialog.d.ts +1 -1
- package/BackOffice/DirectoryDesignerRow.d.ts +5 -5
- package/BackOffice/DirectoryDesignerRowImpl.d.ts +4 -3
- package/BackOffice/DirectorySearchContent.d.ts +1 -1
- package/BackOffice/DirectorySearchResultLogic.d.ts +4 -4
- package/BackOffice/DirectorySearchResultView.d.ts +1 -1
- package/BackOffice/EmailButtonView.d.ts +1 -1
- package/BackOffice/FileListControlLogic.d.ts +1 -1
- package/BackOffice/LoadEmployeeLayoutFunctions.d.ts +3 -3
- package/BackOffice/MultipleEmployeesImpl.d.ts +2 -0
- package/BackOffice/PartnerBase.d.ts +5 -5
- package/BackOffice/PartnerBaseImpl.d.ts +1 -0
- package/BackOffice/PartnerDirectoryBase.d.ts +5 -5
- package/BackOffice/PartnerSelectDialog.d.ts +6 -5
- package/BackOffice/PartnerTypeaheadVariant.d.ts +3 -3
- package/BackOffice/Powers.d.ts +1 -1
- package/BackOffice/PowersImpl.d.ts +2 -2
- package/BackOffice/SetEmployeeCertificate.d.ts +1 -0
- package/BackOffice/StaffDirectoryInfoPopover.d.ts +2 -0
- package/BackOffice/StaffDirectoryItems.d.ts +1 -1
- package/BackOffice/StaffDirectoryItemsImpl.d.ts +6 -4
- package/BackOffice/TasksTableView.d.ts +1 -1
- package/BackOffice/UserProfile.d.ts +16 -0
- package/Generated/DocsVision.WebClient.Controllers.d.ts +40 -0
- package/Generated/DocsVision.WebClient.Models.d.ts +71 -72
- package/Helpers/Button.d.ts +1 -0
- package/Helpers/DVWebToolConnection/DVWebToolConnection.d.ts +1 -0
- package/Helpers/InputMask/InputMaskView.d.ts +1 -1
- package/Helpers/InputMask/components/InputMaskField.d.ts +1 -1
- package/Helpers/ModalDialog/ModalDialog.d.ts +2 -0
- package/Helpers/ModalSidebar/ModalSidebar.d.ts +16 -10
- package/Helpers/Sortable/Sortable.d.ts +1 -1
- package/Legacy/BasicGridHtmlBuilder.d.ts +1 -1
- package/Legacy/RightSidebar.d.ts +1 -0
- package/Libs/CryptoPro/Crypto.d.ts +3 -0
- package/Platform/AggregatesTree.d.ts +1 -1
- package/Platform/AggregatesTreeLoader.d.ts +1 -1
- package/Platform/ApprovalVisualizationView.d.ts +1 -1
- package/Platform/ApprovalVisualizationVisBlock.d.ts +1 -1
- package/Platform/BaseMainMenuItemImpl.d.ts +2 -2
- package/Platform/CardLink.d.ts +8 -6
- package/Platform/DateTimePickerImpl.d.ts +1 -1
- package/Platform/DropdownImpl.d.ts +7 -0
- package/Platform/ExportESignButton.d.ts +2 -0
- package/Platform/FileDropzone.d.ts +1 -0
- package/Platform/FilePickerImpl.d.ts +1 -0
- package/Platform/FilePreviewImpl.d.ts +1 -0
- package/Platform/FolderCardsDashboardWidget.d.ts +5 -0
- package/Platform/FolderDashboardWidgetImpl.d.ts +0 -1
- package/Platform/FolderDataLoadingService.d.ts +1 -1
- package/Platform/FolderGroupDashboardWidgetImpl.d.ts +0 -1
- package/Platform/FolderViewItemsImpl.d.ts +3 -3
- package/Platform/ImageImpl.d.ts +2 -0
- package/Platform/ListCheckbox.d.ts +1 -1
- package/Platform/ListInput.d.ts +1 -1
- package/Platform/RadioGroupImpl.d.ts +4 -0
- package/Platform/SearchTextInput.d.ts +1 -1
- package/Platform/TextListInputView.d.ts +3 -3
- package/System/DateFormats.d.ts +3 -1
- package/System/DirectorySelectDialog.d.ts +2 -2
- package/System/InputBasedControlImpl.d.ts +0 -1
- package/System/LayoutCardControllerStub.d.ts +1 -0
- package/System/LayoutManager.d.ts +1 -1
- package/System/LayoutRowControllerStub.d.ts +1 -0
- package/System/LocationContainerControl.d.ts +1 -0
- package/System/Summernote.d.ts +6 -0
- package/package.json +1 -1
|
@@ -640,6 +640,29 @@ export declare type $FavoritesController = {
|
|
|
640
640
|
favoritesController: GenControllers.IFavoritesController;
|
|
641
641
|
};
|
|
642
642
|
export declare const $FavoritesController: string | ((model?: $FavoritesController) => GenControllers.IFavoritesController);
|
|
643
|
+
export declare namespace GenControllers {
|
|
644
|
+
/**
|
|
645
|
+
* Defines controller for accessing files via disposable tokens.
|
|
646
|
+
*/
|
|
647
|
+
interface IFileAccessController {
|
|
648
|
+
/**
|
|
649
|
+
* Gets access token for file.
|
|
650
|
+
*/
|
|
651
|
+
getAccessToken(fileId: string, options?: RequestOptions): Promise<any>;
|
|
652
|
+
/**
|
|
653
|
+
* Retrieving file with AllowAnonymous support.
|
|
654
|
+
*/
|
|
655
|
+
getFile(accessToken: string, options?: RequestOptions): Promise<any>;
|
|
656
|
+
}
|
|
657
|
+
class FileAccessController extends ControllerBase implements IFileAccessController {
|
|
658
|
+
getAccessToken(fileId: string, options?: RequestOptions): Promise<any>;
|
|
659
|
+
getFile(accessToken: string, options?: RequestOptions): Promise<any>;
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
export declare type $FileAccessController = {
|
|
663
|
+
fileAccessController: GenControllers.IFileAccessController;
|
|
664
|
+
};
|
|
665
|
+
export declare const $FileAccessController: string | ((model?: $FileAccessController) => GenControllers.IFileAccessController);
|
|
643
666
|
export declare namespace GenControllers {
|
|
644
667
|
/**
|
|
645
668
|
* Defines FilePreviewController
|
|
@@ -2046,6 +2069,10 @@ export declare namespace GenControllers {
|
|
|
2046
2069
|
* HTTP: /LayoutCard/Delete
|
|
2047
2070
|
*/
|
|
2048
2071
|
delete(deleteCardRequestModel: GenModels.DeleteCardRequestModel, options?: RequestOptions): Promise<string>;
|
|
2072
|
+
/**
|
|
2073
|
+
* HTTP: /LayoutCard/CancelCreation
|
|
2074
|
+
*/
|
|
2075
|
+
cancelCreation(cardId: string, parentCardId: string, options?: RequestOptions): Promise<string>;
|
|
2049
2076
|
/**
|
|
2050
2077
|
* Gets layout part
|
|
2051
2078
|
*/
|
|
@@ -2096,6 +2123,7 @@ export declare namespace GenControllers {
|
|
|
2096
2123
|
edit(cardId: string, layoutMode: string, refresh?: boolean, options?: RequestOptions): Promise<GenModels.LayoutCardViewModel>;
|
|
2097
2124
|
editEx(request: GenModels.EditCardLayoutRequest, options?: RequestOptions): Promise<GenModels.LayoutCardViewModel>;
|
|
2098
2125
|
delete(deleteCardRequestModel: GenModels.DeleteCardRequestModel, options?: RequestOptions): Promise<string>;
|
|
2126
|
+
cancelCreation(cardId: string, parentCardId: string, options?: RequestOptions): Promise<string>;
|
|
2099
2127
|
getLayout(cardLayoutParams: GenModels.CardLayoutParams, options?: RequestOptions): Promise<GenModels.LayoutCardViewModel>;
|
|
2100
2128
|
getLayoutPart(layoutPartParams: GenModels.LayoutPartParams, options?: RequestOptions): Promise<GenModels.LayoutModel>;
|
|
2101
2129
|
save(model: GenModels.SaveControlDataModel, options?: RequestOptions): Promise<void>;
|
|
@@ -2205,6 +2233,12 @@ export declare namespace GenControllers {
|
|
|
2205
2233
|
* @param signatureFormat Signature export format
|
|
2206
2234
|
*/
|
|
2207
2235
|
exportESignWithPowerOfAttorney(cardId: string, signatureFormat: GenModels.SignatureFormat, options?: RequestOptions): Promise<any>;
|
|
2236
|
+
/**
|
|
2237
|
+
* Exports zip-archive with electronic signature files and visualization ESign
|
|
2238
|
+
*
|
|
2239
|
+
* @param exportSignatureRequest
|
|
2240
|
+
*/
|
|
2241
|
+
exportSignature(exportSignatureRequest: GenModels.ExportSignatureRequest, options?: RequestOptions): Promise<any>;
|
|
2208
2242
|
/**
|
|
2209
2243
|
* Downloads signature byte array
|
|
2210
2244
|
*/
|
|
@@ -2226,6 +2260,7 @@ export declare namespace GenControllers {
|
|
|
2226
2260
|
checkUniqueAttributes(uniqueAttributeValues: GenModels.UniqueAttributesValuesList, options?: RequestOptions): Promise<Array<GenModels.UniqueAttributeCard>>;
|
|
2227
2261
|
exportESign(cardId: string, signatureFormat: GenModels.SignatureFormat, options?: RequestOptions): Promise<any>;
|
|
2228
2262
|
exportESignWithPowerOfAttorney(cardId: string, signatureFormat: GenModels.SignatureFormat, options?: RequestOptions): Promise<any>;
|
|
2263
|
+
exportSignature(exportSignatureRequest: GenModels.ExportSignatureRequest, options?: RequestOptions): Promise<any>;
|
|
2229
2264
|
downloadSignature(request: GenModels.SignatureRequest, options?: RequestOptions): Promise<any>;
|
|
2230
2265
|
getSignatureInfo(documentId: string, signaturePartId: string, signatureId: string, options?: RequestOptions): Promise<GenModels.SignatureInfoModel>;
|
|
2231
2266
|
getAcknowledgemenList(request: GenModels.GetAcknowledgemenListRequest, options?: RequestOptions): Promise<string>;
|
|
@@ -2599,6 +2634,10 @@ export declare namespace GenControllers {
|
|
|
2599
2634
|
* HTTP: /LayoutRow/Delete
|
|
2600
2635
|
*/
|
|
2601
2636
|
delete(row: GenModels.DeleteRowModel, options?: RequestOptions): Promise<void>;
|
|
2637
|
+
/**
|
|
2638
|
+
* HTTP: /LayoutRow/CancelCreation
|
|
2639
|
+
*/
|
|
2640
|
+
cancelCreation(cardId: string, sectionId: string, rowId: string, parentRowId: string, parentRowSectionId: string, options?: RequestOptions): Promise<void>;
|
|
2602
2641
|
/**
|
|
2603
2642
|
* HTTP: /LayoutRow/Exist
|
|
2604
2643
|
*/
|
|
@@ -2625,6 +2664,7 @@ export declare namespace GenControllers {
|
|
|
2625
2664
|
view(layoutParams: GenModels.RowLayoutParams, options?: RequestOptions): Promise<GenModels.LayoutRowViewModel>;
|
|
2626
2665
|
edit(layoutParams: GenModels.RowLayoutParams, options?: RequestOptions): Promise<GenModels.LayoutRowViewModel>;
|
|
2627
2666
|
delete(row: GenModels.DeleteRowModel, options?: RequestOptions): Promise<void>;
|
|
2667
|
+
cancelCreation(cardId: string, sectionId: string, rowId: string, parentRowId: string, parentRowSectionId: string, options?: RequestOptions): Promise<void>;
|
|
2628
2668
|
exist(layoutParams: GenModels.RowLayoutParams, options?: RequestOptions): Promise<boolean>;
|
|
2629
2669
|
getLayoutPart(layoutPartParams: GenModels.RowLayoutPartParams, options?: RequestOptions): Promise<GenModels.LayoutModel>;
|
|
2630
2670
|
save(model: GenModels.SaveRowControlDataModel, options?: RequestOptions): Promise<void>;
|
|
@@ -67,11 +67,17 @@ export declare namespace GenModels {
|
|
|
67
67
|
lastName: string;
|
|
68
68
|
middleName: string;
|
|
69
69
|
position: string;
|
|
70
|
-
fieldPath
|
|
70
|
+
fieldPath?: string;
|
|
71
71
|
unitId: string;
|
|
72
|
-
pathInDirectory
|
|
72
|
+
pathInDirectory?: Array<GenModels.DepartmentExtendedModel>;
|
|
73
73
|
dataType: GenModels.DirectoryDataType;
|
|
74
74
|
status: GenModels.StaffEmployeeStatus;
|
|
75
|
+
accountName: string;
|
|
76
|
+
sdid?: string;
|
|
77
|
+
isFavoritePerformer: boolean;
|
|
78
|
+
units: Array<string>;
|
|
79
|
+
email: string;
|
|
80
|
+
departmentName: string;
|
|
75
81
|
}
|
|
76
82
|
}
|
|
77
83
|
export declare namespace GenModels {
|
|
@@ -138,6 +144,10 @@ export declare namespace GenModels {
|
|
|
138
144
|
* @format datatype.uuid
|
|
139
145
|
*/
|
|
140
146
|
unitId: string;
|
|
147
|
+
/**
|
|
148
|
+
* All units of employee, including parent units.
|
|
149
|
+
*/
|
|
150
|
+
units: Array<string>;
|
|
141
151
|
/**
|
|
142
152
|
* Email
|
|
143
153
|
*/
|
|
@@ -4304,6 +4314,14 @@ export declare namespace GenModels {
|
|
|
4304
4314
|
* state for token
|
|
4305
4315
|
*/
|
|
4306
4316
|
state: string;
|
|
4317
|
+
/**
|
|
4318
|
+
* string with error
|
|
4319
|
+
*/
|
|
4320
|
+
error: string;
|
|
4321
|
+
/**
|
|
4322
|
+
* string with error_description
|
|
4323
|
+
*/
|
|
4324
|
+
error_description: string;
|
|
4307
4325
|
}
|
|
4308
4326
|
}
|
|
4309
4327
|
export declare namespace GenModels {
|
|
@@ -5306,6 +5324,28 @@ export declare namespace GenModels {
|
|
|
5306
5324
|
attributes: Array<GenModels.UniqueAttributeValue>;
|
|
5307
5325
|
}
|
|
5308
5326
|
}
|
|
5327
|
+
export declare namespace GenModels {
|
|
5328
|
+
interface ExportSignatureRequest {
|
|
5329
|
+
/**
|
|
5330
|
+
* Document card id
|
|
5331
|
+
*
|
|
5332
|
+
* @format datatype.uuid
|
|
5333
|
+
*/
|
|
5334
|
+
cardId: string;
|
|
5335
|
+
/**
|
|
5336
|
+
* Signature export format
|
|
5337
|
+
*/
|
|
5338
|
+
signatureFormat: GenModels.SignatureFormat;
|
|
5339
|
+
/**
|
|
5340
|
+
* Include export of the powers of attorney specified at time of signing, with their signatures
|
|
5341
|
+
*/
|
|
5342
|
+
withPowersOfAttorney: boolean;
|
|
5343
|
+
/**
|
|
5344
|
+
* Include export with visualization ESign
|
|
5345
|
+
*/
|
|
5346
|
+
withStamp: boolean;
|
|
5347
|
+
}
|
|
5348
|
+
}
|
|
5309
5349
|
export declare namespace GenModels {
|
|
5310
5350
|
interface SignatureRequest {
|
|
5311
5351
|
documentId: string;
|
|
@@ -9060,7 +9100,7 @@ export declare namespace GenModels {
|
|
|
9060
9100
|
/**
|
|
9061
9101
|
* Task performer
|
|
9062
9102
|
*/
|
|
9063
|
-
taskInitialPerformer:
|
|
9103
|
+
taskInitialPerformer: any;
|
|
9064
9104
|
}
|
|
9065
9105
|
}
|
|
9066
9106
|
export declare namespace GenModels {
|
|
@@ -9068,15 +9108,15 @@ export declare namespace GenModels {
|
|
|
9068
9108
|
/**
|
|
9069
9109
|
* Gets or sets from delegate
|
|
9070
9110
|
*/
|
|
9071
|
-
sourceDelegate:
|
|
9111
|
+
sourceDelegate: any;
|
|
9072
9112
|
/**
|
|
9073
9113
|
* Gets or sets to delegate
|
|
9074
9114
|
*/
|
|
9075
|
-
destinationDelegate:
|
|
9115
|
+
destinationDelegate: any;
|
|
9076
9116
|
/**
|
|
9077
9117
|
* Gets or sets to delegated to employees
|
|
9078
9118
|
*/
|
|
9079
|
-
delegatedTo: Array<
|
|
9119
|
+
delegatedTo: Array<any>;
|
|
9080
9120
|
/**
|
|
9081
9121
|
* Gets or set delegate date
|
|
9082
9122
|
*
|
|
@@ -9099,70 +9139,6 @@ export declare namespace GenModels {
|
|
|
9099
9139
|
comment: string;
|
|
9100
9140
|
}
|
|
9101
9141
|
}
|
|
9102
|
-
export declare namespace GenModels {
|
|
9103
|
-
interface EmployeeModel {
|
|
9104
|
-
/**
|
|
9105
|
-
* Gets or sets employee identifier
|
|
9106
|
-
*
|
|
9107
|
-
* @format datatype.uuid
|
|
9108
|
-
*/
|
|
9109
|
-
employeeId: string;
|
|
9110
|
-
/**
|
|
9111
|
-
* Display user full name
|
|
9112
|
-
*/
|
|
9113
|
-
displayName: string;
|
|
9114
|
-
/**
|
|
9115
|
-
* Get employee first name
|
|
9116
|
-
*/
|
|
9117
|
-
fistName: string;
|
|
9118
|
-
/**
|
|
9119
|
-
* Gets employee last name
|
|
9120
|
-
*/
|
|
9121
|
-
lastName: string;
|
|
9122
|
-
/**
|
|
9123
|
-
* Get employee middle name
|
|
9124
|
-
*/
|
|
9125
|
-
middleName: string;
|
|
9126
|
-
/**
|
|
9127
|
-
* Gets or sets employee email address
|
|
9128
|
-
*/
|
|
9129
|
-
email: string;
|
|
9130
|
-
/**
|
|
9131
|
-
* Gets or sets employee display position
|
|
9132
|
-
*/
|
|
9133
|
-
position: string;
|
|
9134
|
-
/**
|
|
9135
|
-
* Gets or sets unit
|
|
9136
|
-
*/
|
|
9137
|
-
unit: GenModels.UnitModel;
|
|
9138
|
-
/**
|
|
9139
|
-
* Gets or set user account name
|
|
9140
|
-
*/
|
|
9141
|
-
accountName: string;
|
|
9142
|
-
/**
|
|
9143
|
-
* Gets or sets deputy display name
|
|
9144
|
-
*/
|
|
9145
|
-
deputyDisplayName: string;
|
|
9146
|
-
/**
|
|
9147
|
-
* Gets value indicating whether employee is favorite performer
|
|
9148
|
-
*/
|
|
9149
|
-
isFavoritePerformer: boolean;
|
|
9150
|
-
}
|
|
9151
|
-
}
|
|
9152
|
-
export declare namespace GenModels {
|
|
9153
|
-
interface UnitModel {
|
|
9154
|
-
/**
|
|
9155
|
-
* Get unit identifier
|
|
9156
|
-
*
|
|
9157
|
-
* @format datatype.uuid
|
|
9158
|
-
*/
|
|
9159
|
-
unitId: string;
|
|
9160
|
-
/**
|
|
9161
|
-
* Get unit name
|
|
9162
|
-
*/
|
|
9163
|
-
unitName: string;
|
|
9164
|
-
}
|
|
9165
|
-
}
|
|
9166
9142
|
export declare namespace GenModels {
|
|
9167
9143
|
interface CompletionOptionModel {
|
|
9168
9144
|
/**
|
|
@@ -9696,7 +9672,11 @@ export declare namespace GenModels {
|
|
|
9696
9672
|
/**
|
|
9697
9673
|
* Equals
|
|
9698
9674
|
*/
|
|
9699
|
-
Equals = 2
|
|
9675
|
+
Equals = 2,
|
|
9676
|
+
/**
|
|
9677
|
+
* Interval
|
|
9678
|
+
*/
|
|
9679
|
+
Interval = 3
|
|
9700
9680
|
}
|
|
9701
9681
|
}
|
|
9702
9682
|
export declare namespace GenModels {
|
|
@@ -11834,7 +11814,11 @@ export declare namespace GenModels {
|
|
|
11834
11814
|
/**
|
|
11835
11815
|
* Indicates that uses custom data as login
|
|
11836
11816
|
*/
|
|
11837
|
-
Custom = 3
|
|
11817
|
+
Custom = 3,
|
|
11818
|
+
/**
|
|
11819
|
+
* Indicates that uses upn as login
|
|
11820
|
+
*/
|
|
11821
|
+
Upn = 4
|
|
11838
11822
|
}
|
|
11839
11823
|
}
|
|
11840
11824
|
export declare namespace GenModels {
|
|
@@ -11856,6 +11840,21 @@ export declare namespace GenModels {
|
|
|
11856
11840
|
Unknown = 2
|
|
11857
11841
|
}
|
|
11858
11842
|
}
|
|
11843
|
+
export declare namespace GenModels {
|
|
11844
|
+
/**
|
|
11845
|
+
* Describes search links view mode
|
|
11846
|
+
*/
|
|
11847
|
+
enum SearchCardLinksViewMode {
|
|
11848
|
+
/**
|
|
11849
|
+
* Gets standard
|
|
11850
|
+
*/
|
|
11851
|
+
Standard = 0,
|
|
11852
|
+
/**
|
|
11853
|
+
* Gets layout
|
|
11854
|
+
*/
|
|
11855
|
+
Layout = 1
|
|
11856
|
+
}
|
|
11857
|
+
}
|
|
11859
11858
|
export declare namespace GenModels {
|
|
11860
11859
|
/**
|
|
11861
11860
|
* Defines color mode for Diagram control
|
package/Helpers/Button.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare class DVWebToolConnection {
|
|
|
7
7
|
private static WebToolInstalledOptionsKey;
|
|
8
8
|
private static dvWebToolOpenCommand;
|
|
9
9
|
private static delayTime;
|
|
10
|
+
private static waitingInstall;
|
|
10
11
|
static cancel: boolean;
|
|
11
12
|
static trySendData<RequestT, ResponseT>(webService: string, data: IWebServicesRequest<RequestT>, services: $WebServices & $ApplicationSettings & $MessageBox): Promise<ResponseT>;
|
|
12
13
|
static trySendDataEx<RequestT, ResponseT>(webService: string, data: IWebServicesRequest<RequestT>, services: $WebServices & $ApplicationSettings & $MessageBox, maxTryCount?: number): Promise<ResponseT>;
|
|
@@ -9,6 +9,6 @@ export declare class InputMaskView {
|
|
|
9
9
|
inputMask: typeof InputMask;
|
|
10
10
|
input:
|
|
11
11
|
import("react").ForwardRefExoticComponent<Pick<
|
|
12
|
-
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "
|
|
12
|
+
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "alt" | "src" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "capture" | "checked" | "enterKeyHint" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "isError"> &
|
|
13
13
|
import("react").RefAttributes<HTMLInputElement>>;
|
|
14
14
|
}
|
|
@@ -4,4 +4,4 @@ import { HtmlProps } from "@docsvision/web/core/component/HtmlProps";
|
|
|
4
4
|
export interface IInputMaskFieldProps extends HtmlProps.input {
|
|
5
5
|
isError: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare const InputMaskField: React.ForwardRefExoticComponent<Pick<IInputMaskFieldProps, "form" | "slot" | "style" | "title" | "pattern" | "children" | "name" | "id" | "disabled" | "onSubmit" | "autoComplete" | "type" | "placeholder" | "value" | "autoFocus" | "dir" | "className" | "
|
|
7
|
+
export declare const InputMaskField: React.ForwardRefExoticComponent<Pick<IInputMaskFieldProps, "form" | "slot" | "style" | "title" | "pattern" | "children" | "name" | "id" | "disabled" | "onSubmit" | "autoComplete" | "type" | "placeholder" | "value" | "autoFocus" | "dir" | "className" | "onClick" | "onKeyDown" | "onFocus" | "onBlur" | "tabIndex" | "color" | "width" | "hidden" | "height" | "lang" | "max" | "min" | "role" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "alt" | "src" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "capture" | "checked" | "enterKeyHint" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "isError"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -15,17 +15,21 @@ export interface IModalSidebarProps {
|
|
|
15
15
|
paddings?: boolean;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
|
+
* @deprecated Используйте {@link ModalSidebar} из пакета @docsvision.web
|
|
19
|
+
*
|
|
18
20
|
* Представляет выезжающую боковую панель.
|
|
19
21
|
*
|
|
20
22
|
* Пример использования:
|
|
21
23
|
*
|
|
22
24
|
* <div>
|
|
23
25
|
* <ModalBackdrop onClick={() => this.setState({ sidebarOpen: false })}>
|
|
24
|
-
* <
|
|
25
|
-
* <
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
26
|
+
* <EscHandler onEsc={() => this.setState({ sidebarOpen: false })}>
|
|
27
|
+
* <ModalSidebar isOpen={this.state.sidebarOpen} >
|
|
28
|
+
* <ModalSidebarCloseButton onClick={() => this.setState({ sidebarOpen: false })} />
|
|
29
|
+
* <ModalSidebarHeader>Some header</ModalSidebarHeader>
|
|
30
|
+
* <div>Some content</div>
|
|
31
|
+
* </ModalSidebar>
|
|
32
|
+
* <EscHandler />
|
|
29
33
|
* </ModalBackdrop>
|
|
30
34
|
* </div>
|
|
31
35
|
*
|
|
@@ -34,11 +38,13 @@ export interface IModalSidebarProps {
|
|
|
34
38
|
* let host: ModalHost = new ModalHost("time-sidebar", () => {
|
|
35
39
|
* return (
|
|
36
40
|
* <ModalBackdrop visible={true} onClick={() => host.unmount()} >
|
|
37
|
-
* <
|
|
38
|
-
* <
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
41
|
+
* <EscHandler onEsc={() => this.setState({ sidebarOpen: false })}>
|
|
42
|
+
* <ModalSidebar isOpen={this.state.sidebarOpen} >
|
|
43
|
+
* <ModalSidebarCloseButton onClick={() => this.setState({ sidebarOpen: false })} />
|
|
44
|
+
* <ModalSidebarHeader>Some header</ModalSidebarHeader>
|
|
45
|
+
* <div>Some content</div>
|
|
46
|
+
* </ModalSidebar>
|
|
47
|
+
* <EscHandler />
|
|
42
48
|
* </ModalBackdrop>
|
|
43
49
|
* );
|
|
44
50
|
* });
|
|
@@ -148,7 +148,7 @@ export declare class Sortable<T> extends React.Component<ISortableProps<T>, unde
|
|
|
148
148
|
* @param props Свойства компонента
|
|
149
149
|
*/
|
|
150
150
|
protected getSortablePluginOptions(props: ISortableProps<T>): {
|
|
151
|
-
axis: "
|
|
151
|
+
axis: "y" | "x";
|
|
152
152
|
containment: string | HTMLElement | JQuery<HTMLElement>;
|
|
153
153
|
cursor: string;
|
|
154
154
|
disabled: boolean;
|
|
@@ -54,7 +54,7 @@ export declare abstract class BasicGridHtmlBuilder implements IGridHtmlBuilder {
|
|
|
54
54
|
protected abstract buildRowSwitcher(options: GridOptions, model: GenModels.GridViewModel, rowSwitcher: HTMLDivElement, rootElement: HTMLElement): HTMLDivElement;
|
|
55
55
|
abstract getChanges(): Promise<GenModels.GridViewModel>;
|
|
56
56
|
getSelection():
|
|
57
|
-
import("
|
|
57
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/@docsvision/Platform/Services/Table/TableRowsSelectionModel").ITableRowsSelectionModel;
|
|
58
58
|
clearSelection(cardIds?: string[]): void;
|
|
59
59
|
selectionChanged: SimpleEvent<any>;
|
|
60
60
|
protected addActionButtons(header: HTMLElement): void;
|
package/Legacy/RightSidebar.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { $SignatureController } from "@docsvision/webclient/Generated/DocsVision.WebClient.Controllers";
|
|
2
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
3
|
import { EncryptedInfo } from "@docsvision/webclient/Legacy/EncryptedInfo";
|
|
3
4
|
import { IFileSignInfo } from "@docsvision/webclient/Legacy/IFileSingInfo";
|
|
4
5
|
import { $MessageBox } from "@docsvision/webclient/System/$MessageBox";
|
|
@@ -49,6 +50,7 @@ export declare class Crypto {
|
|
|
49
50
|
static DocumentFileOIDAttribute: string;
|
|
50
51
|
static DocumentVersionOIDAttribute: string;
|
|
51
52
|
static EmployeeOIDAttribute: string;
|
|
53
|
+
static THE_URL_OF_OCSP_SERVICE_IS_NOT_SPECIFIED_ERROR: string;
|
|
52
54
|
static ProviderName: string;
|
|
53
55
|
static ProviderType: string;
|
|
54
56
|
static CADESCOM_CERT_INFO_TYPE_SUBJECT_SIMPLE_NAME: number;
|
|
@@ -97,6 +99,7 @@ export declare class Crypto {
|
|
|
97
99
|
tspAddress: string;
|
|
98
100
|
certificateThumberpint: string;
|
|
99
101
|
}>;
|
|
102
|
+
static GetCadesSignType(signType: GenModels.DigitalSignatureKind): number;
|
|
100
103
|
private static SignData_NPAPI;
|
|
101
104
|
}
|
|
102
105
|
export declare function getBstrBase64(str: string): string;
|
|
@@ -14,4 +14,4 @@ export interface IAggregateTreeProps {
|
|
|
14
14
|
onItemSelect?: (data: ISelectItemData) => void;
|
|
15
15
|
onLoadMoreItems?: (aggregates: GenModels.GridAggregateModel[]) => void;
|
|
16
16
|
}
|
|
17
|
-
export declare
|
|
17
|
+
export declare function AggregatesTree({ aggregates, aggregatesState, ...props }: IAggregateTreeProps): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare
|
|
2
|
+
export declare function AggregatesTreeLoader(): JSX.Element;
|
|
@@ -9,7 +9,7 @@ export declare class ApprovalVisualizationView {
|
|
|
9
9
|
description: typeof ApprovalVisualizationDescription;
|
|
10
10
|
vis:
|
|
11
11
|
import("react").ForwardRefExoticComponent<Pick<
|
|
12
|
-
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "
|
|
12
|
+
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> &
|
|
13
13
|
import("react").RefAttributes<HTMLDivElement>>;
|
|
14
14
|
container: typeof ApprovalVisualizationContainer;
|
|
15
15
|
conditionList: typeof ApprovalVisualizationConditionList;
|
|
@@ -3,4 +3,4 @@ import React from "react";
|
|
|
3
3
|
|
|
4
4
|
export interface IApprovalVisualizationVisBlockProps extends HtmlProps.div {
|
|
5
5
|
}
|
|
6
|
-
export declare const ApprovalVisualizationVisBlock: React.ForwardRefExoticComponent<Pick<IApprovalVisualizationVisBlockProps, "slot" | "style" | "title" | "children" | "id" | "onSubmit" | "placeholder" | "dir" | "className" | "
|
|
6
|
+
export declare const ApprovalVisualizationVisBlock: React.ForwardRefExoticComponent<Pick<IApprovalVisualizationVisBlockProps, "slot" | "style" | "title" | "children" | "id" | "onSubmit" | "placeholder" | "dir" | "className" | "onClick" | "onKeyDown" | "onFocus" | "onBlur" | "tabIndex" | "color" | "hidden" | "lang" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -16,10 +16,10 @@ export declare class BaseMainMenuItemImpl<PropsT extends BaseMainMenuItemParams,
|
|
|
16
16
|
UNSAFE_componentWillMount(): void;
|
|
17
17
|
componentDidMount(): void;
|
|
18
18
|
onSelecting():
|
|
19
|
-
import("
|
|
19
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/System/Events/CancelableEventArgs").CancelableEventArgs<boolean>;
|
|
20
20
|
onSelected(): void;
|
|
21
21
|
onToggling():
|
|
22
|
-
import("
|
|
22
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/System/Events/CancelableEventArgs").CancelableEventArgs<boolean>;
|
|
23
23
|
onToggled(): void;
|
|
24
24
|
protected onClick(event: React.MouseEvent): void;
|
|
25
25
|
protected getCssClass(): string;
|
package/Platform/CardLink.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ export declare class CardLinkParams extends InputBasedControlParams<GenModels.Ca
|
|
|
53
53
|
searchDelay?: number;
|
|
54
54
|
/** Минимальное количество символов для поиска */
|
|
55
55
|
searchIndex?: number;
|
|
56
|
+
/** Режим отображения ссылок при поиске */
|
|
57
|
+
searchViewMode?: GenModels.SearchCardLinksViewMode;
|
|
56
58
|
/** Событие, возникающее перед очисткой значения. */
|
|
57
59
|
linkDeleting?: CancelableApiEvent<IEventArgs>;
|
|
58
60
|
/** Событие, возникающее после очистки значения. */
|
|
@@ -82,12 +84,12 @@ export declare class CardLink extends InputBasedControl<GenModels.CardLinkDataMo
|
|
|
82
84
|
protected construct(): void;
|
|
83
85
|
componentDidMount(): void;
|
|
84
86
|
protected getServices(): $FileController & $LayoutFileController & $LayoutLinksController & $LayoutController & Partial<$CardId> & $EditOperationStore & $CardId & Partial<$LabelWidth> & $LayoutManager & $Layout &
|
|
85
|
-
import("
|
|
86
|
-
import("
|
|
87
|
-
import("
|
|
88
|
-
import("
|
|
89
|
-
import("
|
|
90
|
-
import("
|
|
87
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/System/Services/$LayoutCheckService").$LayoutCheck &
|
|
88
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/System/Controls/Layout/LayoutServices").$CardInfo &
|
|
89
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/System/Core/RequestProcessing/$RequestManager").$RequestManager &
|
|
90
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/StandardServices").$ApplicationSettings &
|
|
91
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/System/Services/$FileService").$FileService &
|
|
92
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/TypeScriptDefinitions/StandardServices").$DeviceType & Partial<
|
|
91
93
|
import("@docsvision/webclient/FilePreview/$FilePreview").$FilePreview> & $CardOperationsController & Partial<$LinksSearchCards> & $CardsPresentationController;
|
|
92
94
|
protected createParams(): CardLinkParams;
|
|
93
95
|
protected createImpl(): CardLinkImpl;
|
|
@@ -96,7 +96,7 @@ export declare class DateTimePickerImpl extends InputBasedControlImpl<Date, Date
|
|
|
96
96
|
protected renderInput(): React.ReactNode;
|
|
97
97
|
private renderRequiredText;
|
|
98
98
|
protected renderPlaceholder(): JSX.Element;
|
|
99
|
-
triggerSaveRequestEvent: () =>
|
|
99
|
+
triggerSaveRequestEvent: () => void;
|
|
100
100
|
clear(): Promise<void>;
|
|
101
101
|
canClear(): boolean;
|
|
102
102
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
2
|
import { ComboBoxTitle } from "@docsvision/webclient/Helpers/ComboBox/ComboBoxTitle";
|
|
3
3
|
import { IEditPopoverProps } from "@docsvision/webclient/Helpers/PopoverHelpers/EditPopover/IEditPopoverProps";
|
|
4
|
+
import { Popover } from "@docsvision/webclient/Helpers/PopoverHelpers/Popover";
|
|
4
5
|
import { Dropdown, DropdownParams } from "@docsvision/webclient/Platform/Dropdown";
|
|
5
6
|
import { InputBasedControlImpl, IInputBasedControlState } from "@docsvision/webclient/System/InputBasedControlImpl";
|
|
6
7
|
import { IBindingResult } from "@docsvision/webclient/System/IBindingResult";
|
|
@@ -33,6 +34,10 @@ export declare class DropdownImpl extends InputBasedControlImpl<string, Dropdown
|
|
|
33
34
|
* Заголовок комбобокса
|
|
34
35
|
*/
|
|
35
36
|
protected comboboxTitle: ComboBoxTitle;
|
|
37
|
+
/**
|
|
38
|
+
* Элемент позиционирования списка
|
|
39
|
+
*/
|
|
40
|
+
protected popover: Popover;
|
|
36
41
|
/**
|
|
37
42
|
* Предыдущий сфокусированный элемент (глобально)
|
|
38
43
|
*/
|
|
@@ -47,6 +52,7 @@ export declare class DropdownImpl extends InputBasedControlImpl<string, Dropdown
|
|
|
47
52
|
UNSAFE_componentWillMount(): void;
|
|
48
53
|
componentDidMount(): void;
|
|
49
54
|
componentWillUnmount(): void;
|
|
55
|
+
protected handleParentModalScroll: (event?: Event) => void;
|
|
50
56
|
protected handleDocumentClick: (event?: Event) => void;
|
|
51
57
|
protected handleDocumentFocus: (event: FocusEvent) => void;
|
|
52
58
|
setValue(value: string, redraw: boolean): void;
|
|
@@ -54,6 +60,7 @@ export declare class DropdownImpl extends InputBasedControlImpl<string, Dropdown
|
|
|
54
60
|
getTextValueFor(key: string): string;
|
|
55
61
|
protected onDropdownContainerClick(e?: MouseEvent): void;
|
|
56
62
|
protected onElementClick(element: GenModels.BindingMetadata): void;
|
|
63
|
+
protected onEmptyElementClick(): void;
|
|
57
64
|
protected onClearValueClick(e: React.MouseEvent): void;
|
|
58
65
|
protected onPlaceholderClick(event: any): void;
|
|
59
66
|
protected toggleCollapsed: () => CancelableEventArgs<IEventArgs>;
|