@landtrustinc/design-system 1.1.6 → 1.1.7
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 +59 -1
- package/dist/index.js +261 -167
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1184,6 +1184,48 @@ type DividerProps = React__default.HTMLAttributes<HTMLHRElement> & SpaceProps &
|
|
|
1184
1184
|
};
|
|
1185
1185
|
declare const Divider: React__default.FC<DividerProps>;
|
|
1186
1186
|
|
|
1187
|
+
type FeatureListItemProps = {
|
|
1188
|
+
/**
|
|
1189
|
+
* Icon variant to display
|
|
1190
|
+
*/
|
|
1191
|
+
variant: IconVariantTypes$1;
|
|
1192
|
+
/**
|
|
1193
|
+
* Main label text
|
|
1194
|
+
*/
|
|
1195
|
+
label: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* Optional subtitle/description text
|
|
1198
|
+
*/
|
|
1199
|
+
subtitle?: string;
|
|
1200
|
+
/**
|
|
1201
|
+
* Size of the icon
|
|
1202
|
+
*/
|
|
1203
|
+
iconSize?: keyof typeof space;
|
|
1204
|
+
/**
|
|
1205
|
+
* Additional CSS class names
|
|
1206
|
+
*/
|
|
1207
|
+
className?: string;
|
|
1208
|
+
};
|
|
1209
|
+
|
|
1210
|
+
type FeatureItem = Omit<FeatureListItemProps, 'className'>;
|
|
1211
|
+
type FeatureListSection = {
|
|
1212
|
+
/**
|
|
1213
|
+
* Optional heading for this feature list section
|
|
1214
|
+
*/
|
|
1215
|
+
heading?: string;
|
|
1216
|
+
/**
|
|
1217
|
+
* Array of feature items for this section
|
|
1218
|
+
*/
|
|
1219
|
+
items: FeatureItem[];
|
|
1220
|
+
};
|
|
1221
|
+
type FeatureListProps = FeatureListSection & {
|
|
1222
|
+
/**
|
|
1223
|
+
* Additional CSS class names
|
|
1224
|
+
*/
|
|
1225
|
+
className?: string;
|
|
1226
|
+
};
|
|
1227
|
+
declare const FeatureList: FC<FeatureListProps>;
|
|
1228
|
+
|
|
1187
1229
|
type FieldNoteCardProps = {
|
|
1188
1230
|
/**
|
|
1189
1231
|
* URL of the background image
|
|
@@ -1534,6 +1576,22 @@ type IconLabelProps = {
|
|
|
1534
1576
|
};
|
|
1535
1577
|
declare const IconLabel: ({ variant, label, iconSize, className, ...rest }: IconLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1536
1578
|
|
|
1579
|
+
type InfoBoxProps = {
|
|
1580
|
+
/**
|
|
1581
|
+
* Heading text for the info box
|
|
1582
|
+
*/
|
|
1583
|
+
heading: string;
|
|
1584
|
+
/**
|
|
1585
|
+
* Array of feature list sections to display
|
|
1586
|
+
*/
|
|
1587
|
+
features: FeatureListSection[];
|
|
1588
|
+
/**
|
|
1589
|
+
* Additional CSS class names
|
|
1590
|
+
*/
|
|
1591
|
+
className?: string;
|
|
1592
|
+
};
|
|
1593
|
+
declare const InfoBox: FC<InfoBoxProps>;
|
|
1594
|
+
|
|
1537
1595
|
type ListingChatProps = {
|
|
1538
1596
|
/**
|
|
1539
1597
|
* Called when the user submits text
|
|
@@ -1954,4 +2012,4 @@ declare const Widget: React__default.FC<WidgetProps> & {
|
|
|
1954
2012
|
}>;
|
|
1955
2013
|
};
|
|
1956
2014
|
|
|
1957
|
-
export { AIResponse, type AIResponseProps, AvailabilityChip, type AvailabilityChipProps, type AvailabilityChipVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarType, type BaseInputProps, Box, type BoxProps, Button, type ButtonProps, type ButtonVariants, ChatWidget, type ChatWidgetMessage, type ChatWidgetProps, Column, type ColumnProps, Container, Divider, type DividerProps, FieldNoteCard, type FieldNoteCardProps, FormField, type FormFieldProps, GlobalStyle, Grid, type GridBreakpoint, GridContainer, type GridContainerProps, type GridProps, Heading, type HeadingProps, HuntCard, type HuntCardProps, Icon, IconLabel, type IconLabelProps, type IconProps, type IconVariantTypes$1 as IconVariantTypes, Input, type InputProps, type InputSize, type InputVariant, LayoutTokens, ListingChat, type ListingChatProps, Logo, type LogoProps, type LogoTheme, type LogoVariant, MessageBubble, type MessageBubbleProps, type NavLink, Navigation, type NavigationProps, PackageCard, type PackageCardProps, type ResponsiveValue, ReviewCard, type ReviewCardProps, Reviews, type ReviewsProps, ReviewsShowcase, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, StarRating, type StarRatingProps, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, UserCard, type UserCardProps, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|
|
2015
|
+
export { AIResponse, type AIResponseProps, AvailabilityChip, type AvailabilityChipProps, type AvailabilityChipVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarType, type BaseInputProps, Box, type BoxProps, Button, type ButtonProps, type ButtonVariants, ChatWidget, type ChatWidgetMessage, type ChatWidgetProps, Column, type ColumnProps, Container, Divider, type DividerProps, type FeatureItem, FeatureList, type FeatureListProps, type FeatureListSection, FieldNoteCard, type FieldNoteCardProps, FormField, type FormFieldProps, GlobalStyle, Grid, type GridBreakpoint, GridContainer, type GridContainerProps, type GridProps, Heading, type HeadingProps, HuntCard, type HuntCardProps, Icon, IconLabel, type IconLabelProps, type IconProps, type IconVariantTypes$1 as IconVariantTypes, InfoBox, type InfoBoxProps, Input, type InputProps, type InputSize, type InputVariant, LayoutTokens, ListingChat, type ListingChatProps, Logo, type LogoProps, type LogoTheme, type LogoVariant, MessageBubble, type MessageBubbleProps, type NavLink, Navigation, type NavigationProps, PackageCard, type PackageCardProps, type ResponsiveValue, ReviewCard, type ReviewCardProps, Reviews, type ReviewsProps, ReviewsShowcase, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, StarRating, type StarRatingProps, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, UserCard, type UserCardProps, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|