@useloops/design-system 1.4.479 → 1.4.481
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 +1 -1
- package/dist/index.d.ts +6 -2
- 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, ReactElement, MouseEventHandler, ComponentProps, Dispatch, SetStateAction, ReactNode, ChangeEvent, FC } from 'react';
|
|
3
3
|
import * as _mui_material from '@mui/material';
|
|
4
|
-
import { SxProps, Theme, CSSObject, ButtonProps as ButtonProps$1, TypographyProps as TypographyProps$1, BoxProps, PaperProps, PopperProps as PopperProps$1, ClickAwayListenerProps, FadeProps, SkeletonProps as SkeletonProps$1, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, LinkProps as LinkProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, FormControlLabelProps as FormControlLabelProps$1, IconButtonProps as IconButtonProps$1, TooltipProps as TooltipProps$1, ButtonGroupProps, TextFieldProps as TextFieldProps$1, LinearProgressProps, SelectProps as SelectProps$1, SelectChangeEvent, SwitchProps as SwitchProps$1, SvgIconProps, AccordionProps as AccordionProps$1, AccordionSummaryProps, AccordionDetailsProps, Breakpoint, PaletteMode, Direction } from '@mui/material';
|
|
4
|
+
import { SxProps, Theme, CSSObject, ButtonProps as ButtonProps$1, TypographyProps as TypographyProps$1, BoxProps, PaperProps, PopperProps as PopperProps$1, ClickAwayListenerProps, FadeProps, SkeletonProps as SkeletonProps$1, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, LinkProps as LinkProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, FormControlLabelProps as FormControlLabelProps$1, IconButtonProps as IconButtonProps$1, TooltipProps as TooltipProps$1, ButtonGroupProps, TextFieldProps as TextFieldProps$1, CircularProgressProps, LinearProgressProps, SelectProps as SelectProps$1, SelectChangeEvent, SwitchProps as SwitchProps$1, SvgIconProps, AccordionProps as AccordionProps$1, AccordionSummaryProps, AccordionDetailsProps, Breakpoint, PaletteMode, Direction } from '@mui/material';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { PopupState } from 'material-ui-popup-state/hooks';
|
|
7
7
|
import { Theme as Theme$1, SxProps as SxProps$1 } from '@mui/material/styles';
|
|
@@ -1029,9 +1029,13 @@ type AISummaryProps = {
|
|
|
1029
1029
|
attribution?: string;
|
|
1030
1030
|
menuItems?: MenuProps['menuItems'];
|
|
1031
1031
|
onStartChatClick?: () => void;
|
|
1032
|
+
onRetryClick?: () => void;
|
|
1032
1033
|
loading?: boolean;
|
|
1034
|
+
loadingMessage?: string;
|
|
1035
|
+
error?: boolean;
|
|
1033
1036
|
slotProps?: {
|
|
1034
1037
|
heading?: Omit<TypographyProps, 'children'>;
|
|
1038
|
+
retry?: Omit<TypographyProps, 'onClick'>;
|
|
1035
1039
|
expandableTypographyClamp?: Omit<ExpandableTypographyClampProps, 'children'>;
|
|
1036
1040
|
attributionIcon?: ComponentProps<typeof Icon>;
|
|
1037
1041
|
attribution?: Omit<TypographyProps, 'children'>;
|
|
@@ -1737,7 +1741,7 @@ declare const Pill: FunctionComponent<PillProps>;
|
|
|
1737
1741
|
declare const PoweredByWatermarkLogo: () => react_jsx_runtime.JSX.Element;
|
|
1738
1742
|
|
|
1739
1743
|
type ProgressSizing = Exclude<GenericSizeMap, 'none'>;
|
|
1740
|
-
interface ProgressProps {
|
|
1744
|
+
interface ProgressProps extends CircularProgressProps {
|
|
1741
1745
|
sizing?: ProgressSizing;
|
|
1742
1746
|
}
|
|
1743
1747
|
declare const Progress: FunctionComponent<ProgressProps>;
|