@geekapps/silo-elements-nextjs 0.2.44 → 0.2.45
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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -44,8 +44,8 @@ interface AvatarProps {
|
|
|
44
44
|
declare function Avatar({ fileKey, bucket, initials, size, shape, className, style, alt, }: AvatarProps): react.JSX.Element;
|
|
45
45
|
|
|
46
46
|
interface ThumbnailProps {
|
|
47
|
-
/** Silo file key */
|
|
48
|
-
fileKey
|
|
47
|
+
/** Silo file key — required unless src is provided directly */
|
|
48
|
+
fileKey?: string;
|
|
49
49
|
/** Bucket the file is in */
|
|
50
50
|
bucket?: string;
|
|
51
51
|
/** Pre-resolved direct URL — skips the signed-URL fetch when provided (e.g. for public files) */
|