@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.
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.0.0-staging.764",
3
+ "version": "2.0.0-staging.766",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",