@unizap/uniui 1.0.8 → 1.0.10
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 +8 -3
- package/package.json +12 -1
package/README.md
CHANGED
|
@@ -17,12 +17,17 @@ npm i @unizap/uniui
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
-
|
|
21
20
|
## ⚡ Usage
|
|
22
21
|
|
|
23
|
-
Import
|
|
22
|
+
Import the UniUI CSS in your main entry file (e.g. `app.js`):
|
|
24
23
|
|
|
25
|
-
```
|
|
24
|
+
```js
|
|
25
|
+
import '@unizap/uniui/uniui.css';
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Now you can use UniUI components anywhere in your app:
|
|
29
|
+
|
|
30
|
+
```jsx
|
|
26
31
|
import { Button, IconButton, Badge, Carousel, EmptyState, PasswordInput } from '@unizap/uniui';
|
|
27
32
|
|
|
28
33
|
<Button color="amber" variant="filled">Hello UniUI</Button>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unizap/uniui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "A UI component library for React",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -36,6 +36,17 @@
|
|
|
36
36
|
"prepare": "pnpm run build",
|
|
37
37
|
"storybook": "storybook dev -p 6006"
|
|
38
38
|
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"react",
|
|
41
|
+
"ui-components",
|
|
42
|
+
"component-library",
|
|
43
|
+
"customizable",
|
|
44
|
+
"design-system",
|
|
45
|
+
"modern-ui",
|
|
46
|
+
"web-development",
|
|
47
|
+
"frontend",
|
|
48
|
+
"typescript"
|
|
49
|
+
],
|
|
39
50
|
"peerDependencies": {
|
|
40
51
|
"react": ">=16.8.0",
|
|
41
52
|
"react-dom": ">=16.8.0"
|