@wistia/ui 0.18.14-beta.3fb5e567.ffae32b → 0.18.14-beta.68be1bd5.aa62ddb

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 CHANGED
@@ -1723,7 +1723,7 @@ declare const DataCard: {
1723
1723
  displayName: string;
1724
1724
  };
1725
1725
 
1726
- type DataCardsProps = ComponentPropsWithoutRef<'div'> & {
1726
+ type DataCardsProps = ComponentPropsWithoutRef<'dl'> & {
1727
1727
  /**
1728
1728
  * Should be at least one `DataCard` component
1729
1729
  */
package/dist/index.d.ts CHANGED
@@ -1723,7 +1723,7 @@ declare const DataCard: {
1723
1723
  displayName: string;
1724
1724
  };
1725
1725
 
1726
- type DataCardsProps = ComponentPropsWithoutRef<'div'> & {
1726
+ type DataCardsProps = ComponentPropsWithoutRef<'dl'> & {
1727
1727
  /**
1728
1728
  * Should be at least one `DataCard` component
1729
1729
  */
package/dist/index.mjs 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.68be1bd5.aa62ddb
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -18,8 +18,6 @@ import { createGlobalStyle } from "styled-components";
18
18
  // src/css/globalStyleAdjustmentsCss.tsx
19
19
  import { css } from "styled-components";
20
20
  var globalStyleAdjustmentsCss = css`
21
- /* stylelint-disable property-no-vendor-prefix */
22
-
23
21
  /**
24
22
  * 1. Change from 'content-box' so that 'width' calculations are unaffected by 'padding' or 'border'
25
23
  See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
@@ -8061,7 +8059,7 @@ var StyledActionButton = styled7(Button)`
8061
8059
  min-width: 96px;
8062
8060
  padding: var(--wui-space-03);
8063
8061
  background: var(--wui-color-bg-surface-secondary);
8064
- grid-row-gap: var(--wui-space-02);
8062
+ row-gap: var(--wui-space-02);
8065
8063
  border-radius: var(--wui-border-radius-03);
8066
8064
  flex: 0 0 auto;
8067
8065
  transition: background-color var(--wui-motion-duration-02) var(--wui-motion-ease);
@@ -14665,7 +14663,10 @@ var StyledEditableTextDisplay = styled66.div`
14665
14663
  ${({ $minLines }) => isNotNil26($minLines) && css35`
14666
14664
  min-height: calc(${$minLines}lh + calc(var(--wui-editable-text-padding) * 2));
14667
14665
  `}
14668
- word-break: break-word;
14666
+ /* overflow-wrap: break-word;
14667
+ word-break: break-word; */
14668
+ word-break: normal;
14669
+ overflow-wrap: anywhere;
14669
14670
 
14670
14671
  &[data-wui-editable-text-display='placeholder'] {
14671
14672
  color: var(--wui-color-text-secondary);