@utrecht/component-library-react 7.1.0 → 7.2.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/CHANGELOG.md +11 -0
- package/dist/.jest-test-results.json +1 -1
- package/dist/Paragraph.d.ts +9 -0
- package/dist/Paragraph.d.ts.map +1 -1
- package/dist/css-module/Paragraph.d.ts +9 -0
- package/dist/css-module/Paragraph.d.ts.map +1 -1
- package/dist/css-module/index.js +7 -4
- package/dist/css-module/index.js.map +1 -1
- package/dist/css-module/index.mjs +7 -4
- package/dist/css-module/index.mjs.map +1 -1
- package/dist/index.cjs.js +7 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @utrecht/component-library-react
|
|
2
2
|
|
|
3
|
+
## 7.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 94840f4: For the `Paragraph` component, introduce the `appearance` property. It replaces the `lead` and `small` boolean properties, which are now deprecated.
|
|
8
|
+
|
|
9
|
+
Perform the following migration steps:
|
|
10
|
+
|
|
11
|
+
- Use `<Paragraph appearance="lead">` instead of `<Paragraph lead>`
|
|
12
|
+
- Use `<Paragraph appearance="small">` instead of `<Paragraph small>`
|
|
13
|
+
|
|
3
14
|
## 7.1.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|