@wistia/ui 0.14.31 → 0.14.32-beta.2e5f8079.e79b15d
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 +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +19 -2
- package/dist/index.d.ts +19 -2
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.14.
|
|
3
|
+
* @license @wistia/ui v0.14.32-beta.2e5f8079.e79b15d
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -116,6 +116,7 @@ __export(index_exports, {
|
|
|
116
116
|
Label: () => Label,
|
|
117
117
|
Link: () => Link,
|
|
118
118
|
List: () => List,
|
|
119
|
+
ListItem: () => ListItem,
|
|
119
120
|
Mark: () => Mark,
|
|
120
121
|
Menu: () => Menu,
|
|
121
122
|
MenuItem: () => MenuItem,
|
|
@@ -10531,7 +10532,8 @@ var Tooltip = ({
|
|
|
10531
10532
|
content,
|
|
10532
10533
|
children,
|
|
10533
10534
|
forceOpen,
|
|
10534
|
-
hideArrow = false
|
|
10535
|
+
hideArrow = false,
|
|
10536
|
+
container = null
|
|
10535
10537
|
}) => {
|
|
10536
10538
|
const rootProps = {};
|
|
10537
10539
|
if (content === "" || content === null) {
|
|
@@ -10547,7 +10549,7 @@ var Tooltip = ({
|
|
|
10547
10549
|
...rootProps,
|
|
10548
10550
|
children: [
|
|
10549
10551
|
/* @__PURE__ */ (0, import_jsx_runtime230.jsx)(import_react_tooltip2.Trigger, { asChild: true, children }),
|
|
10550
|
-
/* @__PURE__ */ (0, import_jsx_runtime230.jsx)(import_react_tooltip2.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime230.jsxs)(
|
|
10552
|
+
/* @__PURE__ */ (0, import_jsx_runtime230.jsx)(import_react_tooltip2.Portal, { container, children: /* @__PURE__ */ (0, import_jsx_runtime230.jsxs)(
|
|
10551
10553
|
StyledContent,
|
|
10552
10554
|
{
|
|
10553
10555
|
side: direction,
|
|
@@ -17794,6 +17796,7 @@ WistiaLogo.displayName = "WistiaLogo_UI";
|
|
|
17794
17796
|
Label,
|
|
17795
17797
|
Link,
|
|
17796
17798
|
List,
|
|
17799
|
+
ListItem,
|
|
17797
17800
|
Mark,
|
|
17798
17801
|
Menu,
|
|
17799
17802
|
MenuItem,
|