ywana-core8 0.0.88 → 0.0.89
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/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +5 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/menu.css +5 -0
- package/src/html/menu.js +1 -2
package/dist/index.cjs
CHANGED
@@ -665,7 +665,9 @@ var MenuItem = function MenuItem(props) {
|
|
665
665
|
*/
|
666
666
|
|
667
667
|
var MenuSeparator = function MenuSeparator(props) {
|
668
|
-
return /*#__PURE__*/React__default["default"].createElement("li",
|
668
|
+
return /*#__PURE__*/React__default["default"].createElement("li", {
|
669
|
+
className: "menu-separator"
|
670
|
+
});
|
669
671
|
};
|
670
672
|
|
671
673
|
/**
|