@landtrustinc/design-system 1.2.23 → 1.2.26
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 +7 -1
- package/dist/index.js +239 -220
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2107,8 +2107,14 @@ type PackageCardProps = {
|
|
|
2107
2107
|
* When false, only shows top padding without background
|
|
2108
2108
|
*/
|
|
2109
2109
|
hasContentBackground?: boolean;
|
|
2110
|
+
/**
|
|
2111
|
+
* Orientation of the card (default: 'vertical')
|
|
2112
|
+
* - 'vertical': Image on top, content below
|
|
2113
|
+
* - 'horizontal': Image on left, content on right
|
|
2114
|
+
*/
|
|
2115
|
+
orientation?: 'vertical' | 'horizontal';
|
|
2110
2116
|
};
|
|
2111
|
-
declare const PackageCard: ({ images, title, subtitle, startingPrice, isFavorited, onFavoriteClick, onClick, className, badges, availabilityBadges, id, hasContentBackground, ...rest }: PackageCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2117
|
+
declare const PackageCard: ({ images, title, subtitle, startingPrice, isFavorited, onFavoriteClick, onClick, className, badges, availabilityBadges, id, hasContentBackground, orientation, ...rest }: PackageCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2112
2118
|
|
|
2113
2119
|
type PackageHeaderProps = {
|
|
2114
2120
|
/**
|