@useloops/design-system 1.4.40 → 1.4.42
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 +3 -3
- package/dist/index.d.ts +5 -5
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -308,7 +308,7 @@ declare namespace SortableList {
|
|
|
308
308
|
var DragHandle: typeof DragHandle;
|
|
309
309
|
}
|
|
310
310
|
|
|
311
|
-
interface
|
|
311
|
+
interface RankProps extends Omit<SortableListProps<any>, 'renderItem'> {
|
|
312
312
|
labelTop: string;
|
|
313
313
|
labelBottom: string;
|
|
314
314
|
fullWidth?: boolean;
|
|
@@ -316,7 +316,7 @@ interface DragAndDropRankingProps extends Omit<SortableListProps<any>, 'renderIt
|
|
|
316
316
|
internalChange?: () => void;
|
|
317
317
|
value?: any[];
|
|
318
318
|
}
|
|
319
|
-
declare const
|
|
319
|
+
declare const Rank: FunctionComponent<RankProps>;
|
|
320
320
|
|
|
321
321
|
interface FormControlLabelProps {
|
|
322
322
|
control: FormControlLabelProps$1['control'];
|
|
@@ -654,8 +654,8 @@ type SliderType = BaseField & SliderProps;
|
|
|
654
654
|
type DifferentialType = BaseField & DifferentialProps;
|
|
655
655
|
type LikertType = BaseField & LikertProps;
|
|
656
656
|
type RadioGroupType = BaseField & RadioGroupProps;
|
|
657
|
-
type DragAndDropRankingType = BaseField &
|
|
658
|
-
type FieldType = 'textfield' | 'textarea' | 'select' | 'checkbox' | 'checkboxGroup' | 'slider' | 'differential' | 'likert' | 'starRating' | 'radioGroup' | 'text' | '
|
|
657
|
+
type DragAndDropRankingType = BaseField & RankProps;
|
|
658
|
+
type FieldType = 'textfield' | 'textarea' | 'select' | 'checkbox' | 'checkboxGroup' | 'slider' | 'differential' | 'likert' | 'starRating' | 'radioGroup' | 'text' | 'ranking';
|
|
659
659
|
type FieldTypes = CheckboxType | CheckboxGroupType | SelectType | TextFieldType | SliderType | DifferentialType | LikertType | RadioGroupType | DragAndDropRankingType;
|
|
660
660
|
interface BaseField {
|
|
661
661
|
name: string;
|
|
@@ -1119,4 +1119,4 @@ declare module '@mui/system' {
|
|
|
1119
1119
|
}
|
|
1120
1120
|
}
|
|
1121
1121
|
|
|
1122
|
-
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,
|
|
1122
|
+
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, 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, Rank, type RankProps, 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, Toast, type ToastProps, Tooltip, type TooltipProps, Typography, type TypographyProps, chooseArticle, defaultInputValidation, emailValidation, passwordValidation };
|