@superdispatch/ui 0.49.0 → 0.49.5
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 +5 -4
- package/package.json +1 -1
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';
|
|
@@ -216,8 +215,10 @@ declare type DrawerContentProps = HTMLAttributes<HTMLDivElement>;
|
|
|
216
215
|
/** @deprecated Use `<AppDrawer>` instead. */
|
|
217
216
|
declare const DrawerContent: ForwardRefExoticComponent<DrawerContentProps & RefAttributes<HTMLDivElement>>;
|
|
218
217
|
|
|
219
|
-
declare type DrawerListProps = Omit<ListProps<'div'>, 'component'
|
|
220
|
-
|
|
218
|
+
declare type DrawerListProps = Omit<ListProps<'div'>, 'component'> & {
|
|
219
|
+
children?: ReactNode;
|
|
220
|
+
};
|
|
221
|
+
declare const DrawerList: ForwardRefExoticComponent<Omit<DrawerListProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
221
222
|
|
|
222
223
|
interface DrawerTitleProps extends Omit<HTMLAttributes<HTMLDivElement>, 'color' | 'title'> {
|
|
223
224
|
children?: ReactNode;
|