opus-react 0.6.23 → 0.6.25
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 +26 -0
- package/dist/index.cjs +313 -240
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +122 -72
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +17 -3
- package/dist/index.d.ts +17 -3
- package/dist/index.js +313 -241
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,32 @@ All notable public-package changes are recorded here. Opus follows [Semantic Ver
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.6.25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `SyntaxHighlighter`, a reusable, compact, theme-aware read-only code renderer.
|
|
12
|
+
- Chat Bubble now supports independent `lightBackground` and `darkBackground` colours.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Chat Bubble component pages now expose avatar visibility, Show More labels, theme-specific colours, composition metadata, and generated usage for the complete public API.
|
|
17
|
+
- Code blocks use the shared SyntaxHighlighter and adapt to the active light or dark theme.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Stabilise Chat Bubble Show More rendering during colour and settings changes.
|
|
22
|
+
|
|
23
|
+
## 0.6.24
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Chat Bubble now chooses a readable dark or light foreground automatically for custom hex background colours.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Chat Bubble message groups now use consistent intrinsic bubble widths on both alignments and theme-derived default bubble colours.
|
|
32
|
+
|
|
7
33
|
## 0.6.23
|
|
8
34
|
|
|
9
35
|
### Changed
|