@wistia/ui 0.18.0-beta.782f3b36.e196b15 → 0.18.0-beta.af6ce7a5.9372ce9
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 +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -9
- package/dist/index.d.ts +2 -9
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.18.0-beta.
|
|
3
|
+
* @license @wistia/ui v0.18.0-beta.af6ce7a5.9372ce9
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -7904,6 +7904,7 @@ var StyledButton = import_styled_components22.styled.button`
|
|
|
7904
7904
|
${({ $variant }) => buttonVariantsStyles[$variant]}
|
|
7905
7905
|
${({ $unstyled }) => !$unstyled && buttonBaseStyles}
|
|
7906
7906
|
${({ $fullWidth }) => $fullWidth && "width: 100%;"}
|
|
7907
|
+
align-self: flex-start;
|
|
7907
7908
|
text-align: center;
|
|
7908
7909
|
`;
|
|
7909
7910
|
var StyledButtonContent = import_styled_components22.styled.div`
|
|
@@ -9119,6 +9120,10 @@ var ButtonGroupComponent = import_styled_components31.styled.div`
|
|
|
9119
9120
|
justify-content: ${({ $align }) => getAlignment($align)};
|
|
9120
9121
|
width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
|
|
9121
9122
|
|
|
9123
|
+
${StyledButton} {
|
|
9124
|
+
align-self: unset;
|
|
9125
|
+
}
|
|
9126
|
+
|
|
9122
9127
|
${mq.smAndUp} {
|
|
9123
9128
|
flex-direction: row;
|
|
9124
9129
|
}
|
|
@@ -9481,7 +9486,6 @@ var prominenceMap = {
|
|
|
9481
9486
|
};
|
|
9482
9487
|
var Card = ({
|
|
9483
9488
|
children,
|
|
9484
|
-
alignItems = "flex-start",
|
|
9485
9489
|
border = false,
|
|
9486
9490
|
borderRadius = "border-radius-04",
|
|
9487
9491
|
colorScheme = "inherit",
|
|
@@ -9495,7 +9499,6 @@ var Card = ({
|
|
|
9495
9499
|
}) => /* @__PURE__ */ (0, import_jsx_runtime214.jsx)(
|
|
9496
9500
|
StyledCard,
|
|
9497
9501
|
{
|
|
9498
|
-
$alignItems: alignItems,
|
|
9499
9502
|
$backgroundColor: prominenceMap[prominence].backgroundColor,
|
|
9500
9503
|
$borderColor: border ? prominenceMap[prominence].borderColor : "transparent",
|
|
9501
9504
|
$borderRadius: borderRadius,
|