@docsvision/webclient 5.17.0-beta.3 → 5.17.0-beta.7
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/ChildTasksPerformingImpl.d.ts +3 -3
- package/BackOffice/DepartmentFilterViewComponents.d.ts +1 -1
- package/BackOffice/DirectorySearchResultView.d.ts +1 -1
- package/BackOffice/ExistingCardLinkDialog.d.ts +1 -1
- package/BackOffice/PartnerBase.d.ts +2 -2
- package/BackOffice/PartnerDirectoryBase.d.ts +3 -3
- package/BackOffice/PrintButtonView.d.ts +1 -1
- package/BackOffice/SearchBar.d.ts +4 -0
- package/BackOffice/StaffDirectoryConstants.d.ts +15 -0
- package/BackOffice/StaffDirectoryItems.d.ts +1 -1
- package/BackOffice/StaffDirectoryItemsImpl.d.ts +1 -1
- package/BackOffice/TaskTasksTreeNodeResolver.d.ts +3 -2
- package/BackOffice/TasksTableView.d.ts +3 -3
- package/BackOffice/WebFrameDirectorySearchPanel.d.ts +2 -1
- package/BackOffice/WebFrameDirectorySearchPanelLogic.d.ts +5 -0
- package/BackOffice/WebFrameDirectorySearchPanelView.d.ts +1 -1
- package/Generated/DocsVision.WebClient.Controllers.d.ts +6 -1
- package/Generated/DocsVision.WebClient.Models.d.ts +102 -9
- package/Helpers/DateRangePicker/DateRangePicker.d.ts +27 -0
- package/Helpers/DateRangePicker/DateRangePicker.stories.d.ts +9 -0
- package/Helpers/DateRangePicker/components/DateRangePickerDay.d.ts +15 -0
- package/Helpers/DateRangePicker/components/DateRangePickerToolbar.d.ts +16 -0
- package/Legacy/ApprovalFilePanel.d.ts +1 -0
- package/Legacy/BasicGridHtmlBuilder.d.ts +1 -1
- package/Legacy/WebFrameSearchPanelRouteHandler.d.ts +0 -1
- package/Platform/$ContextMenuOptions.d.ts +1 -0
- package/Platform/$FolderDataLoading.d.ts +3 -1
- package/Platform/$FolderGrid.d.ts +7 -0
- package/Platform/$TablePresentationToggle.d.ts +8 -0
- package/Platform/ArchivedCardsIcon.d.ts +4 -1
- package/Platform/ArchivedCardsPlugin.d.ts +1 -1
- package/Platform/ArchivedCardsResponseResolver.d.ts +1 -2
- package/Platform/BaseMainMenuItemImpl.d.ts +2 -2
- package/Platform/CalendarInput.d.ts +1 -1
- package/Platform/ClearButton.d.ts +7 -5
- package/Platform/DateInput.d.ts +3 -13
- package/Platform/Dropdown.d.ts +4 -0
- package/Platform/FilterDate.d.ts +11 -0
- package/Platform/FilterDateRangePicker.d.ts +6 -0
- package/Platform/FilterDateTextListInput.d.ts +5 -0
- package/Platform/FocusableTextInput.d.ts +3 -8
- package/Platform/FolderDataLoadingService.d.ts +3 -1
- package/Platform/FolderGrid.d.ts +1 -1
- package/Platform/FolderGrid.stories.d.ts +1 -0
- package/Platform/FolderGridConstants.d.ts +7 -0
- package/Platform/FolderGridService.d.ts +4 -1
- package/Platform/IFilterComponent.d.ts +29 -0
- package/Platform/InputWithMask.d.ts +4 -3
- package/Platform/ListCheckbox.d.ts +6 -0
- package/Platform/ListContent.d.ts +8 -0
- package/Platform/ListContentHightlight.d.ts +9 -0
- package/Platform/ListEmpty.d.ts +6 -0
- package/Platform/ListEmptySearchIcon.d.ts +6 -0
- package/Platform/ListInput.d.ts +9 -0
- package/Platform/ListItem.d.ts +6 -0
- package/Platform/ListLoading.d.ts +6 -0
- package/Platform/ListSearchIcon.d.ts +6 -0
- package/Platform/ListSlot.d.ts +7 -0
- package/Platform/ListTotalItem.d.ts +8 -0
- package/Platform/ListViewResponseResolver.d.ts +13 -0
- package/Platform/LoaderDialog.d.ts +1 -1
- package/Platform/SearchTextInput.d.ts +6 -0
- package/Platform/SecurityDescriptorDialog.d.ts +1 -1
- package/Platform/SettingsPopup.d.ts +1 -1
- package/Platform/SettingsPopupExtendedData.d.ts +2 -2
- package/Platform/SettingsPopupLogic.d.ts +7 -1
- package/Platform/SettingsPopupResponseResolver.d.ts +0 -2
- package/Platform/TablePresentationTogglePlugins.d.ts +9 -0
- package/Platform/TablePresentationToggleService.d.ts +8 -0
- package/Platform/TextListInput.d.ts +6 -0
- package/Platform/TextListInputLogic.d.ts +55 -0
- package/Platform/TextListInputView.d.ts +40 -0
- package/Platform/TextListInputWrapper.d.ts +7 -0
- package/Platform/UnreadBarTablePlugins.d.ts +3 -0
- package/Platform/UserProfileDialog.d.ts +1 -1
- package/Platform/WebFrameSearchPanel.d.ts +4 -2
- package/Platform/applyCurrentSettings.d.ts +7 -1
- package/Platform/setColumnsSettings.d.ts +6 -0
- package/Platform/updateValueCheckedColumn.d.ts +5 -1
- package/System/BaseControl.d.ts +1 -0
- package/System/CancelableEvent.d.ts +1 -1
- package/System/ControlTemplateView.d.ts +1 -1
- package/System/DirectorySelectDialog.d.ts +2 -2
- package/System/LocationContainerControl.d.ts +2 -1
- package/System/summernote-paste-without-formating.d.ts +10 -0
- package/package.json +1 -1
- package/Legacy/SearchPanelRouteHandler.d.ts +0 -18
- package/Platform/GridConstants.d.ts +0 -4
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ITextListInputProps } from "@docsvision/webclient/Platform/TextListInput";
|
|
2
|
+
import { ComponentLogic } from "@docsvision/web/core/component";
|
|
3
|
+
import { ChangeEvent } from "react";
|
|
4
|
+
export interface IListItems {
|
|
5
|
+
selected: boolean;
|
|
6
|
+
value: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class TextListInputLogic extends ComponentLogic<ITextListInputProps> {
|
|
9
|
+
domain:
|
|
10
|
+
import("effector").Domain;
|
|
11
|
+
pageSize: number;
|
|
12
|
+
pageNumber: number;
|
|
13
|
+
scrollTop: number;
|
|
14
|
+
searchText: string;
|
|
15
|
+
isFullList: boolean;
|
|
16
|
+
listWrapper: HTMLDivElement;
|
|
17
|
+
filterValues: string[];
|
|
18
|
+
$listWrapper:
|
|
19
|
+
import("effector").Store<HTMLDivElement>;
|
|
20
|
+
setListWrapper:
|
|
21
|
+
import("effector").Event<HTMLDivElement>;
|
|
22
|
+
$listScrollable:
|
|
23
|
+
import("effector").Store<boolean>;
|
|
24
|
+
setListScrollable:
|
|
25
|
+
import("effector").Event<boolean>;
|
|
26
|
+
setSearchText:
|
|
27
|
+
import("effector").Event<ChangeEvent<HTMLInputElement>>;
|
|
28
|
+
$searchText:
|
|
29
|
+
import("effector").Store<string>;
|
|
30
|
+
$formatedSearchText:
|
|
31
|
+
import("effector").Store<string>;
|
|
32
|
+
setListItems:
|
|
33
|
+
import("effector").Event<IListItems[]>;
|
|
34
|
+
$listItems:
|
|
35
|
+
import("effector").Store<IListItems[]>;
|
|
36
|
+
$loading:
|
|
37
|
+
import("effector").Store<boolean>;
|
|
38
|
+
setLoading:
|
|
39
|
+
import("effector").Event<boolean>;
|
|
40
|
+
private getListData;
|
|
41
|
+
private getGrouping;
|
|
42
|
+
private format;
|
|
43
|
+
private reloadListData;
|
|
44
|
+
onClear: (e: any) => void;
|
|
45
|
+
private clearDateString;
|
|
46
|
+
private formatData;
|
|
47
|
+
private onScrollTop;
|
|
48
|
+
onScroll: (e: React.UIEvent<HTMLDivElement>) => void;
|
|
49
|
+
onCheckboxChange: (e: React.ChangeEvent<HTMLInputElement>, key: number) => void;
|
|
50
|
+
private onChangeItems;
|
|
51
|
+
private formatItem;
|
|
52
|
+
onVisible(): void;
|
|
53
|
+
formatNumber(str: any): any;
|
|
54
|
+
init(): void;
|
|
55
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare class TextListInputView {
|
|
3
|
+
listInput:
|
|
4
|
+
import("react").ForwardRefExoticComponent<Pick<
|
|
5
|
+
import("./components/ListInput").IListInputProps, "dir" | "slot" | "style" | "title" | "children" | "className" | "onClick" | "onKeyDown" | "onFocus" | "onBlur" | "tabIndex" | "color" | "hidden" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "onSubmit" | "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" | "isScrollable" | "isDate"> &
|
|
6
|
+
import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
clearButton:
|
|
8
|
+
import("react").FC<
|
|
9
|
+
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/@docsvision/ClearButton").IFilteringClearButtonProps>;
|
|
10
|
+
textInput:
|
|
11
|
+
import("react").ForwardRefExoticComponent<Pick<
|
|
12
|
+
import("./components/SearchTextInput").ISearchTextInputProps, "dir" | "form" | "slot" | "style" | "title" | "name" | "disabled" | "children" | "pattern" | "className" | "onClick" | "onKeyDown" | "onFocus" | "onBlur" | "tabIndex" | "color" | "width" | "hidden" | "type" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "onSubmit" | "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" | "list" | "src" | "height" | "value" | "required" | "step" | "size" | "autoComplete" | "autoFocus" | "readOnly" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "alt" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "max" | "maxLength" | "min" | "minLength" | "multiple"> &
|
|
13
|
+
import("react").RefAttributes<HTMLInputElement>>;
|
|
14
|
+
wrapper: (props:
|
|
15
|
+
import("./components/TextListInputWrapper").ITextListInputWrapperProps) => JSX.Element;
|
|
16
|
+
content: (props:
|
|
17
|
+
import("./components/ListContent").IListContentProps) => JSX.Element;
|
|
18
|
+
item: (props:
|
|
19
|
+
import("./components/ListItem").IListItemProps) => JSX.Element;
|
|
20
|
+
checkbox:
|
|
21
|
+
import("react").ForwardRefExoticComponent<Pick<
|
|
22
|
+
import("./components/ListCheckbox").IListCheckboxProps, "dir" | "form" | "slot" | "style" | "title" | "name" | "disabled" | "children" | "pattern" | "className" | "onClick" | "onKeyDown" | "onFocus" | "onBlur" | "tabIndex" | "color" | "width" | "hidden" | "type" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "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" | "onSubmit" | "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" | "list" | "src" | "height" | "value" | "required" | "step" | "size" | "autoComplete" | "autoFocus" | "readOnly" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "alt" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "max" | "maxLength" | "min" | "minLength" | "multiple"> &
|
|
23
|
+
import("react").RefAttributes<HTMLInputElement>>;
|
|
24
|
+
empty: (props:
|
|
25
|
+
import("./components/ListEmpty").IListEmptyProps) => JSX.Element;
|
|
26
|
+
icon: (props:
|
|
27
|
+
import("./components/ListEmptySearchIcon").IListEmptySearchIconProps) => JSX.Element;
|
|
28
|
+
slot: (props:
|
|
29
|
+
import("./components/ListSlot").IListSlotProps) => JSX.Element;
|
|
30
|
+
searchIcon: (props:
|
|
31
|
+
import("./components/ListSearchIcon").IListSearchIconProps) => JSX.Element;
|
|
32
|
+
total: (props:
|
|
33
|
+
import("./components/ListTotalItem").IListTotalItemProps) => JSX.Element;
|
|
34
|
+
light: (props:
|
|
35
|
+
import("./components/ListContentHightlight").IListContenHightlightProps) => JSX.Element;
|
|
36
|
+
magnifyIcon: (props:
|
|
37
|
+
import("@docsvision/web/icons/MagnifyIcon").IMagnifyIconProps) => JSX.Element;
|
|
38
|
+
loading: (props:
|
|
39
|
+
import("./components/ListLoading").IListLoadingProps) => JSX.Element;
|
|
40
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HtmlProps } from '@docsvision/web/core/component';
|
|
3
|
+
import './TextListInputWrapper.css';
|
|
4
|
+
export interface ITextListInputWrapperProps extends HtmlProps.div {
|
|
5
|
+
isDate: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare const TextListInputWrapper: (props: ITextListInputWrapperProps) => JSX.Element;
|
|
@@ -4,8 +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 "./UnreadBarTablePlugins.css";
|
|
7
8
|
export declare const UnreadBarFeature = "UnreadBarFeature";
|
|
9
|
+
export declare const UNREAD_BAR_COLUMN_VISIBILITY = "UnreadBarVisibility";
|
|
8
10
|
export declare const UnreadBarTableCellPlugin: TablePlugins.Cell.Component<$UnreadBar>;
|
|
11
|
+
export declare const UnreadBarListViewTableCellPlugin: TablePlugins.Cell.Component<$UnreadBar>;
|
|
9
12
|
export declare const UnreadBarServiceProvider: TablePlugins.ServiceProvider<$UnreadBar & $CardController & $UnreadCounter & $Domain>;
|
|
10
13
|
export declare const UnreadBarTableRowMountEffect: TablePlugins.Row.MountEffect<$ApplicationSettings & $UnreadBar>;
|
|
11
14
|
export declare const UnreadBarTableRowDecorator: TablePlugins.Row.Decorator<$ApplicationSettings & $UnreadBar>;
|
|
@@ -25,7 +25,7 @@ export declare class UserProfileDialog extends React.Component<Props, State> imp
|
|
|
25
25
|
private attachRoot;
|
|
26
26
|
DialogBox:
|
|
27
27
|
import("styled-components").StyledComponent<(props:
|
|
28
|
-
import("C:/
|
|
28
|
+
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/@docsvision/Helpers/ModalDialog/ModalDialogBox").IModalDialogBoxProps) => JSX.Element, any, {}, never>;
|
|
29
29
|
close(): void;
|
|
30
30
|
render(): JSX.Element;
|
|
31
31
|
}
|
|
@@ -8,9 +8,10 @@ import { $CompanyLogo } from '@docsvision/webclient/Platform/$CompanyLogo';
|
|
|
8
8
|
import { SearchDropdown } from '@docsvision/webclient/Legacy/SearchDropdown';
|
|
9
9
|
import { $WebFrameContext } from '@docsvision/webclient/Platform/$WebFrameContext';
|
|
10
10
|
import { $Router } from '@docsvision/webclient/System/$Router';
|
|
11
|
-
import { $WebFrameSearchPanel } from '@docsvision/webclient/Platform/$WebFrameSearchPanel';
|
|
12
11
|
import { $ExperimentalFeature } from '@docsvision/webclient/System/$ExperimentalFeature';
|
|
13
12
|
import { $LastSearchResponse } from '@docsvision/webclient/System/$LastSearchResponse';
|
|
13
|
+
import { $WebFrameSearchPanel } from '@docsvision/webclient/Platform/$WebFrameSearchPanel';
|
|
14
|
+
import { $Resources } from '@docsvision/web/core/localization/$Resources';
|
|
14
15
|
export declare class WebFrameSearchPanelParams extends BaseControlParams {
|
|
15
16
|
/** Стандартный CSS класс со стилями элемента управления */
|
|
16
17
|
standardCssClass?: string;
|
|
@@ -24,7 +25,7 @@ export declare class WebFrameSearchPanelParams extends BaseControlParams {
|
|
|
24
25
|
isClearButtonHidden?: boolean;
|
|
25
26
|
/** Скрыт ли плейсхолдер */
|
|
26
27
|
isPlaceholderHidden?: boolean;
|
|
27
|
-
services?: $Layout & $ApplicationSettings & $CompanyLogo & $FullTextSearchEnabled & $WebFrameContext & $DeviceType & $Router & $LastSearchRequest & $WebFrameSearchPanel & $ExperimentalFeature & $LastSearchResponse;
|
|
28
|
+
services?: $Layout & $ApplicationSettings & $CompanyLogo & $FullTextSearchEnabled & $WebFrameContext & $DeviceType & $Router & $LastSearchRequest & $WebFrameSearchPanel & $ExperimentalFeature & $LastSearchResponse & $Resources & $WebFrameSearchPanel;
|
|
28
29
|
}
|
|
29
30
|
export interface WebFrameSearchPanelState extends WebFrameSearchPanelParams, BaseControlState {
|
|
30
31
|
}
|
|
@@ -81,6 +82,7 @@ export declare class WebFrameSearchPanel extends BaseControl<WebFrameSearchPanel
|
|
|
81
82
|
handleInput: (e: any) => void;
|
|
82
83
|
updateSearchText: (value: string) => void;
|
|
83
84
|
handleKeyPress: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
85
|
+
handleOnClickSearchButton: () => void;
|
|
84
86
|
handleOnKeyUp: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
85
87
|
renderControl(): JSX.Element;
|
|
86
88
|
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
|
-
|
|
2
|
+
import { ITableData } from "@docsvision/web/components/table/interfaces";
|
|
3
|
+
export declare function applyCurrentSettings(info: {
|
|
4
|
+
gridUserSettings: GenModels.GridUserSettingsData;
|
|
5
|
+
listView: boolean;
|
|
6
|
+
tableData: ITableData;
|
|
7
|
+
viewId: string;
|
|
8
|
+
}, columns: GenModels.ViewColumnModel[]): GenModels.ViewColumnModel[];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
|
+
import { ITableData } from "@docsvision/web/components/table/interfaces";
|
|
3
|
+
export declare const DEFAULT_LIST_VIEW_COLUMNS_COUNT_VISIBLE = 3;
|
|
4
|
+
export declare const LIST_VIEW_DEFAULT_COLUMN_VISIBILITY = "ListViewDefaultVisibility";
|
|
5
|
+
export declare const USER_SETUP_COLUMN_VISIBILITY = "UserSetupVisibility";
|
|
6
|
+
export declare function setColumnsSettings(data: ITableData, settings: GenModels.GridUserSettingsData): void;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
1
|
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
|
|
2
|
-
export
|
|
2
|
+
export interface IColumnVisibility {
|
|
3
|
+
columnName: string;
|
|
4
|
+
visible: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function updateValueCheckedColumn(columns: GenModels.ViewColumnModel[], data: IColumnVisibility): GenModels.ViewColumnModel[];
|
package/System/BaseControl.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ import { IValidationResult } from "@docsvision/webclient/System/IValidationResul
|
|
|
20
20
|
import React from "react";
|
|
21
21
|
import { IValidateEventArgs } from '@docsvision/webclient/System/IValidateEventArgs';
|
|
22
22
|
export declare let DEFAULT_CONTROL_NAME: string;
|
|
23
|
+
export declare const BASE_CONTROL_SYSTEM_HANDLER = "BASE_CONTROL_SYSTEM_HANDLER";
|
|
23
24
|
/**
|
|
24
25
|
* Базовый класс для описания публичных свойств контрола.
|
|
25
26
|
*
|
|
@@ -25,4 +25,4 @@ export declare class CancelableEvent<T> extends BasicEvent<ICancelableEventArgs<
|
|
|
25
25
|
/** Создает экземпляр {@link CancelableEvent}. */
|
|
26
26
|
static Create<T>(sender: any, subscriberFunc?: CancelableApiEvent<T> | string): CancelableEvent<T> & BasicEventHandler<T>;
|
|
27
27
|
}
|
|
28
|
-
export declare function callCancelableEventHandlers<T>(handlers: BasicEventHandler<ICancelableEventArgs<T>>[], data: ICancelableEventArgs<T>, actualSender: any, createArgs?: (data: any) => CancelableEventArgs<T>): void;
|
|
28
|
+
export declare function callCancelableEventHandlers<T>(handlers: BasicEventHandler<ICancelableEventArgs<T>>[], data: ICancelableEventArgs<T>, actualSender: any, paramName: string, createArgs?: (data: any) => CancelableEventArgs<T>): void;
|
|
@@ -4,7 +4,7 @@ import { ControlTemplateText } from "@docsvision/webclient/System/ControlTemplat
|
|
|
4
4
|
export declare class ControlTemplateView {
|
|
5
5
|
text: typeof ControlTemplateText;
|
|
6
6
|
button: (props:
|
|
7
|
-
import("C:/
|
|
7
|
+
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/Helpers/Button").IButtonProperties) => JSX.Element;
|
|
8
8
|
frame: typeof ControlTemplateFrame;
|
|
9
9
|
buttonText: string;
|
|
10
10
|
}
|
|
@@ -77,10 +77,10 @@ export declare abstract class DirectorySelectDialog<ValueT extends NodeT | ItemT
|
|
|
77
77
|
protected modalHost: CommonModalDialogHost;
|
|
78
78
|
static SimpleItemView:
|
|
79
79
|
import("styled-components").StyledComponent<typeof SimpleItemViewContent, any,
|
|
80
|
-
import("C:/
|
|
80
|
+
import("C:/dev/WebClient/Bin/Helpers/CustomTree/Theme/Default/CustomTreeNodeContentDefault").ICustomTreeNodeContentDefaultProps, never>;
|
|
81
81
|
static SimpleItemViewCompact:
|
|
82
82
|
import("styled-components").StyledComponent<typeof SimpleItemViewContent, any,
|
|
83
|
-
import("C:/
|
|
83
|
+
import("C:/dev/WebClient/Bin/Helpers/CustomTree/Theme/Default/CustomTreeNodeContentDefault").ICustomTreeNodeContentDefaultProps, never>;
|
|
84
84
|
/** @internal */
|
|
85
85
|
state: StateT;
|
|
86
86
|
searchInput: HTMLInputElement;
|
|
@@ -13,7 +13,8 @@ import { CancelableEvent } from '@docsvision/webclient/System/CancelableEvent';
|
|
|
13
13
|
import { IEventArgs } from '@docsvision/webclient/System/IEventArgs';
|
|
14
14
|
import { SimpleEvent } from '@docsvision/webclient/System/SimpleEvent';
|
|
15
15
|
import { LocationSourceMode } from '@docsvision/webclient/Helpers/LocationContainer/LocationSourceMode';
|
|
16
|
-
|
|
16
|
+
import { $DeviceType } from "@docsvision/webclient/StandardServices";
|
|
17
|
+
export declare type $LocationContainerControlServices = Optional<$LayoutController> & $LayoutManager & Optional<$CurrentLocation> & Optional<$Layout> & $DeviceType;
|
|
17
18
|
/**
|
|
18
19
|
* Содержит публичные свойства элемента управления [LayoutPosition]{@link LayoutPosition}.
|
|
19
20
|
*/
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare function initSummernotePasteWithoutFormattingPlugin(): void;
|
|
2
|
+
export declare class SummernotePasteWithoutFormatingPlugin {
|
|
3
|
+
private ui;
|
|
4
|
+
private options;
|
|
5
|
+
private lang;
|
|
6
|
+
constructor(context: any);
|
|
7
|
+
events: {
|
|
8
|
+
'summernote.paste': (we: any, e: any) => void;
|
|
9
|
+
};
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { IRouteHandler } from "@docsvision/webclient/System/IRouteHandler";
|
|
2
|
-
import { RouteHandleResult } from "@docsvision/webclient/System/RouteHandleResult";
|
|
3
|
-
import { RouteType } from "@docsvision/webclient/System/RouteType";
|
|
4
|
-
import { $WebFrameContext } from '@docsvision/webclient/Platform/$WebFrameContext';
|
|
5
|
-
import { $SearchPanel } from '@docsvision/webclient/Legacy/$SearchPanel';
|
|
6
|
-
import { $ExperimentalFeature } from "@docsvision/webclient/System/$ExperimentalFeature";
|
|
7
|
-
/** @internal */
|
|
8
|
-
export declare class SearchPanelRouteHandler implements IRouteHandler<any> {
|
|
9
|
-
private services;
|
|
10
|
-
name: string;
|
|
11
|
-
availableRouteHandler: boolean;
|
|
12
|
-
constructor(services: $WebFrameContext & $SearchPanel & $ExperimentalFeature);
|
|
13
|
-
prepareRouteDataLoad(routeData: any, routeType: RouteType): Promise<RouteHandleResult>;
|
|
14
|
-
mountRoute(data: any, routeType: RouteType): Promise<RouteHandleResult>;
|
|
15
|
-
unmountRoute(data: any, routeType: RouteType): Promise<void>;
|
|
16
|
-
}
|
|
17
|
-
/** @internal Временная функция, перестраивающая панель поиска в обход стандартного механизма роутинга. Функция будет удалена в следующих релизах. */
|
|
18
|
-
export declare function __DangerRemountSearchPanel(): void;
|