@public-ui/react 3.0.2-f97556ada8a20e9abe2dbb519562bad234f7191b.0 → 3.0.2-rc.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 +6 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,12 +14,12 @@ Provide an adapter for [React](https://reactjs.org) to use the KoliBri component
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Install the adapter with `npm`, `pnpm` or `yarn`:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm i
|
|
21
|
-
pnpm i
|
|
22
|
-
yarn add
|
|
20
|
+
npm i @public-ui/react
|
|
21
|
+
pnpm i @public-ui/react
|
|
22
|
+
yarn add @public-ui/react
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
@@ -53,3 +53,5 @@ import { KolButton } from '@public-ui/react';
|
|
|
53
53
|
|
|
54
54
|
export default (): FC => <KolButton _label="Hello World" />;
|
|
55
55
|
```
|
|
56
|
+
|
|
57
|
+
For available design tokens see the [default theme README](../../themes/default/README.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react",
|
|
3
|
-
"version": "3.0.2-
|
|
3
|
+
"version": "3.0.2-rc.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"react-dom": "18.3.1",
|
|
55
55
|
"typescript": "5.8.3",
|
|
56
56
|
"unbuild": "3.5.0",
|
|
57
|
-
"@public-ui/components": "3.0.2-
|
|
57
|
+
"@public-ui/components": "3.0.2-rc.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": ">=16.14.0",
|
|
61
61
|
"react-dom": ">=16.14.0",
|
|
62
|
-
"@public-ui/components": "3.0.2-
|
|
62
|
+
"@public-ui/components": "3.0.2-rc.0"
|
|
63
63
|
},
|
|
64
64
|
"sideEffects": false,
|
|
65
65
|
"type": "module",
|