@useloops/design-system 1.4.274 → 1.4.276
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 +51 -28
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -829,6 +829,23 @@ interface SectionHeaderProps {
|
|
|
829
829
|
}
|
|
830
830
|
declare const SectionHeader: FunctionComponent<SectionHeaderProps>;
|
|
831
831
|
|
|
832
|
+
interface LoopItemProps extends PropsWithChildren {
|
|
833
|
+
onClick: () => void;
|
|
834
|
+
id: string;
|
|
835
|
+
thumbnail: string;
|
|
836
|
+
title: string;
|
|
837
|
+
active?: boolean;
|
|
838
|
+
loading?: boolean;
|
|
839
|
+
testCount: number | null;
|
|
840
|
+
draftCount: number | null;
|
|
841
|
+
}
|
|
842
|
+
declare const LoopItem: FunctionComponent<LoopItemProps>;
|
|
843
|
+
|
|
844
|
+
interface LoopItemEmptyProps extends PropsWithChildren {
|
|
845
|
+
onClick: () => void;
|
|
846
|
+
}
|
|
847
|
+
declare const LoopItemEmpty: FunctionComponent<LoopItemEmptyProps>;
|
|
848
|
+
|
|
832
849
|
declare const emailValidation: {
|
|
833
850
|
pattern: {
|
|
834
851
|
value: RegExp;
|
|
@@ -1768,44 +1785,49 @@ interface PlanHeading {
|
|
|
1768
1785
|
interface PlanRow {
|
|
1769
1786
|
heading: string;
|
|
1770
1787
|
description: string;
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1788
|
+
tier1: string;
|
|
1789
|
+
tier2: string;
|
|
1790
|
+
tier3: string;
|
|
1791
|
+
tier4: string;
|
|
1775
1792
|
}
|
|
1776
1793
|
interface PlanFeatureTableData {
|
|
1777
1794
|
headings: {
|
|
1778
|
-
'01-
|
|
1779
|
-
'02-
|
|
1780
|
-
'03-
|
|
1781
|
-
'04-
|
|
1795
|
+
'01-tier1': PlanHeading;
|
|
1796
|
+
'02-tier2': PlanHeading;
|
|
1797
|
+
'03-tier3': PlanHeading;
|
|
1798
|
+
'04-tier4': PlanHeading;
|
|
1782
1799
|
};
|
|
1783
1800
|
rows: {
|
|
1784
|
-
'
|
|
1785
|
-
'
|
|
1786
|
-
'
|
|
1787
|
-
'
|
|
1788
|
-
'
|
|
1789
|
-
'
|
|
1790
|
-
'
|
|
1791
|
-
'
|
|
1792
|
-
'
|
|
1793
|
-
'
|
|
1794
|
-
'
|
|
1801
|
+
'01-servicing': PlanRow;
|
|
1802
|
+
'02-respondents': PlanRow;
|
|
1803
|
+
'03-questions': PlanRow;
|
|
1804
|
+
'04-ai': PlanRow;
|
|
1805
|
+
'05-demographics': PlanRow;
|
|
1806
|
+
'06-training': PlanRow;
|
|
1807
|
+
'07-invite': PlanRow;
|
|
1808
|
+
'08-email': PlanRow;
|
|
1809
|
+
'09-beta': PlanRow;
|
|
1810
|
+
'10-sso': PlanRow;
|
|
1811
|
+
'11-minimum': PlanRow;
|
|
1795
1812
|
};
|
|
1796
1813
|
}
|
|
1797
1814
|
|
|
1798
1815
|
interface PlanFeatureTableProps {
|
|
1799
1816
|
currencySymbol: string;
|
|
1800
1817
|
data?: PlanFeatureTableData;
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1818
|
+
loading?: boolean;
|
|
1819
|
+
tier1Price: number | string;
|
|
1820
|
+
tier1RespondentPrice: number | string;
|
|
1821
|
+
tier1QuestionLimit: number | string;
|
|
1822
|
+
tier2Price: number | string;
|
|
1823
|
+
tier2RespondentPrice: number | string;
|
|
1824
|
+
tier2QuestionLimit: number | string;
|
|
1825
|
+
tier3Price: number | string;
|
|
1826
|
+
tier3RespondentPrice: number | string;
|
|
1827
|
+
tier3QuestionLimit: number | string;
|
|
1828
|
+
tier4Price: number | string;
|
|
1829
|
+
tier4RespondentPrice: number | string;
|
|
1830
|
+
tier4QuestionLimit: number | string;
|
|
1809
1831
|
variation?: 'default' | 'platform';
|
|
1810
1832
|
}
|
|
1811
1833
|
declare const PlanFeatureTable: FunctionComponent<PlanFeatureTableProps>;
|
|
@@ -1825,6 +1847,7 @@ interface PlanTierCardProps {
|
|
|
1825
1847
|
features?: string[];
|
|
1826
1848
|
heading: string;
|
|
1827
1849
|
label?: string;
|
|
1850
|
+
loading?: boolean;
|
|
1828
1851
|
perMonth: string;
|
|
1829
1852
|
respondentsTitle?: string;
|
|
1830
1853
|
respondentsFeatures?: string[];
|
|
@@ -2089,4 +2112,4 @@ declare module '@mui/system' {
|
|
|
2089
2112
|
}
|
|
2090
2113
|
}
|
|
2091
2114
|
|
|
2092
|
-
export { Accordion, type AccordionProps, AnnualController, type AnnualControllerProps, AuthContainerSurface, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, BrandBadge, type BrandBadgeProps, Breadcrumb, type BreadcrumbProps, type BreakpointOrNull, BulletGraphic, type BulletGraphicProps, Button, ButtonBase, type ButtonBaseProps, type ButtonProps, type ButtonSizing, 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, type GroupSelectOption, Header, type HeaderProps, Html, HtmlParser, type HtmlParserProps, type HtmlProps, Icon, IconButton, IconButtonBase, type IconButtonBaseProps, IconButtonGroup, type IconButtonGroupProps, 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, type MarkdownProps, Menu, type MenuProps, Navigation, NavigationButton, type NavigationButtonProps, type NavigationProps, type NavigationSizing, Nudge, type NudgeProps, NumberField, type NumberFieldProps, OnboardingCard, type OnboardingCardProps, type OnboardingItem, Pill, type PillProps, PlanFeatureTable, type PlanFeatureTableData, type PlanFeatureTableProps, PlanTierCard, type PlanTierCardProps, Popper, type PopperProps, PoweredByWatermarkLogo, Progress, ProgressBar, type ProgressBarProps, type ProgressProps, ProjectItem, ProjectItemEmpty, type ProjectItemEmptyProps, type ProjectItemProps, Projects, type ProjectsProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rank, type RankProps, RichTextField, type RichTextFieldProps, type Section, SectionHeader, type SectionHeaderProps, Select, type SelectOption, type SelectProps, type SemanticColor, Skeleton, type SkeletonProps, Slider, type SliderProps, SortableList, type SortableListProps, StarRating, type StarRatingProps, Surface, type SurfaceProps, Switch, type SwitchProps, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeCtx, ThemeProvider, TickGroup, type TickGroupProps, Toast, type ToastProps, Tooltip, type TooltipProps, TrialCard, type TrialCardProps, Typography, type TypographyProps, UserMenu, type UserMenuProps, VideoModal, type VideoModalProps, backgroundCreator, base, blue, blueRamp, boxShadow, breakpoints, buttonInteraction, chooseArticle, compareArrayMembers, customTheme, darkNeutral, darkNeutralAlpha, defaultInputValidation, easing, elevation, elevationFilter, emailValidation, fonts, generateRamp, getButtonSizing, getButtonTypography, getIconSizing$1 as getIconSizing, green, greenRamp, IconButton_variantHelpers as iconButtonHelpers, iconSizeMap, margin, neutral, neutralAlpha, neutralRamp, outlined$1 as outlined, padding, passwordValidation, peach, peachRamp, primary, purple, purpleRamp, radius, red, redRamp, secondary, semantic, space, subtle, useBreakpoint, useDropdownMenu, usePrevious, useScreenSize, useTheme, useThemeBuilder, yellow, yellowRamp };
|
|
2115
|
+
export { Accordion, type AccordionProps, AnnualController, type AnnualControllerProps, AuthContainerSurface, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, BrandBadge, type BrandBadgeProps, Breadcrumb, type BreadcrumbProps, type BreakpointOrNull, BulletGraphic, type BulletGraphicProps, Button, ButtonBase, type ButtonBaseProps, type ButtonProps, type ButtonSizing, 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, type GroupSelectOption, Header, type HeaderProps, Html, HtmlParser, type HtmlParserProps, type HtmlProps, Icon, IconButton, IconButtonBase, type IconButtonBaseProps, IconButtonGroup, type IconButtonGroupProps, 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, LoopItem, LoopItemEmpty, type LoopItemEmptyProps, type LoopItemProps, LoopsAiButton, type LoopsAiButtonProps, Markdown, type MarkdownProps, Menu, type MenuProps, Navigation, NavigationButton, type NavigationButtonProps, type NavigationProps, type NavigationSizing, Nudge, type NudgeProps, NumberField, type NumberFieldProps, OnboardingCard, type OnboardingCardProps, type OnboardingItem, Pill, type PillProps, PlanFeatureTable, type PlanFeatureTableData, type PlanFeatureTableProps, PlanTierCard, type PlanTierCardProps, Popper, type PopperProps, PoweredByWatermarkLogo, Progress, ProgressBar, type ProgressBarProps, type ProgressProps, ProjectItem, ProjectItemEmpty, type ProjectItemEmptyProps, type ProjectItemProps, Projects, type ProjectsProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rank, type RankProps, RichTextField, type RichTextFieldProps, type Section, SectionHeader, type SectionHeaderProps, Select, type SelectOption, type SelectProps, type SemanticColor, Skeleton, type SkeletonProps, Slider, type SliderProps, SortableList, type SortableListProps, StarRating, type StarRatingProps, Surface, type SurfaceProps, Switch, type SwitchProps, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeCtx, ThemeProvider, TickGroup, type TickGroupProps, Toast, type ToastProps, Tooltip, type TooltipProps, TrialCard, type TrialCardProps, Typography, type TypographyProps, UserMenu, type UserMenuProps, VideoModal, type VideoModalProps, backgroundCreator, base, blue, blueRamp, boxShadow, breakpoints, buttonInteraction, chooseArticle, compareArrayMembers, customTheme, darkNeutral, darkNeutralAlpha, defaultInputValidation, easing, elevation, elevationFilter, emailValidation, fonts, generateRamp, getButtonSizing, getButtonTypography, getIconSizing$1 as getIconSizing, green, greenRamp, IconButton_variantHelpers as iconButtonHelpers, iconSizeMap, margin, neutral, neutralAlpha, neutralRamp, outlined$1 as outlined, padding, passwordValidation, peach, peachRamp, primary, purple, purpleRamp, radius, red, redRamp, secondary, semantic, space, subtle, useBreakpoint, useDropdownMenu, usePrevious, useScreenSize, useTheme, useThemeBuilder, yellow, yellowRamp };
|