@wistia/ui 0.18.18-beta.5671ee8e.fdf9f16 → 0.18.18-beta.60c739ab.0edacec

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.18-beta.5671ee8e.fdf9f16
3
+ * @license @wistia/ui v0.18.18-beta.60c739ab.0edacec
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -14322,20 +14322,18 @@ var StyledDataCards = (0, import_styled_components78.styled)(Box)`
14322
14322
  );
14323
14323
 
14324
14324
  > * {
14325
- min-width: ${({ $cardMinWidth }) => $cardMinWidth};
14325
+ min-width: 120px;
14326
14326
  flex-basis: var(--wui-data-cards-column-width, 0);
14327
14327
  max-width: ${({ $cardMaxWidth }) => $cardMaxWidth};
14328
14328
  }
14329
14329
  `;
14330
14330
  var DataCards = ({
14331
14331
  children,
14332
- cardMinWidth = "120px",
14333
14332
  cardMaxWidth = "none",
14334
14333
  colorScheme = "inherit",
14335
14334
  columns = "auto",
14336
14335
  ...props
14337
14336
  }) => {
14338
- const responsiveCardMinWidth = useResponsiveProp(cardMinWidth);
14339
14337
  const responsiveCardMaxWidth = useResponsiveProp(cardMaxWidth);
14340
14338
  const responsiveColumns = useResponsiveProp(columns);
14341
14339
  return /* @__PURE__ */ (0, import_jsx_runtime279.jsx)(
@@ -14343,7 +14341,6 @@ var DataCards = ({
14343
14341
  {
14344
14342
  ...props,
14345
14343
  $cardMaxWidth: responsiveCardMaxWidth,
14346
- $cardMinWidth: responsiveCardMinWidth,
14347
14344
  $colorScheme: colorScheme,
14348
14345
  $columns: responsiveColumns,
14349
14346
  alignItems: "stretch",