@streamlayer/react-ui 0.54.0 → 0.55.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/index.js +35 -31
- package/lib/ui/app/Features/Gamification/Question.js +9 -9
- package/lib/ui/app/Features/Gamification/QuestionsList.js +8 -6
- package/lib/ui/app/Features/Gamification/Tabs.js +7 -5
- package/lib/ui/app/Features/Gamification/index.d.ts +1 -0
- package/lib/ui/app/Features/Gamification/index.js +19 -24
- package/lib/ui/app/Features/index.js +18 -60
- package/lib/ui/app/Navigation/index.d.ts +1 -1
- package/lib/ui/app/masters.js +31 -77
- package/lib/ui/app/useMastersApp.d.ts +1 -0
- package/lib/ui/app/useMastersApp.js +22 -21
- package/lib/ui/app/useSdkFeature.js +13 -13
- package/lib/ui/demo/Gamification.js +19 -16
- package/lib/ui/demo/Highlights.js +8 -6
- package/lib/ui/demo/components/QuestionsList.js +8 -6
- package/lib/ui/demo/components/index.js +21 -17
- package/lib/ui/demo/index.js +8 -4
- package/lib/ui/gamification/question/insight/index.d.ts +5 -0
- package/lib/ui/gamification/question/insight/index.js +35 -0
- package/lib/ui/gamification/question/insight/styles.d.ts +7 -0
- package/lib/ui/gamification/question/insight/styles.js +66 -0
- package/lib/ui/gamification/question/list/index.js +13 -11
- package/lib/ui/gamification/vote/insight-details/index.d.ts +4 -2
- package/lib/ui/gamification/vote/insight-details/index.js +31 -15
- package/lib/ui/gamification/vote/insight-details/styles.d.ts +1 -0
- package/lib/ui/gamification/vote/insight-details/styles.js +8 -2
- package/lib/utils/debug/components/developer.js +28 -19
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamlayer/react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.55.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -26,20 +26,20 @@
|
|
|
26
26
|
"package.json"
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@streamlayer/sl-eslib": "^5.53.
|
|
29
|
+
"@streamlayer/sl-eslib": "^5.53.6",
|
|
30
30
|
"react-virtualized-auto-sizer": "^1.0.20",
|
|
31
31
|
"react-window": "^1.8.9",
|
|
32
32
|
"react-window-infinite-loader": "^1.0.9",
|
|
33
|
-
"@streamlayer/feature-gamification": "^0.21.
|
|
34
|
-
"@streamlayer/sdk-web": "^0.28.
|
|
35
|
-
"@streamlayer/sdk-web-anonymous-auth": "^0.11.
|
|
33
|
+
"@streamlayer/feature-gamification": "^0.21.2",
|
|
34
|
+
"@streamlayer/sdk-web": "^0.28.16",
|
|
35
|
+
"@streamlayer/sdk-web-anonymous-auth": "^0.11.11",
|
|
36
36
|
"@streamlayer/sdk-web-api": "^0.0.1",
|
|
37
|
-
"@streamlayer/sdk-web-core": "^0.17.
|
|
38
|
-
"@streamlayer/sdk-web-features": "^0.10.
|
|
39
|
-
"@streamlayer/sdk-web-interfaces": "^0.18.
|
|
40
|
-
"@streamlayer/sdk-web-notifications": "^0.10.
|
|
41
|
-
"@streamlayer/sdk-web-storage": "^0.
|
|
42
|
-
"@streamlayer/sdk-web-types": "^0.18.
|
|
37
|
+
"@streamlayer/sdk-web-core": "^0.17.5",
|
|
38
|
+
"@streamlayer/sdk-web-features": "^0.10.19",
|
|
39
|
+
"@streamlayer/sdk-web-interfaces": "^0.18.12",
|
|
40
|
+
"@streamlayer/sdk-web-notifications": "^0.10.11",
|
|
41
|
+
"@streamlayer/sdk-web-storage": "^0.0.2",
|
|
42
|
+
"@streamlayer/sdk-web-types": "^0.18.2"
|
|
43
43
|
},
|
|
44
44
|
"nx": {
|
|
45
45
|
"implicitDependencies": [
|
|
@@ -78,6 +78,6 @@
|
|
|
78
78
|
"vite-plugin-svgr": "^4.1.0",
|
|
79
79
|
"vite-svg-loader": "^4.0.0",
|
|
80
80
|
"vite-tsconfig-paths": "^4.2.1",
|
|
81
|
-
"@streamlayer/react": "^0.27.
|
|
81
|
+
"@streamlayer/react": "^0.27.2"
|
|
82
82
|
}
|
|
83
83
|
}
|