@gem-sdk/core 1.23.4 → 1.23.8

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.
@@ -175,6 +175,7 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
175
175
  };
176
176
  devices?: ResponsiveConfig<U>;
177
177
  emptyOnClear?: boolean;
178
+ showVideo?: boolean;
178
179
  } : {
179
180
  id: K;
180
181
  label?: string;
@@ -206,6 +207,7 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
206
207
  active?: boolean;
207
208
  };
208
209
  emptyOnClear?: boolean;
210
+ showVideo?: boolean;
209
211
  default?: T;
210
212
  };
211
213
  type SharedControlType<T> = {
@@ -613,7 +615,7 @@ type BackgroundControlType<T> = SharedControlType<T> & {
613
615
  value?: Background;
614
616
  };
615
617
  type Background = {
616
- type: 'color' | 'image';
618
+ type: 'color' | 'image' | 'video';
617
619
  color?: string;
618
620
  image?: {
619
621
  src?: string;
@@ -625,6 +627,9 @@ type Background = {
625
627
  position?: BgPosition;
626
628
  repeat?: BgRepeat;
627
629
  attachment?: BgAttachment;
630
+ video?: string;
631
+ loop?: boolean;
632
+ lazyLoad?: boolean;
628
633
  };
629
634
  type BgSize = 'cover' | 'contain';
630
635
  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.23.4",
3
+ "version": "1.23.8",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",