@sensiblestats/widget-react 0.1.0 → 0.1.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/CHANGELOG.md +18 -0
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @sensiblestats/widget-react
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Republish with the `@sensiblestats/widget-sdk` dependency resolved to a real `^0.2.0` range. The `0.1.0` tarball shipped an unusable `workspace:^` range (npm fails with `Unsupported URL Type "workspace:"`); the release workflow now publishes via yarn, which rewrites workspace ranges to concrete versions.
|
|
8
|
+
|
|
9
|
+
## 0.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 5857cb0: First published release of `StatsWidget`, the SensibleStats embeddable chat widget for React. Streams operator chat over the widget gateway and renders rich entity cards (image, subtitle, season stats), suggested action buttons, intent chips, and markdown answers with horizontally-scrollable tables. Theme-aware (light/dark/auto), style-isolated via injected CSS, and built on `@sensiblestats/widget-sdk`.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [5857cb0]
|
|
18
|
+
- @sensiblestats/widget-sdk@0.2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensiblestats/widget-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Embeddable SensibleStats chat widget for React.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"prepublishOnly": "yarn build"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@sensiblestats/widget-sdk": "
|
|
40
|
+
"@sensiblestats/widget-sdk": "^0.2.0",
|
|
41
41
|
"react-markdown": "^9.0.1",
|
|
42
42
|
"remark-gfm": "^4.0.0"
|
|
43
43
|
},
|
|
@@ -60,4 +60,4 @@
|
|
|
60
60
|
"typescript": "^5.6.0",
|
|
61
61
|
"vitest": "^2.1.0"
|
|
62
62
|
}
|
|
63
|
-
}
|
|
63
|
+
}
|