@c-rex/ui 0.0.2 → 0.0.4
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 +19 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
# UI Components
|
|
2
|
+
|
|
3
|
+
This package contains UI components that are downloaded from [shadcn/ui](https://ui.shadcn.com/).
|
|
4
|
+
|
|
5
|
+
## About shadcn/ui
|
|
6
|
+
|
|
7
|
+
shadcn/ui is a collection of re-usable components built using Radix UI and Tailwind CSS. These components are not installed as a dependency - instead they are copied into our project and customized according to our needs.
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
The components in this package can be imported and used in your React applications. Each component maintains the same API and styling conventions as defined in the original shadcn/ui documentation.
|
|
12
|
+
|
|
13
|
+
## Customization
|
|
14
|
+
|
|
15
|
+
While these components are sourced from shadcn/ui, they can be customized and modified to match our specific design requirements and use cases.
|
|
16
|
+
|
|
17
|
+
## Documentation
|
|
18
|
+
|
|
19
|
+
For detailed documentation about the original components, please visit [shadcn/ui documentation](https://ui.shadcn.com/docs).
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c-rex/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
7
10
|
"exports": {
|
|
8
11
|
"./alert": {
|
|
9
12
|
"types": "./src/alert.tsx",
|
|
@@ -79,15 +82,16 @@
|
|
|
79
82
|
"@types/react": "19.0.10",
|
|
80
83
|
"@types/react-dom": "19.0.4",
|
|
81
84
|
"eslint": "^9.23.0",
|
|
85
|
+
"shadcn": "^2.4.1",
|
|
82
86
|
"typescript": "latest"
|
|
83
87
|
},
|
|
84
88
|
"dependencies": {
|
|
89
|
+
"@c-rex/utils": "*",
|
|
85
90
|
"@radix-ui/react-dialog": "^1.1.6",
|
|
86
91
|
"@radix-ui/react-popover": "^1.1.6",
|
|
87
92
|
"@radix-ui/react-select": "^2.1.6",
|
|
88
93
|
"@radix-ui/react-separator": "^1.1.2",
|
|
89
94
|
"@radix-ui/react-tooltip": "^1.1.8",
|
|
90
|
-
"@c-rex/utils": "*",
|
|
91
95
|
"class-variance-authority": "^0.7.1",
|
|
92
96
|
"clsx": "^2.1.1",
|
|
93
97
|
"cmdk": "^1.1.1",
|