@wistia/ui 0.19.3 → 0.19.4
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 +25 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +25 -19
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.19.
|
|
3
|
+
* @license @wistia/ui v0.19.4
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -17372,7 +17372,6 @@ var StyledContent3 = styled93(Content3)`
|
|
|
17372
17372
|
--wui-select-option-bg-hover: var(--wui-color-bg-surface-hover);
|
|
17373
17373
|
|
|
17374
17374
|
overflow: hidden;
|
|
17375
|
-
transform: translateY(8px);
|
|
17376
17375
|
background-color: var(--wui-select-content-bg);
|
|
17377
17376
|
border: 1px solid var(--wui-select-content-border);
|
|
17378
17377
|
border-radius: var(--wui-select-content-border-radius);
|
|
@@ -17437,23 +17436,30 @@ var Select = forwardRef34(
|
|
|
17437
17436
|
]
|
|
17438
17437
|
}
|
|
17439
17438
|
),
|
|
17440
|
-
/* @__PURE__ */ jsx319(Portal2, { children: /* @__PURE__ */ jsxs62(
|
|
17441
|
-
|
|
17442
|
-
|
|
17443
|
-
|
|
17444
|
-
|
|
17445
|
-
|
|
17446
|
-
|
|
17447
|
-
|
|
17448
|
-
|
|
17449
|
-
|
|
17450
|
-
|
|
17451
|
-
|
|
17452
|
-
|
|
17453
|
-
|
|
17454
|
-
|
|
17455
|
-
|
|
17456
|
-
|
|
17439
|
+
/* @__PURE__ */ jsx319(Portal2, { children: /* @__PURE__ */ jsxs62(
|
|
17440
|
+
StyledContent3,
|
|
17441
|
+
{
|
|
17442
|
+
position: "popper",
|
|
17443
|
+
sideOffset: 8,
|
|
17444
|
+
children: [
|
|
17445
|
+
/* @__PURE__ */ jsx319(StyledScrollUpButton, { children: /* @__PURE__ */ jsx319(
|
|
17446
|
+
Icon,
|
|
17447
|
+
{
|
|
17448
|
+
size: "sm",
|
|
17449
|
+
type: "caret-up"
|
|
17450
|
+
}
|
|
17451
|
+
) }),
|
|
17452
|
+
/* @__PURE__ */ jsx319(Viewport, { children }),
|
|
17453
|
+
/* @__PURE__ */ jsx319(StyledScrollDownButton, { children: /* @__PURE__ */ jsx319(
|
|
17454
|
+
Icon,
|
|
17455
|
+
{
|
|
17456
|
+
size: "sm",
|
|
17457
|
+
type: "caret-down"
|
|
17458
|
+
}
|
|
17459
|
+
) })
|
|
17460
|
+
]
|
|
17461
|
+
}
|
|
17462
|
+
) })
|
|
17457
17463
|
] });
|
|
17458
17464
|
}
|
|
17459
17465
|
);
|