@wistia/ui 0.4.2-beta.fb817792.8f685e4 → 0.4.2

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.4.2-beta.fb817792.8f685e4
3
+ * @license @wistia/ui v0.4.2
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -6021,7 +6021,6 @@ var BoxComponent = import_styled_components23.default.div`
6021
6021
  flex-shrink: ${({ $shrink }) => (0, import_type_guards14.isNotNil)($shrink) ? $shrink : null};
6022
6022
  flex-wrap: ${({ $wrapItems }) => $wrapItems ? "wrap" : "nowrap"};
6023
6023
  ${({ $gap }) => getGapStyle($gap)};
6024
- padding: ${({ $padding }) => (0, import_type_guards14.isNotNil)($padding) ? `var(--wui-${$padding})` : null};
6025
6024
  justify-content: ${({ $justifyContent }) => $justifyContent};
6026
6025
  order: ${({ $order }) => (0, import_type_guards14.isNotNil)($order) ? $order : null};
6027
6026
  `;
@@ -6059,7 +6058,6 @@ var Box = ({
6059
6058
  order,
6060
6059
  shrink,
6061
6060
  wrapItems = false,
6062
- padding,
6063
6061
  ...otherProps
6064
6062
  }) => {
6065
6063
  return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
@@ -6077,7 +6075,6 @@ var Box = ({
6077
6075
  $inline: inline,
6078
6076
  $justifyContent: justifyContent,
6079
6077
  $order: order,
6080
- $padding: padding,
6081
6078
  $shrink: shrink,
6082
6079
  $wrapItems: wrapItems,
6083
6080
  as: "div",