@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
|
@@ -13,6 +13,8 @@ export declare class ExportESignButtonParams extends BaseControlParams {
|
|
|
13
13
|
signatureFormat?: GenModels.SignatureFormat;
|
|
14
14
|
/** Экспорт с доверенностью */
|
|
15
15
|
exportWithPowerOfAttorney?: boolean;
|
|
16
|
+
/** Экспорт с визуализацией ЭП */
|
|
17
|
+
exportWithESignVisualization?: boolean;
|
|
16
18
|
}
|
|
17
19
|
/**
|
|
18
20
|
* Класс элемента управления Экспорт файлов с подписью.
|
|
@@ -117,6 +117,7 @@ import("./Components/FilePickerMenuItemsView").IFilePickerMenuItemProps) => JSX.
|
|
|
117
117
|
renderMenu(): JSX.Element;
|
|
118
118
|
renderEmptyModeContent(): JSX.Element;
|
|
119
119
|
renderEmptyMode(): JSX.Element;
|
|
120
|
+
isLayoutViewMode(): boolean;
|
|
120
121
|
showDeleteButton: () => boolean;
|
|
121
122
|
renderValueContent(): JSX.Element;
|
|
122
123
|
renderValueContentWithPlaceholder(): JSX.Element;
|
|
@@ -78,6 +78,7 @@ export declare class FilePreviewImpl extends BaseControlImpl<FilePreviewParams,
|
|
|
78
78
|
previewInModalContent: () => JSX.Element;
|
|
79
79
|
addListenerToButton: () => void;
|
|
80
80
|
loadFileData: (version?: GenModels.VersionedFileModel) => Promise<void>;
|
|
81
|
+
updateFileExtension(fileItem: FileListItem): void;
|
|
81
82
|
checkAllowedPreviewExtension: (ext: string) => boolean;
|
|
82
83
|
showPreviewArea: () => void;
|
|
83
84
|
canComment: () => boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { $GridController } from "@docsvision/webclient/Generated/DocsVision.WebClient.Controllers";
|
|
3
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
3
4
|
import { FolderCardsDashboardWidgetImpl, IFolderCardsDashboardWidgetState } from "@docsvision/webclient/Platform/FolderCardsDashboardWidgetImpl";
|
|
4
5
|
import { Panel, PanelParams } from "@docsvision/webclient/Platform/Panel";
|
|
5
6
|
import { $Layout } from "@docsvision/webclient/System/$Layout";
|
|
@@ -29,6 +30,10 @@ export declare class FolderCardsDashboardWidgetParams extends PanelParams {
|
|
|
29
30
|
cardsCount?: number;
|
|
30
31
|
/** Стандартный CSS класс со стилями элемента управления */
|
|
31
32
|
standardCssClass?: string;
|
|
33
|
+
/** Настройка видимости и порядка столбцов ленты.
|
|
34
|
+
* При определении настроек важно явно указать свойства всех видимых столбцов.
|
|
35
|
+
*/
|
|
36
|
+
listColumnsSettings?: GenModels.GridUserSettingsColumn[];
|
|
32
37
|
services?: $GridController & $LayoutInfo & $GridController & $LayoutManager & $Layout & $LocationContainerControlServices & $ExperimentalFeature;
|
|
33
38
|
}
|
|
34
39
|
/**
|
|
@@ -14,7 +14,6 @@ export declare class FolderDashboardWidgetImpl<PropsT extends FolderDashboardWid
|
|
|
14
14
|
getHeader(): string;
|
|
15
15
|
getNavigationHref(): string;
|
|
16
16
|
private attachUnreadCounter;
|
|
17
|
-
private shouldShowUnreadCounter;
|
|
18
17
|
updateUnreadCounter(count: number): void;
|
|
19
18
|
getCssStyle(): React.CSSProperties;
|
|
20
19
|
renderControl(): JSX.Element;
|
|
@@ -43,7 +43,7 @@ export declare class FolderDataLoadingService implements IFolderDataLoadingServi
|
|
|
43
43
|
setDefaultDataLoader(loader: IFolderDataLoader): void;
|
|
44
44
|
updateUserSettings(customLoader?: IFolderDataLoader): Promise<void>;
|
|
45
45
|
private checkSystemFolderSearchResultsText;
|
|
46
|
-
downloadExcelReport(): void
|
|
46
|
+
downloadExcelReport(): Promise<void>;
|
|
47
47
|
saveColumnSettings(columns: IColumnsWidth[]): Promise<void>;
|
|
48
48
|
savePresentation(tablePresentation: GenModels.TablePresentation): Promise<void>;
|
|
49
49
|
resetUserSettings(): Promise<void>;
|
|
@@ -14,7 +14,6 @@ export declare class FolderGroupDashboardWidgetImpl<PropsT extends FolderGroupDa
|
|
|
14
14
|
getHeader(): string;
|
|
15
15
|
getNavigationHref(): string;
|
|
16
16
|
private attachUnreadCounter;
|
|
17
|
-
private shouldShowUnreadCounter;
|
|
18
17
|
updateUnreadCounter(count: number): void;
|
|
19
18
|
getCssStyle(): React.CSSProperties;
|
|
20
19
|
getWidgetStyle(): {
|
|
@@ -44,7 +44,7 @@ export declare class FolderViewItemsImpl extends InputBasedControlImpl<string, F
|
|
|
44
44
|
checked?: boolean;
|
|
45
45
|
crossOrigin?: string;
|
|
46
46
|
disabled?: boolean;
|
|
47
|
-
enterKeyHint?: "
|
|
47
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send";
|
|
48
48
|
form?: string;
|
|
49
49
|
formAction?: string;
|
|
50
50
|
formEncType?: string;
|
|
@@ -125,12 +125,12 @@ export declare class FolderViewItemsImpl extends InputBasedControlImpl<string, F
|
|
|
125
125
|
'aria-describedby'?: string;
|
|
126
126
|
'aria-details'?: string;
|
|
127
127
|
'aria-disabled'?: boolean | "true" | "false";
|
|
128
|
-
'aria-dropeffect'?: "link" | "
|
|
128
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup";
|
|
129
129
|
'aria-errormessage'?: string;
|
|
130
130
|
'aria-expanded'?: boolean | "true" | "false";
|
|
131
131
|
'aria-flowto'?: string;
|
|
132
132
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
133
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "
|
|
133
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
134
134
|
'aria-hidden'?: boolean | "true" | "false";
|
|
135
135
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
136
136
|
'aria-keyshortcuts'?: string;
|
package/Platform/ImageImpl.d.ts
CHANGED
|
@@ -23,7 +23,9 @@ export interface ImageState extends IImageState {
|
|
|
23
23
|
}
|
|
24
24
|
export declare class ImageImpl extends BaseControlImpl<ImageParams, IImageState> {
|
|
25
25
|
input: HTMLInputElement;
|
|
26
|
+
unmounted: boolean;
|
|
26
27
|
constructor(props: ImageParams, state: IImageState);
|
|
28
|
+
componentWillUnmount(): void;
|
|
27
29
|
componentDidMount(): void;
|
|
28
30
|
setImageValue(value: string): void;
|
|
29
31
|
protected attachInput(elem: HTMLInputElement): void;
|
|
@@ -3,4 +3,4 @@ import React from "react";
|
|
|
3
3
|
|
|
4
4
|
export interface IListCheckboxProps extends HtmlProps.input {
|
|
5
5
|
}
|
|
6
|
-
export declare const ListCheckbox: React.ForwardRefExoticComponent<Pick<IListCheckboxProps, "form" | "slot" | "style" | "title" | "pattern" | "children" | "name" | "id" | "disabled" | "onSubmit" | "autoComplete" | "type" | "placeholder" | "value" | "autoFocus" | "dir" | "className" | "
|
|
6
|
+
export declare const ListCheckbox: React.ForwardRefExoticComponent<Pick<IListCheckboxProps, "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"> & React.RefAttributes<HTMLInputElement>>;
|
package/Platform/ListInput.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export interface IListInputProps extends HtmlProps.div {
|
|
|
5
5
|
isScrollable: boolean;
|
|
6
6
|
isDate: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare const ListInput: React.ForwardRefExoticComponent<Pick<IListInputProps, "slot" | "style" | "title" | "children" | "id" | "onSubmit" | "placeholder" | "dir" | "className" | "
|
|
8
|
+
export declare const ListInput: React.ForwardRefExoticComponent<Pick<IListInputProps, "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" | "isScrollable" | "isDate"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -20,6 +20,10 @@ export declare class RadioGroupImpl extends InputBasedControlImpl<string, RadioG
|
|
|
20
20
|
protected renderInto(props: RadioGroupParams, container: HTMLElement): void;
|
|
21
21
|
protected showEditPopover(popoverOptions?: IEditPopoverProps): Promise<RadioGroup>;
|
|
22
22
|
protected onElementChange(element: GenModels.BindingMetadata, ev: React.FormEvent): void;
|
|
23
|
+
protected onInputBlur(event: React.FocusEvent): void;
|
|
24
|
+
private saveCard;
|
|
25
|
+
private shouldSaveCardWithEditInPlaceValue;
|
|
26
|
+
private isLayoutViewMode;
|
|
23
27
|
protected renderPlaceholder(): JSX.Element;
|
|
24
28
|
protected renderLabel(element: GenModels.BindingMetadata): JSX.Element;
|
|
25
29
|
protected getColumns(): Array<Array<GenModels.BindingMetadata>>;
|
|
@@ -3,4 +3,4 @@ import React from "react";
|
|
|
3
3
|
|
|
4
4
|
export interface ISearchTextInputProps extends HtmlProps.input {
|
|
5
5
|
}
|
|
6
|
-
export declare const SearchTextInput: React.ForwardRefExoticComponent<Pick<ISearchTextInputProps, "form" | "slot" | "style" | "title" | "pattern" | "children" | "name" | "id" | "disabled" | "onSubmit" | "autoComplete" | "type" | "placeholder" | "value" | "autoFocus" | "dir" | "className" | "
|
|
6
|
+
export declare const SearchTextInput: React.ForwardRefExoticComponent<Pick<ISearchTextInputProps, "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"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -13,19 +13,19 @@ import { TextListInputWrapper } from "@docsvision/webclient/Platform/TextListInp
|
|
|
13
13
|
export declare class TextListInputView {
|
|
14
14
|
listInput:
|
|
15
15
|
import("react").ForwardRefExoticComponent<Pick<
|
|
16
|
-
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "
|
|
16
|
+
| "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" | "isScrollable" | "isDate"> &
|
|
17
17
|
import("react").RefAttributes<HTMLDivElement>>;
|
|
18
18
|
clearButton: typeof ClearButton;
|
|
19
19
|
textInput:
|
|
20
20
|
import("react").ForwardRefExoticComponent<Pick<
|
|
21
|
-
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "
|
|
21
|
+
| "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"> &
|
|
22
22
|
import("react").RefAttributes<HTMLInputElement>>;
|
|
23
23
|
wrapper: typeof TextListInputWrapper;
|
|
24
24
|
content: typeof ListContent;
|
|
25
25
|
item: typeof ListItem;
|
|
26
26
|
checkbox:
|
|
27
27
|
import("react").ForwardRefExoticComponent<Pick<
|
|
28
|
-
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "
|
|
28
|
+
| "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"> &
|
|
29
29
|
import("react").RefAttributes<HTMLInputElement>>;
|
|
30
30
|
empty: typeof ListEmpty;
|
|
31
31
|
icon: typeof ListEmptySearchIcon;
|
package/System/DateFormats.d.ts
CHANGED
|
@@ -78,10 +78,10 @@ export declare abstract class DirectorySelectDialog<ValueT extends NodeT | ItemT
|
|
|
78
78
|
protected modalHost: CommonModalDialogHost;
|
|
79
79
|
static SimpleItemView:
|
|
80
80
|
import("styled-components").StyledComponent<typeof SimpleItemViewContent, any,
|
|
81
|
-
import("
|
|
81
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/Helpers/CustomTree/Theme/Default/CustomTreeNodeContentDefault").ICustomTreeNodeContentDefaultProps, never>;
|
|
82
82
|
static SimpleItemViewCompact:
|
|
83
83
|
import("styled-components").StyledComponent<typeof SimpleItemViewContent, any,
|
|
84
|
-
import("
|
|
84
|
+
import("D:/BuildAgent/work/43698d70d905217f/Bin/Helpers/CustomTree/Theme/Default/CustomTreeNodeContentDefault").ICustomTreeNodeContentDefaultProps, never>;
|
|
85
85
|
/** @internal */
|
|
86
86
|
state: StateT;
|
|
87
87
|
searchInput: HTMLInputElement;
|
|
@@ -113,7 +113,6 @@ export declare abstract class InputBasedControlImpl<ModelT, PropsT extends Input
|
|
|
113
113
|
protected renderEditPopover(popover: EditPopover): Promise<InputBasedControl<ModelT, PropsT, StateT>>;
|
|
114
114
|
protected getCurrentPlaceholder(): string[];
|
|
115
115
|
protected renderPlaceholder(): JSX.Element;
|
|
116
|
-
protected renderPlaceholderEditInPlace(): JSX.Element;
|
|
117
116
|
protected onInputKeyDown(ev: React.KeyboardEvent): void;
|
|
118
117
|
protected onIconKeyDown(e: React.KeyboardEvent): void;
|
|
119
118
|
protected getInputProps(): React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
@@ -2,6 +2,7 @@ import { GenControllers } from '@docsvision/webclient/Generated/DocsVision.WebCl
|
|
|
2
2
|
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
3
3
|
import { RequestOptions } from '@docsvision/webclient/Legacy/Utils';
|
|
4
4
|
export declare class LayoutCardControllerStub implements GenControllers.ILayoutCardController {
|
|
5
|
+
cancelCreation(cardId: string, parentCardId: string, options?: RequestOptions): Promise<string>;
|
|
5
6
|
viewEx(request: GenModels.ViewCardLayoutRequest, options?: RequestOptions): Promise<GenModels.LayoutCardViewModel>;
|
|
6
7
|
editEx(request: GenModels.EditCardLayoutRequest, options?: RequestOptions): Promise<GenModels.LayoutCardViewModel>;
|
|
7
8
|
newCard(createParams: GenModels.LayoutCardCreateParams, options?: RequestOptions): Promise<GenModels.LayoutCardViewModel>;
|
|
@@ -72,7 +72,7 @@ export declare class LayoutManager implements ILayoutManager {
|
|
|
72
72
|
protected initialize(): void;
|
|
73
73
|
private onMainContentChanging;
|
|
74
74
|
destroyAllUnsaved(showLeaveConfirmationDialog?: boolean): Promise<void>;
|
|
75
|
-
deleteAllUnsaved(
|
|
75
|
+
deleteAllUnsaved(): Promise<(void | string)[]>;
|
|
76
76
|
/** Закрывает разметку с указанным именем экземпляра. */
|
|
77
77
|
destroy(nameOrId?: string, showLeaveConfirmationDialog?: boolean): Promise<void>;
|
|
78
78
|
private deleteUnsaved;
|
|
@@ -2,6 +2,7 @@ import { GenControllers } from '@docsvision/webclient/Generated/DocsVision.WebCl
|
|
|
2
2
|
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
|
|
3
3
|
import { RequestOptions } from '@docsvision/webclient/Legacy/Utils';
|
|
4
4
|
export declare class LayoutRowControllerStub implements GenControllers.ILayoutRowController {
|
|
5
|
+
cancelCreation(cardId: string, sectionId: string, rowId: string, parentRowId: string, parentRowSectionId: string, options?: RequestOptions): Promise<void>;
|
|
5
6
|
exist(layoutParams: GenModels.RowLayoutParams, options?: RequestOptions): Promise<boolean>;
|
|
6
7
|
newRow(createParams: GenModels.LayoutRowCreateParams, options?: RequestOptions): Promise<GenModels.LayoutRowViewModel>;
|
|
7
8
|
view(layoutParams: GenModels.RowLayoutParams, options?: RequestOptions): Promise<GenModels.LayoutRowViewModel>;
|
|
@@ -64,6 +64,7 @@ export declare class LocationContainerControl extends BaseControl<LocationContai
|
|
|
64
64
|
private root;
|
|
65
65
|
private isControlEmpty;
|
|
66
66
|
private destroying;
|
|
67
|
+
private unmounted;
|
|
67
68
|
protected construct(): void;
|
|
68
69
|
componentWillUnmount(): void;
|
|
69
70
|
dispose(): Promise<void>;
|
package/System/Summernote.d.ts
CHANGED
|
@@ -29,6 +29,12 @@ export interface ISummernoteProps {
|
|
|
29
29
|
savedComment?: string;
|
|
30
30
|
services?: $LayoutStaffController;
|
|
31
31
|
}
|
|
32
|
+
export interface IMentionModel {
|
|
33
|
+
mentionId: string;
|
|
34
|
+
linkForFocus?: HTMLSpanElement;
|
|
35
|
+
mentionOrder?: number;
|
|
36
|
+
mentionElement?: Element;
|
|
37
|
+
}
|
|
32
38
|
export declare const initSummernote: (props: ISummernoteProps) => Promise<void>;
|
|
33
39
|
export interface EmployeeMentionData extends IEmployeeMentionData {
|
|
34
40
|
}
|