@movable/ui 4.0.1 → 4.0.2
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/lib/components/InkRadioTiles/InkRadioTiles.d.ts +2 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.mjs +974 -974
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -17
- package/README.md +0 -136
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { Ref } from 'react';
|
|
2
|
-
import { SxProps, Theme } from '@mui/material';
|
|
2
|
+
import { SxProps, Theme, TooltipProps } from '@mui/material';
|
|
3
3
|
interface Option {
|
|
4
4
|
value: string;
|
|
5
5
|
icon?: JSX.Element;
|
|
@@ -8,6 +8,7 @@ interface Option {
|
|
|
8
8
|
subDescription?: string;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
bottomContent?: string | JSX.Element;
|
|
11
|
+
tooltipProps?: Omit<TooltipProps, 'children'>;
|
|
11
12
|
}
|
|
12
13
|
export type InkRadioTilesProps = {
|
|
13
14
|
name: string;
|
package/lib/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ import { Theme } from '@mui/material/styles';
|
|
|
65
65
|
import { Theme as Theme_2 } from '@mui/material';
|
|
66
66
|
import { ToggleButtonGroupProps } from '@mui/material';
|
|
67
67
|
import { ToggleButtonProps } from '@mui/material';
|
|
68
|
+
import { TooltipProps } from '@mui/material';
|
|
68
69
|
import { TypographyProps } from '@mui/material';
|
|
69
70
|
import { UseControllerProps } from 'react-hook-form';
|
|
70
71
|
import { VariantType as VariantType_2 } from 'notistack';
|
|
@@ -1128,6 +1129,7 @@ declare interface Option_2 {
|
|
|
1128
1129
|
subDescription?: string;
|
|
1129
1130
|
disabled?: boolean;
|
|
1130
1131
|
bottomContent?: string | JSX.Element;
|
|
1132
|
+
tooltipProps?: Omit<TooltipProps, 'children'>;
|
|
1131
1133
|
}
|
|
1132
1134
|
|
|
1133
1135
|
export declare function PageHeaderActionButtons({ primaryAction, secondaryAction, dropdownAction, }: PageHeaderActionButtonsProps): JSX_2.Element;
|