@rytass/bpm-core-react 0.3.6 → 0.3.7
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 +16 -0
- package/README.md +11 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
Releases are managed by [`nx release`](https://nx.dev/recipes/nx-release) with
|
|
9
9
|
Conventional Commits — see `nx.json` for the release config.
|
|
10
10
|
|
|
11
|
+
## 0.3.7 — 2026-05-28
|
|
12
|
+
|
|
13
|
+
### Documentation
|
|
14
|
+
|
|
15
|
+
- **`transpilePackages` list expanded** to include `@rytass/bpm-core-client`
|
|
16
|
+
and `@rytass/bpm-core-shared` alongside `@rytass/bpm-core-react`. With
|
|
17
|
+
pnpm strict mode + Turbopack, transitive peer-dep resolution into
|
|
18
|
+
`node_modules/.pnpm/...` requires every package in the chain to be
|
|
19
|
+
listed explicitly — previous versions only mentioned `@rytass/bpm-core-react`.
|
|
20
|
+
- **README "Status" banner refreshed** to `0.3.7` with a note pointing
|
|
21
|
+
at the per-release CHANGELOG history.
|
|
22
|
+
|
|
23
|
+
### Why a patch
|
|
24
|
+
|
|
25
|
+
Documentation only.
|
|
26
|
+
|
|
11
27
|
## 0.3.6 — 2026-05-28
|
|
12
28
|
|
|
13
29
|
No source change. Lockstep peerDependency bump to `^0.1.9`.
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ This package composes [`@mezzanine-ui/react`](https://www.npmjs.com/package/@mez
|
|
|
6
6
|
|
|
7
7
|
## Status
|
|
8
8
|
|
|
9
|
-
`0.3.
|
|
9
|
+
`0.3.7` — adds `BPMRoutesProvider` for host-controlled path remapping (0.3.2), forwards `loginPath` / `publicPaths` / `locale` on `BPMNextProviders` (0.3.3), 19 view subpaths + 19 Next.js page shims (`pages/<feature>`), `next` subpath barrel, and foundation root barrel. See `CHANGELOG.md` for the per-release history.
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
@@ -24,7 +24,16 @@ If your host uses Next.js (15+) with pnpm strict mode, add the package to `trans
|
|
|
24
24
|
/** @type {import('next').NextConfig} */
|
|
25
25
|
module.exports = {
|
|
26
26
|
reactStrictMode: true,
|
|
27
|
-
|
|
27
|
+
// Include the sibling packages too — BPM views import from
|
|
28
|
+
// `@rytass/bpm-core-client/workflow`, `/organization`, `/template`,
|
|
29
|
+
// `/form` and re-export shared types from `@rytass/bpm-core-shared`.
|
|
30
|
+
// pnpm strict mode + Turbopack rejects the transitive resolution
|
|
31
|
+
// without each entry listed explicitly.
|
|
32
|
+
transpilePackages: [
|
|
33
|
+
'@rytass/bpm-core-react',
|
|
34
|
+
'@rytass/bpm-core-client',
|
|
35
|
+
'@rytass/bpm-core-shared',
|
|
36
|
+
],
|
|
28
37
|
};
|
|
29
38
|
```
|
|
30
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rytass/bpm-core-react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "BPM approval workflow React components and views for the Rytass BPM stack. Self-contained AuthProvider, NotificationDrawer, AppNavigation, plus full views for inbox / instances / templates / forms / admin / settings that compose on top of Mezzanine UI and the BPM client functions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bpm",
|
|
@@ -278,8 +278,8 @@
|
|
|
278
278
|
}
|
|
279
279
|
},
|
|
280
280
|
"peerDependencies": {
|
|
281
|
-
"@rytass/bpm-core-client": "^0.1.
|
|
282
|
-
"@rytass/bpm-core-shared": "^0.1.
|
|
281
|
+
"@rytass/bpm-core-client": "^0.1.10",
|
|
282
|
+
"@rytass/bpm-core-shared": "^0.1.10",
|
|
283
283
|
"@mezzanine-ui/react": "^1.1.0",
|
|
284
284
|
"@mezzanine-ui/icons": "^1.0.2",
|
|
285
285
|
"react": "^18.0.0 || ^19.0.0",
|