@codella-software/cli 2.0.0 → 2.0.1
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 +69 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# @codella-software/cli
|
|
2
|
+
|
|
3
|
+
CLI tool for scaffolding Codella components into React projects.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @codella-software/cli
|
|
9
|
+
# or
|
|
10
|
+
npx @codella-software/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
Initialize a new Codella project:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
codella init my-project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Add components to your existing React project:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
cd my-project
|
|
25
|
+
codella add dynamic-table
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Available Templates
|
|
29
|
+
|
|
30
|
+
### Base Templates
|
|
31
|
+
|
|
32
|
+
- `dynamic-table` - Native HTML table with sorting and filtering
|
|
33
|
+
- `form-builder` - Multi-step form with validation
|
|
34
|
+
- `table-filters` - Advanced filtering for tables
|
|
35
|
+
- `tabs-component` - Tab navigation component
|
|
36
|
+
- `document-tabs` - Document-style tabs
|
|
37
|
+
|
|
38
|
+
### shadcn Templates
|
|
39
|
+
|
|
40
|
+
All templates also available with shadcn UI styling:
|
|
41
|
+
|
|
42
|
+
- `dynamic-table` (shadcn)
|
|
43
|
+
- `form-builder` (shadcn)
|
|
44
|
+
- `table-builder` (shadcn)
|
|
45
|
+
- `tabs-component` (shadcn)
|
|
46
|
+
|
|
47
|
+
## Commands
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Initialize a new project
|
|
51
|
+
codella init <project-name>
|
|
52
|
+
|
|
53
|
+
# Add a component to your project
|
|
54
|
+
codella add <template-name>
|
|
55
|
+
|
|
56
|
+
# List available templates
|
|
57
|
+
codella list
|
|
58
|
+
|
|
59
|
+
# Show help
|
|
60
|
+
codella help
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Documentation
|
|
64
|
+
|
|
65
|
+
For full documentation, visit [https://CodellaSoftware.github.io/codella-utils/](https://CodellaSoftware.github.io/codella-utils/)
|
|
66
|
+
|
|
67
|
+
## License
|
|
68
|
+
|
|
69
|
+
MIT
|