@useloops/design-system 1.4.6 → 1.4.8
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 +15 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -141,6 +141,13 @@ interface CustomTheme {
|
|
|
141
141
|
handle: string;
|
|
142
142
|
};
|
|
143
143
|
};
|
|
144
|
+
shape: {
|
|
145
|
+
borderRadius: number;
|
|
146
|
+
hotspot: {
|
|
147
|
+
active: number;
|
|
148
|
+
default: number
|
|
149
|
+
}
|
|
150
|
+
},
|
|
144
151
|
typography: {
|
|
145
152
|
headline: {
|
|
146
153
|
xs: string;
|
|
@@ -979,5 +986,13 @@ declare module '@mui/material/Typography' {
|
|
|
979
986
|
xs: true;
|
|
980
987
|
}
|
|
981
988
|
}
|
|
989
|
+
declare module '@mui/system' {
|
|
990
|
+
interface Shape {
|
|
991
|
+
hotspot: {
|
|
992
|
+
active: number;
|
|
993
|
+
default: number;
|
|
994
|
+
};
|
|
995
|
+
}
|
|
996
|
+
}
|
|
982
997
|
|
|
983
998
|
export { AnnualController, type AnnualControllerProps, AuthContainerSurface, type AuthContainerSurfaceProps, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, CheckboxGroup as CheckBoxGroup, Checkbox, type CheckboxGroupProps, type CheckboxProps, ColorBackgroundContainer, type ColorBackgroundContainerProps, DEFAULT_MAX_INPUT_LENGTH, Differential, type DifferentialProps, DragAndDropRanking, type DragAndDropRankingProps, type FieldType, type FieldTypes, FormControlLabel, FormGenerator, type FormGeneratorConfig, type FormGeneratorHandler, GridOverlay, type GridOverlayProps, Icon, IconButton, IconButtonGroup, InputLabel, InputLabelHelp, type InputLabelHelpProps, type InputLabelProps, Likert, type LikertProps, Link, type LinkProps, Loader, type LoaderProps, Logo, Pill, type PillProps, PlanFeatureTable, type PlanFeatureTableProps, PlanTierCard, type PlanTierCardProps, PlanTierCardScale, type PlanTierCardScaleProps, Portal, type PortalProps, PoweredByWatermarkLogo, Progress, type ProgressProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Select, type SelectProps, Slider, type SliderProps, SortableList, type SortableListProps, StarRating, type StarRatingProps, Surface, type SurfaceProps, Switch, type SwitchProps, Textarea as TextArea, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, type TextareaProps, ThemeProvider, TickGroup, type TickGroupProps, Tooltip, type TooltipProps, Typography, type TypographyProps, chooseArticle, defaultInputValidation, emailValidation, passwordValidation };
|