@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.
- package/dist/types/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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';
|