@myunisoft/design-system 1.2.9-rev157-3 → 1.2.9-rev157-4
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.
|
@@ -7,8 +7,5 @@ type IconContainerSlotProps = {
|
|
|
7
7
|
isVisible?: boolean;
|
|
8
8
|
[key: string]: unknown;
|
|
9
9
|
};
|
|
10
|
-
export declare const IconContainerSlot:
|
|
11
|
-
(props: IconContainerSlotProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
displayName: string;
|
|
13
|
-
};
|
|
10
|
+
export declare const IconContainerSlot: import("react").MemoExoticComponent<(props: IconContainerSlotProps) => import("react/jsx-runtime").JSX.Element>;
|
|
14
11
|
export {};
|
|
@@ -7,6 +7,7 @@ type LabelSlotProps = {
|
|
|
7
7
|
customIcon?: React.ReactNode;
|
|
8
8
|
hasMenu?: boolean;
|
|
9
9
|
isVisible?: boolean;
|
|
10
|
+
isTemporary?: boolean;
|
|
10
11
|
itemId: string;
|
|
11
12
|
menuAnchorEl?: HTMLElement | null;
|
|
12
13
|
onMenuClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
@@ -16,8 +17,5 @@ type LabelSlotProps = {
|
|
|
16
17
|
hiddenIconTooltip?: string;
|
|
17
18
|
[key: string]: unknown;
|
|
18
19
|
};
|
|
19
|
-
export declare const LabelSlot:
|
|
20
|
-
(props: LabelSlotProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
displayName: string;
|
|
22
|
-
};
|
|
20
|
+
export declare const LabelSlot: import("react").MemoExoticComponent<(props: LabelSlotProps) => import("react/jsx-runtime").JSX.Element>;
|
|
23
21
|
export {};
|