@streamlayer/react-ui 1.3.3 → 1.5.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/Advertisement/index.d.ts +1 -0
- package/lib/app/app/Advertisement/index.js +65 -59
- package/lib/app/app/Insight/index.d.ts +1 -0
- package/lib/app/app/Insight/index.js +45 -38
- package/lib/app/app/story/insight/index.d.ts +1 -0
- package/lib/app/app/story/insight/index.js +32 -27
- package/lib/app/app/story/insight/video.d.ts +1 -0
- package/lib/app/app/story/insight/video.js +13 -13
- package/lib/ui/advertisement/index.d.ts +1 -0
- package/lib/ui/advertisement/index.js +10 -10
- package/package.json +20 -20
|
@@ -1,101 +1,107 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { styled as
|
|
3
|
-
import { useStore as
|
|
4
|
-
import { useAnalyticsListener as
|
|
5
|
-
import { useEffect as
|
|
6
|
-
import { eventBus as
|
|
7
|
-
import { FeatureType as
|
|
8
|
-
import { useAppApp as
|
|
9
|
-
import { AdvertisementUI as
|
|
10
|
-
const
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { styled as p } from "@linaria/react";
|
|
3
|
+
import { useStore as u } from "@nanostores/react";
|
|
4
|
+
import { useAnalyticsListener as v } from "../../../hooks/analytics.js";
|
|
5
|
+
import { useEffect as A, useRef as y, useMemo as g } from "react";
|
|
6
|
+
import { eventBus as f } from "@streamlayer/sdk-web-interfaces";
|
|
7
|
+
import { FeatureType as S, PromotionType as b } from "@streamlayer/sdk-web-types";
|
|
8
|
+
import { useAppApp as h } from "../useApp.js";
|
|
9
|
+
import { AdvertisementUI as L } from "../../../ui/advertisement/index.js";
|
|
10
|
+
const E = /* @__PURE__ */ p("div")({
|
|
11
11
|
name: "AdvertisementUIWrap",
|
|
12
12
|
class: "aa6pjif",
|
|
13
13
|
propsAsIs: !1
|
|
14
|
-
}),
|
|
14
|
+
}), I = (t) => {
|
|
15
15
|
const e = t.target;
|
|
16
16
|
if (e instanceof HTMLAnchorElement && e.target === "_blank") {
|
|
17
|
-
const
|
|
18
|
-
e.getAttribute("data-analytics") === "button" &&
|
|
17
|
+
const r = e.getAttribute("data-promo-id") || "", i = e.getAttribute("data-promo-type") || b.UNSET;
|
|
18
|
+
e.getAttribute("data-analytics") === "button" && f.emit("advertisement", {
|
|
19
19
|
action: "buttonSelect",
|
|
20
20
|
payload: {
|
|
21
|
-
advertisementId:
|
|
22
|
-
advertisementType:
|
|
21
|
+
advertisementId: r,
|
|
22
|
+
advertisementType: i
|
|
23
23
|
}
|
|
24
|
-
}), e.getAttribute("data-analytics") === "banner" &&
|
|
24
|
+
}), e.getAttribute("data-analytics") === "banner" && f.emit("advertisement", {
|
|
25
25
|
action: "bannerSelect",
|
|
26
26
|
payload: {
|
|
27
|
-
advertisementId:
|
|
28
|
-
advertisementType:
|
|
27
|
+
advertisementId: r,
|
|
28
|
+
advertisementType: i
|
|
29
29
|
}
|
|
30
30
|
});
|
|
31
31
|
}
|
|
32
|
-
},
|
|
32
|
+
}, T = ({
|
|
33
33
|
gamification: t,
|
|
34
34
|
layoutMode: e,
|
|
35
|
+
skipTypeCheck: r,
|
|
35
36
|
sidebar: i,
|
|
36
|
-
banner:
|
|
37
|
-
isMobileScreen:
|
|
38
|
-
persistent:
|
|
37
|
+
banner: n,
|
|
38
|
+
isMobileScreen: d,
|
|
39
|
+
persistent: a
|
|
39
40
|
}) => {
|
|
40
|
-
const
|
|
41
|
-
() => t.advertisement.getActiveAdvertisement(
|
|
41
|
+
const s = y(null), m = u(t.advertisement.$list), o = g(
|
|
42
|
+
() => t.advertisement.getActiveAdvertisement(a),
|
|
42
43
|
// fire getActiveNotification when notifications were updated
|
|
43
44
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
44
|
-
[
|
|
45
|
+
[m, a]
|
|
45
46
|
);
|
|
46
|
-
|
|
47
|
-
enabled: !!
|
|
47
|
+
v(s, {
|
|
48
|
+
enabled: !!o,
|
|
48
49
|
event: "click",
|
|
49
|
-
listener:
|
|
50
|
-
})
|
|
51
|
-
|
|
50
|
+
listener: I
|
|
51
|
+
});
|
|
52
|
+
const c = !n && !i;
|
|
53
|
+
return o ? /* @__PURE__ */ l(E, {
|
|
54
|
+
ref: s,
|
|
52
55
|
style: {
|
|
53
|
-
height:
|
|
56
|
+
height: c ? "auto" : "100%"
|
|
54
57
|
},
|
|
55
|
-
className:
|
|
56
|
-
children: /* @__PURE__ */
|
|
58
|
+
className: d ? "mobile-view" : "",
|
|
59
|
+
children: /* @__PURE__ */ l(L, {
|
|
60
|
+
skipTypeCheck: r,
|
|
57
61
|
sidebar: i,
|
|
58
|
-
banner:
|
|
59
|
-
advertisement:
|
|
62
|
+
banner: n,
|
|
63
|
+
advertisement: o,
|
|
60
64
|
layoutMode: e
|
|
61
65
|
})
|
|
62
66
|
}) : null;
|
|
63
|
-
},
|
|
67
|
+
}, W = ({
|
|
64
68
|
sdk: t,
|
|
65
69
|
sidebar: e,
|
|
66
|
-
banner:
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
70
|
+
banner: r,
|
|
71
|
+
skipTypeCheck: i,
|
|
72
|
+
event: n,
|
|
73
|
+
layoutMode: d,
|
|
74
|
+
isMobileScreen: a,
|
|
75
|
+
persistent: s
|
|
71
76
|
}) => {
|
|
72
77
|
const {
|
|
73
|
-
deactivate:
|
|
74
|
-
} =
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}, [
|
|
78
|
-
const
|
|
79
|
-
if (e &&
|
|
80
|
-
return /* @__PURE__ */
|
|
78
|
+
deactivate: m
|
|
79
|
+
} = h(t);
|
|
80
|
+
A(() => {
|
|
81
|
+
n ? t.createEventSession(n) : m();
|
|
82
|
+
}, [n, m, t]);
|
|
83
|
+
const o = u(t.featuresList.getStore());
|
|
84
|
+
if (e && r)
|
|
85
|
+
return /* @__PURE__ */ l("div", {
|
|
81
86
|
style: {
|
|
82
87
|
color: "red"
|
|
83
88
|
},
|
|
84
89
|
children: "define either sidebar or banner, not both."
|
|
85
90
|
});
|
|
86
|
-
if (!
|
|
91
|
+
if (!o)
|
|
87
92
|
return null;
|
|
88
|
-
const
|
|
89
|
-
return
|
|
90
|
-
gamification:
|
|
93
|
+
const c = t.getFeature(S.GAMES);
|
|
94
|
+
return c ? /* @__PURE__ */ l(T, {
|
|
95
|
+
gamification: c,
|
|
91
96
|
sidebar: e,
|
|
92
|
-
banner:
|
|
93
|
-
layoutMode:
|
|
94
|
-
isMobileScreen:
|
|
95
|
-
persistent:
|
|
97
|
+
banner: r,
|
|
98
|
+
layoutMode: d,
|
|
99
|
+
isMobileScreen: a,
|
|
100
|
+
persistent: s,
|
|
101
|
+
skipTypeCheck: i
|
|
96
102
|
}) : null;
|
|
97
103
|
};
|
|
98
104
|
export {
|
|
99
|
-
|
|
100
|
-
|
|
105
|
+
E as AdvertisementUIWrap,
|
|
106
|
+
W as StreamLayerSDKAdvertisement
|
|
101
107
|
};
|
|
@@ -1,62 +1,69 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { styled as
|
|
3
|
-
import { useStore as
|
|
4
|
-
import { useEffect as
|
|
5
|
-
import { FeatureType as h, QuestionStatus as
|
|
6
|
-
import { Question as
|
|
7
|
-
import { useAppApp as
|
|
8
|
-
import { ShowIn as
|
|
9
|
-
const
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { styled as d } from "@linaria/react";
|
|
3
|
+
import { useStore as S } from "@nanostores/react";
|
|
4
|
+
import { useEffect as l, useRef as Q } from "react";
|
|
5
|
+
import { FeatureType as h, QuestionStatus as w } from "@streamlayer/sdk-web-types";
|
|
6
|
+
import { Question as y } from "../Features/Gamification/Question.js";
|
|
7
|
+
import { useAppApp as A } from "../useApp.js";
|
|
8
|
+
import { ShowIn as V } from "../../../ui/show-in/index.js";
|
|
9
|
+
const v = () => y, x = /* @__PURE__ */ d(v())({
|
|
10
10
|
name: "QuestionWrap",
|
|
11
11
|
class: "q10hhsxv",
|
|
12
12
|
propsAsIs: !0
|
|
13
|
-
}),
|
|
13
|
+
}), E = ({
|
|
14
14
|
gamification: e,
|
|
15
15
|
persistent: t,
|
|
16
|
-
hideHeader:
|
|
16
|
+
hideHeader: f,
|
|
17
|
+
insightId: r
|
|
17
18
|
}) => {
|
|
18
|
-
const
|
|
19
|
-
return
|
|
20
|
-
|
|
19
|
+
const s = Q(""), n = S(e.openedQuestion.$store);
|
|
20
|
+
return l(() => r ? (!t || e.isOpenedQuestion(r) || (s.current = r, e.getFeedItem(r).then((o) => {
|
|
21
|
+
s.current === r && e.openQuestion(r, o);
|
|
22
|
+
})), () => {
|
|
23
|
+
s.current = "";
|
|
24
|
+
}) : e.feedList.getStore().subscribe(({
|
|
25
|
+
data: u
|
|
21
26
|
}) => {
|
|
22
|
-
if (
|
|
23
|
-
const
|
|
24
|
-
type:
|
|
25
|
-
attributes:
|
|
26
|
-
}) =>
|
|
27
|
-
|
|
27
|
+
if (u) {
|
|
28
|
+
const o = u, p = o == null ? void 0 : o.find(({
|
|
29
|
+
type: m,
|
|
30
|
+
attributes: c
|
|
31
|
+
}) => m === "insight" && (c == null ? void 0 : c.status) === w.ACTIVE);
|
|
32
|
+
p && (!t || e.isOpenedQuestion(p.id) || e.openQuestion(p.id, p));
|
|
28
33
|
}
|
|
29
|
-
}), [e, t]),
|
|
34
|
+
}), [e, t, r]), n ? /* @__PURE__ */ i(V, {
|
|
30
35
|
style: {
|
|
31
36
|
height: "100%"
|
|
32
37
|
},
|
|
33
|
-
children: /* @__PURE__ */
|
|
34
|
-
hideHeader:
|
|
38
|
+
children: /* @__PURE__ */ i(x, {
|
|
39
|
+
hideHeader: f,
|
|
35
40
|
gamification: e,
|
|
36
41
|
hideSponsor: !0
|
|
37
42
|
})
|
|
38
43
|
}) : null;
|
|
39
|
-
},
|
|
44
|
+
}, j = ({
|
|
40
45
|
sdk: e,
|
|
41
46
|
event: t,
|
|
42
|
-
persistent:
|
|
43
|
-
|
|
47
|
+
persistent: f,
|
|
48
|
+
insightId: r,
|
|
49
|
+
hideHeader: s
|
|
44
50
|
}) => {
|
|
45
51
|
const {
|
|
46
|
-
deactivate:
|
|
47
|
-
} =
|
|
48
|
-
if (
|
|
49
|
-
t ? e.createEventSession(t) :
|
|
50
|
-
}, [t,
|
|
52
|
+
deactivate: n
|
|
53
|
+
} = A(e);
|
|
54
|
+
if (l(() => {
|
|
55
|
+
t ? e.createEventSession(t) : n();
|
|
56
|
+
}, [t, n, e]), !S(e.featuresList.getStore()))
|
|
51
57
|
return null;
|
|
52
|
-
const
|
|
53
|
-
return
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
58
|
+
const o = e.getFeature(h.GAMES);
|
|
59
|
+
return o ? /* @__PURE__ */ i(E, {
|
|
60
|
+
insightId: r,
|
|
61
|
+
persistent: f,
|
|
62
|
+
hideHeader: s,
|
|
63
|
+
gamification: o
|
|
57
64
|
}) : null;
|
|
58
65
|
};
|
|
59
66
|
export {
|
|
60
|
-
|
|
61
|
-
|
|
67
|
+
x as QuestionWrap,
|
|
68
|
+
j as StreamLayerSDKInsight
|
|
62
69
|
};
|
|
@@ -1,57 +1,62 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { styled as d } from "@linaria/react";
|
|
3
|
-
import { StreamLayerProvider as
|
|
4
|
-
import { StreamLayerSDKInsight as
|
|
5
|
-
import { StreamLayerThemeProvider as
|
|
6
|
-
import { useStreamLayerDebug as
|
|
7
|
-
import { customTheme as
|
|
8
|
-
import { Video as
|
|
9
|
-
const
|
|
3
|
+
import { StreamLayerProvider as u, useStreamLayer as p } from "@streamlayer/react";
|
|
4
|
+
import { StreamLayerSDKInsight as c } from "../../Insight/index.js";
|
|
5
|
+
import { StreamLayerThemeProvider as y } from "../../../../ui/theme/index.js";
|
|
6
|
+
import { useStreamLayerDebug as f } from "../../../../utils/debug/index.js";
|
|
7
|
+
import { customTheme as l } from "./styles.js";
|
|
8
|
+
import { Video as v } from "./video.js";
|
|
9
|
+
const h = /* @__PURE__ */ d("div")({
|
|
10
10
|
name: "Body",
|
|
11
11
|
class: "buit6hv",
|
|
12
12
|
propsAsIs: !1
|
|
13
|
-
}),
|
|
13
|
+
}), S = ({
|
|
14
14
|
event: o,
|
|
15
|
-
hideHeader: m
|
|
15
|
+
hideHeader: m,
|
|
16
|
+
insightId: n
|
|
16
17
|
}) => {
|
|
17
|
-
const r =
|
|
18
|
-
return r ? /* @__PURE__ */ e(
|
|
19
|
-
customTheme:
|
|
20
|
-
children: /* @__PURE__ */ e(
|
|
18
|
+
const r = p();
|
|
19
|
+
return r ? /* @__PURE__ */ e(y, {
|
|
20
|
+
customTheme: l,
|
|
21
|
+
children: /* @__PURE__ */ e(c, {
|
|
21
22
|
hideHeader: m,
|
|
22
23
|
event: o,
|
|
23
24
|
sdk: r,
|
|
25
|
+
insightId: n,
|
|
24
26
|
persistent: !0
|
|
25
27
|
})
|
|
26
28
|
}) : null;
|
|
27
|
-
},
|
|
29
|
+
}, D = ({
|
|
28
30
|
sdkKey: o,
|
|
29
31
|
eventId: m,
|
|
30
|
-
layoutMode:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
layoutMode: n,
|
|
33
|
+
insightId: r,
|
|
34
|
+
production: s,
|
|
35
|
+
onlyInsight: i,
|
|
36
|
+
hideHeader: a
|
|
34
37
|
}) => {
|
|
35
|
-
const t =
|
|
38
|
+
const t = f({
|
|
36
39
|
sdkKey: o,
|
|
37
40
|
eventId: m,
|
|
38
|
-
production:
|
|
41
|
+
production: s
|
|
39
42
|
});
|
|
40
|
-
return /* @__PURE__ */ e(
|
|
43
|
+
return /* @__PURE__ */ e(u, {
|
|
41
44
|
sdkKey: t.sdkKey,
|
|
42
45
|
production: t.env === "production",
|
|
43
46
|
autoEnable: !0,
|
|
44
|
-
children:
|
|
45
|
-
|
|
47
|
+
children: i ? /* @__PURE__ */ e(S, {
|
|
48
|
+
insightId: r,
|
|
49
|
+
hideHeader: a,
|
|
46
50
|
event: t.event
|
|
47
|
-
}) : /* @__PURE__ */ e(
|
|
48
|
-
children: /* @__PURE__ */ e(
|
|
49
|
-
|
|
51
|
+
}) : /* @__PURE__ */ e(h, {
|
|
52
|
+
children: /* @__PURE__ */ e(v, {
|
|
53
|
+
insightId: r,
|
|
54
|
+
layoutMode: n,
|
|
50
55
|
event: t.event
|
|
51
56
|
})
|
|
52
57
|
})
|
|
53
58
|
});
|
|
54
59
|
};
|
|
55
60
|
export {
|
|
56
|
-
|
|
61
|
+
D as InsightStory
|
|
57
62
|
};
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as i, Fragment as l, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { useRef as h } from "react";
|
|
3
|
-
import { useStreamLayer as
|
|
4
|
-
import { StreamLayerSDKInsight as
|
|
5
|
-
import { StreamLayerThemeProvider as
|
|
6
|
-
import { VideoFrame as
|
|
7
|
-
const
|
|
8
|
-
const r =
|
|
9
|
-
return /* @__PURE__ */
|
|
10
|
-
/* @__PURE__ */
|
|
11
|
-
/* @__PURE__ */ e(
|
|
12
|
-
/* @__PURE__ */ e(
|
|
3
|
+
import { useStreamLayer as c } from "@streamlayer/react";
|
|
4
|
+
import { StreamLayerSDKInsight as n } from "../../Insight/index.js";
|
|
5
|
+
import { StreamLayerThemeProvider as s } from "../../../../ui/theme/index.js";
|
|
6
|
+
import { VideoFrame as p, customTheme as a, VideoPlayerWrap as u, InsightContainerMobile as f, InsightContainerOverlay as g, InsightContainerLBar as y } from "./styles.js";
|
|
7
|
+
const F = ({ event: t, insightId: o, layoutMode: m }) => {
|
|
8
|
+
const r = c(), d = h(null);
|
|
9
|
+
return /* @__PURE__ */ i(l, { children: [
|
|
10
|
+
/* @__PURE__ */ i(p, { ref: d, "data-testid": "video-frame", children: [
|
|
11
|
+
/* @__PURE__ */ e(m === "cover" ? g : y, { children: r && /* @__PURE__ */ e(s, { customTheme: a, children: /* @__PURE__ */ e(n, { event: t, sdk: r, insightId: o, persistent: !0 }) }) }),
|
|
12
|
+
/* @__PURE__ */ e(u, { children: /* @__PURE__ */ e("div", { className: "divAnchor", children: /* @__PURE__ */ e(
|
|
13
13
|
"video",
|
|
14
14
|
{
|
|
15
15
|
src: "https://storage.googleapis.com/cdn.streamlayer.io/assets/sdk-web/Own%20The%20Game%201080p%20RF18.mp4",
|
|
@@ -22,9 +22,9 @@ const x = ({ event: t, layoutMode: a }) => {
|
|
|
22
22
|
}
|
|
23
23
|
) }) })
|
|
24
24
|
] }),
|
|
25
|
-
/* @__PURE__ */ e(
|
|
25
|
+
/* @__PURE__ */ e(f, { children: r && /* @__PURE__ */ e(s, { customTheme: a, children: /* @__PURE__ */ e(n, { event: t, sdk: r, insightId: o, persistent: !0 }) }) })
|
|
26
26
|
] });
|
|
27
27
|
};
|
|
28
28
|
export {
|
|
29
|
-
|
|
29
|
+
F as Video
|
|
30
30
|
};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as o, jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import { useStore as n } from "@nanostores/react";
|
|
3
|
-
import { PromotionType as
|
|
4
|
-
import { Banner as
|
|
5
|
-
import { Overlay as
|
|
6
|
-
import { Sidebar as
|
|
3
|
+
import { PromotionType as d } from "@streamlayer/sdk-web-types";
|
|
4
|
+
import { Banner as u } from "./banner/index.js";
|
|
5
|
+
import { Overlay as t } from "./overlay/index.js";
|
|
6
|
+
import { Sidebar as s } from "./sidebar/index.js";
|
|
7
7
|
import { OverlayContainer as f } from "./overlay/styles.js";
|
|
8
|
-
const y = (r) => (r == null ? void 0 : r.type) ===
|
|
8
|
+
const y = (r) => (r == null ? void 0 : r.type) === d.INGAME_IAB11_LBAR || (r == null ? void 0 : r.type) === d.INGAME_IAB21_LBAR, I = (r) => (r == null ? void 0 : r.type) === d.INGAME_IAB11 || (r == null ? void 0 : r.type) === d.INGAME_IAB21, E = ({ advertisement: r, skipTypeCheck: c, layoutMode: A = "side-by-side", sidebar: e, banner: a }) => {
|
|
9
9
|
const l = n(r.data);
|
|
10
|
-
return !l.data && l.loading ? null : l.error ? /* @__PURE__ */
|
|
10
|
+
return !l.data && l.loading ? null : l.error ? /* @__PURE__ */ o("div", { children: [
|
|
11
11
|
"error ",
|
|
12
|
-
/* @__PURE__ */
|
|
13
|
-
] }) : l.data ? !
|
|
12
|
+
/* @__PURE__ */ i("button", { onClick: r.close, children: "close" })
|
|
13
|
+
] }) : l.data ? !e && !a && (c || I(l.data)) ? /* @__PURE__ */ i(f, { className: "PromoOverlayContainer", children: /* @__PURE__ */ i(t, { promotionId: r.id, promotion: l.data, onClose: r.close }) }) : e && (c || y(l.data)) ? /* @__PURE__ */ i(s, { className: "PromoSidebarContainer", direction: e, hiding: r.hiding, children: /* @__PURE__ */ i(t, { promotionId: r.id, promotion: l.data, onClose: r.close }) }) : a ? /* @__PURE__ */ i(u, { promotionId: r.id, hiding: r.hiding, promotion: l.data, direction: a }) : null : /* @__PURE__ */ o("div", { children: [
|
|
14
14
|
"empty promo ",
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ i("button", { onClick: r.close, children: "close" })
|
|
16
16
|
] });
|
|
17
17
|
};
|
|
18
18
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamlayer/react-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@lottiefiles/react-lottie-player": "^3.5.4",
|
|
49
|
-
"@streamlayer/sl-eslib": "^5.
|
|
49
|
+
"@streamlayer/sl-eslib": "^5.122.0",
|
|
50
50
|
"@types/lodash.throttle": "^4.1.9",
|
|
51
51
|
"lodash.throttle": "^4.1.1",
|
|
52
52
|
"nanoid": "3.3.7",
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"react-virtualized-auto-sizer": "^1.0.24",
|
|
55
55
|
"react-window": "^1.8.10",
|
|
56
56
|
"react-window-infinite-loader": "^1.0.9",
|
|
57
|
-
"@streamlayer/feature-gamification": "^1.
|
|
58
|
-
"@streamlayer/sdk-web": "^1.1
|
|
59
|
-
"@streamlayer/sdk-web-analytics": "^1.1
|
|
60
|
-
"@streamlayer/sdk-web-anonymous-auth": "^1.0.
|
|
61
|
-
"@streamlayer/sdk-web-api": "^1.
|
|
62
|
-
"@streamlayer/sdk-web-core": "^1.1
|
|
63
|
-
"@streamlayer/sdk-web-features": "^1.0.
|
|
64
|
-
"@streamlayer/sdk-web-interfaces": "^1.1.
|
|
65
|
-
"@streamlayer/sdk-web-logger": "^1.0.
|
|
66
|
-
"@streamlayer/sdk-web-notifications": "^1.1.
|
|
67
|
-
"@streamlayer/sdk-web-storage": "^1.0.
|
|
68
|
-
"@streamlayer/sdk-web-types": "^1.
|
|
57
|
+
"@streamlayer/feature-gamification": "^1.4.1",
|
|
58
|
+
"@streamlayer/sdk-web": "^1.2.1",
|
|
59
|
+
"@streamlayer/sdk-web-analytics": "^1.2.1",
|
|
60
|
+
"@streamlayer/sdk-web-anonymous-auth": "^1.0.10",
|
|
61
|
+
"@streamlayer/sdk-web-api": "^1.3.1",
|
|
62
|
+
"@streamlayer/sdk-web-core": "^1.2.1",
|
|
63
|
+
"@streamlayer/sdk-web-features": "^1.0.10",
|
|
64
|
+
"@streamlayer/sdk-web-interfaces": "^1.1.5",
|
|
65
|
+
"@streamlayer/sdk-web-logger": "^1.0.10",
|
|
66
|
+
"@streamlayer/sdk-web-notifications": "^1.1.5",
|
|
67
|
+
"@streamlayer/sdk-web-storage": "^1.0.10",
|
|
68
|
+
"@streamlayer/sdk-web-types": "^1.3.1"
|
|
69
69
|
},
|
|
70
70
|
"nx": {
|
|
71
71
|
"implicitDependencies": [
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
"@linaria/core": "^6.2.0",
|
|
82
82
|
"@linaria/react": "^6.2.1",
|
|
83
83
|
"@nanostores/react": "^0.7.2",
|
|
84
|
-
"@storybook/addon-docs": "^8.3.
|
|
85
|
-
"@storybook/addon-viewport": "^8.3.
|
|
86
|
-
"@storybook/blocks": "^8.3.
|
|
84
|
+
"@storybook/addon-docs": "^8.3.4",
|
|
85
|
+
"@storybook/addon-viewport": "^8.3.4",
|
|
86
|
+
"@storybook/blocks": "^8.3.4",
|
|
87
87
|
"@storybook/jest": "^0.2.3",
|
|
88
|
-
"@storybook/react": "^8.3.
|
|
88
|
+
"@storybook/react": "^8.3.4",
|
|
89
89
|
"@storybook/testing-library": "^0.2.2",
|
|
90
90
|
"@types/react-infinite-scroller": "^1.2.5",
|
|
91
91
|
"@types/react-window": "^1.8.8",
|
|
@@ -101,11 +101,11 @@
|
|
|
101
101
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
102
102
|
"screenfull": "^6.0.2",
|
|
103
103
|
"tslib": "^2.7.0",
|
|
104
|
-
"vite": "5.4.
|
|
104
|
+
"vite": "5.4.8",
|
|
105
105
|
"vite-plugin-node-polyfills": "^0.22.0",
|
|
106
106
|
"vite-plugin-svgr": "^4.2.0",
|
|
107
107
|
"vite-svg-loader": "^5.1.0",
|
|
108
108
|
"vite-tsconfig-paths": "^5.0.1",
|
|
109
|
-
"@streamlayer/react": "^1.
|
|
109
|
+
"@streamlayer/react": "^1.3.0"
|
|
110
110
|
}
|
|
111
111
|
}
|