opus-react 0.6.16 → 0.6.18

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.
@@ -0,0 +1,23 @@
1
+ # Opus React API stability policy
2
+
3
+ Every public export is deliberately labelled so application teams can judge upgrade risk.
4
+
5
+ | Label | Meaning | Change policy |
6
+ | --- | --- | --- |
7
+ | Stable | Production API with semantic-versioned compatibility. | Breaking changes require the next major version. |
8
+ | Beta | Production-capable API still being standardised. | Changes can occur in a minor version and are called out in the changelog. |
9
+ | Experimental | Incubating API, Lab, game, or provider-specific integration. | Changes may occur in any release. Do not make it a critical product dependency without pinning. |
10
+
11
+ ## Default classification
12
+
13
+ - Foundational primitives, fields, layouts, navigation, overlays, feedback, data views, and charts are **Beta** until their component quality record is complete.
14
+ - Components in the Labs and Games catalogue, and APIs tied to a third-party media or map provider, are **Experimental**.
15
+ - A component becomes **Stable** only after it has typed API documentation, controlled/uncontrolled guidance where relevant, keyboard and focus coverage, light/dark responsive coverage, an accessibility review, interaction tests, and a published migration path for any predecessor.
16
+
17
+ ## Deprecations
18
+
19
+ Deprecated exports remain available for at least one minor release. Deprecations include a replacement, migration note, and removal target in `CHANGELOG.md`. Removal is restricted to the next major release unless a security or data-loss issue requires faster action.
20
+
21
+ ## Support matrix
22
+
23
+ Opus supports the latest two major versions of Chrome, Edge, Firefox, and Safari, plus the current mobile Safari and Chrome releases. The automated suite runs Chromium; manual release checks cover the other supported browsers, keyboard-only interaction, screen readers, reduced motion, forced colours, 320px reflow, RTL, and long localised content.
package/CHANGELOG.md ADDED
@@ -0,0 +1,28 @@
1
+ # Changelog
2
+
3
+ All notable public-package changes are recorded here. Opus follows [Semantic Versioning](https://semver.org/).
4
+
5
+ ## Unreleased
6
+
7
+ ## 0.6.18
8
+
9
+ ### Fixed
10
+
11
+ - 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`.
12
+ - Fail the package build if CSS-module mappings are absent, preventing this class of broken publish.
13
+
14
+ ## 0.6.17
15
+
16
+ ### Changed
17
+
18
+ - Public bundles are minified and tree-shaken.
19
+ - Scroll regions can be given a meaningful accessible name through `ScrollArea.label`.
20
+
21
+ ### Fixed
22
+
23
+ - Consumer-provided scroll viewports are keyboard reachable by default.
24
+ - CRM table headers expose valid column-header semantics.
25
+
26
+ ## 0.6.16
27
+
28
+ - Current published package baseline.
package/README.md CHANGED
@@ -34,6 +34,10 @@ Opus is a production-ready, themeable React design system for dashboards, CRM pr
34
34
  - React DOM `^18.2.0` or `^19.0.0`
35
35
  - `three` `^0.185.0` — optional, only needed for 3D model components
36
36
 
37
+ ## API stability and upgrades
38
+
39
+ Published APIs are labelled **Stable**, **Beta**, or **Experimental**. Most current primitives are Beta while their final cross-browser and accessibility reviews complete; Labs, games, and provider-specific integrations are Experimental. See [the API stability policy](./API_STABILITY.md) for compatibility guarantees, deprecation handling, and the supported-browser matrix. All user-facing changes and migrations are recorded in [the changelog](./CHANGELOG.md).
40
+
37
41
  ## Install
38
42
 
39
43
  ```bash