@wistia/ui 0.6.7 → 0.6.8
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 +10 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.mjs +10 -2
- 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.6.
|
|
3
|
+
* @license @wistia/ui v0.6.8
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -10454,8 +10454,15 @@ var StyledTrigger = (0, import_styled_components71.default)(import_react_select.
|
|
|
10454
10454
|
display: inline-flex;
|
|
10455
10455
|
align-items: center;
|
|
10456
10456
|
justify-content: space-between;
|
|
10457
|
+
max-width: 100%;
|
|
10457
10458
|
width: ${({ $fullWidth = false }) => $fullWidth ? "100%" : "auto"};
|
|
10458
10459
|
|
|
10460
|
+
> span {
|
|
10461
|
+
white-space: nowrap;
|
|
10462
|
+
text-overflow: ellipsis;
|
|
10463
|
+
overflow: hidden;
|
|
10464
|
+
}
|
|
10465
|
+
|
|
10459
10466
|
&[aria-expanded='true'],
|
|
10460
10467
|
&:focus {
|
|
10461
10468
|
outline: 2px solid var(--wui-color-focus-ring);
|
|
@@ -10485,7 +10492,8 @@ var StyledContent3 = (0, import_styled_components71.default)(import_react_select
|
|
|
10485
10492
|
border: 1px solid var(--wui-select-content-border);
|
|
10486
10493
|
border-radius: var(--wui-select-content-border-radius);
|
|
10487
10494
|
padding: var(--wui-select-option-padding);
|
|
10488
|
-
min-width:
|
|
10495
|
+
min-width: var(--radix-select-trigger-width);
|
|
10496
|
+
max-height: var(--radix-select-content-available-height);
|
|
10489
10497
|
z-index: var(--wui-zindex-menu);
|
|
10490
10498
|
`;
|
|
10491
10499
|
var Select = (0, import_react55.forwardRef)(
|