@kinxcdn/commerce-player 1.0.17 → 1.0.19
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/README.md +83 -4
- package/dist/commerce-player.min.js +3 -4
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
- package/dist/commerce-player.min.js.map +0 -1
- package/dist/esm/dist/styles.css +0 -1795
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ interface Collection {
|
|
|
26
26
|
borderLine: BORDER_LINE;
|
|
27
27
|
exposeTitle: boolean;
|
|
28
28
|
player: WIDGET_PLAYER_TYPE;
|
|
29
|
+
titlePosition?: TITLE_POSITION;
|
|
29
30
|
};
|
|
30
31
|
colId: string;
|
|
31
32
|
}
|
|
@@ -48,6 +49,10 @@ declare enum WIDGET_PLAYER_TYPE {
|
|
|
48
49
|
"TABLET" = "TABLET",
|
|
49
50
|
"HIGHLIGHT" = "HIGHLIGHT"
|
|
50
51
|
}
|
|
52
|
+
declare enum TITLE_POSITION {
|
|
53
|
+
BOTTOM = "BOTTOM",
|
|
54
|
+
INNER = "INNER"
|
|
55
|
+
}
|
|
51
56
|
|
|
52
57
|
declare enum UIOption {
|
|
53
58
|
PLATFORM = 1,
|