@wistia/ui 0.20.18 → 0.20.19-beta.47c79b94.2049199
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.d.ts +6 -0
- package/dist/index.js +1048 -1001
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1299,6 +1299,7 @@ declare const iconMap: {
|
|
|
1299
1299
|
error: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1300
1300
|
expand: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1301
1301
|
'expand-diagonal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1302
|
+
'expand-diagonal-window': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1302
1303
|
'expand-horizontal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1303
1304
|
'fast-forward': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1304
1305
|
favorite: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -3620,6 +3621,10 @@ type RadioCardDefaultLayoutProps = {
|
|
|
3620
3621
|
* Whether to show the indicator
|
|
3621
3622
|
*/
|
|
3622
3623
|
showIndicator?: boolean | undefined;
|
|
3624
|
+
/**
|
|
3625
|
+
* Whether to show the sparkle icon and gated styles
|
|
3626
|
+
*/
|
|
3627
|
+
isGated?: boolean | undefined;
|
|
3623
3628
|
};
|
|
3624
3629
|
|
|
3625
3630
|
type BaseRadioCardProps = Omit<ComponentPropsWithoutRef<'input'>, 'checked' | 'disabled' | 'id' | 'name' | 'onChange' | 'value'> & {
|
|
@@ -3657,6 +3662,7 @@ type RadioCardWithChildren = BaseRadioCardProps & {
|
|
|
3657
3662
|
label?: never;
|
|
3658
3663
|
description?: never;
|
|
3659
3664
|
showIndicator?: never;
|
|
3665
|
+
isGated?: never;
|
|
3660
3666
|
};
|
|
3661
3667
|
type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutProps & {
|
|
3662
3668
|
children?: never;
|