@cloudtower/eagle 0.35.4 → 0.35.5

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.
@@ -119,6 +119,8 @@ function getComponent(type, props) {
119
119
  return /* @__PURE__ */React__default.createElement(Tag, __spreadProps(__spreadValues({}, restTagProps), {
120
120
  color: color || "blue"
121
121
  }));
122
+ default:
123
+ return /* @__PURE__ */React__default.createElement(React__default.Fragment, null);
122
124
  }
123
125
  }
124
126
 
@@ -27,6 +27,7 @@ var __spreadValues = (a, b) => {
27
27
  return a;
28
28
  };
29
29
  const SelectToolbar = "E_s1ebs0ra";
30
+ const MenuItemInnerStyle = "E_mzzncgx";
30
31
  const renderBatchOperationMenuItem = (act, idx = 0) => {
31
32
  if (act === "divider") {
32
33
  return /* @__PURE__ */React__default.createElement(Menu.Divider, {
@@ -41,7 +42,9 @@ const renderBatchOperationMenuItem = (act, idx = 0) => {
41
42
  }, act.children.map(renderBatchOperationMenuItem));
42
43
  }
43
44
  const Inner = props => {
44
- return /* @__PURE__ */React__default.createElement("span", __spreadValues({}, props), act.icon ? React__default.cloneElement(act.icon, {}, act.title) : null, (act == null ? void 0 : act.count) && /* @__PURE__ */React__default.createElement("span", null, act.count));
45
+ return /* @__PURE__ */React__default.createElement("span", __spreadValues({
46
+ className: MenuItemInnerStyle
47
+ }, props), act.icon ? React__default.cloneElement(act.icon, {}, act.title) : null, (act == null ? void 0 : act.count) && /* @__PURE__ */React__default.createElement("span", null, act.count));
45
48
  };
46
49
  return /* @__PURE__ */React__default.createElement(Menu.Item, {
47
50
  key: act.key,