@useloops/design-system 1.4.392 → 1.4.393
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 +4 -4
- package/dist/index.d.ts +16 -6
- package/dist/index.js +4 -4
- 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,
|
|
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, 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 { BoxProps as BoxProps$1 } from '@mui/material/Box';
|
|
@@ -110,6 +110,9 @@ interface SemanticColor {
|
|
|
110
110
|
default: string | undefined;
|
|
111
111
|
disabled: string | undefined;
|
|
112
112
|
};
|
|
113
|
+
skeleton: {
|
|
114
|
+
default: string | undefined;
|
|
115
|
+
};
|
|
113
116
|
data: {
|
|
114
117
|
sentimentVeryPositive: string | undefined;
|
|
115
118
|
sentimentPositive: string | undefined;
|
|
@@ -174,6 +177,9 @@ interface SemanticColor {
|
|
|
174
177
|
default: string | undefined;
|
|
175
178
|
disabled: string | undefined;
|
|
176
179
|
};
|
|
180
|
+
skeleton: {
|
|
181
|
+
default: string | undefined;
|
|
182
|
+
};
|
|
177
183
|
data: {
|
|
178
184
|
sentimentVeryPositive: string | undefined;
|
|
179
185
|
sentimentPositive: string | undefined;
|
|
@@ -606,6 +612,9 @@ interface CustomTheme {
|
|
|
606
612
|
default: string;
|
|
607
613
|
disabled: string;
|
|
608
614
|
};
|
|
615
|
+
skeleton: {
|
|
616
|
+
default: string;
|
|
617
|
+
};
|
|
609
618
|
data: {
|
|
610
619
|
sentimentVeryPositive: string;
|
|
611
620
|
sentimentPositive: string;
|
|
@@ -1519,7 +1528,7 @@ type MarkdownProps = {
|
|
|
1519
1528
|
};
|
|
1520
1529
|
declare const Markdown: FC<MarkdownProps>;
|
|
1521
1530
|
|
|
1522
|
-
type SurfaceVariation = 'default' | 'sunken' | 'raised' | 'overlay';
|
|
1531
|
+
type SurfaceVariation = 'default' | 'sunken' | 'raised' | 'overlay' | 'float';
|
|
1523
1532
|
type BorderRadius = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1524
1533
|
|
|
1525
1534
|
interface SurfaceProps extends PaperProps {
|
|
@@ -2245,11 +2254,9 @@ interface SectionHeaderProps {
|
|
|
2245
2254
|
}
|
|
2246
2255
|
declare const SectionHeader: FunctionComponent<SectionHeaderProps>;
|
|
2247
2256
|
|
|
2248
|
-
interface
|
|
2249
|
-
colorScheme: 'green' | 'yellow' | 'blue';
|
|
2250
|
-
}
|
|
2251
|
-
interface TestStatusProps extends Partial<StyledTestStatusProps> {
|
|
2257
|
+
interface TestStatusProps {
|
|
2252
2258
|
status: 'results-ready' | 'in-progress' | 'draft';
|
|
2259
|
+
sizing?: 'md' | 'sm' | 'xs';
|
|
2253
2260
|
}
|
|
2254
2261
|
|
|
2255
2262
|
interface TestItemProps extends SurfaceProps {
|
|
@@ -2479,6 +2486,9 @@ declare module '@mui/material/styles' {
|
|
|
2479
2486
|
default?: string;
|
|
2480
2487
|
disabled?: string;
|
|
2481
2488
|
};
|
|
2489
|
+
skeleton?: {
|
|
2490
|
+
default?: string;
|
|
2491
|
+
};
|
|
2482
2492
|
data: {
|
|
2483
2493
|
sentimentVeryPositive?: string;
|
|
2484
2494
|
sentimentPositive?: string;
|