@streamlayer/react-ui 0.24.3 → 0.25.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/{icon-exit-d3f9fc80.js → icon-exit-6a55bb8f.js} +1 -1
- package/lib/index.js +37 -23
- package/lib/lib/demo/Gamification.js +67 -49
- package/lib/lib/demo/Highlights.js +8 -4
- package/lib/lib/demo/components/Insight.js +1 -1
- package/lib/lib/demo/components/Leaderboard.js +48 -0
- package/lib/lib/demo/components/Question.js +1 -1
- package/lib/lib/demo/components/UserSummary.js +11 -20
- package/lib/lib/demo/components/index.js +23 -13
- package/lib/lib/demo/index.js +35 -24
- package/lib/lib/demo/styles.js +1 -1
- package/lib/lib/gamification/common-header/index.js +8 -8
- package/lib/lib/gamification/detailed-insight/index.js +1 -1
- package/lib/lib/gamification/leaderboard-invite-link/index.js +15 -0
- package/lib/lib/gamification/leaderboard-invite-link/styles.js +59 -0
- package/lib/lib/gamification/leaderboard-item/index.js +18 -0
- package/lib/lib/gamification/leaderboard-item/styles.js +80 -0
- package/lib/lib/gamification/leaderboard-item-detail/index.js +20 -0
- package/lib/lib/gamification/leaderboard-item-detail/styles.js +7 -0
- package/lib/lib/gamification/leaderboard-list/index.js +16 -0
- package/lib/lib/gamification/leaderboard-list/styles.js +18 -0
- package/lib/lib/gamification/navigation/index.js +34 -0
- package/lib/lib/gamification/navigation/styles.js +26 -0
- package/lib/lib/gamification/onboarding/index.js +18 -18
- package/lib/lib/gamification/user-statistics/index.js +16 -16
- package/lib/lib/gamification/user-statistics/styles.js +6 -6
- package/lib/lib/gamification/vote/components/voting-header/index.js +1 -1
- package/lib/lib/notifications/decorator.js +1 -1
- package/lib/lib/notifications/index.js +1 -1
- package/lib/lib/notifications/notification/index.js +1 -1
- package/lib/lib/notifications/notification/question-inapp/index.js +8 -8
- package/lib/lib/theme/constants.js +3 -2
- package/lib/lib/theme/theme.js +4 -2
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamlayer/react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
],
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@streamlayer/sl-eslib": "^5.45.1",
|
|
25
|
-
"@streamlayer/feature-gamification": "^0.
|
|
26
|
-
"@streamlayer/sdk-web": "^0.26.
|
|
27
|
-
"@streamlayer/sdk-web-anonymous-auth": "^0.10.
|
|
28
|
-
"@streamlayer/sdk-web-core": "^0.11.
|
|
29
|
-
"@streamlayer/sdk-web-features": "^0.9.
|
|
25
|
+
"@streamlayer/feature-gamification": "^0.15.0",
|
|
26
|
+
"@streamlayer/sdk-web": "^0.26.3",
|
|
27
|
+
"@streamlayer/sdk-web-anonymous-auth": "^0.10.3",
|
|
28
|
+
"@streamlayer/sdk-web-core": "^0.11.3",
|
|
29
|
+
"@streamlayer/sdk-web-features": "^0.9.3",
|
|
30
30
|
"@streamlayer/sdk-web-api": "^0.1.0",
|
|
31
|
-
"@streamlayer/sdk-web-interfaces": "^0.17.
|
|
32
|
-
"@streamlayer/sdk-web-notifications": "^0.9.
|
|
31
|
+
"@streamlayer/sdk-web-interfaces": "^0.17.2",
|
|
32
|
+
"@streamlayer/sdk-web-notifications": "^0.9.2",
|
|
33
33
|
"@streamlayer/sdk-web-storage": "^0.3.1",
|
|
34
|
-
"@streamlayer/sdk-web-types": "^0.
|
|
34
|
+
"@streamlayer/sdk-web-types": "^0.15.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@connectrpc/connect": "^1.1.3",
|