@gisce/react-ooui 1.1.53-rc.0 → 1.1.53
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/react-ooui.es.js +2 -2
- package/dist/react-ooui.es.js.map +1 -1
- package/dist/react-ooui.umd.js +1 -1
- package/dist/react-ooui.umd.js.map +1 -1
- package/dist/widgets/base/Separator.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/stories/Separator.stories.tsx +21 -0
- package/src/stories/containers/Group.stories.tsx +12 -0
- package/src/widgets/base/Separator.tsx +6 -4
- package/src/widgets/containers/Group.tsx +1 -1
package/dist/react-ooui.es.js
CHANGED
|
@@ -19975,7 +19975,7 @@ function Group(e) {
|
|
|
19975
19975
|
children: [a ? /* @__PURE__ */ jsx(a, {}) : null, t.label]
|
|
19976
19976
|
});
|
|
19977
19977
|
return /* @__PURE__ */ jsx(Fragment, {
|
|
19978
|
-
children: t.label && r ? /* @__PURE__ */ jsx(Fieldset, {
|
|
19978
|
+
children: (t.label || a) && r ? /* @__PURE__ */ jsx(Fieldset, {
|
|
19979
19979
|
label: o,
|
|
19980
19980
|
children: /* @__PURE__ */ jsx(Container, {
|
|
19981
19981
|
container: t.container,
|
|
@@ -20141,7 +20141,7 @@ const {
|
|
|
20141
20141
|
return /* @__PURE__ */ jsx(Divider, {
|
|
20142
20142
|
orientation: "left",
|
|
20143
20143
|
className: "text-sm",
|
|
20144
|
-
children: /* @__PURE__ */ jsxs(Space, {
|
|
20144
|
+
children: (a || r) && /* @__PURE__ */ jsxs(Space, {
|
|
20145
20145
|
children: [a ? /* @__PURE__ */ jsx(a, {}) : null, r]
|
|
20146
20146
|
})
|
|
20147
20147
|
});
|