@myunisoft/design-system 1.3.1-rev157-8 → 1.3.1-rev157-9
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/dist/components/DocumentComposer/Treeview/slots/IconContainerSlot.d.ts +5 -2
- package/dist/components/DocumentComposer/Treeview/slots/LabelInputSlot.d.ts +2 -1
- package/dist/components/DocumentComposer/Treeview/slots/LabelSlot.d.ts +5 -2
- package/dist/components/DocumentComposer/Treeview/slots/index.d.ts +6 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
|
@@ -6,5 +6,8 @@ type IconContainerSlotProps = {
|
|
|
6
6
|
isDraggable?: boolean;
|
|
7
7
|
isVisible?: boolean;
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
declare const _default: import("react").MemoExoticComponent<{
|
|
10
|
+
(props: IconContainerSlotProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
}>;
|
|
13
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { InputHTMLAttributes } from 'react';
|
|
2
2
|
import type { RichTreeViewProApiRef } from '@mui/x-tree-view-pro';
|
|
3
|
-
|
|
3
|
+
declare const LabelInputSlot: import("react").ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & {
|
|
4
4
|
ownerState?: unknown;
|
|
5
5
|
itemId?: string;
|
|
6
6
|
isEditing?: boolean;
|
|
@@ -10,3 +10,4 @@ export declare const LabelInputSlot: import("react").ForwardRefExoticComponent<I
|
|
|
10
10
|
apiRef?: RichTreeViewProApiRef;
|
|
11
11
|
onEditingEnd?: () => void;
|
|
12
12
|
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
13
|
+
export default LabelInputSlot;
|
|
@@ -16,5 +16,8 @@ type LabelSlotProps = {
|
|
|
16
16
|
visibleIconTooltip?: string;
|
|
17
17
|
hiddenIconTooltip?: string;
|
|
18
18
|
};
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
declare const _default: import("react").MemoExoticComponent<{
|
|
20
|
+
(props: LabelSlotProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
displayName: string;
|
|
22
|
+
}>;
|
|
23
|
+
export default _default;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import IconContainerSlot from './IconContainerSlot';
|
|
2
|
+
import LabelInputSlot from './LabelInputSlot';
|
|
3
|
+
import LabelSlot from './LabelSlot';
|
|
4
|
+
export { IconContainerSlot };
|
|
5
|
+
export { LabelInputSlot };
|
|
6
|
+
export { LabelSlot };
|