coinsperformance 0.0.5 → 0.0.7

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.
Files changed (58) hide show
  1. package/dist/components/Molecules/ExperientialComponents/NewActivityBanner.d.ts +18 -0
  2. package/dist/components/Molecules/ExperientialComponents/NewActivityBanner.js +78 -0
  3. package/dist/components/Molecules/ExperientialComponents/NewActivityBanner.js.map +1 -0
  4. package/dist/components/Molecules/ExperientialComponents/NewActivityCard.d.ts +25 -0
  5. package/dist/components/Molecules/ExperientialComponents/NewActivityCard.js +72 -0
  6. package/dist/components/Molecules/ExperientialComponents/NewActivityCard.js.map +1 -0
  7. package/dist/components/Molecules/ExperientialComponents/NewAddPostCard.d.ts +9 -0
  8. package/dist/components/Molecules/ExperientialComponents/NewAddPostCard.js +29 -0
  9. package/dist/components/Molecules/ExperientialComponents/NewAddPostCard.js.map +1 -0
  10. package/dist/components/Molecules/ExperientialComponents/NewPostCard.d.ts +27 -0
  11. package/dist/components/Molecules/ExperientialComponents/NewPostCard.js +89 -0
  12. package/dist/components/Molecules/ExperientialComponents/NewPostCard.js.map +1 -0
  13. package/dist/components/Molecules/ExperientialComponents/NewPostInfo.d.ts +29 -0
  14. package/dist/components/Molecules/ExperientialComponents/NewPostInfo.js +217 -0
  15. package/dist/components/Molecules/ExperientialComponents/NewPostInfo.js.map +1 -0
  16. package/dist/components/Molecules/ExperientialComponents/NewPostInfoStyles.d.ts +441 -0
  17. package/dist/components/Molecules/ExperientialComponents/NewPostInfoStyles.js +416 -0
  18. package/dist/components/Molecules/ExperientialComponents/NewPostInfoStyles.js.map +1 -0
  19. package/dist/components/Molecules/ExperientialComponents/NewPostList.d.ts +51 -0
  20. package/dist/components/Molecules/ExperientialComponents/NewPostList.js +79 -0
  21. package/dist/components/Molecules/ExperientialComponents/NewPostList.js.map +1 -0
  22. package/dist/components/Molecules/ExperientialComponents/newActivityBannerStyles.d.ts +120 -0
  23. package/dist/components/Molecules/ExperientialComponents/newActivityBannerStyles.js +124 -0
  24. package/dist/components/Molecules/ExperientialComponents/newActivityBannerStyles.js.map +1 -0
  25. package/dist/components/Molecules/ExperientialComponents/newActivityCardStyles.d.ts +86 -0
  26. package/dist/components/Molecules/ExperientialComponents/newActivityCardStyles.js +91 -0
  27. package/dist/components/Molecules/ExperientialComponents/newActivityCardStyles.js.map +1 -0
  28. package/dist/components/Molecules/ExperientialComponents/newAddPostCardStyles.d.ts +107 -0
  29. package/dist/components/Molecules/ExperientialComponents/newAddPostCardStyles.js +110 -0
  30. package/dist/components/Molecules/ExperientialComponents/newAddPostCardStyles.js.map +1 -0
  31. package/dist/components/Molecules/ExperientialComponents/newPostCardStyles.d.ts +197 -0
  32. package/dist/components/Molecules/ExperientialComponents/newPostCardStyles.js +201 -0
  33. package/dist/components/Molecules/ExperientialComponents/newPostCardStyles.js.map +1 -0
  34. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.d.ts +1 -1
  35. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js +3 -2
  36. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js.map +1 -1
  37. package/dist/components/Molecules/SLI/SLIChart.d.ts +4 -0
  38. package/dist/components/Molecules/SLI/SLIChart.js +237 -0
  39. package/dist/components/Molecules/SLI/SLIChart.js.map +1 -0
  40. package/dist/components/Molecules/SLI/data.d.ts +14 -0
  41. package/dist/components/Molecules/SLI/data.js +236 -0
  42. package/dist/components/Molecules/SLI/data.js.map +1 -0
  43. package/dist/components/Molecules/SLI/sliUtils.d.ts +44 -0
  44. package/dist/components/Molecules/SLI/sliUtils.js +55 -0
  45. package/dist/components/Molecules/SLI/sliUtils.js.map +1 -0
  46. package/dist/components/Organisms/NewActivityList/NewActivityList.d.ts +10 -0
  47. package/dist/components/Organisms/NewActivityList/NewActivityList.js +35 -0
  48. package/dist/components/Organisms/NewActivityList/NewActivityList.js.map +1 -0
  49. package/dist/components/Organisms/PostDetails/ImageGallery.d.ts +1 -1
  50. package/dist/components/Organisms/PostDetails/ImageGallery.js +15 -5
  51. package/dist/components/Organisms/PostDetails/ImageGallery.js.map +1 -1
  52. package/dist/index.d.ts +7 -0
  53. package/dist/index.js +15 -1
  54. package/dist/index.js.map +1 -1
  55. package/dist/utils/common-utils.d.ts +2 -0
  56. package/dist/utils/common-utils.js +151 -1
  57. package/dist/utils/common-utils.js.map +1 -1
  58. package/package.json +1 -1
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.newActivityBannerStyles = void 0;
4
+ exports.newActivityBannerStyles = {
5
+ mainContainer: {
6
+ display: "flex",
7
+ flexDirection: "column",
8
+ width: "100%",
9
+ height: "auto",
10
+ borderRadius: "12px",
11
+ border: "1px solid rgba(0,0,0,0.1)",
12
+ backgroundColor: "#e9e5ff",
13
+ padding: "16px",
14
+ gap: "8px",
15
+ },
16
+ contentSection: {
17
+ display: "flex",
18
+ flexDirection: "column",
19
+ gap: "8px",
20
+ padding: "12px 24px",
21
+ width: "100%",
22
+ },
23
+ headerSection: {
24
+ display: "flex",
25
+ flexDirection: "column",
26
+ gap: "12px",
27
+ alignItems: "flex-start",
28
+ },
29
+ subjectTopicRow: {
30
+ display: "flex",
31
+ gap: "4px",
32
+ alignItems: "flex-start",
33
+ fontSize: "16px",
34
+ },
35
+ subjectName: {
36
+ fontFamily: "Poppins",
37
+ fontWeight: "700",
38
+ fontSize: "16px",
39
+ lineHeight: "28px",
40
+ letterSpacing: 0,
41
+ color: "#312961", // Primary/900 color from Figma
42
+ },
43
+ topicName: {
44
+ fontFamily: "Poppins",
45
+ fontWeight: "500",
46
+ fontSize: "16px",
47
+ lineHeight: "28px",
48
+ letterSpacing: 0,
49
+ color: "#263238", // Text primary color from Figma
50
+ },
51
+ activityTitle: {
52
+ fontFamily: "Poppins",
53
+ fontWeight: "600",
54
+ fontSize: "24px",
55
+ lineHeight: "28px",
56
+ letterSpacing: 0,
57
+ color: "#263238", // Text primary color from Figma
58
+ },
59
+ description: {
60
+ fontFamily: "Poppins",
61
+ fontWeight: "400",
62
+ fontSize: "16px",
63
+ lineHeight: "24px",
64
+ letterSpacing: 0,
65
+ color: "#353535",
66
+ width: "100%",
67
+ minWidth: "100%",
68
+ },
69
+ readMoreLink: {
70
+ fontFamily: "Poppins",
71
+ fontWeight: "700",
72
+ fontSize: "16px",
73
+ lineHeight: "24px",
74
+ letterSpacing: 0,
75
+ color: "#130159",
76
+ cursor: "pointer",
77
+ textDecoration: "none",
78
+ },
79
+ attachmentHeading: {
80
+ color: "#312961",
81
+ fontFamily: "Poppins",
82
+ fontSize: "12px",
83
+ fontWeight: "700",
84
+ lineHeight: "28px",
85
+ },
86
+ attachmentContainer: {
87
+ display: "flex",
88
+ gap: "12px",
89
+ alignItems: "center",
90
+ },
91
+ attachmentFrame: {
92
+ backgroundColor: "#f4f2ff",
93
+ borderRadius: "4px",
94
+ padding: "4px",
95
+ display: "flex",
96
+ alignItems: "center",
97
+ justifyContent: "center",
98
+ cursor: "pointer",
99
+ },
100
+ attachmentImageFrame: {
101
+ width: "66px",
102
+ height: "64px",
103
+ borderRadius: "4px",
104
+ overflow: "hidden",
105
+ position: "relative",
106
+ },
107
+ attachmentIconFrame: {
108
+ width: "74px",
109
+ height: "72px",
110
+ display: "flex",
111
+ alignItems: "center",
112
+ justifyContent: "center",
113
+ },
114
+ attachmentIcon: {
115
+ width: "52.804px",
116
+ height: "57.877px",
117
+ },
118
+ attachmentImage: {
119
+ width: "100%",
120
+ height: "100%",
121
+ objectFit: "cover",
122
+ },
123
+ };
124
+ //# sourceMappingURL=newActivityBannerStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"newActivityBannerStyles.js","sourceRoot":"","sources":["../../../../src/components/Molecules/ExperientialComponents/newActivityBannerStyles.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,86 @@
1
+ export declare const newActivityCardStyles: {
2
+ mainContainer: {
3
+ display: string;
4
+ flexDirection: string;
5
+ width: {
6
+ base: string;
7
+ md: string;
8
+ };
9
+ height: string;
10
+ borderRadius: string;
11
+ border: string;
12
+ paddingBottom: string;
13
+ gap: string;
14
+ };
15
+ headerImage: {
16
+ borderRadius: string;
17
+ width: string;
18
+ };
19
+ subjectSection: {
20
+ marginBottom: string;
21
+ };
22
+ subjectName: {
23
+ fontFamily: string;
24
+ fontWeight: string;
25
+ fontSize: string;
26
+ lineHeight: string;
27
+ letterSpacing: number;
28
+ color: string;
29
+ };
30
+ topicName: {
31
+ fontFamily: string;
32
+ fontWeight: string;
33
+ fontSize: string;
34
+ lineHeight: string;
35
+ letterSpacing: number;
36
+ color: string;
37
+ };
38
+ mandatoryText: {
39
+ borderRadius: string;
40
+ border: string;
41
+ background: string;
42
+ padding: string;
43
+ fontFamily: string;
44
+ fontWeight: string;
45
+ fontSize: string;
46
+ letterSpacing: number;
47
+ color: string;
48
+ textAlign: string;
49
+ height: string;
50
+ };
51
+ activityTitle: {
52
+ fontFamily: string;
53
+ fontWeight: string;
54
+ fontSize: string;
55
+ lineHeight: string;
56
+ letterSpacing: number;
57
+ color: string;
58
+ };
59
+ description: {
60
+ fontFamily: string;
61
+ fontWeight: string;
62
+ fontSize: string;
63
+ lineHeight: string;
64
+ letterSpacing: number;
65
+ color: string;
66
+ };
67
+ emojiSection: {
68
+ alignItems: string;
69
+ justifyContent: string;
70
+ gap: string;
71
+ };
72
+ emojiText: {
73
+ color: string;
74
+ fontFamily: string;
75
+ fontSize: string;
76
+ fontWeight: string;
77
+ lineHeight: string;
78
+ };
79
+ attachmentHeading: {
80
+ color: string;
81
+ fontFamily: string;
82
+ fontSize: string;
83
+ fontWeight: string;
84
+ lineHeight: string;
85
+ };
86
+ };
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.newActivityCardStyles = void 0;
4
+ exports.newActivityCardStyles = {
5
+ mainContainer: {
6
+ display: "flex",
7
+ flexDirection: "column",
8
+ width: { base: "100%", md: "auto" },
9
+ // maxWidth: "350px",
10
+ height: "auto",
11
+ borderRadius: "12px",
12
+ border: "1px solid #0000001A",
13
+ paddingBottom: "24px",
14
+ gap: "8px",
15
+ },
16
+ headerImage: {
17
+ borderRadius: "8px",
18
+ // width: { base: "100%", md: "auto" },
19
+ width: "100%",
20
+ // maxwidth: "330px",
21
+ },
22
+ subjectSection: {
23
+ // justifyContent: "space-between",
24
+ marginBottom: "4px",
25
+ },
26
+ subjectName: {
27
+ fontFamily: "Poppins",
28
+ fontWeight: "700",
29
+ fontSize: "12px",
30
+ lineHeight: "28px",
31
+ letterSpacing: 0,
32
+ color: "#312961",
33
+ },
34
+ topicName: {
35
+ fontFamily: "Poppins",
36
+ fontWeight: "500",
37
+ fontSize: "12px",
38
+ lineHeight: "28px",
39
+ letterSpacing: 0,
40
+ color: "#263238",
41
+ },
42
+ mandatoryText: {
43
+ borderRadius: "4px",
44
+ border: "1px solid #A99DED",
45
+ background: "#DFDAFE",
46
+ padding: "4px",
47
+ fontFamily: "Poppins",
48
+ fontWeight: "400",
49
+ fontSize: "10px",
50
+ letterSpacing: 0,
51
+ color: "#263238",
52
+ textAlign: "center",
53
+ height: "fit-content",
54
+ },
55
+ activityTitle: {
56
+ fontFamily: "Poppins",
57
+ fontWeight: "600",
58
+ fontSize: "16px",
59
+ lineHeight: "28px",
60
+ letterSpacing: 0,
61
+ color: "#263238",
62
+ },
63
+ description: {
64
+ fontFamily: "Poppins",
65
+ fontWeight: "400",
66
+ fontSize: "12px",
67
+ lineHeight: "24px",
68
+ letterSpacing: 0,
69
+ color: "#666A6B",
70
+ },
71
+ emojiSection: {
72
+ alignItems: "flex-end",
73
+ justifyContent: "flex-end",
74
+ gap: "24px",
75
+ },
76
+ emojiText: {
77
+ color: "#666A6B",
78
+ fontFamily: "Poppins",
79
+ fontSize: "12px",
80
+ fontWeight: "500",
81
+ lineHeight: "20px",
82
+ },
83
+ attachmentHeading: {
84
+ color: "#312961",
85
+ fontFamily: "Poppins",
86
+ fontSize: "12px",
87
+ fontWeight: "700",
88
+ lineHeight: "28px",
89
+ },
90
+ };
91
+ //# sourceMappingURL=newActivityCardStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"newActivityCardStyles.js","sourceRoot":"","sources":["../../../../src/components/Molecules/ExperientialComponents/newActivityCardStyles.tsx"],"names":[],"mappings":";;;AAAa,QAAA,qBAAqB,GAAG;IACnC,aAAa,EAAE;QACb,OAAO,EAAE,MAAM;QACf,aAAa,EAAE,QAAQ;QACvB,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE;QACnC,qBAAqB;QACrB,MAAM,EAAE,MAAM;QACd,YAAY,EAAE,MAAM;QACpB,MAAM,EAAE,qBAAqB;QAC7B,aAAa,EAAE,MAAM;QACrB,GAAG,EAAE,KAAK;KACX;IACD,WAAW,EAAE;QACX,YAAY,EAAE,KAAK;QACnB,uCAAuC;QACvC,KAAK,EAAE,MAAM;QACb,qBAAqB;KACtB;IACD,cAAc,EAAE;QACd,mCAAmC;QACnC,YAAY,EAAE,KAAK;KACpB;IACD,WAAW,EAAE;QACX,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,aAAa,EAAE,CAAC;QAChB,KAAK,EAAE,SAAS;KACjB;IACD,SAAS,EAAE;QACT,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,aAAa,EAAE,CAAC;QAChB,KAAK,EAAE,SAAS;KACjB;IACD,aAAa,EAAE;QACb,YAAY,EAAE,KAAK;QACnB,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,SAAS;QACrB,OAAO,EAAE,KAAK;QACd,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,aAAa,EAAE,CAAC;QAChB,KAAK,EAAE,SAAS;QAChB,SAAS,EAAE,QAAQ;QACnB,MAAM,EAAE,aAAa;KACtB;IACD,aAAa,EAAE;QACb,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,aAAa,EAAE,CAAC;QAChB,KAAK,EAAE,SAAS;KACjB;IACD,WAAW,EAAE;QACX,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,aAAa,EAAE,CAAC;QAChB,KAAK,EAAE,SAAS;KACjB;IACD,YAAY,EAAE;QACZ,UAAU,EAAE,UAAU;QACtB,cAAc,EAAE,UAAU;QAC1B,GAAG,EAAE,MAAM;KACZ;IACD,SAAS,EAAE;QACT,KAAK,EAAE,SAAS;QAChB,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,KAAK;QACjB,UAAU,EAAE,MAAM;KACnB;IACD,iBAAiB,EAAE;QACjB,KAAK,EAAE,SAAS;QAChB,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,KAAK;QACjB,UAAU,EAAE,MAAM;KACnB;CACF,CAAC"}
@@ -0,0 +1,107 @@
1
+ export declare const newAddPostCardStyles: {
2
+ mainContainer: {
3
+ display: string;
4
+ flexDirection: string;
5
+ width: {
6
+ base: string;
7
+ md: string;
8
+ };
9
+ height: string;
10
+ padding: string;
11
+ gap: string;
12
+ borderRadius: string;
13
+ border: string;
14
+ };
15
+ contentContainer: {
16
+ display: string;
17
+ flexDirection: string;
18
+ width: string;
19
+ height: string;
20
+ gap: string;
21
+ };
22
+ topSection: {
23
+ display: string;
24
+ flexDirection: string;
25
+ alignItems: string;
26
+ justifyContent: string;
27
+ width: string;
28
+ height: string;
29
+ backgroundColor: string;
30
+ borderRadius: string;
31
+ border: string;
32
+ padding: string;
33
+ position: string;
34
+ };
35
+ characterIcon: {
36
+ width: string;
37
+ height: string;
38
+ flexShrink: number;
39
+ };
40
+ readyText: {
41
+ fontFamily: string;
42
+ fontWeight: string;
43
+ fontSize: string;
44
+ lineHeight: string;
45
+ color: string;
46
+ textAlign: string;
47
+ marginLeft: string;
48
+ width: string;
49
+ height: string;
50
+ };
51
+ descriptionText: {
52
+ fontFamily: string;
53
+ fontWeight: string;
54
+ fontSize: string;
55
+ lineHeight: string;
56
+ color: string;
57
+ textAlign: string;
58
+ width: string;
59
+ height: string;
60
+ };
61
+ buttonContainer: {
62
+ display: string;
63
+ justifyContent: string;
64
+ alignItems: string;
65
+ };
66
+ startButton: {
67
+ display: string;
68
+ alignItems: string;
69
+ justifyContent: string;
70
+ gap: string;
71
+ width: string;
72
+ height: string;
73
+ backgroundColor: string;
74
+ borderRadius: string;
75
+ padding: string;
76
+ cursor: string;
77
+ boxShadow: string;
78
+ border: string;
79
+ "&:hover": {
80
+ backgroundColor: string;
81
+ };
82
+ "&:active": {
83
+ backgroundColor: string;
84
+ };
85
+ };
86
+ buttonText: {
87
+ fontFamily: string;
88
+ fontWeight: string;
89
+ fontSize: string;
90
+ lineHeight: string;
91
+ color: string;
92
+ textAlign: string;
93
+ whiteSpace: string;
94
+ };
95
+ buttonIcon: {
96
+ width: string;
97
+ height: string;
98
+ display: string;
99
+ alignItems: string;
100
+ justifyContent: string;
101
+ };
102
+ chevronIcon: {
103
+ width: string;
104
+ height: string;
105
+ color: string;
106
+ };
107
+ };
@@ -0,0 +1,110 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.newAddPostCardStyles = void 0;
4
+ exports.newAddPostCardStyles = {
5
+ mainContainer: {
6
+ display: "flex",
7
+ flexDirection: "column",
8
+ width: { base: "100%", md: "auto" },
9
+ height: "auto",
10
+ padding: "24px",
11
+ gap: "16px",
12
+ // maxWidth: "350px",
13
+ borderRadius: "8px",
14
+ border: "1px solid #E9E5FF",
15
+ },
16
+ contentContainer: {
17
+ display: "flex",
18
+ flexDirection: "column",
19
+ width: "auto",
20
+ height: "auto",
21
+ gap: "12px",
22
+ },
23
+ topSection: {
24
+ display: "flex",
25
+ flexDirection: "row",
26
+ alignItems: "center",
27
+ justifyContent: "center",
28
+ width: "auto",
29
+ height: "auto",
30
+ backgroundColor: "#ffffff",
31
+ borderRadius: "8px",
32
+ border: "1px solid #E0E0E0",
33
+ padding: "14px 37px",
34
+ position: "relative",
35
+ },
36
+ characterIcon: {
37
+ width: "62px",
38
+ height: "70px",
39
+ flexShrink: 0,
40
+ },
41
+ readyText: {
42
+ fontFamily: "Poppins",
43
+ fontWeight: "700",
44
+ fontSize: "14px",
45
+ lineHeight: "20px",
46
+ color: "#291F79",
47
+ textAlign: "center",
48
+ marginLeft: "11px",
49
+ width: "auto",
50
+ height: "auto",
51
+ },
52
+ descriptionText: {
53
+ fontFamily: "Poppins",
54
+ fontWeight: "400",
55
+ fontSize: "14px",
56
+ lineHeight: "20px",
57
+ color: "#666A6B",
58
+ textAlign: "left",
59
+ width: "auto",
60
+ height: "auto",
61
+ },
62
+ buttonContainer: {
63
+ display: "flex",
64
+ justifyContent: "flex-end",
65
+ alignItems: "center",
66
+ // marginTop: "16px",
67
+ },
68
+ startButton: {
69
+ display: "flex",
70
+ alignItems: "center",
71
+ justifyContent: "flex-end",
72
+ gap: "4px",
73
+ width: "auto",
74
+ height: "auto",
75
+ backgroundColor: "#5f4dc7",
76
+ borderRadius: "6px",
77
+ padding: "8px 16px",
78
+ cursor: "pointer",
79
+ boxShadow: "1px 1px 4px 0px rgba(23,23,23,0.4)",
80
+ border: "none",
81
+ "&:hover": {
82
+ backgroundColor: "#4a3ba5",
83
+ },
84
+ "&:active": {
85
+ backgroundColor: "#3d2f88",
86
+ },
87
+ },
88
+ buttonText: {
89
+ fontFamily: "Poppins",
90
+ fontWeight: "600",
91
+ fontSize: "12px",
92
+ lineHeight: "16px",
93
+ color: "#f4f2ff",
94
+ textAlign: "center",
95
+ whiteSpace: "nowrap",
96
+ },
97
+ buttonIcon: {
98
+ width: "16px",
99
+ height: "16px",
100
+ display: "flex",
101
+ alignItems: "center",
102
+ justifyContent: "center",
103
+ },
104
+ chevronIcon: {
105
+ width: "8px",
106
+ height: "8px",
107
+ color: "#f4f2ff",
108
+ },
109
+ };
110
+ //# sourceMappingURL=newAddPostCardStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"newAddPostCardStyles.js","sourceRoot":"","sources":["../../../../src/components/Molecules/ExperientialComponents/newAddPostCardStyles.tsx"],"names":[],"mappings":";;;AAAa,QAAA,oBAAoB,GAAG;IAClC,aAAa,EAAE;QACb,OAAO,EAAE,MAAM;QACf,aAAa,EAAE,QAAQ;QACvB,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE;QACnC,MAAM,EAAE,MAAM;QACd,OAAO,EAAE,MAAM;QACf,GAAG,EAAE,MAAM;QACX,qBAAqB;QACrB,YAAY,EAAE,KAAK;QACnB,MAAM,EAAE,mBAAmB;KAC5B;IACD,gBAAgB,EAAE;QAChB,OAAO,EAAE,MAAM;QACf,aAAa,EAAE,QAAQ;QACvB,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;QACd,GAAG,EAAE,MAAM;KACZ;IACD,UAAU,EAAE;QACV,OAAO,EAAE,MAAM;QACf,aAAa,EAAE,KAAK;QACpB,UAAU,EAAE,QAAQ;QACpB,cAAc,EAAE,QAAQ;QACxB,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;QACd,eAAe,EAAE,SAAS;QAC1B,YAAY,EAAE,KAAK;QACnB,MAAM,EAAE,mBAAmB;QAC3B,OAAO,EAAE,WAAW;QACpB,QAAQ,EAAE,UAAU;KACrB;IACD,aAAa,EAAE;QACb,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,CAAC;KACd;IACD,SAAS,EAAE;QACT,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,SAAS;QAChB,SAAS,EAAE,QAAQ;QACnB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;KACf;IACD,eAAe,EAAE;QACf,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,SAAS;QAChB,SAAS,EAAE,MAAM;QACjB,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;KACf;IACD,eAAe,EAAE;QACf,OAAO,EAAE,MAAM;QACf,cAAc,EAAE,UAAU;QAC1B,UAAU,EAAE,QAAQ;QACpB,qBAAqB;KACtB;IACD,WAAW,EAAE;QACX,OAAO,EAAE,MAAM;QACf,UAAU,EAAE,QAAQ;QACpB,cAAc,EAAE,UAAU;QAC1B,GAAG,EAAE,KAAK;QACV,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;QACd,eAAe,EAAE,SAAS;QAC1B,YAAY,EAAE,KAAK;QACnB,OAAO,EAAE,UAAU;QACnB,MAAM,EAAE,SAAS;QACjB,SAAS,EAAE,oCAAoC;QAC/C,MAAM,EAAE,MAAM;QACd,SAAS,EAAE;YACT,eAAe,EAAE,SAAS;SAC3B;QACD,UAAU,EAAE;YACV,eAAe,EAAE,SAAS;SAC3B;KACF;IACD,UAAU,EAAE;QACV,UAAU,EAAE,SAAS;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,SAAS;QAChB,SAAS,EAAE,QAAQ;QACnB,UAAU,EAAE,QAAQ;KACrB;IACD,UAAU,EAAE;QACV,KAAK,EAAE,MAAM;QACb,MAAM,EAAE,MAAM;QACd,OAAO,EAAE,MAAM;QACf,UAAU,EAAE,QAAQ;QACpB,cAAc,EAAE,QAAQ;KACzB;IACD,WAAW,EAAE;QACX,KAAK,EAAE,KAAK;QACZ,MAAM,EAAE,KAAK;QACb,KAAK,EAAE,SAAS;KACjB;CACF,CAAC"}