@useloops/design-system 1.4.167 → 1.4.168
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 +43 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -680,6 +680,48 @@ interface NudgeProps$1 extends PropsWithChildren {
|
|
|
680
680
|
}
|
|
681
681
|
declare const Navigation: FunctionComponent<NavigationProps>;
|
|
682
682
|
|
|
683
|
+
interface ProjectItemViewType {
|
|
684
|
+
viewType?: 'grid' | 'list';
|
|
685
|
+
}
|
|
686
|
+
interface UserProps {
|
|
687
|
+
id: string;
|
|
688
|
+
email: string;
|
|
689
|
+
firstName: string;
|
|
690
|
+
lastName: string;
|
|
691
|
+
country: string | null;
|
|
692
|
+
city: string | null;
|
|
693
|
+
profileImage: string | null;
|
|
694
|
+
jobTitle: string | null;
|
|
695
|
+
role: string | null;
|
|
696
|
+
}
|
|
697
|
+
interface ProjectItemDataProps {
|
|
698
|
+
id: string;
|
|
699
|
+
postId: string;
|
|
700
|
+
versionId: string;
|
|
701
|
+
thumbnail: string;
|
|
702
|
+
demoSurveyId: string;
|
|
703
|
+
title: string;
|
|
704
|
+
description: string | null;
|
|
705
|
+
demoProjectSummary?: string | null;
|
|
706
|
+
demoSurveySummary?: string | null;
|
|
707
|
+
name: string;
|
|
708
|
+
user: UserProps;
|
|
709
|
+
isAuthor: boolean;
|
|
710
|
+
isDemo: boolean;
|
|
711
|
+
loopCount: number | null;
|
|
712
|
+
testCount: number | null;
|
|
713
|
+
draftCount: number | null;
|
|
714
|
+
updatedAt?: string;
|
|
715
|
+
tags?: string[] | null;
|
|
716
|
+
onClick?: () => void;
|
|
717
|
+
loading?: boolean;
|
|
718
|
+
moreActions?: React.ReactNode;
|
|
719
|
+
}
|
|
720
|
+
interface ProjectItemProps extends ProjectItemDataProps, ProjectItemViewType {
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
declare const ProjectItem: FunctionComponent<ProjectItemProps>;
|
|
724
|
+
|
|
683
725
|
interface AuthFormHeaderProps {
|
|
684
726
|
logo?: ReactElement | false | undefined;
|
|
685
727
|
headerText?: string;
|
|
@@ -1617,4 +1659,4 @@ declare module '@mui/system' {
|
|
|
1617
1659
|
}
|
|
1618
1660
|
}
|
|
1619
1661
|
|
|
1620
|
-
export { AuthContainerSurface, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, CheckboxGroup as CheckBoxGroup, Checkbox, 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, IconButton, IconButtonGroup, type IconButtonProps, 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, 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, Textarea as TextArea, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, 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, margin, neutral, neutralAlpha, neutralRamp, padding, passwordValidation, peach, peachRamp, purple, purpleRamp, radius, red, redRamp, semantic, space, useDropdownMenu, yellow, yellowRamp };
|
|
1662
|
+
export { AuthContainerSurface, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, CheckboxGroup as CheckBoxGroup, Checkbox, 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, IconButton, IconButtonGroup, type IconButtonProps, 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, Textarea as TextArea, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, 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, margin, neutral, neutralAlpha, neutralRamp, padding, passwordValidation, peach, peachRamp, purple, purpleRamp, radius, red, redRamp, semantic, space, useDropdownMenu, yellow, yellowRamp };
|