@wistia/ui 0.18.14-beta.3fb5e567.ffae32b → 0.18.14-beta.4c71661a.d6acc83

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 CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.18.14-beta.3fb5e567.ffae32b
3
+ * @license @wistia/ui v0.18.14-beta.4c71661a.d6acc83
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -208,8 +208,6 @@ var import_styled_components13 = require("styled-components");
208
208
  // src/css/globalStyleAdjustmentsCss.tsx
209
209
  var import_styled_components = require("styled-components");
210
210
  var globalStyleAdjustmentsCss = import_styled_components.css`
211
- /* stylelint-disable property-no-vendor-prefix */
212
-
213
211
  /**
214
212
  * 1. Change from 'content-box' so that 'width' calculations are unaffected by 'padding' or 'border'
215
213
  See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
@@ -8242,7 +8240,7 @@ var StyledActionButton = (0, import_styled_components24.styled)(Button)`
8242
8240
  min-width: 96px;
8243
8241
  padding: var(--wui-space-03);
8244
8242
  background: var(--wui-color-bg-surface-secondary);
8245
- grid-row-gap: var(--wui-space-02);
8243
+ row-gap: var(--wui-space-02);
8246
8244
  border-radius: var(--wui-border-radius-03);
8247
8245
  flex: 0 0 auto;
8248
8246
  transition: background-color var(--wui-motion-duration-02) var(--wui-motion-ease);
@@ -12465,7 +12463,9 @@ var Root = (0, import_styled_components66.styled)(import_react_slider.Root)`
12465
12463
  var Track = (0, import_styled_components66.styled)(import_react_slider.Track)`
12466
12464
  width: 100%;
12467
12465
  `;
12468
- var Thumb = (0, import_styled_components66.styled)(import_react_slider.Thumb)``;
12466
+ var Thumb = (0, import_styled_components66.styled)(import_react_slider.Thumb)`
12467
+ position: relative;
12468
+ `;
12469
12469
  var ThumbInner = import_styled_components66.styled.div`
12470
12470
  cursor: pointer;
12471
12471
  display: block;
@@ -13683,8 +13683,12 @@ MenuItemButton.displayName = "MenuItemButton_UI";
13683
13683
  // src/components/Menu/MenuItemLabelDescription.tsx
13684
13684
  var import_styled_components75 = require("styled-components");
13685
13685
  var import_jsx_runtime269 = require("react/jsx-runtime");
13686
- var StyledMenuItemLabel = import_styled_components75.styled.span``;
13687
- var StyledMenuItemDescription = (0, import_styled_components75.styled)(Text)``;
13686
+ var StyledMenuItemLabel = import_styled_components75.styled.span`
13687
+ /* avoid no-empty-source rule */
13688
+ `;
13689
+ var StyledMenuItemDescription = (0, import_styled_components75.styled)(Text)`
13690
+ /* avoid no-empty-source rule */
13691
+ `;
13688
13692
  var MenuItemLabel = ({ children }) => {
13689
13693
  return /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(StyledMenuItemLabel, { children });
13690
13694
  };
@@ -14816,7 +14820,8 @@ var StyledEditableTextDisplay = import_styled_components85.styled.div`
14816
14820
  ${({ $minLines }) => (0, import_type_guards46.isNotNil)($minLines) && import_styled_components85.css`
14817
14821
  min-height: calc(${$minLines}lh + calc(var(--wui-editable-text-padding) * 2));
14818
14822
  `}
14819
- word-break: break-word;
14823
+ word-break: normal;
14824
+ overflow-wrap: anywhere;
14820
14825
 
14821
14826
  &[data-wui-editable-text-display='placeholder'] {
14822
14827
  color: var(--wui-color-text-secondary);
@@ -17755,7 +17760,9 @@ var TableSectionContext = (0, import_react92.createContext)(null);
17755
17760
 
17756
17761
  // src/components/Table/TableBody.tsx
17757
17762
  var import_jsx_runtime324 = require("react/jsx-runtime");
17758
- var StyledTableBody = import_styled_components117.styled.tbody``;
17763
+ var StyledTableBody = import_styled_components117.styled.tbody`
17764
+ width: 100%;
17765
+ `;
17759
17766
  var TableBody = ({ children, ...props }) => {
17760
17767
  return /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(StyledTableBody, { ...props, children }) });
17761
17768
  };
@@ -17792,7 +17799,9 @@ var TableCell = ({ children, ...props }) => {
17792
17799
  // src/components/Table/TableFoot.tsx
17793
17800
  var import_styled_components119 = require("styled-components");
17794
17801
  var import_jsx_runtime326 = require("react/jsx-runtime");
17795
- var StyledTableFoot = import_styled_components119.styled.tfoot``;
17802
+ var StyledTableFoot = import_styled_components119.styled.tfoot`
17803
+ width: 100%;
17804
+ `;
17796
17805
  var TableFoot = ({ children, ...props }) => {
17797
17806
  return /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(StyledTableFoot, { ...props, children }) });
17798
17807
  };
@@ -17800,7 +17809,9 @@ var TableFoot = ({ children, ...props }) => {
17800
17809
  // src/components/Table/TableHead.tsx
17801
17810
  var import_styled_components120 = require("styled-components");
17802
17811
  var import_jsx_runtime327 = require("react/jsx-runtime");
17803
- var StyledThead = import_styled_components120.styled.thead``;
17812
+ var StyledThead = import_styled_components120.styled.thead`
17813
+ width: 100%;
17814
+ `;
17804
17815
  var TableHead = ({ children, ...props }) => {
17805
17816
  return /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(StyledThead, { ...props, children }) });
17806
17817
  };
@@ -17808,7 +17819,9 @@ var TableHead = ({ children, ...props }) => {
17808
17819
  // src/components/Table/TableRow.tsx
17809
17820
  var import_styled_components121 = require("styled-components");
17810
17821
  var import_jsx_runtime328 = require("react/jsx-runtime");
17811
- var StyledTableRow = import_styled_components121.styled.tr``;
17822
+ var StyledTableRow = import_styled_components121.styled.tr`
17823
+ width: 100%;
17824
+ `;
17812
17825
  var TableRow = ({ children, ...props }) => {
17813
17826
  return /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(StyledTableRow, { ...props, children });
17814
17827
  };