@useloops/design-system 1.4.450 → 1.4.452

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/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import * as react from 'react';
2
- import react__default, { FunctionComponent, PropsWithChildren, Dispatch, SetStateAction, ReactNode, ReactElement, ChangeEvent, FC } from 'react';
2
+ import react__default, { FunctionComponent, PropsWithChildren, ReactElement, ComponentProps, Dispatch, SetStateAction, ReactNode, 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, SvgIconProps, AccordionProps as AccordionProps$1, AccordionSummaryProps, AccordionDetailsProps, Breakpoint, PaletteMode, Direction } from '@mui/material';
5
- import { PopupState } from 'material-ui-popup-state/hooks';
4
+ import { SxProps, Theme, CSSObject, ButtonProps as ButtonProps$1, TypographyProps as TypographyProps$1, BoxProps, PaperProps, PopperProps as PopperProps$1, ClickAwayListenerProps, FadeProps, SkeletonProps as SkeletonProps$1, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, LinkProps as LinkProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, FormControlLabelProps as FormControlLabelProps$1, IconButtonProps as IconButtonProps$1, TooltipProps as TooltipProps$1, ButtonGroupProps, TextFieldProps as TextFieldProps$1, LinearProgressProps, SelectProps as SelectProps$1, SelectChangeEvent, SwitchProps as SwitchProps$1, SvgIconProps, AccordionProps as AccordionProps$1, AccordionSummaryProps, AccordionDetailsProps, Breakpoint, PaletteMode, Direction } from '@mui/material';
6
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
+ import { PopupState } from 'material-ui-popup-state/hooks';
7
7
  import { Theme as Theme$1, SxProps as SxProps$1 } from '@mui/material/styles';
8
8
  import { MotionProps } from 'framer-motion';
9
9
  import { SemanticColor as SemanticColor$1, IconName as IconName$2 } from 'systems/BrandCore';
@@ -798,39 +798,6 @@ interface AiContentContainerProps extends PropsWithChildren {
798
798
  }
799
799
  declare const AiContentContainer: FunctionComponent<AiContentContainerProps>;
800
800
 
