@thecb/components 11.2.11-beta.0 → 11.2.12

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.esm.js CHANGED
@@ -42163,6 +42163,8 @@ var LinkCard = function LinkCard(_ref) {
42163
42163
  title = _ref$title === void 0 ? "Test Workflow" : _ref$title,
42164
42164
  _ref$subtitle = _ref.subtitle,
42165
42165
  subtitle = _ref$subtitle === void 0 ? "Link your benefit plan" : _ref$subtitle,
42166
+ _ref$subtitlePadding = _ref.subtitlePadding,
42167
+ subtitlePadding = _ref$subtitlePadding === void 0 ? "0 0 40px" : _ref$subtitlePadding,
42166
42168
  showLeft = _ref.showLeft,
42167
42169
  leftContent = _ref.leftContent,
42168
42170
  showRight = _ref.showRight,
@@ -42177,6 +42179,8 @@ var LinkCard = function LinkCard(_ref) {
42177
42179
  themeValues = _ref.themeValues,
42178
42180
  _ref$titleVariant = _ref.titleVariant,
42179
42181
  titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant,
42182
+ _ref$titlePadding = _ref.titlePadding,
42183
+ titlePadding = _ref$titlePadding === void 0 ? "0" : _ref$titlePadding,
42180
42184
  _ref$disabled = _ref.disabled,
42181
42185
  disabled = _ref$disabled === void 0 ? false : _ref$disabled;
42182
42186
  var _useContext = useContext(ThemeContext),
@@ -42209,7 +42213,7 @@ var LinkCard = function LinkCard(_ref) {
42209
42213
  },
42210
42214
  fullHeight: true
42211
42215
  }, /*#__PURE__*/React.createElement(Box, {
42212
- padding: 0,
42216
+ padding: titlePadding,
42213
42217
  width: "100%"
42214
42218
  }, /*#__PURE__*/React.createElement(Title$2, {
42215
42219
  variant: titleVariant,
@@ -42217,7 +42221,7 @@ var LinkCard = function LinkCard(_ref) {
42217
42221
  margin: 0,
42218
42222
  isDisabled: disabled
42219
42223
  }, title)), /*#__PURE__*/React.createElement(Box, {
42220
- padding: "0 0 0.5rem",
42224
+ padding: subtitlePadding,
42221
42225
  width: "100%"
42222
42226
  }, /*#__PURE__*/React.createElement(Subtitle, {
42223
42227
  variant: "pS",