@wistia/ui 0.18.18 → 0.19.0-beta.e04d42c5.ec25c59
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 +77 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +143 -95
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4214,13 +4214,17 @@ type ThumbnailCollageProps = {
|
|
|
4214
4214
|
* The type of gradient to show if no `Thumbnail`s are provided
|
|
4215
4215
|
*/
|
|
4216
4216
|
gradientBackground?: GradientNameType;
|
|
4217
|
+
/**
|
|
4218
|
+
* If the collage should have a background or not.
|
|
4219
|
+
*/
|
|
4220
|
+
hasBackground?: boolean;
|
|
4217
4221
|
};
|
|
4218
4222
|
/**
|
|
4219
4223
|
* A `ThumbnailCollage` is a component that displays multiple `Thumbnail` components in a responsive grid layout.
|
|
4220
4224
|
* It supports up to 3 thumbnails arranged in different configurations based on the number of children provided.
|
|
4221
4225
|
* If no thumbnails are provided, it displays a fallback thumbnail with a gradient background.
|
|
4222
4226
|
*/
|
|
4223
|
-
declare const ThumbnailCollage: ({ children, gradientBackground, ...props }: ThumbnailCollageProps) => JSX.Element;
|
|
4227
|
+
declare const ThumbnailCollage: ({ children, gradientBackground, hasBackground, ...props }: ThumbnailCollageProps) => JSX.Element;
|
|
4224
4228
|
|
|
4225
4229
|
type TooltipProps = {
|
|
4226
4230
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -4214,13 +4214,17 @@ type ThumbnailCollageProps = {
|
|
|
4214
4214
|
* The type of gradient to show if no `Thumbnail`s are provided
|
|
4215
4215
|
*/
|
|
4216
4216
|
gradientBackground?: GradientNameType;
|
|
4217
|
+
/**
|
|
4218
|
+
* If the collage should have a background or not.
|
|
4219
|
+
*/
|
|
4220
|
+
hasBackground?: boolean;
|
|
4217
4221
|
};
|
|
4218
4222
|
/**
|
|
4219
4223
|
* A `ThumbnailCollage` is a component that displays multiple `Thumbnail` components in a responsive grid layout.
|
|
4220
4224
|
* It supports up to 3 thumbnails arranged in different configurations based on the number of children provided.
|
|
4221
4225
|
* If no thumbnails are provided, it displays a fallback thumbnail with a gradient background.
|
|
4222
4226
|
*/
|
|
4223
|
-
declare const ThumbnailCollage: ({ children, gradientBackground, ...props }: ThumbnailCollageProps) => JSX.Element;
|
|
4227
|
+
declare const ThumbnailCollage: ({ children, gradientBackground, hasBackground, ...props }: ThumbnailCollageProps) => JSX.Element;
|
|
4224
4228
|
|
|
4225
4229
|
type TooltipProps = {
|
|
4226
4230
|
/**
|