dce-reactkit 4.2.2 → 4.2.3

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/cjs/index.js CHANGED
@@ -2414,14 +2414,14 @@ const TabBox = (props) => {
2414
2414
  /*------------------------------------------------------------------------*/
2415
2415
  /* -------------------------------- Setup ------------------------------- */
2416
2416
  /*------------------------------------------------------------------------*/
2417
- const { title, children, topRightChildren, noBottomPadding, noBottomMargin, } = props;
2417
+ const { title, children, topRightChildren, noBottomPadding, noBottomMargin, minTitleWidth, } = props;
2418
2418
  /*------------------------------------------------------------------------*/
2419
2419
  /* ------------------------------- Render ------------------------------- */
2420
2420
  /*------------------------------------------------------------------------*/
2421
2421
  return (React__default["default"].createElement("div", { className: `TabBox-container ${noBottomMargin ? '' : 'mb-2'}` },
2422
2422
  React__default["default"].createElement("style", null, style$7),
2423
2423
  React__default["default"].createElement("div", { className: "TabBox-title-container" },
2424
- React__default["default"].createElement("div", { className: "TabBox-title" }, title),
2424
+ React__default["default"].createElement("div", { className: "TabBox-title", style: { minWidth: minTitleWidth } }, title),
2425
2425
  topRightChildren && (React__default["default"].createElement("div", { className: "TabBox-title-right-container" },
2426
2426
  React__default["default"].createElement("div", { className: "TabBox-title-right-contents" }, topRightChildren)))),
2427
2427
  React__default["default"].createElement("div", { className: `TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : 'pb-2'}` },