@useloops/design-system 1.4.422 → 1.4.424
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/esm/index.js +2 -2
- package/dist/index.d.ts +7 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { FunctionComponent, PropsWithChildren, Dispatch, SetStateAction, ReactNode, ReactElement, ChangeEvent, FC } from 'react';
|
|
3
3
|
import * as _mui_material from '@mui/material';
|
|
4
|
-
import { SxProps, Theme, CSSObject, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, LinkProps as LinkProps$1, ButtonProps as ButtonProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, TypographyProps as TypographyProps$1, BoxProps, FormControlLabelProps as FormControlLabelProps$1, IconButtonProps as IconButtonProps$1, TooltipProps as TooltipProps$1, ButtonGroupProps, TextFieldProps as TextFieldProps$1, PaperProps, PopperProps as PopperProps$1, ClickAwayListenerProps, FadeProps, LinearProgressProps, SelectProps as SelectProps$1, SelectChangeEvent, SkeletonProps as SkeletonProps$1, SwitchProps as SwitchProps$1, AccordionProps as AccordionProps$1, AccordionSummaryProps, AccordionDetailsProps, Breakpoint, PaletteMode, Direction } from '@mui/material';
|
|
4
|
+
import { SxProps, Theme, CSSObject, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, LinkProps as LinkProps$1, ButtonProps as ButtonProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, TypographyProps as TypographyProps$1, BoxProps, FormControlLabelProps as FormControlLabelProps$1, IconButtonProps as IconButtonProps$1, TooltipProps as TooltipProps$1, ButtonGroupProps, TextFieldProps as TextFieldProps$1, PaperProps, PopperProps as PopperProps$1, ClickAwayListenerProps, FadeProps, LinearProgressProps, SelectProps as SelectProps$1, SelectChangeEvent, SkeletonProps as SkeletonProps$1, SwitchProps as SwitchProps$1, SvgIconProps, AccordionProps as AccordionProps$1, AccordionSummaryProps, AccordionDetailsProps, Breakpoint, PaletteMode, Direction } from '@mui/material';
|
|
5
5
|
import { PopupState } from 'material-ui-popup-state/hooks';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
7
|
import { SemanticColor as SemanticColor$1, IconName as IconName$2 } from 'systems/BrandCore';
|
|
@@ -2002,15 +2002,19 @@ interface DataPointInfoProps {
|
|
|
2002
2002
|
declare const DataPointInfo: react.ForwardRefExoticComponent<DataPointInfoProps & react.RefAttributes<HTMLDivElement>>;
|
|
2003
2003
|
|
|
2004
2004
|
type EmptyStateCardProps = {
|
|
2005
|
-
onClickCta
|
|
2006
|
-
ctaText?: string;
|
|
2005
|
+
onClickCta?: () => void;
|
|
2007
2006
|
title?: string;
|
|
2008
2007
|
body?: string;
|
|
2008
|
+
ctaText?: string;
|
|
2009
|
+
iconName?: IconName;
|
|
2010
|
+
hideCta?: boolean;
|
|
2011
|
+
hideIcon?: boolean;
|
|
2009
2012
|
slotProps?: {
|
|
2010
2013
|
surface?: Partial<SurfaceProps>;
|
|
2011
2014
|
button?: Partial<ButtonProps>;
|
|
2012
2015
|
title?: Partial<TypographyProps>;
|
|
2013
2016
|
body?: Partial<TypographyProps>;
|
|
2017
|
+
icon?: SvgIconProps;
|
|
2014
2018
|
};
|
|
2015
2019
|
sx?: SxProps<Theme>;
|
|
2016
2020
|
};
|