@protonradio/proton-ui 0.7.5-beta7 → 0.7.5-beta8
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.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.es.js +1086 -1098
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -374,13 +374,14 @@ declare interface IconProps {
|
|
|
374
374
|
* ImageOverlay component for displaying an image with a blur effect.
|
|
375
375
|
* @interface ImageBackdropProps
|
|
376
376
|
*/
|
|
377
|
-
export declare function ImageBackdrop({
|
|
377
|
+
export declare function ImageBackdrop({ image, onBackgroundEvent, }: ImageBackdropProps): JSX_2.Element;
|
|
378
378
|
|
|
379
379
|
declare interface ImageBackdropProps {
|
|
380
380
|
/**
|
|
381
381
|
* The URL of the image to display in the overlay.
|
|
382
382
|
*/
|
|
383
383
|
imageUrl?: string;
|
|
384
|
+
image?: React.ReactNode;
|
|
384
385
|
/**
|
|
385
386
|
* Callback function to handle the image load event.
|
|
386
387
|
*/
|