@streamlayer/react-ui 0.27.3 → 0.28.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.
- package/lib/fedex-a8dcc7b2.js +4 -0
- package/lib/index.js +44 -40
- package/lib/ui/app/Features/FeatureProvider.js +14 -0
- package/lib/ui/app/Features/Gamification/Leaderboard.js +48 -0
- package/lib/ui/app/Features/Gamification/Question.js +102 -0
- package/lib/ui/app/Features/Gamification/QuestionsList.js +16 -0
- package/lib/ui/app/Features/Gamification/Tabs.js +47 -0
- package/lib/ui/app/Features/Gamification/UserSummary.js +17 -0
- package/lib/ui/app/Features/Gamification/index.js +67 -0
- package/lib/ui/app/Features/Highlights/Insight.js +31 -0
- package/lib/ui/app/Features/Highlights/Insights.js +16 -0
- package/lib/ui/app/Features/Highlights/index.js +33 -0
- package/lib/ui/app/Features/index.js +64 -0
- package/lib/ui/app/Navigation/index.js +31 -0
- package/lib/ui/app/Notifications/index.js +18 -0
- package/lib/ui/app/index.js +91 -0
- package/lib/ui/app/styles.js +8 -0
- package/lib/ui/app/useSdkFeature.js +24 -0
- package/lib/ui/demo/DemoPoints.js +14 -14
- package/lib/ui/demo/Gamification.js +10 -9
- package/lib/ui/demo/Highlights.js +8 -7
- package/lib/ui/demo/Login.js +8 -7
- package/lib/ui/demo/components/Leaderboard.js +2 -2
- package/lib/ui/demo/components/Question.js +52 -51
- package/lib/ui/demo/components/UserSummary.js +4 -10
- package/lib/ui/demo/components/index.js +23 -22
- package/lib/ui/demo/index.js +65 -53
- package/lib/ui/gamification/leaderboard-invite-link/index.js +4 -4
- package/lib/ui/gamification/leaderboard-item-detail/index.js +2 -2
- package/lib/ui/gamification/onboarding/index.js +17 -17
- package/lib/ui/gamification/points/styles.js +2 -3
- package/lib/ui/gamification/question/index.js +6 -6
- package/lib/ui/gamification/user-statistics/index.js +3 -3
- package/lib/ui/gamification/vote/components/voting-header/index.js +6 -6
- package/lib/ui/gamification/vote/index.js +5 -5
- package/lib/ui/icons/index.js +27 -27
- package/lib/ui/login/index.js +15 -15
- package/lib/ui/navigation/index.js +13 -0
- package/lib/ui/navigation/styles.js +46 -0
- package/lib/ui/notifications/decorator.js +6 -6
- package/lib/ui/notifications/index.js +1 -1
- package/lib/ui/notifications/notification/index.js +1 -1
- package/lib/utils/components/developer.js +18 -18
- package/lib/utils/components/envToggle.js +1 -1
- package/lib/utils/components/eventInput.js +12 -12
- package/lib/utils/components/sdkKey.js +10 -3
- package/lib/utils/createDemo.js +37 -24
- package/lib/utils/decorators/styles.js +3 -7
- package/lib/utils/login.js +8 -8
- package/lib/utils/useStreamLayerApp.js +5 -5
- package/package.json +6 -6
- package/lib/module.d.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamlayer/react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
],
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@streamlayer/sl-eslib": "^5.45.1",
|
|
25
|
-
"@streamlayer/feature-gamification": "^0.
|
|
26
|
-
"@streamlayer/sdk-web": "^0.27.
|
|
27
|
-
"@streamlayer/sdk-web-anonymous-auth": "^0.10.
|
|
25
|
+
"@streamlayer/feature-gamification": "^0.17.0",
|
|
26
|
+
"@streamlayer/sdk-web": "^0.27.1",
|
|
27
|
+
"@streamlayer/sdk-web-anonymous-auth": "^0.10.6",
|
|
28
28
|
"@streamlayer/sdk-web-api": "^0.0.2",
|
|
29
|
-
"@streamlayer/sdk-web-core": "^0.
|
|
30
|
-
"@streamlayer/sdk-web-features": "^0.
|
|
29
|
+
"@streamlayer/sdk-web-core": "^0.13.0",
|
|
30
|
+
"@streamlayer/sdk-web-features": "^0.10.0",
|
|
31
31
|
"@streamlayer/sdk-web-interfaces": "^0.18.0",
|
|
32
32
|
"@streamlayer/sdk-web-notifications": "^0.9.4",
|
|
33
33
|
"@streamlayer/sdk-web-storage": "^0.3.2",
|
package/lib/module.d.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|