@landtrustinc/design-system 1.2.32 → 1.2.34
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 +48 -1
- package/dist/index.js +385 -342
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1113,6 +1113,16 @@ type TopMatchingFieldNoteProps = {
|
|
|
1113
1113
|
* Children content (used when rendering from markdown)
|
|
1114
1114
|
*/
|
|
1115
1115
|
children?: React__default.ReactNode;
|
|
1116
|
+
/**
|
|
1117
|
+
* Image width for optimization
|
|
1118
|
+
* @default 376
|
|
1119
|
+
*/
|
|
1120
|
+
width?: number;
|
|
1121
|
+
/**
|
|
1122
|
+
* Image height for optimization
|
|
1123
|
+
* @default 275
|
|
1124
|
+
*/
|
|
1125
|
+
height?: number;
|
|
1116
1126
|
};
|
|
1117
1127
|
declare const TopMatchingFieldNote: FC<TopMatchingFieldNoteProps>;
|
|
1118
1128
|
|
|
@@ -1271,6 +1281,43 @@ type ButtonProps = {
|
|
|
1271
1281
|
} & Omit<ButtonAndAnchorProps, 'size' | 'as' | 'onClick'>;
|
|
1272
1282
|
declare const Button: React__default.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React__default.RefAttributes<HTMLElement>>;
|
|
1273
1283
|
|
|
1284
|
+
type BytescaleImageProps = {
|
|
1285
|
+
/**
|
|
1286
|
+
* Path to the image in Bytescale storage
|
|
1287
|
+
* Example: "/dev/activity-feed/image.jpg"
|
|
1288
|
+
*/
|
|
1289
|
+
imagePath: string;
|
|
1290
|
+
/**
|
|
1291
|
+
* Image width in pixels for optimization
|
|
1292
|
+
*/
|
|
1293
|
+
width?: number;
|
|
1294
|
+
/**
|
|
1295
|
+
* Image height in pixels for optimization
|
|
1296
|
+
*/
|
|
1297
|
+
height?: number;
|
|
1298
|
+
/**
|
|
1299
|
+
* Alt text for the image (defaults to basename of imagePath)
|
|
1300
|
+
*/
|
|
1301
|
+
alt?: string;
|
|
1302
|
+
/**
|
|
1303
|
+
* Additional CSS class names
|
|
1304
|
+
*/
|
|
1305
|
+
className?: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* Bytescale account ID
|
|
1308
|
+
* @default '12a1yC2'
|
|
1309
|
+
*/
|
|
1310
|
+
accountId?: string;
|
|
1311
|
+
} & Omit<React.ImgHTMLAttributes<HTMLImageElement>, 'src' | 'alt'>;
|
|
1312
|
+
|
|
1313
|
+
/**
|
|
1314
|
+
* BytescaleImage - Optimized image component with Bytescale CDN integration
|
|
1315
|
+
*
|
|
1316
|
+
* Displays images from Bytescale storage with automatic optimization,
|
|
1317
|
+
* caching, and format conversion.
|
|
1318
|
+
*/
|
|
1319
|
+
declare const BytescaleImage: FC<BytescaleImageProps>;
|
|
1320
|
+
|
|
1274
1321
|
type MessageBubbleVariant = 'sent' | 'received';
|
|
1275
1322
|
|
|
1276
1323
|
type MessageBubbleProps = {
|
|
@@ -2516,4 +2563,4 @@ declare const Widget: React__default.FC<WidgetProps> & {
|
|
|
2516
2563
|
}>;
|
|
2517
2564
|
};
|
|
2518
2565
|
|
|
2519
|
-
export { AIResponse, type AIResponseProps, ActionMenu, type ActionMenuItem, type ActionMenuProps, AvailabilityBadge, type AvailabilityBadgeProps, type AvailabilityBadgeVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarType, type BaseInputProps, Box, type BoxProps, Button, type ButtonProps, type ButtonVariants, type CarouselPositions, ChatWidget, type ChatWidgetMessage, type ChatWidgetProps, Column, type ColumnProps, ContactLandownerButton, type ContactLandownerButtonProps, Container, Divider, type DividerProps, type DotsColors, type FeatureItem, FeatureList, FeatureListItem, type FeatureListItemProps, 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 IconSize, IconSizeMap, type IconVariantTypes$1 as IconVariantTypes, InfoBox, type InfoBoxProps, Input, type InputProps, type InputSize, type InputVariant, LandownerProfile, type LandownerProfileProps, LayoutTokens, ListingChat, type ListingChatProps, Logo, type LogoProps, type LogoTheme, type LogoVariant, MarkdownContent, type MarkdownContentProps, MessageBubble, type MessageBubbleProps, type NavLink, Navigation, type NavigationProps, PackageCard, type PackageCardBadge, type PackageCardProps, PackageHeader, type PackageHeaderProps, type ResponsiveValue, ReviewCard, type ReviewCardProps, Reviews, type ReviewsProps, ReviewsShowcase, ScrollingCarousel, type ScrollingCarouselProps, ScrollingCarouselStep, type ScrollingCarouselStepProps, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, StarRating, type StarRatingProps, type SuggestedPrompt, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, Tooltip, type TooltipPosition, type TooltipProps, TopMatchingFieldNote, type TopMatchingFieldNoteProps, TopMatchingReview, type TopMatchingReviewProps, UserCard, type UserCardProps, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|
|
2566
|
+
export { AIResponse, type AIResponseProps, ActionMenu, type ActionMenuItem, type ActionMenuProps, AvailabilityBadge, type AvailabilityBadgeProps, type AvailabilityBadgeVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarType, type BaseInputProps, Box, type BoxProps, Button, type ButtonProps, type ButtonVariants, BytescaleImage, type BytescaleImageProps, type CarouselPositions, ChatWidget, type ChatWidgetMessage, type ChatWidgetProps, Column, type ColumnProps, ContactLandownerButton, type ContactLandownerButtonProps, Container, Divider, type DividerProps, type DotsColors, type FeatureItem, FeatureList, FeatureListItem, type FeatureListItemProps, 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 IconSize, IconSizeMap, type IconVariantTypes$1 as IconVariantTypes, InfoBox, type InfoBoxProps, Input, type InputProps, type InputSize, type InputVariant, LandownerProfile, type LandownerProfileProps, LayoutTokens, ListingChat, type ListingChatProps, Logo, type LogoProps, type LogoTheme, type LogoVariant, MarkdownContent, type MarkdownContentProps, MessageBubble, type MessageBubbleProps, type NavLink, Navigation, type NavigationProps, PackageCard, type PackageCardBadge, type PackageCardProps, PackageHeader, type PackageHeaderProps, type ResponsiveValue, ReviewCard, type ReviewCardProps, Reviews, type ReviewsProps, ReviewsShowcase, ScrollingCarousel, type ScrollingCarouselProps, ScrollingCarouselStep, type ScrollingCarouselStepProps, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, StarRating, type StarRatingProps, type SuggestedPrompt, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, Tooltip, type TooltipPosition, type TooltipProps, TopMatchingFieldNote, type TopMatchingFieldNoteProps, TopMatchingReview, type TopMatchingReviewProps, UserCard, type UserCardProps, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|