@streamlayer/react-ui 1.14.3 → 1.16.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.js +1 -1
- package/lib/app/app/Features/FeatureProvider.js +1 -1
- package/lib/app/app/Features/Gamification/Leaderboard.js +9 -8
- package/lib/app/app/Features/Gamification/Question.js +1 -1
- package/lib/app/app/Features/Gamification/QuestionsList.js +3 -3
- package/lib/app/app/Features/Gamification/Tabs.js +2 -2
- package/lib/app/app/Features/Gamification/index.js +1 -1
- package/lib/app/app/InApp/index.d.ts +4 -0
- package/lib/app/app/InApp/index.js +31 -0
- package/lib/app/app/Insight/index.js +1 -1
- package/lib/app/app/Navigation/index.js +1 -1
- package/lib/app/app/Notifications/Onboarding/index.js +79 -73
- package/lib/app/app/Notifications/index.js +1 -1
- package/lib/app/app/Points/index.js +5 -5
- package/lib/app/app/index.js +17 -17
- package/lib/app/app/story/index.d.ts +0 -1
- package/lib/app/app/story/index.js +39 -50
- package/lib/app/app/story/styles.d.ts +1 -0
- package/lib/app/app/story/styles.js +9 -4
- package/lib/app/app/story/video.js +28 -25
- package/lib/app/app/useApp.d.ts +1 -2
- package/lib/app/app/useApp.js +1 -1
- package/lib/app/login/demo.js +1 -1
- package/lib/app/masters/Features/FeatureProvider.js +1 -1
- package/lib/app/masters/Features/Gamification/Leaderboard.js +4 -3
- package/lib/app/masters/Features/Gamification/Question.js +1 -1
- package/lib/app/masters/Features/Gamification/QuestionsList.js +3 -3
- package/lib/app/masters/Features/Gamification/Tabs.js +4 -4
- package/lib/app/masters/Features/Gamification/index.js +1 -1
- package/lib/app/masters/Navigation/MastersNavigation/index.js +4 -4
- package/lib/app/masters/Notifications/Onboarding/index.js +5 -5
- package/lib/app/masters/Notifications/index.js +1 -1
- package/lib/app/masters/Points/index.js +5 -5
- package/lib/app/masters/masters.js +16 -16
- package/lib/app/masters/useMastersApp.js +7 -7
- package/lib/app/masters/useSdkScroll.js +7 -7
- package/lib/app/useSdkFeature.js +1 -1
- package/lib/app/useSdkScroll.js +7 -7
- package/lib/assets/style.css +1 -1
- package/lib/ui/close-btn/index.d.ts +1 -1
- package/lib/ui/gamification/constants.d.ts +1 -0
- package/lib/ui/gamification/constants.js +11 -2
- package/lib/ui/gamification/points/index.js +7 -7
- package/lib/ui/gamification/question/inapp/notification/NotificationMedia/index.d.ts +7 -0
- package/lib/ui/gamification/question/inapp/notification/NotificationMedia/index.js +61 -0
- package/lib/ui/gamification/question/inapp/notification/index.d.ts +6 -0
- package/lib/ui/gamification/question/inapp/notification/index.js +38 -0
- package/lib/ui/gamification/question/inapp/notification/styles.d.ts +7 -0
- package/lib/ui/gamification/question/inapp/notification/styles.js +40 -0
- package/lib/ui/gamification/question/inapp/notification/tweet/index.d.ts +2 -0
- package/lib/ui/gamification/question/inapp/notification/tweet/index.js +24 -0
- package/lib/ui/gamification/question/inapp/notification/tweet/styles.d.ts +4 -0
- package/lib/ui/gamification/question/inapp/notification/tweet/styles.js +24 -0
- package/lib/ui/gamification/question/inapp/onboarding/index.d.ts +5 -0
- package/lib/ui/gamification/question/inapp/onboarding/index.js +50 -0
- package/lib/ui/gamification/question/inapp/onboarding/styles.d.ts +9 -0
- package/lib/ui/gamification/question/inapp/onboarding/styles.js +51 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/content.d.ts +6 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/content.js +57 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/index.d.ts +12 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/index.js +59 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/lines.d.ts +1 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/lines.js +34 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step1.d.ts +1 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step1.js +19 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step2.d.ts +3 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step2.js +26 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step3.d.ts +4 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step3.js +38 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step4.d.ts +3 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/step4.js +33 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/styles.d.ts +3 -0
- package/lib/ui/gamification/question/inapp/prediction-result/frames/styles.js +20 -0
- package/lib/ui/gamification/question/inapp/prediction-result/index.d.ts +9 -0
- package/lib/ui/gamification/question/inapp/prediction-result/index.js +7 -0
- package/lib/ui/gamification/question/inapp/prediction-result/styles.d.ts +1 -0
- package/lib/ui/gamification/question/inapp/prediction-result/styles.js +9 -0
- package/lib/ui/gamification/question/index.d.ts +10 -1
- package/lib/ui/gamification/question/index.js +45 -36
- package/lib/ui/icons/index.d.ts +2 -3
- package/lib/ui/icons/index.js +72 -63
- package/lib/ui/questions/twitter/account/index.js +17 -17
- package/lib/ui/questions/twitter/index.d.ts +1 -0
- package/lib/ui/questions/twitter/index.js +2 -1
- package/lib/ui/theme/constants.d.ts +6 -0
- package/lib/ui/theme/constants.js +20 -14
- package/lib/ui/theme/index.d.ts +1 -0
- package/lib/ui/theme/index.js +4 -4
- package/lib/ui/theme/theme.js +2 -2
- package/lib/utils/debug/components/eventInput.js +1 -1
- package/lib/utils/decorators/container.js +10 -6
- package/lib/utils/decorators/styles.js +7 -2
- package/package.json +20 -15
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsxs as r, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { styled as e } from "@linaria/react";
|
|
3
|
+
import { SvgIcon as a } from "../../../../../icons/index.js";
|
|
4
|
+
const n = /* @__PURE__ */ e("div")({
|
|
5
|
+
name: "Container",
|
|
6
|
+
class: "c181a1as",
|
|
7
|
+
propsAsIs: !1
|
|
8
|
+
}), c = /* @__PURE__ */ e("div")({
|
|
9
|
+
name: "Title",
|
|
10
|
+
class: "t1cduox6",
|
|
11
|
+
propsAsIs: !1
|
|
12
|
+
}), i = () => a, s = /* @__PURE__ */ e(i())({
|
|
13
|
+
name: "CorrectIcon",
|
|
14
|
+
class: "c1onrv6j",
|
|
15
|
+
propsAsIs: !0
|
|
16
|
+
}), l = () => s, p = /* @__PURE__ */ e(l())({
|
|
17
|
+
name: "InCorrectIcon",
|
|
18
|
+
class: "i17n9o7e",
|
|
19
|
+
propsAsIs: !0
|
|
20
|
+
}), d = () => /* @__PURE__ */ r(n, {
|
|
21
|
+
children: [/* @__PURE__ */ r(c, {
|
|
22
|
+
children: ["Congratulations!", /* @__PURE__ */ o("br", {}), "You answered correctly."]
|
|
23
|
+
}), /* @__PURE__ */ o(s, {
|
|
24
|
+
name: "icon-check"
|
|
25
|
+
})]
|
|
26
|
+
}), u = ({
|
|
27
|
+
title: t
|
|
28
|
+
}) => /* @__PURE__ */ r(n, {
|
|
29
|
+
children: [/* @__PURE__ */ r(c, {
|
|
30
|
+
children: ["Better luck next time!", /* @__PURE__ */ o("br", {}), "Correct: ", t]
|
|
31
|
+
}), /* @__PURE__ */ o(p, {
|
|
32
|
+
name: "icon-cross"
|
|
33
|
+
})]
|
|
34
|
+
});
|
|
35
|
+
export {
|
|
36
|
+
d as CorrectStep,
|
|
37
|
+
u as InCorrectStep
|
|
38
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { styled as s } from "@linaria/react";
|
|
3
|
+
import { AnimatedCounter as t } from "../../../../../animated-counter/index.js";
|
|
4
|
+
import { SvgIcon as r } from "../../../../../icons/index.js";
|
|
5
|
+
const c = /* @__PURE__ */ s("div")({
|
|
6
|
+
name: "Container",
|
|
7
|
+
class: "cnxgcs2",
|
|
8
|
+
propsAsIs: !1
|
|
9
|
+
}), i = /* @__PURE__ */ s("div")({
|
|
10
|
+
name: "Title",
|
|
11
|
+
class: "t903f8n",
|
|
12
|
+
propsAsIs: !1
|
|
13
|
+
}), p = () => r, a = /* @__PURE__ */ s(p())({
|
|
14
|
+
name: "CheckIcon",
|
|
15
|
+
class: "ceyu3qj",
|
|
16
|
+
propsAsIs: !0
|
|
17
|
+
}), u = ({
|
|
18
|
+
points: n
|
|
19
|
+
}) => /* @__PURE__ */ o(c, {
|
|
20
|
+
children: [/* @__PURE__ */ o(i, {
|
|
21
|
+
children: ["You won ", /* @__PURE__ */ e(t, {
|
|
22
|
+
delay: 0.5,
|
|
23
|
+
prefix: "+",
|
|
24
|
+
suffix: " points",
|
|
25
|
+
value: n
|
|
26
|
+
})]
|
|
27
|
+
}), /* @__PURE__ */ e(a, {
|
|
28
|
+
name: "icon-trophy-solid"
|
|
29
|
+
})]
|
|
30
|
+
});
|
|
31
|
+
export {
|
|
32
|
+
u as Step4
|
|
33
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const Container: import('@linaria/react').StyledComponent<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
2
|
+
export declare const Body: import('@linaria/react').StyledComponent<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
3
|
+
export declare const FeedbackIcon: any;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { styled as s } from "@linaria/react";
|
|
2
|
+
import { SvgIcon as o } from "../../../../../icons/index.js";
|
|
3
|
+
const a = /* @__PURE__ */ s("div")({
|
|
4
|
+
name: "Container",
|
|
5
|
+
class: "cq3agu2",
|
|
6
|
+
propsAsIs: !1
|
|
7
|
+
}), r = /* @__PURE__ */ s("div")({
|
|
8
|
+
name: "Body",
|
|
9
|
+
class: "b16qj0do",
|
|
10
|
+
propsAsIs: !1
|
|
11
|
+
}), e = () => o, t = /* @__PURE__ */ s(e())({
|
|
12
|
+
name: "FeedbackIcon",
|
|
13
|
+
class: "f9m7c89",
|
|
14
|
+
propsAsIs: !0
|
|
15
|
+
});
|
|
16
|
+
export {
|
|
17
|
+
r as Body,
|
|
18
|
+
a as Container,
|
|
19
|
+
t as FeedbackIcon
|
|
20
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Notification as NotificationProps } from '@streamlayer/sdk-web-notifications';
|
|
2
|
+
type InAppProps = NotificationProps['data'] & {
|
|
3
|
+
action: NotificationProps['action'];
|
|
4
|
+
};
|
|
5
|
+
export declare const InAppPredictionResult: React.FC<Exclude<InAppProps['question'], undefined> & {
|
|
6
|
+
action?: () => void;
|
|
7
|
+
close?: () => void;
|
|
8
|
+
}>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { PredictionResult as t } from "./frames/index.js";
|
|
3
|
+
import { NotificationContainer as i } from "./styles.js";
|
|
4
|
+
const p = (r) => /* @__PURE__ */ o(i, { children: /* @__PURE__ */ o(t, { ...r }) });
|
|
5
|
+
export {
|
|
6
|
+
p as InAppPredictionResult
|
|
7
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const NotificationContainer: import('@linaria/react').StyledComponent<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
import { PickHistory } from '@streamlayer/sdk-web-types';
|
|
1
|
+
import { QuestionType, QuestionStatus, PickHistory } from '@streamlayer/sdk-web-types';
|
|
2
|
+
import { icons } from '../../icons';
|
|
2
3
|
export declare const QuestionSkeleton: React.FC;
|
|
4
|
+
export declare const QuestionTypeHeader: React.FC<{
|
|
5
|
+
questionTypeData: {
|
|
6
|
+
label: string;
|
|
7
|
+
iconName: keyof typeof icons;
|
|
8
|
+
};
|
|
9
|
+
questionType: QuestionType;
|
|
10
|
+
questionStatus: QuestionStatus;
|
|
11
|
+
}>;
|
|
3
12
|
export declare const Question: React.FC<PickHistory>;
|
|
@@ -1,49 +1,58 @@
|
|
|
1
1
|
import { jsx as t, jsxs as n } from "react/jsx-runtime";
|
|
2
|
-
import { PickHistoryStatus as
|
|
3
|
-
import { QuestionTypeData as
|
|
4
|
-
import { Skeleton as
|
|
5
|
-
import { QuestionActionIcon as
|
|
6
|
-
const
|
|
7
|
-
[
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
},
|
|
12
|
-
/* @__PURE__ */ t(
|
|
13
|
-
/* @__PURE__ */ t(
|
|
14
|
-
/* @__PURE__ */ t(
|
|
2
|
+
import { PickHistoryStatus as i, QuestionType as s, QuestionStatus as p } from "@streamlayer/sdk-web-types";
|
|
3
|
+
import { QuestionTypeData as y } from "../constants.js";
|
|
4
|
+
import { Skeleton as l } from "../../skeleton/index.js";
|
|
5
|
+
import { QuestionActionIcon as a, QuestionCheckIcon as h, SkeletonContainer as S, SkeletonButton as I, QuestionCaption as L, QuestionTypeIcon as T, QuestionTypeLabel as k, QuestionItem as N, QuestionContent as f, QuestionBody as A, QuestionAction as C, PlayButton as P } from "./styles.js";
|
|
6
|
+
const w = {
|
|
7
|
+
[i.LOST]: /* @__PURE__ */ t(a, { name: "incorrectVoted" }),
|
|
8
|
+
[i.WON]: /* @__PURE__ */ t(h, { name: "icon-check" }),
|
|
9
|
+
[i.UNSET]: /* @__PURE__ */ t(a, { name: "icon-arrow" }),
|
|
10
|
+
[i.DNP]: /* @__PURE__ */ t(a, { name: "icon-arrow" })
|
|
11
|
+
}, D = () => /* @__PURE__ */ n(S, { children: [
|
|
12
|
+
/* @__PURE__ */ t(l, { loading: !0, style: { width: "35%" } }),
|
|
13
|
+
/* @__PURE__ */ t(l, { loading: !0, style: { width: "70%" } }),
|
|
14
|
+
/* @__PURE__ */ t(I, {})
|
|
15
|
+
] }), x = ({ questionTypeData: o, questionType: e, questionStatus: r }) => /* @__PURE__ */ n(L, { className: "SL_QuestionCaption", children: [
|
|
16
|
+
/* @__PURE__ */ t(
|
|
17
|
+
T,
|
|
18
|
+
{
|
|
19
|
+
className: "SL_QuestionTypeIcon",
|
|
20
|
+
"data-testid": "question-type-icon",
|
|
21
|
+
"data-type-trivia": e === s.TRIVIA,
|
|
22
|
+
"data-type-poll": e === s.POLL,
|
|
23
|
+
name: o.iconName
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ n(k, { className: "SL_QuestionTypeLabel", children: [
|
|
27
|
+
o.label,
|
|
28
|
+
e === s.TRIVIA && r === p.RESOLVED && " • Expired"
|
|
29
|
+
] })
|
|
15
30
|
] }), R = ({
|
|
16
|
-
questionId:
|
|
17
|
-
questionType:
|
|
18
|
-
questionStatus:
|
|
31
|
+
questionId: o,
|
|
32
|
+
questionType: e,
|
|
33
|
+
questionStatus: r,
|
|
19
34
|
subject: u,
|
|
20
35
|
openForVoting: d,
|
|
21
36
|
status: m
|
|
22
37
|
}) => {
|
|
23
|
-
const
|
|
24
|
-
return
|
|
38
|
+
const c = y[e], Q = w[m];
|
|
39
|
+
return c ? /* @__PURE__ */ n(N, { "data-name": o, children: [
|
|
25
40
|
/* @__PURE__ */ n(f, { children: [
|
|
26
|
-
/* @__PURE__ */
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
),
|
|
36
|
-
/* @__PURE__ */ n(L, { children: [
|
|
37
|
-
i.label,
|
|
38
|
-
o === r.TRIVIA && l === p.RESOLVED && " • Expired"
|
|
39
|
-
] })
|
|
40
|
-
] }),
|
|
41
|
-
/* @__PURE__ */ t(P, { children: u || "" })
|
|
41
|
+
/* @__PURE__ */ t(
|
|
42
|
+
x,
|
|
43
|
+
{
|
|
44
|
+
questionTypeData: c,
|
|
45
|
+
questionType: e,
|
|
46
|
+
questionStatus: r
|
|
47
|
+
}
|
|
48
|
+
),
|
|
49
|
+
/* @__PURE__ */ t(A, { children: u || "" })
|
|
42
50
|
] }),
|
|
43
|
-
/* @__PURE__ */ t(
|
|
51
|
+
/* @__PURE__ */ t(C, { children: d ? /* @__PURE__ */ t(P, { children: "Play" }) : Q })
|
|
44
52
|
] }) : null;
|
|
45
53
|
};
|
|
46
54
|
export {
|
|
47
55
|
R as Question,
|
|
48
|
-
|
|
56
|
+
D as QuestionSkeleton,
|
|
57
|
+
x as QuestionTypeHeader
|
|
49
58
|
};
|
package/lib/ui/icons/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export declare const icons: {
|
|
|
2
2
|
'invite-game-icon': any;
|
|
3
3
|
'icon-trophy': any;
|
|
4
4
|
'icon-trophy-green': any;
|
|
5
|
+
'icon-trophy-solid': any;
|
|
5
6
|
'icon-trivia': any;
|
|
6
7
|
'icon-thumb-down': any;
|
|
7
8
|
'icon-thumb-up': any;
|
|
@@ -52,9 +53,7 @@ export declare const icons: {
|
|
|
52
53
|
chevronRight: any;
|
|
53
54
|
noImageIcon: any;
|
|
54
55
|
};
|
|
55
|
-
export declare const
|
|
56
|
-
name: keyof typeof icons;
|
|
57
|
-
}>;
|
|
56
|
+
export declare const IconsLibrary: () => import("react/jsx-runtime").JSX.Element;
|
|
58
57
|
type SvgIconProps = {
|
|
59
58
|
name: keyof typeof icons;
|
|
60
59
|
style?: React.CSSProperties;
|