@superdispatch/ui 0.49.1 → 0.50.0
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-types/index.d.ts +2 -3
- package/package.json +2 -2
package/dist-types/index.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { ButtonProps as ButtonProps$1, ToolbarProps, AvatarClassKey, AvatarTypeMap, ButtonBaseProps, CheckboxProps, FormControlLabelProps, FormControlProps, FormGroupProps, FormLabelProps, FormHelperTextProps, TypographyProps, TooltipProps, ListProps,
|
|
2
|
+
import { ButtonProps as ButtonProps$1, ToolbarProps, AvatarClassKey, AvatarTypeMap, ButtonBaseProps, CheckboxProps, FormControlLabelProps, FormControlProps, FormGroupProps, FormLabelProps, FormHelperTextProps, TypographyProps, TooltipProps, ListProps, MenuListProps, ButtonGroupProps, GridProps, CardClassKey, CardProps, CardContentProps, IconButtonProps, StandardTextFieldProps, InputProps, RadioProps, RadioGroupProps, SnackbarContentProps as SnackbarContentProps$1, SnackbarContentClassKey as SnackbarContentClassKey$1, SnackbarProps as SnackbarProps$1, Theme } from '@material-ui/core';
|
|
3
3
|
import { RefAttributes, ForwardRefExoticComponent, Key, ReactNode, MouseEvent, ReactElement, EventHandler, ButtonHTMLAttributes, Ref, ElementType, HTMLAttributes, ImgHTMLAttributes, InputHTMLAttributes, ConsumerProps } from 'react';
|
|
4
4
|
import { ClassNameMap } from '@material-ui/styles';
|
|
5
5
|
import { Property } from 'csstype';
|
|
6
|
-
import { CommonProps } from '@material-ui/core/OverridableComponent';
|
|
7
6
|
import { NumericFormatProps, PatternFormatProps } from 'react-number-format';
|
|
8
7
|
import { Breakpoint } from '@material-ui/core/styles/createBreakpoints';
|
|
9
8
|
import { SkeletonClassKey } from '@material-ui/lab';
|
|
@@ -219,7 +218,7 @@ declare const DrawerContent: ForwardRefExoticComponent<DrawerContentProps & RefA
|
|
|
219
218
|
declare type DrawerListProps = Omit<ListProps<'div'>, 'component'> & {
|
|
220
219
|
children?: ReactNode;
|
|
221
220
|
};
|
|
222
|
-
declare const DrawerList: ForwardRefExoticComponent<
|
|
221
|
+
declare const DrawerList: ForwardRefExoticComponent<Omit<DrawerListProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
223
222
|
|
|
224
223
|
interface DrawerTitleProps extends Omit<HTMLAttributes<HTMLDivElement>, 'color' | 'title'> {
|
|
225
224
|
children?: ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdispatch/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist-*/**",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@juggle/resize-observer": "^3.3.1",
|
|
17
|
-
"@superdispatch/hooks": "^0.
|
|
17
|
+
"@superdispatch/hooks": "^0.50.0",
|
|
18
18
|
"clsx": "^1.2.1",
|
|
19
19
|
"react-keyed-flatten-children": "^1.2.0",
|
|
20
20
|
"react-number-format": "5.3.1"
|