@wistia/ui 0.18.0-beta.af6ce7a5.9372ce9 → 0.18.0-beta.d6f1661d.d5ef03f

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.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.18.0-beta.af6ce7a5.9372ce9
3
+ * @license @wistia/ui v0.18.0-beta.d6f1661d.d5ef03f
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -7724,7 +7724,6 @@ var StyledButton = styled5.button`
7724
7724
  ${({ $variant }) => buttonVariantsStyles[$variant]}
7725
7725
  ${({ $unstyled }) => !$unstyled && buttonBaseStyles}
7726
7726
  ${({ $fullWidth }) => $fullWidth && "width: 100%;"}
7727
- align-self: flex-start;
7728
7727
  text-align: center;
7729
7728
  `;
7730
7729
  var StyledButtonContent = styled5.div`
@@ -8421,7 +8420,7 @@ var DEFAULT_ELEMENT = "div";
8421
8420
  var BoxComponent = forwardRef5(
8422
8421
  ({
8423
8422
  alignContent = "stretch",
8424
- alignItems = "stretch",
8423
+ alignItems = "flex-start",
8425
8424
  alignSelf,
8426
8425
  basis,
8427
8426
  children,
@@ -8940,10 +8939,6 @@ var ButtonGroupComponent = styled14.div`
8940
8939
  justify-content: ${({ $align }) => getAlignment($align)};
8941
8940
  width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
8942
8941
 
8943
- ${StyledButton} {
8944
- align-self: unset;
8945
- }
8946
-
8947
8942
  ${mq.smAndUp} {
8948
8943
  flex-direction: row;
8949
8944
  }