@liquidcommercedev/rmn-sdk 1.5.0-beta.40 → 1.5.0-beta.41
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/index.cjs +420 -293
- package/dist/index.esm.js +420 -293
- package/dist/types/enums.d.ts +3 -0
- package/dist/types/modules/selection/selection.interface.d.ts +1 -0
- package/dist/types/modules/spot-template/rb-template.interface.d.ts +4 -0
- package/package.json +1 -1
- package/umd/liquidcommerce-rmn-sdk.min.js +1 -1
package/dist/types/enums.d.ts
CHANGED
@@ -78,6 +78,9 @@ export declare enum RMN_ENV {
|
|
78
78
|
export declare enum ENUM_TEXT_BLOCK_POSITION {
|
79
79
|
LEFT = "left",
|
80
80
|
RIGHT = "right",
|
81
|
+
TOP = "top",
|
82
|
+
BOTTOM = "bottom",
|
83
|
+
MIDDLE = "middle",
|
81
84
|
TOP_LEFT = "top-left",
|
82
85
|
TOP_RIGHT = "top-right",
|
83
86
|
BOTTOM_LEFT = "bottom-left",
|
@@ -15,6 +15,7 @@ export interface IHomepageHeroFullImageRbSpot extends ISpotTemplateBaseData {
|
|
15
15
|
primaryImage: string;
|
16
16
|
mobilePrimaryImage?: string;
|
17
17
|
textBlockPosition?: ENUM_TEXT_BLOCK_POSITION.TOP_LEFT | ENUM_TEXT_BLOCK_POSITION.TOP_RIGHT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_LEFT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_RIGHT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_LEFT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_RIGHT;
|
18
|
+
mobileTextBlockPosition?: ENUM_TEXT_BLOCK_POSITION.TOP_LEFT | ENUM_TEXT_BLOCK_POSITION.TOP_RIGHT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_LEFT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_RIGHT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_LEFT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_RIGHT;
|
18
19
|
}
|
19
20
|
export interface IHomepageHeroThreeTileRbSpot extends ISpotTemplateBaseData {
|
20
21
|
header: string;
|
@@ -28,6 +29,7 @@ export interface IHomepageHeroThreeTileRbSpot extends ISpotTemplateBaseData {
|
|
28
29
|
secondaryImage: string;
|
29
30
|
mobileSecondaryImage?: string;
|
30
31
|
textBlockPosition?: ENUM_TEXT_BLOCK_POSITION.LEFT | ENUM_TEXT_BLOCK_POSITION.RIGHT;
|
32
|
+
mobileTextBlockPosition?: ENUM_TEXT_BLOCK_POSITION.LEFT | ENUM_TEXT_BLOCK_POSITION.RIGHT;
|
31
33
|
}
|
32
34
|
export interface IHomepageHeroTwoTileRbSpot extends ISpotTemplateBaseData {
|
33
35
|
header: string;
|
@@ -39,6 +41,7 @@ export interface IHomepageHeroTwoTileRbSpot extends ISpotTemplateBaseData {
|
|
39
41
|
primaryImage: string;
|
40
42
|
mobilePrimaryImage?: string;
|
41
43
|
textBlockPosition?: ENUM_TEXT_BLOCK_POSITION.LEFT | ENUM_TEXT_BLOCK_POSITION.RIGHT;
|
44
|
+
mobileTextBlockPosition?: ENUM_TEXT_BLOCK_POSITION.TOP | ENUM_TEXT_BLOCK_POSITION.BOTTOM;
|
42
45
|
}
|
43
46
|
export interface IInTextRbSpot extends ISpotTemplateBaseData {
|
44
47
|
header: string;
|
@@ -97,6 +100,7 @@ export interface ILongToutTallRbSpot extends ISpotTemplateBaseData {
|
|
97
100
|
primaryImage: string;
|
98
101
|
mobilePrimaryImage?: string;
|
99
102
|
textBlockPosition?: ENUM_TEXT_BLOCK_POSITION.TOP_LEFT | ENUM_TEXT_BLOCK_POSITION.TOP_RIGHT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_LEFT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_RIGHT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_LEFT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_RIGHT;
|
103
|
+
mobileTextBlockPosition?: ENUM_TEXT_BLOCK_POSITION.TOP_LEFT | ENUM_TEXT_BLOCK_POSITION.TOP_RIGHT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_LEFT | ENUM_TEXT_BLOCK_POSITION.BOTTOM_RIGHT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_LEFT | ENUM_TEXT_BLOCK_POSITION.MIDDLE_RIGHT;
|
100
104
|
}
|
101
105
|
export interface IVideoPlayerRbSpot extends ISpotTemplateBaseData {
|
102
106
|
video: {
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@liquidcommercedev/rmn-sdk",
|
3
3
|
"description": "LiquidCommerce RMN SDK",
|
4
4
|
"author": "LiquidCommerce Tech",
|
5
|
-
"version": "1.5.0-beta.
|
5
|
+
"version": "1.5.0-beta.41",
|
6
6
|
"homepage": "https://docs.liquidcommerce.co/rmn-sdk",
|
7
7
|
"main": "./dist/index.cjs",
|
8
8
|
"module": "./dist/index.esm.js",
|