opus-react 0.6.17 → 0.6.19
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 +20 -0
- package/README.md +1 -0
- package/dist/assets/logo-small.png +0 -0
- package/dist/assets/opus-logo.png +0 -0
- package/dist/index.cjs +62698 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +27667 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +62380 -6
- package/dist/index.js.map +1 -1
- package/dist/logo-small-W4MWOYCS.png +0 -0
- package/dist/opus-logo-OBO7F6WN.png +0 -0
- package/dist/styles.css +113 -1
- package/dist/styles.css.map +1 -1
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable public-package changes are recorded here. Opus follows [Semantic Ver
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.6.19
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `OpusBrand`, the package-safe canonical Opus icon, wordmark, and full-lockup component.
|
|
12
|
+
- Direct asset exports for `opus-react/assets/opus-logo.png` and `opus-react/assets/logo-small.png`.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- `ApplicationHeader` and `ApplicationFooter` now use `OpusBrand` by default rather than assuming consumers serve `/opus-logo.png`.
|
|
17
|
+
|
|
18
|
+
## 0.6.18
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Restore CSS-module class-map generation in the published ESM and CommonJS bundles. This corrects the 0.6.17 regression where component controls could render with native browser styling despite importing `opus-react/index.css`.
|
|
23
|
+
- Fail the package build if CSS-module mappings are absent, preventing this class of broken publish.
|
|
24
|
+
|
|
25
|
+
## 0.6.17
|
|
26
|
+
|
|
7
27
|
### Changed
|
|
8
28
|
|
|
9
29
|
- Public bundles are minified and tree-shaken.
|
package/README.md
CHANGED
|
@@ -171,6 +171,7 @@ import { AccentColorPicker } from "opus-react";
|
|
|
171
171
|
|
|
172
172
|
### Content and data
|
|
173
173
|
|
|
174
|
+
- `OpusBrand` — canonical `icon`, `wordmark`, and `full` logo variants
|
|
174
175
|
- `Card`, `Panel`, `Section`, `Table`, `DataGrid`
|
|
175
176
|
- `Tabs`, `Accordion`, `AccordionGroup`, `ShowMore`
|
|
176
177
|
- `Badge`, `Avatar`, `AvatarGroup`, `List`, `DescriptionList`
|
|
Binary file
|
|
Binary file
|