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,441 @@
1
+ export declare const NewPostInfoStyles: {
2
+ mainContainer: {
3
+ display: string;
4
+ flexDirection: {
5
+ base: string;
6
+ lg: string;
7
+ };
8
+ width: string;
9
+ height: string;
10
+ padding: string;
11
+ alignItems: string;
12
+ gap: string;
13
+ overflow: string;
14
+ };
15
+ leftSection: {
16
+ flex: {
17
+ base: string;
18
+ lg: number;
19
+ };
20
+ minWidth: number;
21
+ borderRadius: string;
22
+ overflow: string;
23
+ display: string;
24
+ flexDirection: string;
25
+ };
26
+ rightSection: {
27
+ display: string;
28
+ flexDirection: string;
29
+ flex: {
30
+ base: number;
31
+ lg: number;
32
+ };
33
+ minWidth: number;
34
+ minHeight: {
35
+ base: string;
36
+ lg: number;
37
+ };
38
+ alignItems: string;
39
+ };
40
+ rightSectionHeader: {
41
+ display: string;
42
+ flexDirection: string;
43
+ alignItems: string;
44
+ gap: string;
45
+ width: string;
46
+ flexShrink: number;
47
+ };
48
+ rightSectionContent: {
49
+ display: string;
50
+ flexDirection: string;
51
+ alignItems: string;
52
+ gap: string;
53
+ width: string;
54
+ flex: number;
55
+ overflowY: string;
56
+ minHeight: number;
57
+ };
58
+ rightSectionBottom: {
59
+ display: string;
60
+ flexDirection: string;
61
+ alignItems: string;
62
+ gap: string;
63
+ width: string;
64
+ flexShrink: number;
65
+ marginTop: string;
66
+ paddingTop: string;
67
+ };
68
+ leftSectionBottom: {
69
+ flexShrink: number;
70
+ marginTop: string;
71
+ paddingTop: string;
72
+ };
73
+ authorSection: {
74
+ alignItems: string;
75
+ gap: string;
76
+ };
77
+ authorImage: {
78
+ boxSize: string;
79
+ padding: string;
80
+ justifyContent: string;
81
+ alignItems: string;
82
+ borderRadius: string;
83
+ background: string;
84
+ };
85
+ authorName: {
86
+ color: string;
87
+ fontFamily: string;
88
+ fontSize: string;
89
+ fontStyle: string;
90
+ fontWeight: string;
91
+ lineHeight: string;
92
+ };
93
+ subjectSection: {
94
+ alignItems: string;
95
+ gap: string;
96
+ };
97
+ subjectName: {
98
+ color: string;
99
+ fontFamily: string;
100
+ fontSize: string;
101
+ fontStyle: string;
102
+ fontWeight: string;
103
+ lineHeight: string;
104
+ };
105
+ topicName: {
106
+ color: string;
107
+ fontFamily: string;
108
+ fontSize: string;
109
+ fontStyle: string;
110
+ fontWeight: string;
111
+ lineHeight: string;
112
+ };
113
+ activityTitle: {
114
+ color: string;
115
+ fontFamily: string;
116
+ fontSize: string;
117
+ fontStyle: string;
118
+ fontWeight: string;
119
+ lineHeight: string;
120
+ };
121
+ tabsContainer: {
122
+ display: string;
123
+ width: string;
124
+ backgroundColor: string;
125
+ borderRadius: {
126
+ base: string;
127
+ md: string;
128
+ };
129
+ overflow: string;
130
+ };
131
+ tab: {
132
+ flex: number;
133
+ display: string;
134
+ alignItems: string;
135
+ justifyContent: string;
136
+ gap: {
137
+ base: string;
138
+ md: string;
139
+ lg: string;
140
+ };
141
+ padding: {
142
+ base: string;
143
+ md: string;
144
+ lg: string;
145
+ };
146
+ cursor: string;
147
+ transition: string;
148
+ };
149
+ activeTab: {
150
+ backgroundColor: string;
151
+ color: string;
152
+ };
153
+ inactiveTab: {
154
+ backgroundColor: string;
155
+ color: string;
156
+ };
157
+ tabIcon: {
158
+ fontSize: {
159
+ base: string;
160
+ md: string;
161
+ lg: string;
162
+ };
163
+ display: string;
164
+ alignItems: string;
165
+ justifyContent: string;
166
+ };
167
+ tabText: {
168
+ fontFamily: string;
169
+ fontSize: {
170
+ base: string;
171
+ md: string;
172
+ lg: string;
173
+ };
174
+ fontWeight: string;
175
+ lineHeight: {
176
+ base: string;
177
+ md: string;
178
+ lg: string;
179
+ };
180
+ };
181
+ postContent: {
182
+ color: string;
183
+ fontFamily: string;
184
+ fontSize: string;
185
+ fontStyle: string;
186
+ fontWeight: string;
187
+ lineHeight: string;
188
+ letterSpacing: string;
189
+ };
190
+ attachmentHeading: {
191
+ color: string;
192
+ fontFamily: string;
193
+ fontSize: string;
194
+ fontWeight: string;
195
+ lineHeight: string;
196
+ };
197
+ emojiSection: {
198
+ width: string;
199
+ alignItems: string;
200
+ justifyContent: string;
201
+ gap: string;
202
+ };
203
+ emojiText: {
204
+ color: string;
205
+ fontFamily: string;
206
+ fontSize: string;
207
+ fontWeight: string;
208
+ lineHeight: string;
209
+ };
210
+ imageTilesContainer: {
211
+ display: string;
212
+ gap: string;
213
+ alignItems: string;
214
+ width: string;
215
+ };
216
+ imageTileFrame: {
217
+ width: string;
218
+ height: string;
219
+ borderRadius: string;
220
+ border: string;
221
+ background: string;
222
+ boxShadow: string;
223
+ position: string;
224
+ overflow: string;
225
+ flexShrink: number;
226
+ };
227
+ imageTileImage: {
228
+ width: string;
229
+ height: string;
230
+ objectFit: string;
231
+ borderRadius: string;
232
+ };
233
+ commentsContainer: {
234
+ mt: string;
235
+ display: string;
236
+ flexDirection: string;
237
+ gap: string;
238
+ width: string;
239
+ overflowY: string;
240
+ };
241
+ commentItem: {
242
+ display: string;
243
+ gap: string;
244
+ alignItems: string;
245
+ width: string;
246
+ };
247
+ commentItemPinned: {
248
+ backgroundColor: string;
249
+ padding: string;
250
+ borderRadius: string;
251
+ };
252
+ commentItemSubjectTeacher: {
253
+ backgroundColor: string;
254
+ padding: string;
255
+ borderRadius: string;
256
+ border: string;
257
+ };
258
+ commentAvatar: {
259
+ width: string;
260
+ height: string;
261
+ borderRadius: string;
262
+ backgroundColor: string;
263
+ overflow: string;
264
+ flexShrink: number;
265
+ };
266
+ commentAvatarImage: {
267
+ width: string;
268
+ height: string;
269
+ objectFit: string;
270
+ };
271
+ commentContent: {
272
+ display: string;
273
+ flexDirection: string;
274
+ gap: string;
275
+ flex: number;
276
+ minWidth: number;
277
+ };
278
+ commentHeader: {
279
+ display: string;
280
+ gap: string;
281
+ alignItems: string;
282
+ };
283
+ commentAuthorName: {
284
+ color: string;
285
+ fontFamily: string;
286
+ fontSize: string;
287
+ fontStyle: string;
288
+ fontWeight: string;
289
+ lineHeight: string;
290
+ };
291
+ commentAuthorRole: {
292
+ display: string;
293
+ alignItems: string;
294
+ gap: string;
295
+ };
296
+ commentRoleText: {
297
+ color: string;
298
+ fontFamily: string;
299
+ fontSize: string;
300
+ fontStyle: string;
301
+ fontWeight: string;
302
+ lineHeight: string;
303
+ };
304
+ commentText: {
305
+ color: string;
306
+ fontFamily: string;
307
+ fontSize: string;
308
+ fontStyle: string;
309
+ fontWeight: string;
310
+ lineHeight: string;
311
+ width: string;
312
+ };
313
+ commentMeta: {
314
+ display: string;
315
+ alignItems: string;
316
+ gap: string;
317
+ };
318
+ commentTimestamp: {
319
+ color: string;
320
+ fontFamily: string;
321
+ fontSize: string;
322
+ fontStyle: string;
323
+ fontWeight: string;
324
+ lineHeight: string;
325
+ };
326
+ commentPin: {
327
+ width: string;
328
+ height: string;
329
+ display: string;
330
+ alignItems: string;
331
+ justifyContent: string;
332
+ transform: string;
333
+ flexShrink: number;
334
+ };
335
+ commentsDivider: {
336
+ border: string;
337
+ width: string;
338
+ };
339
+ commentInputContainer: {
340
+ display: string;
341
+ flexDirection: string;
342
+ alignItems: string;
343
+ justifyContent: string;
344
+ paddingBottom: string;
345
+ width: string;
346
+ flexShrink: number;
347
+ };
348
+ commentInputBox: {
349
+ backgroundColor: string;
350
+ border: string;
351
+ borderRadius: string;
352
+ height: string;
353
+ width: string;
354
+ position: string;
355
+ display: string;
356
+ alignItems: string;
357
+ padding: string;
358
+ gap: string;
359
+ };
360
+ commentInputField: {
361
+ backgroundColor: string;
362
+ border: string;
363
+ outline: string;
364
+ flex: number;
365
+ color: string;
366
+ fontFamily: string;
367
+ fontSize: string;
368
+ fontStyle: string;
369
+ fontWeight: string;
370
+ lineHeight: string;
371
+ "&::placeholder": {
372
+ color: string;
373
+ };
374
+ };
375
+ commentEmojiButton: {
376
+ width: string;
377
+ height: string;
378
+ cursor: string;
379
+ backgroundColor: string;
380
+ border: string;
381
+ display: string;
382
+ alignItems: string;
383
+ justifyContent: string;
384
+ };
385
+ commentSendButton: {
386
+ width: string;
387
+ height: string;
388
+ borderRadius: string;
389
+ cursor: string;
390
+ border: string;
391
+ display: string;
392
+ alignItems: string;
393
+ justifyContent: string;
394
+ };
395
+ commentSuggestionsContainer: {
396
+ position: string;
397
+ bottom: string;
398
+ left: string;
399
+ right: string;
400
+ backgroundColor: string;
401
+ borderRadius: string;
402
+ padding: string;
403
+ display: string;
404
+ flexDirection: string;
405
+ gap: string;
406
+ boxShadow: string;
407
+ zIndex: number;
408
+ maxHeight: string;
409
+ overflowY: string;
410
+ };
411
+ commentSuggestionItem: {
412
+ backgroundColor: string;
413
+ cursor: string;
414
+ display: string;
415
+ flexDirection: string;
416
+ alignItems: string;
417
+ justifyContent: string;
418
+ padding: string;
419
+ borderRadius: string;
420
+ width: string;
421
+ transition: string;
422
+ "&:hover": {
423
+ backgroundColor: string;
424
+ };
425
+ };
426
+ commentSuggestionText: {
427
+ fontFamily: string;
428
+ fontSize: string;
429
+ fontStyle: string;
430
+ fontWeight: string;
431
+ lineHeight: string;
432
+ color: string;
433
+ whiteSpace: string;
434
+ wordWrap: string;
435
+ };
436
+ commentSuggestionDivider: {
437
+ height: string;
438
+ background: string;
439
+ width: string;
440
+ };
441
+ };