@docsvision/webclient 5.17.0-beta.22 → 5.17.0-beta.23
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/EmailButtonView.d.ts +1 -1
- package/BackOffice/PowersDirectoryLogic.d.ts +4 -0
- package/BackOffice/PowersDirectorySaveExpandedState.d.ts +2 -0
- package/BackOffice/StaffDirectorySelectDialog.d.ts +1 -0
- package/Helpers/Button.d.ts +2 -0
- package/Helpers/ComandBarButton.d.ts +2 -0
- package/Helpers/IconButton.d.ts +2 -0
- package/Helpers/ModalDialog/ModalDialog.d.ts +1 -0
- package/Helpers/Table/TableHelperRow.d.ts +1 -0
- package/System/DirectorySelectDialog.d.ts +1 -0
- package/package.json +1 -1
- package/BackOffice/SaveExpandedState.d.ts +0 -2
|
@@ -10,7 +10,7 @@ import("@docsvision/web/components/modals/modal-dialog").ModalDialogProps) => JS
|
|
|
10
10
|
import("./components/EmailButtonItem").EmailButtonItemProps) => JSX.Element;
|
|
11
11
|
checkbox:
|
|
12
12
|
import("react").ForwardRefExoticComponent<Pick<
|
|
13
|
-
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "checked" | "readOnly" | "required" | "htmlFor" | "onSetupLogic" | "onSetupView" | "indeterminate" | "labelText" | "innerRef"
|
|
13
|
+
| "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "checked" | "readOnly" | "required" | "htmlFor" | "dataTestId" | "onSetupLogic" | "onSetupView" | "indeterminate" | "labelText" | "innerRef"> &
|
|
14
14
|
import("react").RefAttributes<unknown>>;
|
|
15
15
|
files: (props:
|
|
16
16
|
import("./components/EmailButtonFiles").EmailButtonFilesProps) => JSX.Element;
|
|
@@ -60,6 +60,10 @@ import("effector").Store<string>;
|
|
|
60
60
|
initMainContextMenu(): void;
|
|
61
61
|
componentDidMount:
|
|
62
62
|
import("effector").Event<void>;
|
|
63
|
+
checkReadDirectoryAccess:
|
|
64
|
+
import("effector").Effect<void, boolean, Error>;
|
|
65
|
+
$readDirectoryAccess:
|
|
66
|
+
import("effector").Store<boolean>;
|
|
63
67
|
loadRootSectionsFx:
|
|
64
68
|
import("effector").Effect<void, IPowersTreeRow[], Error>;
|
|
65
69
|
loadSubsectionsFx:
|
|
@@ -29,6 +29,7 @@ export interface IStaffDirectorySelectDialogProps extends IDirectorySelectDialog
|
|
|
29
29
|
initialSelectedValues: ItemT[];
|
|
30
30
|
dataSource: GenModels.StaffItemsDataSourceModel;
|
|
31
31
|
favoritesKey?: string;
|
|
32
|
+
dataTestId?: string;
|
|
32
33
|
services: $StaffDirectoryItemsController & $CardInfo;
|
|
33
34
|
}
|
|
34
35
|
/** @internal */
|
package/Helpers/Button.d.ts
CHANGED
|
@@ -74,6 +74,8 @@ export interface IButtonProperties {
|
|
|
74
74
|
backgroundColor?: string;
|
|
75
75
|
/** Цвет текста кнопки. */
|
|
76
76
|
textColor?: string;
|
|
77
|
+
/** Атрибут для cypress-тестирования */
|
|
78
|
+
dataTestId?: string;
|
|
77
79
|
}
|
|
78
80
|
/** @internal Режимы выравнивания кнопки. */
|
|
79
81
|
export declare enum ButtonAlignModes {
|
|
@@ -20,6 +20,8 @@ export interface ICommandBarButtonProps {
|
|
|
20
20
|
tabIndex?: number;
|
|
21
21
|
/** Класс иконки. */
|
|
22
22
|
iconClassName?: string;
|
|
23
|
+
/** Атрибут для cypress-тестирования */
|
|
24
|
+
dataTestId?: string;
|
|
23
25
|
}
|
|
24
26
|
/**
|
|
25
27
|
* @internal Представляет собой анимированную кнопку, которая выглядит как знак "+" в свёрнутом состоянии, и как "x" в развёрнутом.
|
package/Helpers/IconButton.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export interface IDirectorySelectDialogProps<ValueT extends NodeT | ItemT | Node
|
|
|
34
34
|
/** При смене значения на true модальное окно развернётся, при смене в false - свернётся. */
|
|
35
35
|
maximized?: boolean;
|
|
36
36
|
services?: any;
|
|
37
|
+
dataTestId?: string;
|
|
37
38
|
}
|
|
38
39
|
/** @internal */
|
|
39
40
|
export interface IDirectoryChildrenCacheItem<DataT extends GenModels.IDirectoryItemData> {
|
package/package.json
CHANGED