@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.
@@ -6,5 +6,8 @@ type IconContainerSlotProps = {
6
6
  isDraggable?: boolean;
7
7
  isVisible?: boolean;
8
8
  };
9
- export declare const IconContainerSlot: import("react").MemoExoticComponent<(props: IconContainerSlotProps) => import("react/jsx-runtime").JSX.Element>;
10
- export {};
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
- export declare const LabelInputSlot: import("react").ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & {
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
- export declare const LabelSlot: import("react").MemoExoticComponent<(props: LabelSlotProps) => import("react/jsx-runtime").JSX.Element>;
20
- export {};
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
- export { IconContainerSlot } from './IconContainerSlot';
2
- export { LabelInputSlot } from './LabelInputSlot';
3
- export { LabelSlot } from './LabelSlot';
1
+ import IconContainerSlot from './IconContainerSlot';
2
+ import LabelInputSlot from './LabelInputSlot';
3
+ import LabelSlot from './LabelSlot';
4
+ export { IconContainerSlot };
5
+ export { LabelInputSlot };
6
+ export { LabelSlot };