@streamlayer/react-ui 1.20.0 → 1.22.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/masters/BetPack/BetPackContent/EmergencyScreen/index.d.ts +1 -0
- package/lib/app/masters/BetPack/BetPackContent/EmergencyScreen/index.js +11 -11
- package/lib/app/masters/BetPack/BetPackContent/EndScreen/index.d.ts +0 -1
- package/lib/app/masters/BetPack/BetPackContent/EndScreen/index.js +18 -22
- package/lib/app/masters/BetPack/BetPackContent/ScreenContainer/index.d.ts +0 -1
- package/lib/app/masters/BetPack/BetPackContent/ScreenContainer/index.js +7 -7
- package/lib/app/masters/BetPack/BetPackContent/ScreenContainer/useDynamicParentFont.d.ts +1 -2
- package/lib/app/masters/BetPack/BetPackContent/ScreenContainer/useDynamicParentFont.js +16 -19
- package/lib/app/masters/BetPack/BetPackContent/StartScreen/index.d.ts +0 -1
- package/lib/app/masters/BetPack/BetPackContent/StartScreen/index.js +25 -24
- package/lib/app/masters/BetPack/BetPackContent/StartScreen/styles.d.ts +1 -0
- package/lib/app/masters/BetPack/BetPackContent/StartScreen/styles.js +14 -9
- package/lib/app/masters/BetPack/BetPackContent/index.js +68 -66
- package/lib/app/masters/BetPack/BetPackOverlay/index.js +3 -2
- package/lib/app/masters/BetPack/index.js +64 -62
- package/lib/app/masters/BetPack/utils.d.ts +1 -1
- package/lib/app/masters/BetPack/utils.js +8 -7
- package/lib/app/masters/Features/Gamification/index.js +5 -5
- package/lib/app/masters/Features/index.d.ts +2 -2
- package/lib/app/masters/Features/index.js +1 -1
- package/lib/app/masters/Header/index.js +19 -23
- package/lib/app/masters/Notifications/Onboarding/index.d.ts +0 -1
- package/lib/app/masters/Notifications/Onboarding/index.js +42 -43
- package/lib/app/masters/Notifications/index.js +50 -55
- package/lib/app/masters/masters.js +60 -56
- package/lib/app/masters/useOrientation.d.ts +3 -0
- package/lib/app/masters/useOrientation.js +12 -0
- package/lib/app/masters/useSdkResponsive.js +2 -2
- package/lib/app/masters/useSdkScroll.js +12 -12
- package/lib/app/useSdkResponsive.js +1 -1
- package/lib/app/useSdkScroll.js +1 -1
- package/lib/assets/style.css +1 -1
- package/lib/index-DSi8Qgfs.js +14 -0
- package/lib/index-DXvAPWiE.js +3743 -0
- package/lib/index-tnt2CtQe.js +55 -0
- package/lib/ui/advertisement/overlay/externalAd/index.d.ts +1 -1
- package/lib/ui/advertisement/overlay/externalAd/index.js +79 -40323
- package/lib/ui/advertisement/overlay/externalAd/styles.d.ts +10 -0
- package/lib/ui/advertisement/overlay/externalAd/styles.js +49 -0
- package/lib/ui/advertisement/overlay/externalAd/vast-player/module.d.js +1 -0
- package/lib/ui/advertisement/overlay/externalAd/vast-player/useGAMPlayer.d.ts +19 -0
- package/lib/ui/advertisement/overlay/externalAd/vast-player/useGAMPlayer.js +33199 -0
- package/lib/ui/advertisement/overlay/externalAd/vast-player/useVastAds.d.ts +24 -0
- package/lib/ui/advertisement/overlay/externalAd/vast-player/useVastAds.js +8 -0
- package/lib/ui/gamification/vote/feedback/index.d.ts +1 -0
- package/lib/ui/gamification/vote/feedback/index.js +83 -73
- package/lib/ui/gamification/vote/feedback/styles.d.ts +1 -0
- package/lib/ui/gamification/vote/feedback/styles.js +40 -39
- package/lib/ui/gamification/vote/index.js +98 -95
- package/lib/ui/icons/index.d.ts +1 -0
- package/lib/ui/icons/index.js +88 -79
- package/lib/ui/modal/index.js +31 -34
- package/lib/ui/theme/breakpoints.d.ts +1 -0
- package/lib/ui/theme/breakpoints.js +17 -9
- package/lib/ui/theme/masters-theme.js +1 -0
- package/lib/useVastAds-Dt_tRbpd.js +1284 -0
- package/package.json +18 -15
- package/lib/index-CLJzLXks.js +0 -64
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { VastAd, VastCreativeLinear, VastResponse } from '@dailymotion/vast-client';
|
|
2
|
+
import { RefObject } from 'react';
|
|
3
|
+
/**
|
|
4
|
+
* Get the first valid creative from an ad
|
|
5
|
+
*/
|
|
6
|
+
export declare const getCreative: (ad: VastAd) => VastCreativeLinear;
|
|
7
|
+
/**
|
|
8
|
+
* Get the URL of the first media file in the creative
|
|
9
|
+
*/
|
|
10
|
+
export declare const getMediaFileUrl: (creative?: VastCreativeLinear) => string;
|
|
11
|
+
type AdData = {
|
|
12
|
+
creative: VastCreativeLinear;
|
|
13
|
+
order: number;
|
|
14
|
+
mediaFileUrl?: string;
|
|
15
|
+
ad: VastAd;
|
|
16
|
+
raw: VastResponse;
|
|
17
|
+
};
|
|
18
|
+
type AdStore = {
|
|
19
|
+
ads: AdData[];
|
|
20
|
+
autoplay: boolean;
|
|
21
|
+
muted: boolean;
|
|
22
|
+
};
|
|
23
|
+
export declare const useVastAds: (container: RefObject<HTMLDivElement> | null, externalGamUrl?: string) => import('nanostores').PreinitializedWritableAtom<AdStore> & object;
|
|
24
|
+
export {};
|
|
@@ -1,84 +1,94 @@
|
|
|
1
1
|
import { jsx as i, jsxs as c, Fragment as Y } from "react/jsx-runtime";
|
|
2
|
+
import { cx as j } from "@linaria/core";
|
|
2
3
|
import { QuestionType as l } from "@streamlayer/sdk-web-types";
|
|
3
|
-
import { SvgIcon as
|
|
4
|
-
import { ShowInContainer as
|
|
5
|
-
const
|
|
6
|
-
feedbackMessages:
|
|
7
|
-
questionVotedCorrectly:
|
|
4
|
+
import { SvgIcon as p } from "../../../icons/index.js";
|
|
5
|
+
import { ShowInContainer as J, Container as K, FeedbackContainer as h, IconPrediction as L, FeedbackDescription as F, FeedbackIconWrap as u, FeedbackHeader as x, FeedbackText as O, ShowAnimation as $, EarlyFeedbackDescription as U, FeedbackDynamicDescription as X, DynamicWrap as Z, FeedbackTitle as _, FeedbackTitleWrap as q, FeedbackResultDescription as v, FeedbackResultDescriptionWrap as V } from "./styles.js";
|
|
6
|
+
const ii = ({
|
|
7
|
+
feedbackMessages: t,
|
|
8
|
+
questionVotedCorrectly: S,
|
|
8
9
|
questionVoted: k,
|
|
9
10
|
questionType: d,
|
|
10
11
|
hasCorrectAnswer: r,
|
|
11
|
-
showExpiredNotification:
|
|
12
|
-
showClosedNotificationTrivia:
|
|
12
|
+
showExpiredNotification: I,
|
|
13
|
+
showClosedNotificationTrivia: D,
|
|
13
14
|
votedInCurrentRender: b,
|
|
14
|
-
votedAfterQuestionClosed:
|
|
15
|
-
voteErrorMessage:
|
|
16
|
-
enteredAnActiveQuestion:
|
|
17
|
-
marketClosed:
|
|
18
|
-
percentsAnimated:
|
|
19
|
-
votedAnswer:
|
|
20
|
-
isEarlyPrediction:
|
|
21
|
-
correctAnswer:
|
|
15
|
+
votedAfterQuestionClosed: y,
|
|
16
|
+
voteErrorMessage: e,
|
|
17
|
+
enteredAnActiveQuestion: B,
|
|
18
|
+
marketClosed: H,
|
|
19
|
+
percentsAnimated: z,
|
|
20
|
+
votedAnswer: T,
|
|
21
|
+
isEarlyPrediction: n,
|
|
22
|
+
correctAnswer: a,
|
|
23
|
+
onAnimationEnd: G
|
|
22
24
|
}) => {
|
|
23
|
-
const W = k && (d === l.TRIVIA || d === l.PREDICTION),
|
|
24
|
-
return
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
/* @__PURE__ */ i(u, { children: /* @__PURE__ */ i(m, { name: "questionExpired" }) }),
|
|
38
|
-
/* @__PURE__ */ c("div", { children: [
|
|
39
|
-
/* @__PURE__ */ i(x, { children: /* @__PURE__ */ i(F, { children: "Question Closed" }) }),
|
|
40
|
-
/* @__PURE__ */ i(T, { children: "This question was answered after the moderator closed the question. So the points for this answer won’t tally." })
|
|
41
|
-
] })
|
|
42
|
-
] }),
|
|
43
|
-
D && /* @__PURE__ */ c(t, { children: [
|
|
44
|
-
!e && /* @__PURE__ */ i(u, { children: /* @__PURE__ */ i(m, { name: "questionExpired" }) }),
|
|
45
|
-
/* @__PURE__ */ c("div", { children: [
|
|
46
|
-
/* @__PURE__ */ i(x, { children: /* @__PURE__ */ i(F, { children: e ? r ? "The results are already in!" : "Question is Closed" : "Question Closed" }) }),
|
|
47
|
-
/* @__PURE__ */ i(T, { children: e ? /* @__PURE__ */ i(G, { children: r ? `Correct: ${o == null ? void 0 : o.text}` : "Event affecting the outcome has occurred." }) : "This event has already taken place, so the ability to make a prediction on its outcome is no longer available." })
|
|
48
|
-
] })
|
|
49
|
-
] }),
|
|
50
|
-
!n && N && /* @__PURE__ */ c(t, { children: [
|
|
51
|
-
!e && /* @__PURE__ */ i(j, { name: "icon-prediction" }),
|
|
52
|
-
/* @__PURE__ */ c(J, { children: [
|
|
53
|
-
"Your pick has been recorded. ",
|
|
54
|
-
/* @__PURE__ */ i(K, { children: "We’ll notify you of the result." })
|
|
55
|
-
] })
|
|
56
|
-
] }),
|
|
57
|
-
!n && P && /* @__PURE__ */ c(t, { children: [
|
|
58
|
-
!e && /* @__PURE__ */ i(u, { "data-feedback-type": "correct", children: /* @__PURE__ */ i(m, { name: "correct" }) }),
|
|
59
|
-
/* @__PURE__ */ i(F, { children: "Thanks for answering. Please stay tuned for the next question." })
|
|
60
|
-
] }),
|
|
61
|
-
!n && (Q || S) && /* @__PURE__ */ c(t, { children: [
|
|
62
|
-
!e && /* @__PURE__ */ i(u, { "data-feedback-type": p, children: /* @__PURE__ */ i(m, { name: p }) }),
|
|
63
|
-
/* @__PURE__ */ i("div", { children: /* @__PURE__ */ c(x, { children: [
|
|
64
|
-
e ? /* @__PURE__ */ i(X, { children: p === "incorrect" ? /* @__PURE__ */ c(Y, { children: [
|
|
65
|
-
/* @__PURE__ */ i("div", { children: "So close!" }),
|
|
66
|
-
/* @__PURE__ */ i("div", { children: "Better luck next time" })
|
|
67
|
-
] }) : /* @__PURE__ */ c(Y, { children: [
|
|
68
|
-
/* @__PURE__ */ i("div", { children: "That’s correct!" }),
|
|
69
|
-
/* @__PURE__ */ i("div", { children: "You chose wisely." })
|
|
70
|
-
] }) }) : /* @__PURE__ */ i(U, { "data-feedback-type": p, children: a == null ? void 0 : a.title }),
|
|
71
|
-
e ? /* @__PURE__ */ c(_, { children: [
|
|
25
|
+
const W = k && (d === l.TRIVIA || d === l.PREDICTION), f = d === l.PREDICTION && !r, R = H && d === l.PREDICTION && !k || d === l.PREDICTION && y && b && B, N = W && f, Q = W && r, C = d === l.PREDICTION && k && b && r, P = k && d === l.POLL && b, m = S ? "correct" : "incorrect", o = S ? t == null ? void 0 : t.correctFeedback : t == null ? void 0 : t.incorrectFeedback;
|
|
26
|
+
return I || D || N || Q || R || P || C || e ? /* @__PURE__ */ i(
|
|
27
|
+
J,
|
|
28
|
+
{
|
|
29
|
+
enabled: b,
|
|
30
|
+
animate: !e && I ? !0 : z,
|
|
31
|
+
onAnimationEnd: G,
|
|
32
|
+
children: /* @__PURE__ */ c(K, { "data-prediction": f, children: [
|
|
33
|
+
e && !R && /* @__PURE__ */ c(h, { children: [
|
|
34
|
+
!n && /* @__PURE__ */ i(L, { name: "questionExpired" }),
|
|
35
|
+
/* @__PURE__ */ i(F, { children: e })
|
|
36
|
+
] }),
|
|
37
|
+
!e && I && /* @__PURE__ */ c(h, { children: [
|
|
38
|
+
!n && /* @__PURE__ */ i(u, { children: /* @__PURE__ */ i(p, { name: "questionExpired" }) }),
|
|
72
39
|
/* @__PURE__ */ c("div", { children: [
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
] })
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
40
|
+
/* @__PURE__ */ i(x, { children: /* @__PURE__ */ i(F, { children: "Question Expired" }) }),
|
|
41
|
+
/* @__PURE__ */ i(O, { children: "You can still answer to see if you're correct, but no points are awarded for expired questions." })
|
|
42
|
+
] })
|
|
43
|
+
] }),
|
|
44
|
+
!e && D && /* @__PURE__ */ c(h, { className: j($), children: [
|
|
45
|
+
/* @__PURE__ */ i(u, { children: /* @__PURE__ */ i(p, { name: "questionExpired" }) }),
|
|
46
|
+
/* @__PURE__ */ c("div", { children: [
|
|
47
|
+
/* @__PURE__ */ i(x, { children: /* @__PURE__ */ i(F, { children: "Question Closed" }) }),
|
|
48
|
+
/* @__PURE__ */ i(O, { children: "This question was answered after the moderator closed the question. So the points for this answer won’t tally." })
|
|
49
|
+
] })
|
|
50
|
+
] }),
|
|
51
|
+
R && /* @__PURE__ */ c(h, { children: [
|
|
52
|
+
!n && /* @__PURE__ */ i(u, { children: /* @__PURE__ */ i(p, { name: "questionExpired" }) }),
|
|
53
|
+
/* @__PURE__ */ c("div", { children: [
|
|
54
|
+
/* @__PURE__ */ i(x, { children: /* @__PURE__ */ i(F, { children: n ? r ? "The results are already in!" : "Question is Closed" : "Question Closed" }) }),
|
|
55
|
+
/* @__PURE__ */ i(O, { children: n ? /* @__PURE__ */ i(U, { children: r ? `Correct: ${a == null ? void 0 : a.text}` : "Event affecting the outcome has occurred." }) : "This event has already taken place, so the ability to make a prediction on its outcome is no longer available." })
|
|
56
|
+
] })
|
|
57
|
+
] }),
|
|
58
|
+
!e && N && /* @__PURE__ */ c(h, { children: [
|
|
59
|
+
!n && /* @__PURE__ */ i(L, { name: "icon-prediction" }),
|
|
60
|
+
/* @__PURE__ */ c(X, { children: [
|
|
61
|
+
"Your pick has been recorded. ",
|
|
62
|
+
/* @__PURE__ */ i(Z, { children: "We’ll notify you of the result." })
|
|
63
|
+
] })
|
|
64
|
+
] }),
|
|
65
|
+
!e && P && /* @__PURE__ */ c(h, { children: [
|
|
66
|
+
!n && /* @__PURE__ */ i(u, { "data-feedback-type": "correct", children: /* @__PURE__ */ i(p, { name: "correct" }) }),
|
|
67
|
+
/* @__PURE__ */ i(F, { children: "Thanks for answering. Please stay tuned for the next question." })
|
|
68
|
+
] }),
|
|
69
|
+
!e && (Q || C) && /* @__PURE__ */ c(h, { className: j(D && $), children: [
|
|
70
|
+
!n && /* @__PURE__ */ i(u, { "data-feedback-type": m, children: /* @__PURE__ */ i(p, { name: m }) }),
|
|
71
|
+
/* @__PURE__ */ i("div", { children: /* @__PURE__ */ c(x, { children: [
|
|
72
|
+
n ? /* @__PURE__ */ i(q, { children: m === "incorrect" ? /* @__PURE__ */ c(Y, { children: [
|
|
73
|
+
/* @__PURE__ */ i("div", { children: "So close!" }),
|
|
74
|
+
/* @__PURE__ */ i("div", { children: "Better luck next time" })
|
|
75
|
+
] }) : /* @__PURE__ */ c(Y, { children: [
|
|
76
|
+
/* @__PURE__ */ i("div", { children: "That’s correct!" }),
|
|
77
|
+
/* @__PURE__ */ i("div", { children: "You chose wisely." })
|
|
78
|
+
] }) }) : /* @__PURE__ */ i(_, { "data-feedback-type": m, children: o == null ? void 0 : o.title }),
|
|
79
|
+
n ? /* @__PURE__ */ c(V, { children: [
|
|
80
|
+
/* @__PURE__ */ c("div", { children: [
|
|
81
|
+
"Your pick: ",
|
|
82
|
+
T == null ? void 0 : T.text
|
|
83
|
+
] }),
|
|
84
|
+
/* @__PURE__ */ i("div", { children: m === "incorrect" ? `Correct: ${a == null ? void 0 : a.text}` : "" })
|
|
85
|
+
] }) : /* @__PURE__ */ i(v, { children: o == null ? void 0 : o.description })
|
|
86
|
+
] }) })
|
|
87
|
+
] })
|
|
88
|
+
] })
|
|
89
|
+
}
|
|
90
|
+
) : null;
|
|
81
91
|
};
|
|
82
92
|
export {
|
|
83
|
-
|
|
93
|
+
ii as Feedback
|
|
84
94
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const ShowInContainer: any;
|
|
2
2
|
export declare const FeedbackContainer: import('@linaria/react').StyledComponent<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
3
|
+
export declare const ShowAnimation: import('@linaria/core').LinariaClassName;
|
|
3
4
|
export declare const Container: import('@linaria/react').StyledComponent<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
4
5
|
export declare const IconPrediction: any;
|
|
5
6
|
export declare const FeedbackIconWrap: import('@linaria/react').StyledComponent<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { styled as s } from "@linaria/react";
|
|
2
2
|
import { SvgIcon as a } from "../../../icons/index.js";
|
|
3
|
-
import { GrowingShowIn as
|
|
4
|
-
const
|
|
3
|
+
import { GrowingShowIn as n } from "../../../show-in/index.js";
|
|
4
|
+
const c = () => n, l = /* @__PURE__ */ s(c())({
|
|
5
5
|
name: "ShowInContainer",
|
|
6
6
|
class: "s16sbdnm",
|
|
7
7
|
propsAsIs: !0
|
|
@@ -9,73 +9,74 @@ const n = () => c, d = /* @__PURE__ */ s(n())({
|
|
|
9
9
|
name: "FeedbackContainer",
|
|
10
10
|
class: "fbhorgl",
|
|
11
11
|
propsAsIs: !1
|
|
12
|
-
}), k = /* @__PURE__ */ s("div")({
|
|
12
|
+
}), m = "s1g20ja7", k = /* @__PURE__ */ s("div")({
|
|
13
13
|
name: "Container",
|
|
14
|
-
class: "
|
|
14
|
+
class: "c455ozj",
|
|
15
15
|
propsAsIs: !1
|
|
16
|
-
}), o = () => a,
|
|
16
|
+
}), o = () => a, b = /* @__PURE__ */ s(o())({
|
|
17
17
|
name: "IconPrediction",
|
|
18
|
-
class: "
|
|
18
|
+
class: "i1913njx",
|
|
19
19
|
propsAsIs: !0
|
|
20
|
-
}),
|
|
20
|
+
}), I = /* @__PURE__ */ s("div")({
|
|
21
21
|
name: "FeedbackIconWrap",
|
|
22
|
-
class: "
|
|
22
|
+
class: "fzfk69z",
|
|
23
23
|
propsAsIs: !1
|
|
24
|
-
}),
|
|
24
|
+
}), F = /* @__PURE__ */ s("div")({
|
|
25
25
|
name: "FeedbackHeader",
|
|
26
|
-
class: "
|
|
26
|
+
class: "fx87qaj",
|
|
27
27
|
propsAsIs: !1
|
|
28
|
-
}),
|
|
28
|
+
}), A = /* @__PURE__ */ s("span")({
|
|
29
29
|
name: "FeedbackTitle",
|
|
30
|
-
class: "
|
|
30
|
+
class: "fvek9ew",
|
|
31
31
|
propsAsIs: !1
|
|
32
32
|
}), e = /* @__PURE__ */ s("span")({
|
|
33
33
|
name: "FeedbackDescription",
|
|
34
|
-
class: "fvek9ew",
|
|
35
|
-
propsAsIs: !1
|
|
36
|
-
}), A = /* @__PURE__ */ s("div")({
|
|
37
|
-
name: "FeedbackTitleWrap",
|
|
38
34
|
class: "f1kbtp09",
|
|
39
35
|
propsAsIs: !1
|
|
40
36
|
}), D = /* @__PURE__ */ s("div")({
|
|
41
|
-
name: "
|
|
37
|
+
name: "FeedbackTitleWrap",
|
|
42
38
|
class: "f4i8rro",
|
|
43
39
|
propsAsIs: !1
|
|
44
|
-
}),
|
|
45
|
-
name: "
|
|
40
|
+
}), v = /* @__PURE__ */ s("div")({
|
|
41
|
+
name: "FeedbackResultDescriptionWrap",
|
|
46
42
|
class: "fqyssr",
|
|
43
|
+
propsAsIs: !1
|
|
44
|
+
}), p = () => e, x = /* @__PURE__ */ s(p())({
|
|
45
|
+
name: "FeedbackDynamicDescription",
|
|
46
|
+
class: "fyv794i",
|
|
47
47
|
propsAsIs: !0
|
|
48
|
-
}), r = () => e,
|
|
48
|
+
}), r = () => e, u = /* @__PURE__ */ s(r())({
|
|
49
49
|
name: "FeedbackResultDescription",
|
|
50
|
-
class: "
|
|
50
|
+
class: "f1jkj9vx",
|
|
51
51
|
propsAsIs: !0
|
|
52
|
-
}),
|
|
52
|
+
}), y = /* @__PURE__ */ s("div")({
|
|
53
53
|
name: "FeedbackText",
|
|
54
|
-
class: "
|
|
54
|
+
class: "f1pxh3a6",
|
|
55
55
|
propsAsIs: !1
|
|
56
|
-
}),
|
|
56
|
+
}), W = /* @__PURE__ */ s("span")({
|
|
57
57
|
name: "DynamicWrap",
|
|
58
|
-
class: "
|
|
58
|
+
class: "d1afvufn",
|
|
59
59
|
propsAsIs: !1
|
|
60
|
-
}),
|
|
60
|
+
}), h = /* @__PURE__ */ s("div")({
|
|
61
61
|
name: "EarlyFeedbackDescription",
|
|
62
|
-
class: "
|
|
62
|
+
class: "eq8u24d",
|
|
63
63
|
propsAsIs: !1
|
|
64
64
|
});
|
|
65
65
|
export {
|
|
66
66
|
k as Container,
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
W as DynamicWrap,
|
|
68
|
+
h as EarlyFeedbackDescription,
|
|
69
69
|
f as FeedbackContainer,
|
|
70
70
|
e as FeedbackDescription,
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
71
|
+
x as FeedbackDynamicDescription,
|
|
72
|
+
F as FeedbackHeader,
|
|
73
|
+
I as FeedbackIconWrap,
|
|
74
|
+
u as FeedbackResultDescription,
|
|
75
|
+
v as FeedbackResultDescriptionWrap,
|
|
76
|
+
y as FeedbackText,
|
|
77
|
+
A as FeedbackTitle,
|
|
78
|
+
D as FeedbackTitleWrap,
|
|
79
|
+
b as IconPrediction,
|
|
80
|
+
m as ShowAnimation,
|
|
81
|
+
l as ShowInContainer
|
|
81
82
|
};
|