@sunggang/ui-lib 0.3.12 → 0.3.13
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/index.esm2.js +2 -3
- package/package.json +1 -1
- package/src/lib/Form/types.d.ts +1 -0
package/index.esm2.js
CHANGED
|
@@ -23196,11 +23196,10 @@ var BaseSwitch = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
23196
23196
|
};
|
|
23197
23197
|
return /*#__PURE__*/ jsxs("div", {
|
|
23198
23198
|
className: [
|
|
23199
|
-
"h-24 w-full"
|
|
23200
|
-
item === null || item === void 0 ? void 0 : item.className
|
|
23199
|
+
(item === null || item === void 0 ? void 0 : item.className) || "h-24 w-full"
|
|
23201
23200
|
].join(" "),
|
|
23202
23201
|
children: [
|
|
23203
|
-
/*#__PURE__*/ jsx(FieldLabel, {
|
|
23202
|
+
(item === null || item === void 0 ? void 0 : item.closeLabel) ? null : /*#__PURE__*/ jsx(FieldLabel, {
|
|
23204
23203
|
item: item
|
|
23205
23204
|
}),
|
|
23206
23205
|
/*#__PURE__*/ jsx(Controller$2, {
|
package/package.json
CHANGED