801
- interface AiWrittenByLockUpProps {
802
- sx?: SxProps<Theme>;
803
- }
804
- declare const AiWrittenByLockUp: FunctionComponent<AiWrittenByLockUpProps>;
805
-
806
- declare const emailValidation: {
807
- pattern: {
808
- value: RegExp;
809
- message: string;
810
- };
811
- };
812
-
813
- declare const chooseArticle: (word: string) => string;
814
- declare const defaultInputValidation: (inputName?: string, isRequired?: boolean, maxLength?: number) => {
815
- required?: string | undefined;
816
- maxLength: {
817
- value: number;
818
- message: string;
819
- };
820
- };
821
- declare const DEFAULT_MAX_INPUT_LENGTH: number;
822
-
823
- declare const passwordValidation: (min?: number) => {
824
- minLength: {
825
- value: number;
826
- message: string;
827
- };
828
- equal: {
829
- value: string;
830
- message: string;
831
- };
832
- };
833
-
834
801
  declare const subtle: (theme: Theme, destructive?: boolean) => {
835
802
  backgroundColor: string;
836
803
  color: string;
@@ -944,6 +911,167 @@ declare const getIconSizing$1: (sizing: ButtonSizing) => CSSObject;
944
911
  declare const getButtonTypography: (sizing: ButtonSizing) => CSSObject;
945
912
  declare const getButtonSizing: (sizing: ButtonSizing) => CSSObject;
946
913
 
914
+ interface ButtonBaseProps extends ButtonProps$1 {
915
+ loading?: boolean;
916
+ sizing: ButtonSizing;
917
+ }
918
+ declare const ButtonBase: ({ children, loading, sizing, ...rest }: ButtonBaseProps) => react_jsx_runtime.JSX.Element;
919
+
920
+ interface ButtonProps extends Partial<ButtonBaseProps> {
921
+ variation?: 'primary' | 'secondary' | 'outlined' | 'subtle';
922
+ destructive?: boolean;
923
+ href?: string;
924
+ fullWidth?: boolean;
925
+ endIcon?: ReactElement;
926
+ startIcon?: ReactElement;
927
+ }
928
+ declare const Button: FunctionComponent<ButtonProps>;
929
+
930
+ interface TypographyProps extends Omit<TypographyProps$1, 'ref'> {
931
+ clamp?: number;
932
+ component: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
933
+ type?: 'default' | 'button';
934
+ variation?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
935
+ weight?: 'default' | 'bold';
936
+ sx?: SxProps<Theme>;
937
+ }
938
+ declare const Typography: react.ForwardRefExoticComponent<TypographyProps & react.RefAttributes<HTMLHeadingElement | HTMLParagraphElement>>;
939
+
940
+ interface ExpandableTypographyClampProps extends Partial<TypographyProps> {
941
+ onShowMoreClick?: ButtonProps['onClick'];
942
+ onShowLessClick?: ButtonProps['onClick'];
943
+ slotProps?: {
944
+ gradientBox?: {
945
+ background?: string | ((theme: Theme) => string);
946
+ } & BoxProps;
947
+ showMoreButton?: ButtonProps;
948
+ showLessButton?: ButtonProps;
949
+ };
950
+ }
951
+ declare const ExpandableTypographyClamp: react__default.FC<ExpandableTypographyClampProps>;
952
+
953
+ type SurfaceVariation = 'default' | 'sunken' | 'raised' | 'overlay' | 'float';
954
+ type BorderRadius = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
955
+
956
+ interface SurfaceProps extends PaperProps {
957
+ variation?: SurfaceVariation;
958
+ borderradius?: BorderRadius;
959
+ active?: boolean;
960
+ }
961
+ declare const Surface: react.ForwardRefExoticComponent<Omit<SurfaceProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
962
+
963
+ type BindOn = 'trigger' | 'contextMenu' | 'toggle' | 'hover' | 'focus' | 'doubleClick';
964
+ interface PopperProps {
965
+ popperProps?: Partial<PopperProps$1>;
966
+ clickAwayListenerProps?: Partial<Omit<ClickAwayListenerProps, 'onClickAway'> & {
967
+ onClickAway?: (event: MouseEvent | TouchEvent, state: PopupState) => void;
968
+ }>;
969
+ transitionFadeProps?: Pick<FadeProps, 'easing' | 'timeout' | 'appear' | 'enter' | 'exit'>;
970
+ surfaceProps?: SurfaceProps;
971
+ bindOn?: BindOn[];
972
+ trigger: ReactElement;
973
+ children: ReactElement;
974
+ state?: PopupState;
975
+ }
976
+ declare const Popper: ({ bindOn, trigger, children, state, ...props }: PopperProps) => react_jsx_runtime.JSX.Element;
977
+
978
+ interface MenuItemProps {
979
+ baseState?: PopupState;
980
+ label?: string;
981
+ active?: boolean;
982
+ danger?: boolean;
983
+ divider?: boolean;
984
+ heading?: boolean;
985
+ selected?: boolean;
986
+ disabled?: boolean;
987
+ closeOnClick?: boolean;
988
+ onClick?: React.MouseEventHandler<HTMLButtonElement>;
989
+ children?: MenuItemProps[];
990
+ width?: number;
991
+ }
992
+
993
+ interface MenuProps extends PropsWithChildren {
994
+ menuItems?: MenuItemProps[];
995
+ offset?: number[];
996
+ placement?: PopperProps$1['placement'];
997
+ state?: PopupState;
998
+ parentState?: PopupState;
999
+ bindOn?: PopperProps['bindOn'];
1000
+ trigger: ReactElement;
1001
+ width?: number;
1002
+ slotProps?: {
1003
+ popper?: PopperProps['popperProps'];
1004
+ surface?: SurfaceProps;
1005
+ };
1006
+ }
1007
+ declare const Menu: FunctionComponent<MenuProps>;
1008
+
1009
+ interface SkeletonProps {
1010
+ animation?: SkeletonProps$1['animation'];
1011
+ children?: SkeletonProps$1['children'];
1012
+ height?: SkeletonProps$1['height'];
1013
+ sx?: SkeletonProps$1['sx'];
1014
+ variant?: SkeletonProps$1['variant'];
1015
+ width?: SkeletonProps$1['width'];
1016
+ component?: SkeletonProps$1['component'];
1017
+ ref?: SkeletonProps$1['ref'];
1018
+ }
1019
+ declare const Skeleton: FunctionComponent<SkeletonProps>;
1020
+
1021
+ type AISummaryProps = {
1022
+ heading?: string;
1023
+ body?: string;
1024
+ bodyLineClamp?: number;
1025
+ attribution?: string;
1026
+ menuItems?: MenuProps['menuItems'];
1027
+ onStartChatClick?: () => void;
1028
+ loading?: boolean;
1029
+ slotProps?: {
1030
+ heading?: Omit<TypographyProps, 'children'>;
1031
+ expandableTypographyClamp?: Omit<ExpandableTypographyClampProps, 'children'>;
1032
+ attributionIcon?: ComponentProps<typeof Icon>;
1033
+ attribution?: Omit<TypographyProps, 'children'>;
1034
+ menu?: Omit<MenuProps, 'menuItems'>;
1035
+ startChatButton?: Omit<ButtonProps, 'onClick'>;
1036
+ skeleton?: SkeletonProps;
1037
+ };
1038
+ sx?: SxProps<Theme>;
1039
+ };
1040
+ declare const AISummary: react.ForwardRefExoticComponent<AISummaryProps & react.RefAttributes<HTMLDivElement>>;
1041
+
1042
+ interface AiWrittenByLockUpProps {
1043
+ sx?: SxProps<Theme>;
1044
+ }
1045
+ declare const AiWrittenByLockUp: FunctionComponent<AiWrittenByLockUpProps>;
1046
+
1047
+ declare const emailValidation: {
1048
+ pattern: {
1049
+ value: RegExp;
1050
+ message: string;
1051
+ };
1052
+ };
1053
+
1054
+ declare const chooseArticle: (word: string) => string;
1055
+ declare const defaultInputValidation: (inputName?: string, isRequired?: boolean, maxLength?: number) => {
1056
+ required?: string | undefined;
1057
+ maxLength: {
1058
+ value: number;
1059
+ message: string;
1060
+ };
1061
+ };
1062
+ declare const DEFAULT_MAX_INPUT_LENGTH: number;
1063
+
1064
+ declare const passwordValidation: (min?: number) => {
1065
+ minLength: {
1066
+ value: number;
1067
+ message: string;
1068
+ };
1069
+ equal: {
1070
+ value: string;
1071
+ message: string;
1072
+ };
1073
+ };
1074
+
947
1075
  interface BackgroundOptions {
948
1076
  texture?: 'none' | 'noise1';
949
1077
  gradient?: 'tone1' | 'tone2' | 'tone3' | 'tone3_lowOpacity' | 'tone4';
@@ -1049,22 +1177,6 @@ interface BulletGraphicProps {
1049
1177
  }
1050
1178
  declare const BulletGraphic: FunctionComponent<BulletGraphicProps>;
1051
1179
 
1052
- interface ButtonBaseProps extends ButtonProps$1 {
1053
- loading?: boolean;
1054
- sizing: ButtonSizing;
1055
- }
1056
- declare const ButtonBase: ({ children, loading, sizing, ...rest }: ButtonBaseProps) => react_jsx_runtime.JSX.Element;
1057
-
1058
- interface ButtonProps extends Partial<ButtonBaseProps> {
1059
- variation?: 'primary' | 'secondary' | 'outlined' | 'subtle';
1060
- destructive?: boolean;
1061
- href?: string;
1062
- fullWidth?: boolean;
1063
- endIcon?: ReactElement;
1064
- startIcon?: ReactElement;
1065
- }
1066
- declare const Button: FunctionComponent<ButtonProps>;
1067
-
1068
1180
  interface StyledCheckboxProps extends CheckboxProps$1 {
1069
1181
  sizing?: 'default' | 'lg';
1070
1182
  }
@@ -1188,27 +1300,6 @@ declare const useDropdownMenu: () => {
1188
1300
  anchorEl: HTMLElement | null;
1189
1301
  };
1190
1302
 
1191
- interface TypographyProps extends Omit<TypographyProps$1, 'ref'> {
1192
- clamp?: number;
1193
- component: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
1194
- type?: 'default' | 'button';
1195
- variation?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
1196
- weight?: 'default' | 'bold';
1197
- sx?: SxProps<Theme>;
1198
- }
1199
- declare const Typography: react.ForwardRefExoticComponent<TypographyProps & react.RefAttributes<HTMLHeadingElement | HTMLParagraphElement>>;
1200
-
1201
- interface ExpandableTypographyClampProps extends Partial<TypographyProps> {
1202
- onShowMoreClick?: ButtonProps['onClick'];
1203
- slotProps?: {
1204
- gradientBox?: {
1205
- background?: string | ((theme: Theme) => string);
1206
- } & BoxProps;
1207
- showMoreButton?: ButtonProps;
1208
- };
1209
- }
1210
- declare const ExpandableTypographyClamp: react__default.FC<ExpandableTypographyClampProps>;
1211
-
1212
1303
  interface FlagProps {
1213
1304
  /**
1214
1305
  * ISO 3166-1-alpha-2 country code (e.g., 'us', 'gb', 'de')
@@ -1531,62 +1622,6 @@ type MarkdownProps = {
1531
1622
  };
1532
1623
  declare const Markdown: FC<MarkdownProps>;
1533
1624
 
1534
- type SurfaceVariation = 'default' | 'sunken' | 'raised' | 'overlay' | 'float';
1535
- type BorderRadius = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
1536
-
1537
- interface SurfaceProps extends PaperProps {
1538
- variation?: SurfaceVariation;
1539
- borderradius?: BorderRadius;
1540
- active?: boolean;
1541
- }
1542
- declare const Surface: react.ForwardRefExoticComponent<Omit<SurfaceProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1543
-
1544
- type BindOn = 'trigger' | 'contextMenu' | 'toggle' | 'hover' | 'focus' | 'doubleClick';
1545
- interface PopperProps {
1546
- popperProps?: Partial<PopperProps$1>;
1547
- clickAwayListenerProps?: Partial<Omit<ClickAwayListenerProps, 'onClickAway'> & {
1548
- onClickAway?: (event: MouseEvent | TouchEvent, state: PopupState) => void;
1549
- }>;
1550
- transitionFadeProps?: Pick<FadeProps, 'easing' | 'timeout' | 'appear' | 'enter' | 'exit'>;
1551
- surfaceProps?: SurfaceProps;
1552
- bindOn?: BindOn[];
1553
- trigger: ReactElement;
1554
- children: ReactElement;
1555
- state?: PopupState;
1556
- }
1557
- declare const Popper: ({ bindOn, trigger, children, state, ...props }: PopperProps) => react_jsx_runtime.JSX.Element;
1558
-
1559
- interface MenuItemProps {
1560
- baseState?: PopupState;
1561
- label?: string;
1562
- active?: boolean;
1563
- danger?: boolean;
1564
- divider?: boolean;
1565
- heading?: boolean;
1566
- selected?: boolean;
1567
- disabled?: boolean;
1568
- closeOnClick?: boolean;
1569
- onClick?: React.MouseEventHandler<HTMLButtonElement>;
1570
- children?: MenuItemProps[];
1571
- width?: number;
1572
- }
1573
-
1574
- interface MenuProps extends PropsWithChildren {
1575
- menuItems?: MenuItemProps[];
1576
- offset?: number[];
1577
- placement?: PopperProps$1['placement'];
1578
- state?: PopupState;
1579
- parentState?: PopupState;
1580
- bindOn?: PopperProps['bindOn'];
1581
- trigger: ReactElement;
1582
- width?: number;
1583
- slotProps?: {
1584
- popper?: PopperProps['popperProps'];
1585
- surface?: SurfaceProps;
1586
- };
1587
- }
1588
- declare const Menu: FunctionComponent<MenuProps>;
1589
-
1590
1625
  declare const ModalActionsWrapper: _emotion_styled.StyledComponent<_mui_material.StackOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1591
1626
  ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
1592
1627
  }, keyof _mui_material_OverridableComponent.CommonProps | keyof _mui_material.StackOwnProps> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
@@ -1827,18 +1862,6 @@ type RichTextFieldProps = Omit<InputFieldBaseProps, 'value' | 'onChange'> & {
1827
1862
  };
1828
1863
  declare const RichTextField: FunctionComponent<RichTextFieldProps>;
1829
1864
 
1830
- interface SkeletonProps {
1831
- animation?: SkeletonProps$1['animation'];
1832
- children?: SkeletonProps$1['children'];
1833
- height?: SkeletonProps$1['height'];
1834
- sx?: SkeletonProps$1['sx'];
1835
- variant?: SkeletonProps$1['variant'];
1836
- width?: SkeletonProps$1['width'];
1837
- component?: SkeletonProps$1['component'];
1838
- ref?: SkeletonProps$1['ref'];
1839
- }
1840
- declare const Skeleton: FunctionComponent<SkeletonProps>;
1841
-
1842
1865
  interface SliderProps {
1843
1866
  labelLeft: string;
1844
1867
  labelRight: string;
@@ -2048,6 +2071,17 @@ interface ExtendedTestStatusProps {
2048
2071
  }
2049
2072
  declare const ExtendedTestStatus: FunctionComponent<ExtendedTestStatusProps>;
2050
2073
 
2074
+ interface FilterCountProps {
2075
+ buttonText?: string;
2076
+ end?: string;
2077
+ filteredCount?: number;
2078
+ loading?: boolean;
2079
+ onButtonPress?: () => void;
2080
+ start?: string;
2081
+ totalCount: number;
2082
+ }
2083
+ declare const FilterCount: FunctionComponent<FilterCountProps>;
2084
+
2051
2085
  type FilteredItemsCardProps = {
2052
2086
  onClickCta: () => void;
2053
2087
  primaryText?: string;
@@ -2283,9 +2317,17 @@ interface ProjectsProps {
2283
2317
  }
2284
2318
  declare const Projects: FunctionComponent<ProjectsProps>;
2285
2319
 
2320
+ type QuestionType = 'single-punch' | 'multi-punch' | 'slider' | 'likert' | 'rank' | 'open-question' | 'emoji' | 'focus';
2321
+ interface QuestionLabelProps extends PropsWithChildren {
2322
+ type?: QuestionType;
2323
+ loading?: boolean;
2324
+ }
2325
+ declare const QuestionLabel: FunctionComponent<QuestionLabelProps>;
2326
+
2286
2327
  interface QuestionBlockProps {
2287
2328
  preQuestionText?: string;
2288
2329
  questionText: string;
2330
+ questionType?: QuestionType;
2289
2331
  supportText?: string;
2290
2332
  loading?: boolean;
2291
2333
  slotProps?: {
@@ -2294,13 +2336,6 @@ interface QuestionBlockProps {
2294
2336
  }
2295
2337
  declare const QuestionBlock: FunctionComponent<QuestionBlockProps>;
2296
2338
 
2297
- type QuestionType = 'single-punch' | 'multi-punch' | 'slider' | 'likert' | 'rank' | 'open-question' | 'emoji' | 'focus';
2298
- interface QuestionLabelProps extends PropsWithChildren {
2299
- type?: QuestionType;
2300
- loading?: boolean;
2301
- }
2302
- declare const QuestionLabel: FunctionComponent<QuestionLabelProps>;
2303
-
2304
2339
  interface SearchInputProps {
2305
2340
  onChange?: (event: react__default.ChangeEvent<HTMLInputElement>) => void;
2306
2341
  onFocus?: (event: react__default.FocusEvent<HTMLInputElement>) => void;
@@ -2404,17 +2439,6 @@ type VideoControlsProps = {
2404
2439
  };
2405
2440
  declare const _default: react.MemoExoticComponent<react.ForwardRefExoticComponent<VideoControlsProps & react.RefAttributes<any>>>;
2406
2441
 
2407
- interface FilterCountProps {
2408
- buttonText?: string;
2409
- end?: string;
2410
- filteredCount?: number;
2411
- loading?: boolean;
2412
- onButtonPress?: () => void;
2413
- start?: string;
2414
- totalCount: number;
2415
- }
2416
- declare const FilterCount: FunctionComponent<FilterCountProps>;
2417
-
2418
2442
  type BreakpointOrNull = Breakpoint | null;
2419
2443
  declare const useBreakpoint: () => Breakpoint;
2420
2444
 
@@ -2688,4 +2712,4 @@ declare module '@mui/system' {
2688
2712
  }
2689
2713
  }
2690
2714
 
2691
- export { AiWrittenByLockUp as AIWrittenByLockUp, Accordion, type AccordionProps, AiContentContainer, type AiContentContainerProps, type AiWrittenByLockUpProps, AnnualController, type AnnualControllerProps, AssetItem, type AssetItemProps, 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, ClipboardCopyingOverlay, type ClipboardCopyingOverlayProps, ColorBackgroundContainer, type ColorBackgroundContainerProps, type ColorRange$1 as ColorRange, type ColorRangeAlpha$1 as ColorRangeAlpha, CommentCard, type CommentCardProps, CreatableAutocomplete, type CreatableAutocompleteOption, type CreatableAutocompleteProps, CustomField, type CustomFieldProps, DEFAULT_MAX_INPUT_LENGTH, DataPointInfo, type DataPointInfoProps, Differential, type DifferentialProps, DropdownMenu, EmptyStateCard, type EmptyStateCardProps, ExpandableTypographyClamp, type ExpandableTypographyClampProps, ExtendedTestStatus, type ExtendedTestStatusProps, type FieldType, type FieldTypes, FilterCount, type FilterCountProps, FilterGroupAccordion, type FilterGroupAccordionProps, FilterPyramidGraphBar as FilterPyramidGraph, type FilterPyramidGraphBarProps, FilterRow, type FilterRowProps, FilteredItemsCard, type FilteredItemsCardProps, Flag, type FlagProps, FontWeight, FormControlLabel, FormGenerator, type FormGeneratorConfig, type FormGeneratorHandler, type GenericSizeMap, GraphBar, type GraphBarProps, 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, KpiDataPopover, type KpiDataPopoverProps, KpiIndicator, type KpiIndicatorProps, Label, type LabelProps, Likert, type LikertProps, Link, type LinkProps, Loader, type LoaderProps, Logo, LoopItem, LoopItemEmpty, type LoopItemEmptyProps, type LoopItemProps, LoopsAiButton, type LoopsAiButtonProps, Markdown, type MarkdownProps, type MarkerComponentProps, Menu, type MenuProps, ModalActionsWrapper, ModalContentWrapper, ModalLayout, type ModalLayoutProps, 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, QuestionBlock, type QuestionBlockProps, QuestionLabel, type QuestionLabelProps, type QuestionStats, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rank, type RankProps, RichTextField, type RichTextFieldProps, SearchInput, type SearchInputProps, 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, TestItem, type TestItemProps, TestKPICard, type TestKPICardProps, 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, _default as VideoControls, type VideoControlsProps, VideoModal, type VideoModalProps, backgroundCreator, base, blue, blueRamp, boxShadow, breakpoints, buttonHeightMap, buttonInteraction, chooseArticle, compareArrayMembers, customTheme, darkNeutral, darkNeutralAlpha, defaultInputValidation, easing, elevation, elevationFilter, emailValidation, fonts, generateRamp, getButtonSizing, getButtonTypography, getIconSizing$1 as getIconSizing, getKpiIndicatorColor, green, greenRamp, IconButton_variantHelpers as iconButtonHelpers, iconSizeMap, isButton, mapKpiColorSchemeByInteger, margin, neutral, neutralAlpha, neutralRamp, outlined$1 as outlined, padding, passwordValidation, peach, peachRamp, primary, purple, purpleRamp, radius, red, redRamp, secondary, semantic, space, subtle, useBreakpoint, useDropdownMenu, useKeyCombo, usePrevious, useScreenSize, useTheme, useThemeBuilder, yellow, yellowRamp };
2715
+ export { AISummary, type AISummaryProps, AiWrittenByLockUp as AIWrittenByLockUp, Accordion, type AccordionProps, AiContentContainer, type AiContentContainerProps, type AiWrittenByLockUpProps, AnnualController, type AnnualControllerProps, AssetItem, type AssetItemProps, 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, ClipboardCopyingOverlay, type ClipboardCopyingOverlayProps, ColorBackgroundContainer, type ColorBackgroundContainerProps, type ColorRange$1 as ColorRange, type ColorRangeAlpha$1 as ColorRangeAlpha, CommentCard, type CommentCardProps, CreatableAutocomplete, type CreatableAutocompleteOption, type CreatableAutocompleteProps, CustomField, type CustomFieldProps, DEFAULT_MAX_INPUT_LENGTH, DataPointInfo, type DataPointInfoProps, Differential, type DifferentialProps, DropdownMenu, EmptyStateCard, type EmptyStateCardProps, ExpandableTypographyClamp, type ExpandableTypographyClampProps, ExtendedTestStatus, type ExtendedTestStatusProps, type FieldType, type FieldTypes, FilterCount, type FilterCountProps, FilterGroupAccordion, type FilterGroupAccordionProps, FilterPyramidGraphBar as FilterPyramidGraph, type FilterPyramidGraphBarProps, FilterRow, type FilterRowProps, FilteredItemsCard, type FilteredItemsCardProps, Flag, type FlagProps, FontWeight, FormControlLabel, FormGenerator, type FormGeneratorConfig, type FormGeneratorHandler, type GenericSizeMap, GraphBar, type GraphBarProps, 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, KpiDataPopover, type KpiDataPopoverProps, KpiIndicator, type KpiIndicatorProps, Label, type LabelProps, Likert, type LikertProps, Link, type LinkProps, Loader, type LoaderProps, Logo, LoopItem, LoopItemEmpty, type LoopItemEmptyProps, type LoopItemProps, LoopsAiButton, type LoopsAiButtonProps, Markdown, type MarkdownProps, type MarkerComponentProps, Menu, type MenuProps, ModalActionsWrapper, ModalContentWrapper, ModalLayout, type ModalLayoutProps, 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, QuestionBlock, type QuestionBlockProps, QuestionLabel, type QuestionLabelProps, type QuestionStats, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rank, type RankProps, RichTextField, type RichTextFieldProps, SearchInput, type SearchInputProps, 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, TestItem, type TestItemProps, TestKPICard, type TestKPICardProps, 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, _default as VideoControls, type VideoControlsProps, VideoModal, type VideoModalProps, backgroundCreator, base, blue, blueRamp, boxShadow, breakpoints, buttonHeightMap, buttonInteraction, chooseArticle, compareArrayMembers, customTheme, darkNeutral, darkNeutralAlpha, defaultInputValidation, easing, elevation, elevationFilter, emailValidation, fonts, generateRamp, getButtonSizing, getButtonTypography, getIconSizing$1 as getIconSizing, getKpiIndicatorColor, green, greenRamp, IconButton_variantHelpers as iconButtonHelpers, iconSizeMap, isButton, mapKpiColorSchemeByInteger, margin, neutral, neutralAlpha, neutralRamp, outlined$1 as outlined, padding, passwordValidation, peach, peachRamp, primary, purple, purpleRamp, radius, red, redRamp, secondary, semantic, space, subtle, useBreakpoint, useDropdownMenu, useKeyCombo, usePrevious, useScreenSize, useTheme, useThemeBuilder, yellow, yellowRamp };