@wistia/ui 0.18.18-beta.fba14250.ac46dfb → 0.19.0-beta.d1967016.e87d448
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 +66 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.mjs +129 -94
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1723,10 +1723,6 @@ type DataCardsProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1723
1723
|
* Should be at least one `DataCard` component
|
|
1724
1724
|
*/
|
|
1725
1725
|
children: ReactNode;
|
|
1726
|
-
/**
|
|
1727
|
-
* String to pass to the `min-width` property of its children. [View the syntax on MDN →](https://developer.mozilla.org/en-US/docs/Web/CSS/min-width#syntax)
|
|
1728
|
-
*/
|
|
1729
|
-
cardMinWidth?: ResponsiveObject<string> | string;
|
|
1730
1726
|
/**
|
|
1731
1727
|
* String to pass to the `max-width` property of its children. [View the syntax on MDN →](https://developer.mozilla.org/en-US/docs/Web/CSS/max-width#syntax)
|
|
1732
1728
|
*/
|
|
@@ -1744,7 +1740,7 @@ type DataCardsProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1744
1740
|
* Displays a series of cards tailor made for displaying analytics data
|
|
1745
1741
|
*/
|
|
1746
1742
|
declare const DataCards: {
|
|
1747
|
-
({ children,
|
|
1743
|
+
({ children, cardMaxWidth, colorScheme, columns, ...props }: DataCardsProps): JSX.Element;
|
|
1748
1744
|
displayName: string;
|
|
1749
1745
|
};
|
|
1750
1746
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1723,10 +1723,6 @@ type DataCardsProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1723
1723
|
* Should be at least one `DataCard` component
|
|
1724
1724
|
*/
|
|
1725
1725
|
children: ReactNode;
|
|
1726
|
-
/**
|
|
1727
|
-
* String to pass to the `min-width` property of its children. [View the syntax on MDN →](https://developer.mozilla.org/en-US/docs/Web/CSS/min-width#syntax)
|
|
1728
|
-
*/
|
|
1729
|
-
cardMinWidth?: ResponsiveObject<string> | string;
|
|
1730
1726
|
/**
|
|
1731
1727
|
* String to pass to the `max-width` property of its children. [View the syntax on MDN →](https://developer.mozilla.org/en-US/docs/Web/CSS/max-width#syntax)
|
|
1732
1728
|
*/
|
|
@@ -1744,7 +1740,7 @@ type DataCardsProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1744
1740
|
* Displays a series of cards tailor made for displaying analytics data
|
|
1745
1741
|
*/
|
|
1746
1742
|
declare const DataCards: {
|
|
1747
|
-
({ children,
|
|
1743
|
+
({ children, cardMaxWidth, colorScheme, columns, ...props }: DataCardsProps): JSX.Element;
|
|
1748
1744
|
displayName: string;
|
|
1749
1745
|
};
|
|
1750
1746
|
|