@gem-sdk/core 2.0.0-staging.764 → 2.0.0-staging.766
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/types/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -37297,6 +37297,17 @@ type BackgroundMedia = {
|
|
|
37297
37297
|
loop?: boolean;
|
|
37298
37298
|
lazyLoad?: boolean;
|
|
37299
37299
|
preload?: boolean;
|
|
37300
|
+
fallbackVideo?: Record<string, any> | undefined;
|
|
37301
|
+
fallbackImage?: FallbackImageProps | undefined;
|
|
37302
|
+
};
|
|
37303
|
+
type FallbackImageProps = {
|
|
37304
|
+
src?: string;
|
|
37305
|
+
width?: number;
|
|
37306
|
+
height?: number;
|
|
37307
|
+
backupFileKey?: string;
|
|
37308
|
+
storage?: 'THEME' | 'FILE_CONTENT';
|
|
37309
|
+
backupFilePath?: string;
|
|
37310
|
+
hiddenLCP?: boolean;
|
|
37300
37311
|
};
|
|
37301
37312
|
type BgSize = 'cover' | 'contain';
|
|
37302
37313
|
type BgRepeat = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|