@theroutingcompany/components 0.0.153-alpha.3 → 0.0.154

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.
@@ -3387,25 +3387,26 @@ const gS = Me(function({ children: t }, r) {
3387
3387
  });
3388
3388
  gS.displayName = "ActionMenuContent";
3389
3389
  const mS = Me(
3390
- function({ children: t, onClick: r, disabled: n = !1, icon: o, title: i, "aria-label": a, hidden: u }, l) {
3391
- const { close: s } = Du(), c = () => {
3392
- n || (r == null || r(), s());
3393
- }, { size: d } = Du();
3390
+ function({ children: t, onClick: r, disabled: n = !1, icon: o, title: i, "aria-label": a, hidden: u, style: l }, s) {
3391
+ const { close: c } = Du(), d = () => {
3392
+ n || (r == null || r(), c());
3393
+ }, { size: p } = Du();
3394
3394
  return /* @__PURE__ */ ee(
3395
3395
  fS,
3396
3396
  {
3397
- ref: l,
3398
- onClick: c,
3397
+ ref: s,
3398
+ onClick: d,
3399
3399
  disabled: n,
3400
3400
  "data-disabled": n,
3401
3401
  title: i,
3402
3402
  "aria-label": a,
3403
3403
  hidden: u,
3404
3404
  role: "menuitem",
3405
- "data-size": d,
3405
+ "data-size": p,
3406
+ style: l,
3406
3407
  children: [
3407
3408
  o && /* @__PURE__ */ m("span", { children: o }),
3408
- /* @__PURE__ */ m("span", { children: t })
3409
+ /* @__PURE__ */ m("span", { style: { width: "100%" }, children: t })
3409
3410
  ]
3410
3411
  }
3411
3412
  );