react-better-html 1.1.117 → 1.1.119
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7725,6 +7725,7 @@ var TooltipComponent = forwardRef16(function Tooltip({
|
|
|
7725
7725
|
isSmall,
|
|
7726
7726
|
backgroundColor,
|
|
7727
7727
|
asContextMenu,
|
|
7728
|
+
isTabAccessed,
|
|
7728
7729
|
onOpen,
|
|
7729
7730
|
onClose,
|
|
7730
7731
|
children
|
|
@@ -7814,7 +7815,7 @@ var TooltipComponent = forwardRef16(function Tooltip({
|
|
|
7814
7815
|
[isOpen, openTooltip, closeTooltip]
|
|
7815
7816
|
);
|
|
7816
7817
|
return /* @__PURE__ */ jsxs17(Div_default, { position: "relative", onClick: onClickHolder, onMouseEnter, onMouseLeave, children: [
|
|
7817
|
-
/* @__PURE__ */ jsx21(Div_default, { width: "100%", ref: triggerHolderRef, children }),
|
|
7818
|
+
/* @__PURE__ */ jsx21(Div_default, { width: "100%", isTabAccessed, ref: triggerHolderRef, children }),
|
|
7818
7819
|
/* @__PURE__ */ jsx21(
|
|
7819
7820
|
TooltipContainer,
|
|
7820
7821
|
{
|
|
@@ -7884,6 +7885,7 @@ TooltipComponent.item = forwardRef16(function Item({ icon, text, description, is
|
|
|
7884
7885
|
paddingBlock: theme2.styles.gap,
|
|
7885
7886
|
paddingInline: theme2.styles.space,
|
|
7886
7887
|
cursor: "pointer",
|
|
7888
|
+
isTabAccessed: true,
|
|
7887
7889
|
id,
|
|
7888
7890
|
value,
|
|
7889
7891
|
onClick,
|