@gisce/react-ooui 1.2.0-rc.58 → 1.2.0-rc.59
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 +6 -3
- 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 +2 -2
- package/src/stories/Separator.stories.tsx +12 -0
- package/src/widgets/base/Separator.tsx +9 -3
package/dist/react-ooui.es.js
CHANGED
|
@@ -21924,12 +21924,15 @@ const {
|
|
|
21924
21924
|
const {
|
|
21925
21925
|
ooui: t
|
|
21926
21926
|
} = e, {
|
|
21927
|
-
label: r
|
|
21928
|
-
|
|
21927
|
+
label: r,
|
|
21928
|
+
icon: n
|
|
21929
|
+
} = t, a = iconMapper(n || "");
|
|
21929
21930
|
return /* @__PURE__ */ jsx(Divider, {
|
|
21930
21931
|
orientation: "left",
|
|
21931
21932
|
className: "text-sm",
|
|
21932
|
-
children:
|
|
21933
|
+
children: /* @__PURE__ */ jsxs(Space, {
|
|
21934
|
+
children: [a ? /* @__PURE__ */ jsx(a, {}) : null, r]
|
|
21935
|
+
})
|
|
21933
21936
|
});
|
|
21934
21937
|
}, useExport = ({
|
|
21935
21938
|
model: e,
|