@landtrustinc/design-system 1.2.56 → 1.2.58
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 +5 -1
- package/dist/index.js +405 -348
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2654,8 +2654,12 @@ type PackageCardProps = {
|
|
|
2654
2654
|
* - 'md': Default size
|
|
2655
2655
|
*/
|
|
2656
2656
|
size?: 'xs' | 'md';
|
|
2657
|
+
/**
|
|
2658
|
+
* Loading state - shows skeleton placeholders when true
|
|
2659
|
+
*/
|
|
2660
|
+
isLoading?: boolean;
|
|
2657
2661
|
};
|
|
2658
|
-
declare const PackageCard: ({ images, title, subtitle, startingPrice, isFavorited, onFavoriteClick, onClick, className, badges, availabilityBadges, id, hasContentBackground, orientation, actions, size, ...rest }: PackageCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2662
|
+
declare const PackageCard: ({ images, title, subtitle, startingPrice, isFavorited, onFavoriteClick, onClick, className, badges, availabilityBadges, id, hasContentBackground, orientation, actions, size, isLoading, ...rest }: PackageCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2659
2663
|
|
|
2660
2664
|
type PackageHeaderProps = {
|
|
2661
2665
|
/**
|