@taskon/widget-react 0.0.1-beta.1

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 (48) hide show
  1. package/README.md +1065 -0
  2. package/dist/CommunityTaskList.css +4893 -0
  3. package/dist/EligibilityInfo.css +2337 -0
  4. package/dist/LeaderboardWidget.css +815 -0
  5. package/dist/PageBuilder.css +54 -0
  6. package/dist/Quest.css +4214 -0
  7. package/dist/TaskOnProvider.css +163 -0
  8. package/dist/TipPopover.css +210 -0
  9. package/dist/UserCenterWidget.css +297 -0
  10. package/dist/UserCenterWidget2.css +3519 -0
  11. package/dist/WidgetShell.css +182 -0
  12. package/dist/chunks/CommunityTaskList-DoPGZsw1.js +6813 -0
  13. package/dist/chunks/EligibilityInfo-C7GZ2G5u.js +22228 -0
  14. package/dist/chunks/LeaderboardWidget-CmYfDeHV.js +1068 -0
  15. package/dist/chunks/PageBuilder-Tmhf2GTS.js +150 -0
  16. package/dist/chunks/Quest-DKFZ-pPU.js +8839 -0
  17. package/dist/chunks/TaskOnProvider-BD6Vp2x8.js +1435 -0
  18. package/dist/chunks/ThemeProvider-wnSXrNQb.js +1118 -0
  19. package/dist/chunks/TipPopover-BrW8jo71.js +2926 -0
  20. package/dist/chunks/UserCenterWidget-BE329iS7.js +3546 -0
  21. package/dist/chunks/UserCenterWidget-BVw_IEEd.js +3989 -0
  22. package/dist/chunks/WidgetShell-D_5OjvNZ.js +1517 -0
  23. package/dist/chunks/common-ja-DWhTaFHb.js +23 -0
  24. package/dist/chunks/common-ko-80ezXsMG.js +23 -0
  25. package/dist/chunks/dynamic-import-helper-DxEFwm31.js +537 -0
  26. package/dist/chunks/index-CwMvO_wZ.js +777 -0
  27. package/dist/chunks/leaderboardwidget-ja-Bj6gz6y1.js +119 -0
  28. package/dist/chunks/leaderboardwidget-ko-f1cLO9ic.js +119 -0
  29. package/dist/chunks/useToast-B-wyO5zL.js +93 -0
  30. package/dist/chunks/useWidgetLocale-JDelxtt8.js +74 -0
  31. package/dist/chunks/usercenter-ja-uu-XfVF9.js +332 -0
  32. package/dist/chunks/usercenter-ko-DYgUOVzd.js +332 -0
  33. package/dist/community-task.d.ts +451 -0
  34. package/dist/community-task.js +9 -0
  35. package/dist/core.d.ts +803 -0
  36. package/dist/core.js +22 -0
  37. package/dist/dynamic-import-helper.css +389 -0
  38. package/dist/index.d.ts +1660 -0
  39. package/dist/index.js +41 -0
  40. package/dist/leaderboard.d.ts +547 -0
  41. package/dist/leaderboard.js +18 -0
  42. package/dist/page-builder.d.ts +20 -0
  43. package/dist/page-builder.js +4 -0
  44. package/dist/quest.d.ts +400 -0
  45. package/dist/quest.js +8 -0
  46. package/dist/user-center.d.ts +1780 -0
  47. package/dist/user-center.js +713 -0
  48. package/package.json +105 -0
@@ -0,0 +1,54 @@
1
+ .taskon-page-builder {
2
+ width: 100%;
3
+ display: flex;
4
+ flex-direction: column;
5
+ gap: 24px;
6
+ }
7
+
8
+ .taskon-page-builder-section {
9
+ display: flex;
10
+ gap: 24px;
11
+ align-items: stretch;
12
+ }
13
+
14
+ .taskon-page-builder-slot {
15
+ min-width: 0;
16
+ }
17
+
18
+ .taskon-page-builder-slot--empty {
19
+ border: 1px dashed rgba(255, 255, 255, 0.2);
20
+ background: rgba(255, 255, 255, 0.04);
21
+ border-radius: 12px;
22
+ min-height: 120px;
23
+ }
24
+
25
+ .taskon-page-builder-loading,
26
+ .taskon-page-builder-error {
27
+ width: 100%;
28
+ padding: 24px;
29
+ border-radius: 12px;
30
+ background: rgba(0, 0, 0, 0.15);
31
+ color: rgba(255, 255, 255, 0.8);
32
+ font-size: 14px;
33
+ }
34
+
35
+ @media (max-width: 750px) {
36
+ .taskon-page-builder-section {
37
+ flex-direction: column;
38
+ }
39
+
40
+ .taskon-page-builder-slot {
41
+ flex: 1 1 auto !important;
42
+ width: 100%;
43
+ }
44
+
45
+ .taskon-page-builder-section--stack-right-first
46
+ .taskon-page-builder-slot:nth-child(1) {
47
+ order: 2;
48
+ }
49
+
50
+ .taskon-page-builder-section--stack-right-first
51
+ .taskon-page-builder-slot:nth-child(2) {
52
+ order: 1;
53
+ }
54
+ }