@zentauri-ui/zentauri-components 0.0.8 → 0.0.82
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 +23 -2
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -13,7 +13,6 @@ Published artifacts live under `dist/`; consumers import the UI barrel at `@zent
|
|
|
13
13
|
| Subpath | Description |
|
|
14
14
|
| --- | --- |
|
|
15
15
|
| `@zentauri-ui/zentauri-components/ui` | Components, hooks, and types (ESM `.js`, CJS `.cjs`, `.d.ts`) |
|
|
16
|
-
| `@zentauri-ui/zentauri-components/styles.css` | Compiled CSS emitted by the build |
|
|
17
16
|
|
|
18
17
|
## Requirements
|
|
19
18
|
|
|
@@ -24,7 +23,27 @@ Published artifacts live under `dist/`; consumers import the UI barrel at `@zent
|
|
|
24
23
|
|
|
25
24
|
Modules re-exported from the UI entry include:
|
|
26
25
|
|
|
27
|
-
Accordion
|
|
26
|
+
- Accordion
|
|
27
|
+
- Alert
|
|
28
|
+
- Badge
|
|
29
|
+
- Button
|
|
30
|
+
- Card
|
|
31
|
+
- Divider
|
|
32
|
+
- Drawer
|
|
33
|
+
- Dropdown
|
|
34
|
+
- Empty state
|
|
35
|
+
- Input
|
|
36
|
+
- Modal
|
|
37
|
+
- Pagination
|
|
38
|
+
- Progress
|
|
39
|
+
- Select
|
|
40
|
+
- Skeleton
|
|
41
|
+
- Spinner
|
|
42
|
+
- Table
|
|
43
|
+
- Tabs
|
|
44
|
+
- Toast
|
|
45
|
+
- Toggle
|
|
46
|
+
- Tooltip
|
|
28
47
|
|
|
29
48
|
## Installation
|
|
30
49
|
|
|
@@ -96,6 +115,8 @@ import {
|
|
|
96
115
|
</div>
|
|
97
116
|
```
|
|
98
117
|
|
|
118
|
+
## Checkout the components at https://zentauri-ui.vercel.app/
|
|
119
|
+
|
|
99
120
|
## Development
|
|
100
121
|
|
|
101
122
|
From this package directory in the monorepo:
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zentauri-ui/zentauri-components",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.82",
|
|
5
5
|
"description": "A UI component library built with React and Tailwind CSS",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": ["dist"],
|
|
8
8
|
"main": "./dist/ui/index.js",
|
|
9
|
-
"sideEffects": ["**/*.css"],
|
|
10
9
|
"publishConfig": {
|
|
11
10
|
"access": "public"
|
|
12
11
|
},
|
|
@@ -15,8 +14,7 @@
|
|
|
15
14
|
"types": "./dist/ui/index.d.ts",
|
|
16
15
|
"import": "./dist/ui/index.js",
|
|
17
16
|
"require": "./dist/ui/index.cjs"
|
|
18
|
-
}
|
|
19
|
-
"./styles.css": "./dist/ui/index.css"
|
|
17
|
+
}
|
|
20
18
|
},
|
|
21
19
|
"scripts": {
|
|
22
20
|
"dev": "tsup --watch",
|