@streamlayer/react-ui 1.24.0 → 1.25.0
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/lib/app/app/story/promotion-notification/index.d.ts +7 -0
- package/lib/app/app/story/promotion-notification/index.js +44 -0
- package/lib/app/app/story/promotion-notification/styles.d.ts +4 -0
- package/lib/app/app/story/promotion-notification/styles.js +25 -0
- package/lib/app/app/story/promotion-notification/video.d.ts +5 -0
- package/lib/app/app/story/promotion-notification/video.js +52 -0
- package/lib/app/tvos/Advertisement.d.ts +10 -0
- package/lib/app/tvos/Advertisement.js +88 -0
- package/lib/app/tvos/AdvertisementUI.d.ts +16 -0
- package/lib/app/tvos/AdvertisementUI.js +40 -0
- package/lib/app/tvos/index.d.ts +16 -0
- package/lib/app/tvos/index.js +23 -0
- package/lib/app/tvos/story.d.ts +6 -0
- package/lib/app/tvos/story.js +34 -0
- package/lib/app/tvos/styles.d.ts +1 -0
- package/lib/app/tvos/styles.js +4 -0
- package/lib/app/tvos/ui/Layout/index.d.ts +21 -0
- package/lib/app/tvos/ui/Layout/index.js +76 -0
- package/lib/app/tvos/ui/Layout/styles.d.ts +11 -0
- package/lib/app/tvos/ui/Layout/styles.js +59 -0
- package/lib/app/tvos/ui/Sidebar/PromoAction.d.ts +2 -0
- package/lib/app/tvos/ui/Sidebar/PromoAction.js +62 -0
- package/lib/app/tvos/ui/Sidebar/index.d.ts +15 -0
- package/lib/app/tvos/ui/Sidebar/index.js +114 -0
- package/lib/app/tvos/ui/Sidebar/styles.d.ts +42 -0
- package/lib/app/tvos/ui/Sidebar/styles.js +1005 -0
- package/lib/assets/style.css +1 -1
- package/lib/ui/advertisement/index.js +44 -44
- package/lib/ui/advertisement/overlay/index.js +72 -70
- package/lib/ui/theme/theme.js +5 -3
- package/package.json +22 -16
|
@@ -1,67 +1,67 @@
|
|
|
1
1
|
import { jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import { PromotionType as f } from "@streamlayer/sdk-web-types";
|
|
3
|
-
import { Banner as
|
|
4
|
-
import { Notification as
|
|
5
|
-
import { Overlay as
|
|
6
|
-
import { Sidebar as
|
|
7
|
-
import { OverlayContainer as
|
|
8
|
-
const
|
|
3
|
+
import { Banner as G } from "./banner/index.js";
|
|
4
|
+
import { Notification as S } from "./notification/index.js";
|
|
5
|
+
import { Overlay as E } from "./overlay/index.js";
|
|
6
|
+
import { Sidebar as q } from "./sidebar/index.js";
|
|
7
|
+
import { OverlayContainer as O } from "./overlay/styles.js";
|
|
8
|
+
const M = (i) => (i == null ? void 0 : i.type) === f.INGAME_IAB11_LBAR || (i == null ? void 0 : i.type) === f.INGAME_IAB21_LBAR, R = (i) => (i == null ? void 0 : i.type) === f.INGAME_IAB11_SIDEBAR || (i == null ? void 0 : i.type) === f.INGAME_IAB21_SIDEBAR, a = (i) => (i == null ? void 0 : i.type) === f.INGAME_IAB11 || (i == null ? void 0 : i.type) === f.INGAME_IAB21, P = ({
|
|
9
9
|
advertisement: i,
|
|
10
|
-
close:
|
|
11
|
-
skipTypeCheck:
|
|
12
|
-
skipAutoClose:
|
|
10
|
+
close: l,
|
|
11
|
+
skipTypeCheck: y,
|
|
12
|
+
skipAutoClose: c,
|
|
13
13
|
layoutMode: h = "side-by-side",
|
|
14
|
-
sidebar:
|
|
15
|
-
isNotification:
|
|
16
|
-
banner:
|
|
17
|
-
markAsViewed:
|
|
18
|
-
open:
|
|
19
|
-
externalAd:
|
|
20
|
-
controlVideo:
|
|
21
|
-
advertisementPaused:
|
|
22
|
-
togglePause:
|
|
23
|
-
}) => i.promotion ?
|
|
24
|
-
|
|
14
|
+
sidebar: u,
|
|
15
|
+
isNotification: o,
|
|
16
|
+
banner: A,
|
|
17
|
+
markAsViewed: B,
|
|
18
|
+
open: I,
|
|
19
|
+
externalAd: _,
|
|
20
|
+
controlVideo: N,
|
|
21
|
+
advertisementPaused: n,
|
|
22
|
+
togglePause: t
|
|
23
|
+
}) => i.promotion ? o && i.notification ? /* @__PURE__ */ r(
|
|
24
|
+
S,
|
|
25
25
|
{
|
|
26
|
-
open: () =>
|
|
26
|
+
open: () => I == null ? void 0 : I({ fromNotification: !0 }),
|
|
27
27
|
notification: i.notification,
|
|
28
28
|
promotionId: i.question.id
|
|
29
29
|
}
|
|
30
|
-
) : !
|
|
31
|
-
|
|
30
|
+
) : !u && !A && (y || a(i.promotion)) ? /* @__PURE__ */ r(O, { className: "PromoOverlayContainer", children: /* @__PURE__ */ r(
|
|
31
|
+
E,
|
|
32
32
|
{
|
|
33
|
-
markAsViewed:
|
|
33
|
+
markAsViewed: B,
|
|
34
34
|
promotionId: i.question.id,
|
|
35
35
|
promotion: i.promotion,
|
|
36
|
-
onClose:
|
|
37
|
-
open:
|
|
38
|
-
skipAutoClose:
|
|
39
|
-
externalAd:
|
|
40
|
-
controlVideo:
|
|
41
|
-
advertisementPaused:
|
|
42
|
-
togglePause:
|
|
36
|
+
onClose: l,
|
|
37
|
+
open: I,
|
|
38
|
+
skipAutoClose: c,
|
|
39
|
+
externalAd: _,
|
|
40
|
+
controlVideo: N,
|
|
41
|
+
advertisementPaused: n,
|
|
42
|
+
togglePause: t
|
|
43
43
|
}
|
|
44
|
-
) }) :
|
|
45
|
-
|
|
44
|
+
) }) : u && (y || M(i.promotion) || R(i.promotion)) ? /* @__PURE__ */ r(q, { className: "PromoSidebarContainer", direction: u, hiding: !1, children: /* @__PURE__ */ r(
|
|
45
|
+
E,
|
|
46
46
|
{
|
|
47
|
-
markAsViewed:
|
|
47
|
+
markAsViewed: B,
|
|
48
48
|
promotionId: i.question.id,
|
|
49
49
|
promotion: i.promotion,
|
|
50
|
-
externalAd:
|
|
51
|
-
onClose:
|
|
52
|
-
open:
|
|
53
|
-
controlVideo:
|
|
54
|
-
skipAutoClose:
|
|
55
|
-
advertisementPaused:
|
|
56
|
-
togglePause:
|
|
50
|
+
externalAd: _,
|
|
51
|
+
onClose: l,
|
|
52
|
+
open: I,
|
|
53
|
+
controlVideo: N,
|
|
54
|
+
skipAutoClose: c,
|
|
55
|
+
advertisementPaused: n,
|
|
56
|
+
togglePause: t
|
|
57
57
|
}
|
|
58
|
-
) }) :
|
|
59
|
-
|
|
58
|
+
) }) : A && M(i.promotion) ? /* @__PURE__ */ r(
|
|
59
|
+
G,
|
|
60
60
|
{
|
|
61
61
|
promotionId: i.question.id,
|
|
62
62
|
hiding: !1,
|
|
63
63
|
promotion: i.promotion,
|
|
64
|
-
direction:
|
|
64
|
+
direction: A
|
|
65
65
|
}
|
|
66
66
|
) : null : null;
|
|
67
67
|
export {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
import { cx as
|
|
2
|
+
import { cx as K } from "@linaria/core";
|
|
3
3
|
import { useEffect as u } from "react";
|
|
4
4
|
import { eventBus as eo } from "@streamlayer/sdk-web-interfaces";
|
|
5
|
-
import { PromotionType as
|
|
5
|
+
import { PromotionType as f, PromotionLogoMode as s, AutoPlayVideo as ro, PromotionButtonType as to } from "@streamlayer/sdk-web-types";
|
|
6
6
|
import { CloseButton as no } from "../../close-btn/index.js";
|
|
7
7
|
import { VideoPlayer as ao } from "../../video-player/index.js";
|
|
8
8
|
import { ExternalAdOverlay as lo } from "./externalAd/index.js";
|
|
9
|
-
import { PromoOverlay as io, Header as so, HeaderContent as mo, headerContentShift as po, SponsorLogo as Q, Sponsor as co, SponsorName as yo, SponsorText as uo, ADLogo as fo, SponsoredText as
|
|
10
|
-
import { OverlayContainer as
|
|
11
|
-
const Ro = (
|
|
12
|
-
var
|
|
9
|
+
import { PromoOverlay as io, Header as so, HeaderContent as mo, headerContentShift as po, SponsorLogo as Q, Sponsor as co, SponsorName as yo, SponsorText as uo, ADLogo as fo, SponsoredText as ho, Media as bo, shiftMedia as Ao, Content as X, PromoImg as vo, Title as Po, hideOnMobile as Bo, Description as No, ActionBtnWrap as To, ActionButton as xo } from "./styles.js";
|
|
10
|
+
import { OverlayContainer as Fo } from "./styles.js";
|
|
11
|
+
const Ro = (h) => {
|
|
12
|
+
var v, P, B, N, T, x, C, E, g, I, S, M, L, O, D, R, _, k, F, U, V, G, j, H, w, W, $, q, z, J;
|
|
13
13
|
const {
|
|
14
14
|
promotion: o,
|
|
15
15
|
open: d,
|
|
@@ -21,96 +21,98 @@ const Ro = (f) => {
|
|
|
21
21
|
onClose: oo,
|
|
22
22
|
markAsViewed: m,
|
|
23
23
|
externalAd: b
|
|
24
|
-
} =
|
|
24
|
+
} = h, p = o.type === f.INGAME_IAB11_LBAR || o.type === f.INGAME_IAB11 || o.type === f.INGAME_IAB11_SIDEBAR, c = ((v = o.sponsor) == null ? void 0 : v.logo) && o.logoMode === s.CENTER, A = !!((B = (P = o.banner) == null ? void 0 : P.video) != null && B.url), i = o.autoPlayVideo === ro.ENABLED;
|
|
25
25
|
if (u(() => {
|
|
26
|
-
r == null || r(
|
|
26
|
+
r == null || r(A || i), d == null || d();
|
|
27
27
|
}, []), u(() => {
|
|
28
28
|
l && o.type && m && m();
|
|
29
29
|
}, [l, o.type, m]), u(() => () => {
|
|
30
30
|
n == null || n({ muted: !1 });
|
|
31
31
|
}, [n]), b)
|
|
32
|
-
return /* @__PURE__ */ e(lo, { ...
|
|
33
|
-
let a = (
|
|
32
|
+
return /* @__PURE__ */ e(lo, { ...h, externalAd: b });
|
|
33
|
+
let a = (N = o.banner) == null ? void 0 : N.url;
|
|
34
34
|
a && a.indexOf("http") !== 0 && (a = `https://${a}`);
|
|
35
35
|
let y = !0;
|
|
36
|
-
return
|
|
37
|
-
/* @__PURE__ */ t(
|
|
38
|
-
/* @__PURE__ */ t(
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
36
|
+
return A && (!Y || !i ? y = !0 : y = !1), /* @__PURE__ */ t(io, { className: "PromoOverlay", children: [
|
|
37
|
+
/* @__PURE__ */ t("div", { children: [
|
|
38
|
+
/* @__PURE__ */ t(so, { children: [
|
|
39
|
+
/* @__PURE__ */ t(mo, { className: K(!c && po), children: [
|
|
40
|
+
((T = o.sponsor) == null ? void 0 : T.logo) && o.logoMode === s.LEFT && /* @__PURE__ */ e(Q, { className: "PromoSponsorLogo", src: (x = o.sponsor) == null ? void 0 : x.logo, alt: "promo" }),
|
|
41
|
+
/* @__PURE__ */ t(
|
|
42
|
+
co,
|
|
43
|
+
{
|
|
44
|
+
style: {
|
|
45
|
+
paddingLeft: (C = o.sponsor) != null && C.logo && o.logoMode === s.LEFT ? "0px" : "8px"
|
|
46
|
+
},
|
|
47
|
+
children: [
|
|
48
|
+
((E = o.sponsor) == null ? void 0 : E.logo) && o.logoMode === s.LEFT && /* @__PURE__ */ e(yo, { children: (g = o.sponsor) == null ? void 0 : g.name }),
|
|
49
|
+
/* @__PURE__ */ t(uo, { className: "SponsorText", children: [
|
|
50
|
+
/* @__PURE__ */ e(fo, { children: "AD" }),
|
|
51
|
+
/* @__PURE__ */ e(ho, { children: "SPONSORED" })
|
|
52
|
+
] })
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
] }),
|
|
57
|
+
/* @__PURE__ */ e(
|
|
58
|
+
no,
|
|
42
59
|
{
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
/* @__PURE__ */ t(uo, { className: "SponsorText", children: [
|
|
49
|
-
/* @__PURE__ */ e(fo, { children: "AD" }),
|
|
50
|
-
/* @__PURE__ */ e(bo, { children: "SPONSORED" })
|
|
51
|
-
] })
|
|
52
|
-
]
|
|
60
|
+
className: "ClosePromoIcon",
|
|
61
|
+
close: oo,
|
|
62
|
+
autoClose: (I = o.closeTimer) == null ? void 0 : I.auto,
|
|
63
|
+
duration: Z ? 0 : (S = o.closeTimer) == null ? void 0 : S.seconds,
|
|
64
|
+
isPlaying: y
|
|
53
65
|
}
|
|
54
66
|
)
|
|
55
67
|
] }),
|
|
56
|
-
/* @__PURE__ */
|
|
57
|
-
|
|
58
|
-
{
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
}), r == null || r(!1);
|
|
86
|
-
},
|
|
87
|
-
controlVideo: n,
|
|
88
|
-
autoPlay: i
|
|
89
|
-
}
|
|
90
|
-
) : (_ = o.banner) != null && _.imageUrl ? /* @__PURE__ */ e(To, { style: p ? { aspectRatio: "1/1" } : {}, src: (k = o.banner) == null ? void 0 : k.imageUrl, alt: "promo" }) : null }),
|
|
91
|
-
!p && /* @__PURE__ */ t(X, { children: [
|
|
92
|
-
((F = o.banner) == null ? void 0 : F.title) && /* @__PURE__ */ e(No, { className: J("AdvTitle", c && Po), children: (V = o.banner) == null ? void 0 : V.title }),
|
|
93
|
-
((j = o.banner) == null ? void 0 : j.body) && /* @__PURE__ */ e(vo, { className: "AdvDescription", children: (G = o.banner) == null ? void 0 : G.body })
|
|
68
|
+
/* @__PURE__ */ t(bo, { children: [
|
|
69
|
+
c && /* @__PURE__ */ e(Q, { className: Ao, src: (M = o.sponsor) == null ? void 0 : M.logo, alt: "promo" }),
|
|
70
|
+
/* @__PURE__ */ e(X, { children: (O = (L = o.banner) == null ? void 0 : L.video) != null && O.url ? /* @__PURE__ */ e(
|
|
71
|
+
ao,
|
|
72
|
+
{
|
|
73
|
+
source: (R = (D = o.banner) == null ? void 0 : D.video) == null ? void 0 : R.url,
|
|
74
|
+
poster: (k = (_ = o.banner) == null ? void 0 : _.video) == null ? void 0 : k.thumbnailUrl,
|
|
75
|
+
aspectRatio: p ? "1/1" : "2/1",
|
|
76
|
+
onPause: () => {
|
|
77
|
+
i && (r == null || r(!0));
|
|
78
|
+
},
|
|
79
|
+
onPlay: () => {
|
|
80
|
+
eo.emit("advertisement", {
|
|
81
|
+
action: "videoPlay",
|
|
82
|
+
payload: {
|
|
83
|
+
id: l,
|
|
84
|
+
type: o.type
|
|
85
|
+
}
|
|
86
|
+
}), r == null || r(!1);
|
|
87
|
+
},
|
|
88
|
+
controlVideo: n,
|
|
89
|
+
autoPlay: i
|
|
90
|
+
}
|
|
91
|
+
) : (F = o.banner) != null && F.imageUrl ? /* @__PURE__ */ e(vo, { style: p ? { aspectRatio: "1/1" } : {}, src: (U = o.banner) == null ? void 0 : U.imageUrl, alt: "promo" }) : null }),
|
|
92
|
+
!p && /* @__PURE__ */ t(X, { children: [
|
|
93
|
+
((V = o.banner) == null ? void 0 : V.title) && /* @__PURE__ */ e(Po, { className: K("AdvTitle", c && Bo), children: (G = o.banner) == null ? void 0 : G.title }),
|
|
94
|
+
((j = o.banner) == null ? void 0 : j.body) && /* @__PURE__ */ e(No, { className: "AdvDescription", children: (H = o.banner) == null ? void 0 : H.body })
|
|
95
|
+
] })
|
|
94
96
|
] })
|
|
95
97
|
] }),
|
|
96
|
-
o.buttonType
|
|
97
|
-
|
|
98
|
+
o.buttonType === to.BASIC && /* @__PURE__ */ e(To, { children: /* @__PURE__ */ e(
|
|
99
|
+
xo,
|
|
98
100
|
{
|
|
99
101
|
href: a,
|
|
100
102
|
style: {
|
|
101
|
-
backgroundColor: ((
|
|
102
|
-
color: ((
|
|
103
|
+
backgroundColor: ((W = (w = o.banner) == null ? void 0 : w.ctaButton) == null ? void 0 : W.color) || "#009dc4",
|
|
104
|
+
color: ((q = ($ = o.banner) == null ? void 0 : $.ctaButton) == null ? void 0 : q.textColor) || "#fff"
|
|
103
105
|
},
|
|
104
106
|
"data-a": "button",
|
|
105
107
|
"data-promo-id": l,
|
|
106
108
|
"data-promo-type": o.type,
|
|
107
109
|
target: "_blank",
|
|
108
|
-
children: (
|
|
110
|
+
children: (J = (z = o.banner) == null ? void 0 : z.ctaButton) == null ? void 0 : J.label
|
|
109
111
|
}
|
|
110
112
|
) })
|
|
111
113
|
] });
|
|
112
114
|
};
|
|
113
115
|
export {
|
|
114
116
|
Ro as Overlay,
|
|
115
|
-
|
|
117
|
+
Fo as OverlayContainer
|
|
116
118
|
};
|
package/lib/ui/theme/theme.js
CHANGED
|
@@ -67,6 +67,7 @@ const x = `
|
|
|
67
67
|
|
|
68
68
|
--insight-image-ratio: 16/9;
|
|
69
69
|
--adv-side-indents: 16px;
|
|
70
|
+
--adv-promo-padding-bottom: 36px;
|
|
70
71
|
--adv-top-indent: 12px;
|
|
71
72
|
--adv-header-height: 52px;
|
|
72
73
|
--adv-media-row-gap: 24px;
|
|
@@ -87,6 +88,7 @@ const x = `
|
|
|
87
88
|
|
|
88
89
|
.mobile-view {
|
|
89
90
|
--adv-side-indents: 16px;
|
|
91
|
+
--adv-promo-padding-bottom: 36px;
|
|
90
92
|
--adv-hide-on-mobile: none;
|
|
91
93
|
--adv-header-shift: -10px;
|
|
92
94
|
--adv-media-shift: -10px;
|
|
@@ -149,7 +151,7 @@ const x = `
|
|
|
149
151
|
|
|
150
152
|
--display-question-container: initial;
|
|
151
153
|
--justify-content-question-container: initial;
|
|
152
|
-
`,
|
|
154
|
+
`, m = "StreamLayerCSSReset", h = "ttkj0ah", g = () => /* @__PURE__ */ t("table", {
|
|
153
155
|
children: /* @__PURE__ */ i("table", {
|
|
154
156
|
children: [/* @__PURE__ */ t("thead", {
|
|
155
157
|
children: /* @__PURE__ */ i("tr", {
|
|
@@ -175,7 +177,7 @@ const x = `
|
|
|
175
177
|
});
|
|
176
178
|
export {
|
|
177
179
|
g as ThemeVariables,
|
|
178
|
-
|
|
179
|
-
|
|
180
|
+
m as resetCss,
|
|
181
|
+
h as theme,
|
|
180
182
|
x as themeStr
|
|
181
183
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamlayer/react-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
"default": "./lib/app/masters/masters.js",
|
|
16
16
|
"types": "./lib/app/masters/masters.d.ts"
|
|
17
17
|
},
|
|
18
|
+
"./tv": {
|
|
19
|
+
"import": "./lib/app/tvos/index.js",
|
|
20
|
+
"default": "./lib/app/tvos/index.js",
|
|
21
|
+
"types": "./lib/app/tvos/index.d.ts"
|
|
22
|
+
},
|
|
18
23
|
"./mastersPoints": {
|
|
19
24
|
"import": "./lib/app/masters/Points/index.js",
|
|
20
25
|
"default": "./lib/app/masters/Points/index.js",
|
|
@@ -61,7 +66,7 @@
|
|
|
61
66
|
],
|
|
62
67
|
"peerDependencies": {
|
|
63
68
|
"@lottiefiles/react-lottie-player": "^3.5.4",
|
|
64
|
-
"@streamlayer/sl-eslib": "^5.
|
|
69
|
+
"@streamlayer/sl-eslib": "^5.168.0",
|
|
65
70
|
"@types/lodash.throttle": "^4.1.9",
|
|
66
71
|
"lodash.throttle": "^4.1.1",
|
|
67
72
|
"react-infinite-scroller": "^1.2.6",
|
|
@@ -69,19 +74,19 @@
|
|
|
69
74
|
"react-window": "^1.8.10",
|
|
70
75
|
"react-window-infinite-loader": "^1.0.9",
|
|
71
76
|
"uuid": "^11.1.0",
|
|
72
|
-
"@streamlayer/feature-gamification": "^1.
|
|
73
|
-
"@streamlayer/react-polyfills": "^0.1.
|
|
74
|
-
"@streamlayer/sdk-web": "^1.
|
|
75
|
-
"@streamlayer/sdk-web-analytics": "^1.
|
|
76
|
-
"@streamlayer/sdk-web-anonymous-auth": "^1.1.
|
|
77
|
-
"@streamlayer/sdk-web-api": "^1.
|
|
78
|
-
"@streamlayer/sdk-web-core": "^1.
|
|
79
|
-
"@streamlayer/sdk-web-features": "^1.0.
|
|
80
|
-
"@streamlayer/sdk-web-interfaces": "^1.6.
|
|
81
|
-
"@streamlayer/sdk-web-logger": "^1.0.
|
|
82
|
-
"@streamlayer/sdk-web-notifications": "^1.3.
|
|
83
|
-
"@streamlayer/sdk-web-storage": "^1.0.
|
|
84
|
-
"@streamlayer/sdk-web-types": "^1.
|
|
77
|
+
"@streamlayer/feature-gamification": "^1.18.0",
|
|
78
|
+
"@streamlayer/react-polyfills": "^0.1.23",
|
|
79
|
+
"@streamlayer/sdk-web": "^1.12.0",
|
|
80
|
+
"@streamlayer/sdk-web-analytics": "^1.9.0",
|
|
81
|
+
"@streamlayer/sdk-web-anonymous-auth": "^1.1.42",
|
|
82
|
+
"@streamlayer/sdk-web-api": "^1.10.0",
|
|
83
|
+
"@streamlayer/sdk-web-core": "^1.13.0",
|
|
84
|
+
"@streamlayer/sdk-web-features": "^1.0.63",
|
|
85
|
+
"@streamlayer/sdk-web-interfaces": "^1.6.1",
|
|
86
|
+
"@streamlayer/sdk-web-logger": "^1.0.63",
|
|
87
|
+
"@streamlayer/sdk-web-notifications": "^1.3.25",
|
|
88
|
+
"@streamlayer/sdk-web-storage": "^1.0.63",
|
|
89
|
+
"@streamlayer/sdk-web-types": "^1.12.0"
|
|
85
90
|
},
|
|
86
91
|
"nx": {
|
|
87
92
|
"implicitDependencies": [
|
|
@@ -121,12 +126,13 @@
|
|
|
121
126
|
"vite-plugin-svgr": "^4.2.0",
|
|
122
127
|
"vite-svg-loader": "^5.1.0",
|
|
123
128
|
"vite-tsconfig-paths": "^5.0.1",
|
|
124
|
-
"@streamlayer/react": "^1.
|
|
129
|
+
"@streamlayer/react": "^1.17.0"
|
|
125
130
|
},
|
|
126
131
|
"dependencies": {
|
|
127
132
|
"@dailymotion/vast-client": "^6.2.0",
|
|
128
133
|
"@types/vast-client": "^3.0.4",
|
|
129
134
|
"@types/vmap": "^2.2.4",
|
|
135
|
+
"react-qr-code": "^2.0.16",
|
|
130
136
|
"swiper": "^11.2.6",
|
|
131
137
|
"video.js": "^8.21.0",
|
|
132
138
|
"videojs-contrib-ads": "^7.5.2",
|