dce-reactkit 3.0.39 → 3.0.40
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 +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/components/TabBox.tsx +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -893,7 +893,7 @@ const TabBox = (props) => {
|
|
|
893
893
|
React__default["default"].createElement("style", null, style$2),
|
|
894
894
|
React__default["default"].createElement("div", { className: "TabBox-title-container" },
|
|
895
895
|
React__default["default"].createElement("div", { className: "TabBox-title" }, title)),
|
|
896
|
-
React__default["default"].createElement("div", { className: `TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : '
|
|
896
|
+
React__default["default"].createElement("div", { className: `TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : 'pb-2'}` },
|
|
897
897
|
React__default["default"].createElement("div", { className: "TabBox-children" }, children))));
|
|
898
898
|
};
|
|
899
899
|
|
package/dist/esm/index.js
CHANGED
|
@@ -885,7 +885,7 @@ const TabBox = (props) => {
|
|
|
885
885
|
React.createElement("style", null, style$2),
|
|
886
886
|
React.createElement("div", { className: "TabBox-title-container" },
|
|
887
887
|
React.createElement("div", { className: "TabBox-title" }, title)),
|
|
888
|
-
React.createElement("div", { className: `TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : '
|
|
888
|
+
React.createElement("div", { className: `TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : 'pb-2'}` },
|
|
889
889
|
React.createElement("div", { className: "TabBox-children" }, children))));
|
|
890
890
|
};
|
|
891
891
|
|
package/package.json
CHANGED
|
@@ -129,7 +129,7 @@ const TabBox: React.FC<Props> = (props) => {
|
|
|
129
129
|
</div>
|
|
130
130
|
|
|
131
131
|
{/* Contents */}
|
|
132
|
-
<div className={`TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : '
|
|
132
|
+
<div className={`TabBox-box ps-2 pt-2 pe-2 ${noBottomPadding ? '' : 'pb-2'}`}>
|
|
133
133
|
<div className="TabBox-children">
|
|
134
134
|
{children}
|
|
135
135
|
</div>
|