@gem-sdk/core 1.14.0-next.219 → 1.14.0-next.221

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.
@@ -613,7 +613,7 @@ type BackgroundControlType<T> = SharedControlType<T> & {
613
613
  value?: Background;
614
614
  };
615
615
  type Background = {
616
- type: 'color' | 'image';
616
+ type: 'color' | 'image' | 'video';
617
617
  color?: string;
618
618
  image?: {
619
619
  src?: string;
@@ -625,6 +625,9 @@ type Background = {
625
625
  position?: BgPosition;
626
626
  repeat?: BgRepeat;
627
627
  attachment?: BgAttachment;
628
+ video?: string;
629
+ loop?: boolean;
630
+ lazyLoad?: boolean;
628
631
  };
629
632
  type BgSize = 'cover' | 'contain';
630
633
  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": "1.14.0-next.219",
3
+ "version": "1.14.0-next.221",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",