@gisce/react-ooui 1.1.48 → 1.1.49
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 +1 -1
- package/src/stories/Separator.stories.tsx +12 -0
- package/src/widgets/base/Separator.tsx +9 -3
package/dist/react-ooui.es.js
CHANGED
|
@@ -20141,12 +20141,15 @@ const {
|
|
|
20141
20141
|
const {
|
|
20142
20142
|
ooui: t
|
|
20143
20143
|
} = e, {
|
|
20144
|
-
label: r
|
|
20145
|
-
|
|
20144
|
+
label: r,
|
|
20145
|
+
icon: n
|
|
20146
|
+
} = t, a = iconMapper(n || "");
|
|
20146
20147
|
return /* @__PURE__ */ jsx(Divider, {
|
|
20147
20148
|
orientation: "left",
|
|
20148
20149
|
className: "text-sm",
|
|
20149
|
-
children:
|
|
20150
|
+
children: /* @__PURE__ */ jsxs(Space, {
|
|
20151
|
+
children: [a ? /* @__PURE__ */ jsx(a, {}) : null, r]
|
|
20152
|
+
})
|
|
20150
20153
|
});
|
|
20151
20154
|
};
|
|
20152
20155
|
//! moment.js
|