@kaushalparajuli/react-crud-ui 1.0.14 → 1.0.15
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 +16 -5
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +414 -410
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @kaushalparajuli/react-crud-ui
|
|
2
2
|
|
|
3
|
-
A comprehensive React CRUD and UI component library with Zustand store integration.
|
|
3
|
+
A comprehensive React CRUD and UI component library with Zustand store integration, layout components, and CLI code generator.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- 🎨 **20+ UI Components** - Button, Card, Badge, Dialog, Select, Tabs, and more
|
|
8
|
-
- 📊 **CRUD Components** - DataTable, CrudList, CrudForm, CrudDetail
|
|
7
|
+
- 🎨 **20+ UI Components** - Button, Card, Badge, Dialog, Select, Tabs, Table, and more
|
|
8
|
+
- 📊 **CRUD Components** - DataTable, CrudList, CrudForm, CrudDetail with store integration
|
|
9
9
|
- 🔄 **Zustand Store Factory** - Create CRUD stores with minimal code
|
|
10
10
|
- 🎯 **Form Components** - QInput, QSelect, QSwitch, QSearchSelect with validation
|
|
11
|
-
-
|
|
11
|
+
- 🏗️ **Layout Components** - AuthLayout, LoginPage, DashboardLayout with Sidebar & Header
|
|
12
|
+
- 📱 **Responsive** - Mobile-first design with Tailwind CSS v4
|
|
12
13
|
- 🌙 **Dark Mode** - Built-in dark mode support via CSS variables
|
|
13
14
|
- ⚡ **TypeScript Ready** - Full TypeScript support
|
|
15
|
+
- 🛠️ **CLI Generator** - Generate CRUD modules with one command
|
|
16
|
+
|
|
17
|
+
## Documentation
|
|
18
|
+
|
|
19
|
+
- [Getting Started](./docs/1_GETTING_STARTED.md) - Installation and setup
|
|
20
|
+
- [UI Components](./docs/2_UI_COMPONENTS.md) - Button, Card, Badge, Input, Select, etc.
|
|
21
|
+
- [CRUD Components](./docs/3_CRUD_COMPONENTS.md) - DataTable, CrudList, CrudForm, CrudDetail
|
|
22
|
+
- [Form Components](./docs/4_FORM_COMPONENTS.md) - QInput, QTextarea, QSelect, QSwitch
|
|
23
|
+
- [Layout Components](./docs/5_LAYOUT_COMPONENTS.md) - AuthLayout, LoginPage, DashboardLayout
|
|
24
|
+
- [Store Factory](./docs/6_STORE_FACTORY.md) - createCrudStore and store patterns
|
|
14
25
|
|
|
15
26
|
## Installation
|
|
16
27
|
|