@wistia/vhs 3.0.1-beta.de727c7e.149ab3d → 3.0.1
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 +40 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +40 -34
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -15
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/vhs v3.0.1
|
|
3
|
+
* @license @wistia/vhs v3.0.1
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2021-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -6682,39 +6682,45 @@ var ButtonLink = (0, import_react35.forwardRef)(
|
|
|
6682
6682
|
}
|
|
6683
6683
|
return null;
|
|
6684
6684
|
};
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6685
|
+
return (
|
|
6686
|
+
// @ts-expect-error FIXME
|
|
6687
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
6688
|
+
StyledButtonLink,
|
|
6689
|
+
{
|
|
6690
|
+
ref,
|
|
6691
|
+
$buttonColor: buttonColor,
|
|
6692
|
+
$forceState: forceState,
|
|
6693
|
+
$fullWidth: fullWidth,
|
|
6694
|
+
$icon: icon,
|
|
6695
|
+
$iconPosition: iconPosition,
|
|
6696
|
+
$isLoading: false,
|
|
6697
|
+
$labelWrap: labelWrap,
|
|
6698
|
+
$size: size,
|
|
6699
|
+
$square: square,
|
|
6700
|
+
$textAlign: textAlign,
|
|
6701
|
+
$variant: variant,
|
|
6702
|
+
beforeAction,
|
|
6703
|
+
disabled,
|
|
6704
|
+
href,
|
|
6705
|
+
params,
|
|
6706
|
+
type,
|
|
6707
|
+
unstyled: true,
|
|
6708
|
+
...otherProps,
|
|
6709
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
6710
|
+
ButtonContent,
|
|
6711
|
+
{
|
|
6712
|
+
icon,
|
|
6713
|
+
iconName,
|
|
6714
|
+
iconPosition,
|
|
6715
|
+
isLoading: false,
|
|
6716
|
+
size,
|
|
6717
|
+
textAlign,
|
|
6718
|
+
children: getContent()
|
|
6719
|
+
}
|
|
6720
|
+
)
|
|
6721
|
+
}
|
|
6722
|
+
)
|
|
6723
|
+
);
|
|
6718
6724
|
}
|
|
6719
6725
|
);
|
|
6720
6726
|
ButtonLink.displayName = "ButtonLink_VHS";
|