@streamlayer/react-ui 0.57.0 → 0.59.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/ui/app/Features/Gamification/Tabs.js +5 -5
- package/lib/ui/app/Features/Gamification/UserSummary.d.ts +1 -1
- package/lib/ui/app/Features/Gamification/UserSummary.js +8 -7
- package/lib/ui/app/Notifications/Onboarding/index.d.ts +12 -0
- package/lib/ui/app/Notifications/Onboarding/index.js +301894 -0
- package/lib/ui/app/Notifications/index.js +35 -7
- package/lib/ui/app/masters.js +21 -8
- package/lib/ui/app/styles.js +4 -3
- package/lib/ui/button/index.d.ts +2 -0
- package/lib/ui/button/index.js +3 -3
- package/lib/ui/gamification/onboarding/index.d.ts +7 -11
- package/lib/ui/gamification/onboarding/index.js +55 -49
- package/lib/ui/gamification/onboarding/slides/onboarding-instructions/index.d.ts +12 -0
- package/lib/ui/gamification/onboarding/slides/onboarding-instructions/index.js +19 -0
- package/lib/ui/gamification/onboarding/{components/onboarding-slides → slides}/onboarding-instructions/styles.d.ts +3 -1
- package/lib/ui/gamification/onboarding/slides/onboarding-instructions/styles.js +48 -0
- package/lib/ui/gamification/onboarding/slides/onboarding-invite-card/index.d.ts +15 -0
- package/lib/ui/gamification/onboarding/slides/onboarding-invite-card/index.js +39 -0
- package/lib/ui/gamification/onboarding/slides/onboarding-invite-card/styles.d.ts +15 -0
- package/lib/ui/gamification/onboarding/slides/onboarding-invite-card/styles.js +104 -0
- package/lib/ui/gamification/onboarding/{components/onboarding-slides → slides}/onboarding-rules/index.d.ts +6 -1
- package/lib/ui/gamification/onboarding/slides/onboarding-rules/index.js +18 -0
- package/lib/ui/gamification/onboarding/{components/onboarding-slides → slides}/onboarding-rules/styles.d.ts +3 -1
- package/lib/ui/gamification/onboarding/slides/onboarding-rules/styles.js +83 -0
- package/lib/ui/gamification/onboarding/styles.d.ts +3 -6
- package/lib/ui/gamification/onboarding/styles.js +37 -52
- package/lib/ui/gamification/question/twitter/account/index.d.ts +8 -0
- package/lib/ui/gamification/question/twitter/account/index.js +19 -0
- package/lib/ui/gamification/question/twitter/account/styles.d.ts +7 -0
- package/lib/ui/gamification/question/twitter/account/styles.js +39 -0
- package/lib/ui/gamification/question/twitter/index.d.ts +10 -0
- package/lib/ui/gamification/question/twitter/index.js +22 -0
- package/lib/ui/gamification/question/twitter/styles.d.ts +9 -0
- package/lib/ui/gamification/question/twitter/styles.js +64 -0
- package/lib/ui/icons/index.d.ts +8 -2
- package/lib/ui/icons/index.js +40 -34
- package/lib/ui/login/demo.d.ts +5 -0
- package/lib/ui/login/demo.js +26 -0
- package/lib/ui/show-in/index.js +7 -7
- package/package.json +12 -11
- package/lib/icon-exit-d3f9fc80.js +0 -4
- package/lib/ui/gamification/common-header/index.d.ts +0 -8
- package/lib/ui/gamification/common-header/index.js +0 -14
- package/lib/ui/gamification/common-header/styles.d.ts +0 -4
- package/lib/ui/gamification/common-header/styles.js +0 -31
- package/lib/ui/gamification/detailed-insight/index.d.ts +0 -13
- package/lib/ui/gamification/detailed-insight/index.js +0 -30
- package/lib/ui/gamification/detailed-insight/styles.d.ts +0 -8
- package/lib/ui/gamification/detailed-insight/styles.js +0 -62
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-instructions/index.d.ts +0 -7
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-instructions/index.js +0 -10
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-instructions/styles.js +0 -30
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-invite-card/index.d.ts +0 -8
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-invite-card/index.js +0 -17
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-invite-card/styles.d.ts +0 -8
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-invite-card/styles.js +0 -55
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-rules/index.js +0 -13
- package/lib/ui/gamification/onboarding/components/onboarding-slides/onboarding-rules/styles.js +0 -43
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { styled as t } from "@linaria/react";
|
|
2
|
+
const e = t.div`
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-grow: 1;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
padding-bottom: 16px;
|
|
7
|
+
`, n = t.div`
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
align-items: center;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
row-gap: 24px;
|
|
13
|
+
height: 100%;
|
|
14
|
+
padding: 0 32px 32px;
|
|
15
|
+
`, o = t.div`
|
|
16
|
+
color: var(--color-primary-green1);
|
|
17
|
+
font-family: var(--font-serif);
|
|
18
|
+
font-size: 22px;
|
|
19
|
+
font-weight: 400;
|
|
20
|
+
line-height: 30px;
|
|
21
|
+
text-align: center;
|
|
22
|
+
`, r = t.div`
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
row-gap: 24px;
|
|
26
|
+
`, l = t.div`
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
column-gap: 16px;
|
|
30
|
+
`, a = t.div`
|
|
31
|
+
display: flex;
|
|
32
|
+
flex-shrink: 0;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
width: 36px;
|
|
36
|
+
height: 36px;
|
|
37
|
+
border-radius: 50%;
|
|
38
|
+
background-color: var(--color-primary-green1);
|
|
39
|
+
|
|
40
|
+
& [data-icon='icon-trophy'] {
|
|
41
|
+
width: 18px;
|
|
42
|
+
height: 18px;
|
|
43
|
+
|
|
44
|
+
path {
|
|
45
|
+
fill: var(--color-neutrals-white);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
& [data-icon='icon-btn-feature-groups'] path {
|
|
50
|
+
&:first-child {
|
|
51
|
+
stroke: var(--color-neutrals-white);
|
|
52
|
+
}
|
|
53
|
+
&:not(:first-child) {
|
|
54
|
+
fill: var(--color-neutrals-white);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
`, c = t.div`
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
font-weight: var(--font-weight-default);
|
|
60
|
+
line-height: 18px;
|
|
61
|
+
letter-spacing: -0.154px;
|
|
62
|
+
`, p = t.button`
|
|
63
|
+
margin: 0 auto;
|
|
64
|
+
padding: 8px 16px;
|
|
65
|
+
color: var(--color-primary-green1);
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
font-weight: 400;
|
|
68
|
+
line-height: 16px;
|
|
69
|
+
border: initial;
|
|
70
|
+
background: initial;
|
|
71
|
+
outline: initial;
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
`;
|
|
74
|
+
export {
|
|
75
|
+
e as Container,
|
|
76
|
+
n as Content,
|
|
77
|
+
a as RuleIcon,
|
|
78
|
+
c as RuleText,
|
|
79
|
+
l as RulesItem,
|
|
80
|
+
r as RulesList,
|
|
81
|
+
p as TermsButton,
|
|
82
|
+
o as Title
|
|
83
|
+
};
|
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
export declare const Container: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
3
3
|
export declare const Content: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
4
4
|
export declare const OnboardingHeader: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
5
|
-
export declare const LeftBlock: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
6
|
-
export declare const RightBlock: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
7
|
-
export declare const GameIcon: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLImageElement> & import("react").ImgHTMLAttributes<HTMLImageElement> & Record<never, unknown>>;
|
|
8
|
-
export declare const SponsorLogo: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLImageElement> & import("react").ImgHTMLAttributes<HTMLImageElement> & Record<never, unknown>>;
|
|
9
5
|
export declare const CloseBtn: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLButtonElement> & import("react").ButtonHTMLAttributes<HTMLButtonElement> & Record<never, unknown>>;
|
|
10
|
-
export declare const IconClose:
|
|
11
|
-
export declare const
|
|
6
|
+
export declare const IconClose: any;
|
|
7
|
+
export declare const OnboardingFooter: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
8
|
+
export declare const OnboardingActionBtn: any;
|
|
@@ -1,69 +1,54 @@
|
|
|
1
|
-
import { styled as
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { styled as n } from "@linaria/react";
|
|
2
|
+
import { Button as o } from "../../button/index.js";
|
|
3
|
+
import { SvgIcon as t } from "../../icons/index.js";
|
|
4
|
+
import "react/jsx-runtime";
|
|
5
|
+
import "../../button/styles.js";
|
|
6
|
+
import "react";
|
|
7
|
+
const c = n.div`
|
|
4
8
|
display: flex;
|
|
5
|
-
color: var(--color-white);
|
|
6
9
|
flex-direction: column;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
`, e = t.div`
|
|
10
|
-
flex: 1;
|
|
11
|
-
width: 100%;
|
|
12
|
-
margin-bottom: 20px;
|
|
13
|
-
`, i = t.div`
|
|
10
|
+
background-color: var(--color-neutrals-white);
|
|
11
|
+
`, a = n.div`
|
|
14
12
|
display: flex;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
align-items: center;
|
|
19
|
-
border-bottom: 1px solid #22262b;
|
|
20
|
-
`, r = t.div`
|
|
13
|
+
flex-grow: 1;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
`, s = n.div`
|
|
21
16
|
display: flex;
|
|
22
17
|
align-items: center;
|
|
23
|
-
justify-content:
|
|
24
|
-
|
|
18
|
+
justify-content: space-between;
|
|
19
|
+
padding: 12px 12px 12px 16px;
|
|
20
|
+
`, x = n.button`
|
|
25
21
|
display: flex;
|
|
26
22
|
align-items: center;
|
|
27
|
-
`, s = t.img`
|
|
28
|
-
width: 24px;
|
|
29
|
-
height: 24px;
|
|
30
|
-
`, l = t.img`
|
|
31
|
-
height: 24px;
|
|
32
|
-
`, d = t.button`
|
|
33
|
-
border: none;
|
|
34
|
-
outline: none;
|
|
35
|
-
background-color: transparent;
|
|
36
|
-
cursor: pointer;
|
|
37
|
-
display: flex;
|
|
38
23
|
justify-content: center;
|
|
39
|
-
|
|
40
|
-
|
|
24
|
+
margin-left: auto;
|
|
25
|
+
padding: 0;
|
|
41
26
|
width: 24px;
|
|
42
27
|
height: 24px;
|
|
43
|
-
`, a = t.button`
|
|
44
|
-
color: var(--color-white);
|
|
45
|
-
width: 100%;
|
|
46
28
|
border: none;
|
|
29
|
+
background-color: transparent;
|
|
47
30
|
outline: none;
|
|
48
|
-
background-color: var(--color-green-primary-btn);
|
|
49
31
|
cursor: pointer;
|
|
50
|
-
|
|
32
|
+
`, g = n(t)`
|
|
33
|
+
width: 10px;
|
|
34
|
+
height: 10px;
|
|
35
|
+
`, f = n.div`
|
|
51
36
|
display: flex;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
37
|
+
padding: 0 16px 16px 16px;
|
|
38
|
+
`, m = n(o)`
|
|
39
|
+
flex-grow: 1;
|
|
40
|
+
padding: 0 16px;
|
|
41
|
+
height: 44px;
|
|
42
|
+
font-size: 14px;
|
|
43
|
+
line-height: 20px;
|
|
44
|
+
cursor: pointer;
|
|
57
45
|
`;
|
|
58
46
|
export {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
i as OnboardingHeader,
|
|
67
|
-
c as RightBlock,
|
|
68
|
-
l as SponsorLogo
|
|
47
|
+
x as CloseBtn,
|
|
48
|
+
c as Container,
|
|
49
|
+
a as Content,
|
|
50
|
+
g as IconClose,
|
|
51
|
+
m as OnboardingActionBtn,
|
|
52
|
+
f as OnboardingFooter,
|
|
53
|
+
s as OnboardingHeader
|
|
69
54
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsxs as e, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { SvgIcon as m } from "../../../../icons/index.js";
|
|
3
|
+
import { Container as c, ImageContainer as a, Image as s, Details as d, Name as l, UserName as p } from "./styles.js";
|
|
4
|
+
import "@linaria/react";
|
|
5
|
+
import "react";
|
|
6
|
+
const j = ({ image: i, name: n, userName: o, verified: t }) => /* @__PURE__ */ e(c, { children: [
|
|
7
|
+
/* @__PURE__ */ r(a, { children: /* @__PURE__ */ r(s, { src: i }) }),
|
|
8
|
+
/* @__PURE__ */ e(d, { children: [
|
|
9
|
+
/* @__PURE__ */ e(l, { children: [
|
|
10
|
+
n,
|
|
11
|
+
" ",
|
|
12
|
+
t && /* @__PURE__ */ r(m, { name: "icon-twitter-verified" })
|
|
13
|
+
] }),
|
|
14
|
+
/* @__PURE__ */ r(p, { children: o })
|
|
15
|
+
] })
|
|
16
|
+
] });
|
|
17
|
+
export {
|
|
18
|
+
j as Account
|
|
19
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const Container: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
3
|
+
export declare const ImageContainer: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
4
|
+
export declare const Image: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLImageElement> & import("react").ImgHTMLAttributes<HTMLImageElement> & Record<never, unknown>>;
|
|
5
|
+
export declare const Details: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
6
|
+
export declare const Name: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
7
|
+
export declare const UserName: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { styled as e } from "@linaria/react";
|
|
2
|
+
const i = e.div`
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
column-gap: 8px;
|
|
6
|
+
`, n = e.div`
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
`, o = e.img`
|
|
11
|
+
width: 46px;
|
|
12
|
+
height: 46px;
|
|
13
|
+
object-fit: cover;
|
|
14
|
+
object-position: center;
|
|
15
|
+
border-radius: 50%;
|
|
16
|
+
`, a = e.div`
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
row-gap: 2px;
|
|
20
|
+
color: var(--color-neutrals-gray9);
|
|
21
|
+
font-weight: var(--font-weight-default);
|
|
22
|
+
`, r = e.div`
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
column-gap: 4px;
|
|
26
|
+
font-size: 12px;
|
|
27
|
+
font-family: var(--font-serif);
|
|
28
|
+
`, l = e.div`
|
|
29
|
+
font-size: 12px;
|
|
30
|
+
line-height: 20px;
|
|
31
|
+
`;
|
|
32
|
+
export {
|
|
33
|
+
i as Container,
|
|
34
|
+
a as Details,
|
|
35
|
+
o as Image,
|
|
36
|
+
n as ImageContainer,
|
|
37
|
+
r as Name,
|
|
38
|
+
l as UserName
|
|
39
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsxs as i, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { Account as m } from "./account/index.js";
|
|
3
|
+
import { Container as c, DateTime as p, Quote as d, Details as h, Body as l, Image as s, Footer as u, ActionButton as a } from "./styles.js";
|
|
4
|
+
import "../../../icons/index.js";
|
|
5
|
+
import "@linaria/react";
|
|
6
|
+
import "react";
|
|
7
|
+
import "./account/styles.js";
|
|
8
|
+
import "../../../button/index.js";
|
|
9
|
+
import "../../../button/styles.js";
|
|
10
|
+
const g = ({ title: o, image: t, body: e, account: n }) => /* @__PURE__ */ i(c, { children: [
|
|
11
|
+
/* @__PURE__ */ r(p, { children: "Sun, Nov 14 · 3:52 PM" }),
|
|
12
|
+
o && /* @__PURE__ */ r(d, { children: o }),
|
|
13
|
+
/* @__PURE__ */ i(h, { children: [
|
|
14
|
+
/* @__PURE__ */ r(m, { ...n }),
|
|
15
|
+
/* @__PURE__ */ r(l, { children: e }),
|
|
16
|
+
t && /* @__PURE__ */ r(s, { src: t })
|
|
17
|
+
] }),
|
|
18
|
+
/* @__PURE__ */ r(u, { children: /* @__PURE__ */ r(a, { children: "View Insight" }) })
|
|
19
|
+
] });
|
|
20
|
+
export {
|
|
21
|
+
g as Twitter
|
|
22
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const Container: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
3
|
+
export declare const DateTime: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
4
|
+
export declare const Quote: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLQuoteElement> & import("react").BlockquoteHTMLAttributes<HTMLQuoteElement> & Record<never, unknown>>;
|
|
5
|
+
export declare const Details: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
6
|
+
export declare const Body: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
7
|
+
export declare const Image: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLImageElement> & import("react").ImgHTMLAttributes<HTMLImageElement> & Record<never, unknown>>;
|
|
8
|
+
export declare const Footer: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
9
|
+
export declare const ActionButton: any;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { styled as o } from "@linaria/react";
|
|
2
|
+
import { Button as t } from "../../../button/index.js";
|
|
3
|
+
import "react/jsx-runtime";
|
|
4
|
+
import "../../../button/styles.js";
|
|
5
|
+
const p = o.div`
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
row-gap: 8px;
|
|
9
|
+
padding: 12px 16px 16px 16px;
|
|
10
|
+
border-radius: 8px;
|
|
11
|
+
border-bottom: 1px solid var(--color-neutrals-gray3);
|
|
12
|
+
background: var(--color-neutrals-white);
|
|
13
|
+
`, a = o.div`
|
|
14
|
+
color: var(--color-neutrals-gray7);
|
|
15
|
+
font-size: 12px;
|
|
16
|
+
font-weight: var(--font-weight-default);
|
|
17
|
+
line-height: 18px;
|
|
18
|
+
`, l = o.blockquote`
|
|
19
|
+
display: flex;
|
|
20
|
+
column-gap: 12px;
|
|
21
|
+
padding: 4px 16px 8px 0;
|
|
22
|
+
color: var(--color-primary-green2);
|
|
23
|
+
font-size: 12px;
|
|
24
|
+
font-family: var(--font-serif);
|
|
25
|
+
font-weight: var(--font-weight-default);
|
|
26
|
+
|
|
27
|
+
&:before {
|
|
28
|
+
content: '';
|
|
29
|
+
width: 2px;
|
|
30
|
+
background-color: var(--color-primary-green2);
|
|
31
|
+
}
|
|
32
|
+
`, d = o.div`
|
|
33
|
+
display: flex;
|
|
34
|
+
flex-direction: column;
|
|
35
|
+
row-gap: 12px;
|
|
36
|
+
`, x = o.div`
|
|
37
|
+
color: var(--color-neutrals-gray9);
|
|
38
|
+
font-size: 12px;
|
|
39
|
+
font-weight: var(--font-weight-default);
|
|
40
|
+
line-height: 18px;
|
|
41
|
+
`, c = o.img`
|
|
42
|
+
max-width: 100%;
|
|
43
|
+
border-radius: 8px;
|
|
44
|
+
`, f = o.div`
|
|
45
|
+
display: flex;
|
|
46
|
+
flex-direction: column;
|
|
47
|
+
padding-top: 8px;
|
|
48
|
+
`, s = o(t)`
|
|
49
|
+
height: 44px;
|
|
50
|
+
padding: 0 16px;
|
|
51
|
+
font-size: 14px;
|
|
52
|
+
line-height: 20px;
|
|
53
|
+
cursor: pointer;
|
|
54
|
+
`;
|
|
55
|
+
export {
|
|
56
|
+
s as ActionButton,
|
|
57
|
+
x as Body,
|
|
58
|
+
p as Container,
|
|
59
|
+
a as DateTime,
|
|
60
|
+
d as Details,
|
|
61
|
+
f as Footer,
|
|
62
|
+
c as Image,
|
|
63
|
+
l as Quote
|
|
64
|
+
};
|
package/lib/ui/icons/index.d.ts
CHANGED
|
@@ -2,14 +2,15 @@
|
|
|
2
2
|
export declare const icons: {
|
|
3
3
|
'invite-game-icon': any;
|
|
4
4
|
'icon-trophy': any;
|
|
5
|
-
'icon-play': any;
|
|
6
5
|
'icon-trophy-green': any;
|
|
7
6
|
'icon-trivia': any;
|
|
8
7
|
'icon-thumb-down': any;
|
|
8
|
+
'icon-thumb-up': any;
|
|
9
9
|
'icon-star': any;
|
|
10
10
|
'icon-prediction': any;
|
|
11
11
|
'icon-insight': any;
|
|
12
12
|
'icon-poll': any;
|
|
13
|
+
'icon-play': any;
|
|
13
14
|
'icon-masters-logo': any;
|
|
14
15
|
'icon-logout': any;
|
|
15
16
|
'icon-link': any;
|
|
@@ -18,20 +19,25 @@ export declare const icons: {
|
|
|
18
19
|
'icon-friends': any;
|
|
19
20
|
'icon-exit': any;
|
|
20
21
|
'icon-default-user-avatar': any;
|
|
22
|
+
'icon-copy': any;
|
|
21
23
|
'icon-cross': any;
|
|
22
24
|
'icon-close': any;
|
|
23
25
|
'icon-close-btn-white': any;
|
|
26
|
+
'icon-close-btn-gray': any;
|
|
24
27
|
'icon-circle-arrow-right': any;
|
|
25
28
|
'icon-chevron': any;
|
|
26
29
|
'icon-chevron-white-left': any;
|
|
27
30
|
'icon-chevron-left': any;
|
|
31
|
+
'icon-check': any;
|
|
28
32
|
'icon-check-white': any;
|
|
29
33
|
'icon-check-green': any;
|
|
30
34
|
'icon-btn-channels': any;
|
|
31
35
|
'icon-btn-feature-groups': any;
|
|
32
36
|
'icon-btn-leaderboard': any;
|
|
33
|
-
'icon-check': any;
|
|
34
37
|
'icon-arrow': any;
|
|
38
|
+
'icon-facebook': any;
|
|
39
|
+
'icon-twitter': any;
|
|
40
|
+
'icon-twitter-verified': any;
|
|
35
41
|
correct: any;
|
|
36
42
|
incorrect: any;
|
|
37
43
|
selected: any;
|