@kashifd/jwero-components 0.7.56 → 0.7.59
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.
|
@@ -19,5 +19,5 @@ type JweroButtonMenuType = {
|
|
|
19
19
|
popperSx?: SxProps;
|
|
20
20
|
popperProps?: PopperProps;
|
|
21
21
|
};
|
|
22
|
-
declare const JweroButtonMenu: ({ label, onOpenMenu, customClose, menuList, iconProps, endIcon, boxSx, innerBoxSx, labelProps, menuSx, popperSx, popperProps }: JweroButtonMenuType) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
declare const JweroButtonMenu: ({ label, onOpenMenu, customClose, menuList, iconProps, endIcon, boxSx, innerBoxSx, labelProps, menuSx, popperSx, popperProps, }: JweroButtonMenuType) => import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
export default JweroButtonMenu;
|
|
@@ -4,7 +4,7 @@ import { CustomTypographyProps } from '../JweroTypography';
|
|
|
4
4
|
export type ViewOption = {
|
|
5
5
|
value: string;
|
|
6
6
|
icon: React.ReactNode;
|
|
7
|
-
tooltip
|
|
7
|
+
tooltip?: string;
|
|
8
8
|
labelProps?: {
|
|
9
9
|
text: string;
|
|
10
10
|
flag: boolean;
|
|
@@ -15,7 +15,6 @@ export type ViewOption = {
|
|
|
15
15
|
export type JweroViewOptionsType = {
|
|
16
16
|
options: ViewOption[];
|
|
17
17
|
currentView: string;
|
|
18
|
-
tooltip?: string;
|
|
19
18
|
onChangeView?: (view: string) => void;
|
|
20
19
|
sx?: SxProps;
|
|
21
20
|
};
|