@worldresources/wri-design-systems 2.181.0-react-19-beta.3 → 2.182.0
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/README.md +21 -1
- package/dist/index.cjs.js +136 -132
- package/dist/index.d.ts +4 -3
- package/dist/index.esm.js +143 -139
- package/package.json +15 -11
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ WRI UI Library
|
|
|
6
6
|
|
|
7
7
|
Node: `22.14.0`
|
|
8
8
|
|
|
9
|
-
React: `
|
|
9
|
+
React: `18.3.1`
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
@@ -324,3 +324,23 @@ npm login
|
|
|
324
324
|
```
|
|
325
325
|
npm publish
|
|
326
326
|
```
|
|
327
|
+
|
|
328
|
+
## PR Label Rules
|
|
329
|
+
|
|
330
|
+
Use exactly one versioning label on every PR. The label drives the npm version bump when the PR is merged into `main`.
|
|
331
|
+
|
|
332
|
+
**How it works**
|
|
333
|
+
|
|
334
|
+
- Open a PR and add **one** of the labels below.
|
|
335
|
+
- The PR Label Guard workflow enforces that exactly one label is present.
|
|
336
|
+
- On merge, the Release & Publish workflow bumps `package.json`, tags, and publishes to npm for `major`, `minor`, or `patch`.
|
|
337
|
+
- `no-bump` skips all versioning and publishing.
|
|
338
|
+
|
|
339
|
+
**Label guide**
|
|
340
|
+
|
|
341
|
+
- `patch`: non-breaking fixes (styles, internal refactors, Storybook-only tweaks that do not change usage)
|
|
342
|
+
- `minor`: backwards-compatible feature or API additions (new component/prop), or behavior changes that may affect usage but are not breaking
|
|
343
|
+
- `major`: breaking changes (removed/renamed props, changed required behavior, incompatible defaults)
|
|
344
|
+
- `no-bump`: documentation-only or internal changes that should not publish
|
|
345
|
+
|
|
346
|
+
If you are unsure, choose `minor` and leave a note in the PR for review.
|