@useloops/design-system 1.4.169 → 1.4.170
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 +30 -1
- package/dist/index.js +2 -2
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -661,6 +661,24 @@ interface AuthContainerSurfaceProps extends SurfaceProps {
|
|
|
661
661
|
}
|
|
662
662
|
declare const AuthContainerSurface: FunctionComponent<AuthContainerSurfaceProps>;
|
|
663
663
|
|
|
664
|
+
interface BreadcrumbLink {
|
|
665
|
+
label: string;
|
|
666
|
+
href?: string;
|
|
667
|
+
}
|
|
668
|
+
interface BreadcrumbProps {
|
|
669
|
+
links?: BreadcrumbLink[];
|
|
670
|
+
}
|
|
671
|
+
declare const Breadcrumb: FunctionComponent<BreadcrumbProps>;
|
|
672
|
+
|
|
673
|
+
interface HeaderProps {
|
|
674
|
+
backHref?: string;
|
|
675
|
+
breadcrumbLinks?: BreadcrumbLink[];
|
|
676
|
+
buttons?: ReactNode;
|
|
677
|
+
controlBar?: ReactNode;
|
|
678
|
+
title?: string;
|
|
679
|
+
}
|
|
680
|
+
declare const Header: FunctionComponent<HeaderProps>;
|
|
681
|
+
|
|
664
682
|
type NavigationSizing = 'sm' | 'lg';
|
|
665
683
|
interface NavigationProps {
|
|
666
684
|
isMobile?: boolean;
|
|
@@ -740,6 +758,13 @@ interface ProjectItemProps extends ProjectItemDataProps, ProjectItemViewType {
|
|
|
740
758
|
|
|
741
759
|
declare const ProjectItem: FunctionComponent<ProjectItemProps>;
|
|
742
760
|
|
|
761
|
+
interface SectionHeaderProps {
|
|
762
|
+
buttons?: ReactNode;
|
|
763
|
+
subtitle?: string;
|
|
764
|
+
title?: string;
|
|
765
|
+
}
|
|
766
|
+
declare const SectionHeader: FunctionComponent<SectionHeaderProps>;
|
|
767
|
+
|
|
743
768
|
declare const emailValidation: {
|
|
744
769
|
pattern: {
|
|
745
770
|
value: RegExp;
|
|
@@ -1161,6 +1186,10 @@ declare const Loader: FunctionComponent<LoaderProps>;
|
|
|
1161
1186
|
|
|
1162
1187
|
declare const Logo: FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
1163
1188
|
|
|
1189
|
+
interface LoopsAiButtonProps {
|
|
1190
|
+
}
|
|
1191
|
+
declare const LoopsAiButton: FunctionComponent<LoopsAiButtonProps>;
|
|
1192
|
+
|
|
1164
1193
|
declare const Markdown: (props: any) => react_jsx_runtime.JSX.Element;
|
|
1165
1194
|
|
|
1166
1195
|
type MenuButtonSizing = 'sm' | 'md' | 'lg';
|
|
@@ -1671,4 +1700,4 @@ declare module '@mui/system' {
|
|
|
1671
1700
|
}
|
|
1672
1701
|
}
|
|
1673
1702
|
|
|
1674
|
-
export { AuthContainerSurface, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, ColorBackgroundContainer, type ColorBackgroundContainerProps, type ColorRange$1 as ColorRange, type ColorRangeAlpha$1 as ColorRangeAlpha, CustomField, type CustomFieldProps, DEFAULT_MAX_INPUT_LENGTH, Differential, type DifferentialProps, DropdownMenu, type FieldType, type FieldTypes, FontWeight, FormControlLabel, FormGenerator, type FormGeneratorConfig, type FormGeneratorHandler, type GenericSizeMap, GridOverlay, type GridOverlayProps, Html, type HtmlProps, Icon, IconButton, IconButtonGroup, type IconButtonProps, type IconName, Image, type ImageProps, InputFieldBase, type InputFieldBaseProps, InputLabel, InputLabelHelp, type InputLabelHelpProps, type InputLabelProps, Likert, type LikertProps, Link, type LinkProps, Loader, type LoaderProps, Logo, Markdown, MenuButton, type MenuButtonProps, Navigation, type NavigationProps, type NavigationSizing, Nudge, type NudgeProps, NumberField, type NumberFieldProps, Pill, type PillProps, Popper, type PopperProps, Portal, type PortalProps, PoweredByWatermarkLogo, Progress, type ProgressProps, ProjectItem, type ProjectItemProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rank, type RankProps, RichTextField, type RichTextFieldProps, Select, type SelectProps, type SemanticColor, Slider, type SliderProps, SortableList, type SortableListProps, StarRating, type StarRatingProps, Surface, type SurfaceProps, Switch, type SwitchProps, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeProvider, Toast, type ToastProps, Tooltip, type TooltipProps, Typography, type TypographyProps, UserMenu, type UserMenuProps, backgroundCreator, base, blue, blueRamp, boxShadow, breakpoints, chooseArticle, darkNeutral, darkNeutralAlpha, defaultInputValidation, easing, elevation, elevationFilter, emailValidation, fonts, generateRamp, green, greenRamp, iconSizeMap, margin, neutral, neutralAlpha, neutralRamp, padding, passwordValidation, peach, peachRamp, purple, purpleRamp, radius, red, redRamp, semantic, space, useDropdownMenu, yellow, yellowRamp };
|
|
1703
|
+
export { AuthContainerSurface, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Breadcrumb, type BreadcrumbProps, Button, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, ColorBackgroundContainer, type ColorBackgroundContainerProps, type ColorRange$1 as ColorRange, type ColorRangeAlpha$1 as ColorRangeAlpha, CustomField, type CustomFieldProps, DEFAULT_MAX_INPUT_LENGTH, Differential, type DifferentialProps, DropdownMenu, type FieldType, type FieldTypes, FontWeight, FormControlLabel, FormGenerator, type FormGeneratorConfig, type FormGeneratorHandler, type GenericSizeMap, GridOverlay, type GridOverlayProps, Header, type HeaderProps, Html, type HtmlProps, Icon, IconButton, IconButtonGroup, type IconButtonProps, type IconName, Image, type ImageProps, InputFieldBase, type InputFieldBaseProps, InputLabel, InputLabelHelp, type InputLabelHelpProps, type InputLabelProps, Likert, type LikertProps, Link, type LinkProps, Loader, type LoaderProps, Logo, LoopsAiButton, type LoopsAiButtonProps, Markdown, MenuButton, type MenuButtonProps, Navigation, type NavigationProps, type NavigationSizing, Nudge, type NudgeProps, NumberField, type NumberFieldProps, Pill, type PillProps, Popper, type PopperProps, Portal, type PortalProps, PoweredByWatermarkLogo, Progress, type ProgressProps, ProjectItem, type ProjectItemProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rank, type RankProps, RichTextField, type RichTextFieldProps, SectionHeader, type SectionHeaderProps, Select, type SelectProps, type SemanticColor, Slider, type SliderProps, SortableList, type SortableListProps, StarRating, type StarRatingProps, Surface, type SurfaceProps, Switch, type SwitchProps, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeProvider, Toast, type ToastProps, Tooltip, type TooltipProps, Typography, type TypographyProps, UserMenu, type UserMenuProps, backgroundCreator, base, blue, blueRamp, boxShadow, breakpoints, chooseArticle, darkNeutral, darkNeutralAlpha, defaultInputValidation, easing, elevation, elevationFilter, emailValidation, fonts, generateRamp, green, greenRamp, iconSizeMap, margin, neutral, neutralAlpha, neutralRamp, padding, passwordValidation, peach, peachRamp, purple, purpleRamp, radius, red, redRamp, semantic, space, useDropdownMenu, yellow, yellowRamp };
|