@cosla/sensemaking-web-ui 1.0.0 → 1.0.2
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/data/comments.json +34 -0
- package/data/metadata.json +3 -0
- package/data/summary.json +9 -0
- package/data/topic-stats.json +18 -0
- package/package.json +4 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "0",
|
|
4
|
+
"text": "Comment text",
|
|
5
|
+
"votes": {
|
|
6
|
+
"Group-1": {
|
|
7
|
+
"agreeCount": 0,
|
|
8
|
+
"disagreeCount": 0,
|
|
9
|
+
"passCount": 0
|
|
10
|
+
},
|
|
11
|
+
"Group-2": {
|
|
12
|
+
"agreeCount": 0,
|
|
13
|
+
"disagreeCount": 0,
|
|
14
|
+
"passCount": 0
|
|
15
|
+
},
|
|
16
|
+
"Group-none": {
|
|
17
|
+
"agreeCount": 0,
|
|
18
|
+
"disagreeCount": 0,
|
|
19
|
+
"passCount": 0
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"topics": "Topic:Subtopic",
|
|
23
|
+
"passRate": 0,
|
|
24
|
+
"agreeRate": 0,
|
|
25
|
+
"disagreeRate": 0,
|
|
26
|
+
"isHighAlignment": true,
|
|
27
|
+
"highAlignmentScore": 0,
|
|
28
|
+
"isLowAlignment": false,
|
|
29
|
+
"lowAlignmentScore": 0,
|
|
30
|
+
"isHighUncertainty": false,
|
|
31
|
+
"highUncertaintyScore": 0,
|
|
32
|
+
"isFilteredOut": false
|
|
33
|
+
}
|
|
34
|
+
]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "Topic 1",
|
|
4
|
+
"commentCount": 0,
|
|
5
|
+
"voteCount": 0,
|
|
6
|
+
"relativeAlignment": "moderately high alignment",
|
|
7
|
+
"relativeEngagement": "high engagement",
|
|
8
|
+
"subtopicStats": [
|
|
9
|
+
{
|
|
10
|
+
"name": "Subtopic 1",
|
|
11
|
+
"commentCount": 0,
|
|
12
|
+
"voteCount": 0,
|
|
13
|
+
"relativeAlignment": "moderately low alignment",
|
|
14
|
+
"relativeEngagement": "high engagement"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosla/sensemaking-web-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Provides interactive visualizations and report from sensemaking-tools output. Fork of Jigsaw's sensemaking-tools web-ui (https://github.com/Jigsaw-Code/sensemaking-tools).",
|
|
5
5
|
"homepage": "https://github.com/CoslaDigital/sensemaking-tools#readme",
|
|
6
6
|
"scripts": {
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"files": [
|
|
34
34
|
"src/**/*",
|
|
35
35
|
"public/**/*",
|
|
36
|
+
"data/**/*",
|
|
36
37
|
"angular.json",
|
|
37
38
|
"tsconfig.json",
|
|
38
39
|
"tsconfig.app.json",
|
|
@@ -63,7 +64,9 @@
|
|
|
63
64
|
"@angular/ssr": "18.2.13",
|
|
64
65
|
"@conversationai/sensemaker-visualizations": "^1.0.46",
|
|
65
66
|
"@sinclair/typebox": "^0.34.27",
|
|
67
|
+
"esbuild": "^0.23.0",
|
|
66
68
|
"express": "^4.18.2",
|
|
69
|
+
"jsdom": "^26.1.0",
|
|
67
70
|
"ngx-markdown": "^18.0.0",
|
|
68
71
|
"papaparse": "^5.4.1",
|
|
69
72
|
"rxjs": "~7.8.0",
|
|
@@ -80,7 +83,6 @@
|
|
|
80
83
|
"@types/papaparse": "^5.3.14",
|
|
81
84
|
"concurrently": "^9.0.1",
|
|
82
85
|
"jasmine-core": "~5.1.0",
|
|
83
|
-
"jsdom": "^26.1.0",
|
|
84
86
|
"karma": "~6.4.0",
|
|
85
87
|
"karma-chrome-launcher": "~3.2.0",
|
|
86
88
|
"karma-coverage": "~2.2.0",
|