@thecb/components 7.13.4-beta.4 → 7.13.4-beta.5

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 CHANGED
@@ -54,8 +54,8 @@ interface CardProps {
54
54
  borderRadius?: string;
55
55
  width?: string;
56
56
  padding?: string;
57
- stackStyles?: string;
58
- coverStyles?: string;
57
+ boxStyles?: string;
58
+ direction?: "column" | "row";
59
59
  }
60
60
 
61
61
  declare const Card: React.FC<Expand<CardProps> &
package/dist/index.esm.js CHANGED
@@ -37967,10 +37967,8 @@ var Card = function Card(_ref) {
37967
37967
  themeValues = _ref.themeValues,
37968
37968
  _ref$width = _ref.width,
37969
37969
  width = _ref$width === void 0 ? "276px" : _ref$width,
37970
- _ref$stackStyles = _ref.stackStyles,
37971
- stackStyles = _ref$stackStyles === void 0 ? "" : _ref$stackStyles,
37972
- _ref$coverStyles = _ref.coverStyles,
37973
- coverStyles = _ref$coverStyles === void 0 ? "" : _ref$coverStyles,
37970
+ _ref$stackDirection = _ref.stackDirection,
37971
+ stackDirection = _ref$stackDirection === void 0 ? "column" : _ref$stackDirection,
37974
37972
  _ref$boxStyles = _ref.boxStyles,
37975
37973
  boxStyles = _ref$boxStyles === void 0 ? "" : _ref$boxStyles,
37976
37974
  children = _ref.children;
@@ -37992,7 +37990,8 @@ var Card = function Card(_ref) {
37992
37990
  fullHeight: true,
37993
37991
  childGap: "0",
37994
37992
  bottomItem: numberOfChildren,
37995
- extraStyles: stackStyles
37993
+ extraStyles: stackStyles,
37994
+ direction: stackDirection
37996
37995
  }, headerText && /*#__PURE__*/React.createElement(CardHeader, {
37997
37996
  headerText: headerText,
37998
37997
  headerColor: themeValues.headerColor,