react-better-html 1.1.195 → 1.1.196
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9510,6 +9510,8 @@ var SideMenuComponent = function SideMenu({
|
|
|
9510
9510
|
collapsable,
|
|
9511
9511
|
withCloseButton,
|
|
9512
9512
|
widthMobileHandle,
|
|
9513
|
+
absoluteComponent,
|
|
9514
|
+
additionalComponent,
|
|
9513
9515
|
backgroundColor,
|
|
9514
9516
|
paddingTop
|
|
9515
9517
|
}) {
|
|
@@ -9621,6 +9623,7 @@ var SideMenuComponent = function SideMenu({
|
|
|
9621
9623
|
))
|
|
9622
9624
|
}
|
|
9623
9625
|
),
|
|
9626
|
+
additionalComponent,
|
|
9624
9627
|
isCollapsable && /* @__PURE__ */ jsx27(
|
|
9625
9628
|
Div_default,
|
|
9626
9629
|
{
|
|
@@ -9686,7 +9689,8 @@ var SideMenuComponent = function SideMenu({
|
|
|
9686
9689
|
}
|
|
9687
9690
|
)
|
|
9688
9691
|
}
|
|
9689
|
-
)
|
|
9692
|
+
),
|
|
9693
|
+
absoluteComponent && /* @__PURE__ */ jsx27(Div_default, { position: "absolute", top: 0, left: 0, pointerEvents: "none", zIndex: 2, children: /* @__PURE__ */ jsx27(Div_default, { pointerEvents: "all", children: absoluteComponent }) })
|
|
9690
9694
|
]
|
|
9691
9695
|
}
|
|
9692
9696
|
);
|