@rootnative/cli 0.0.0-alpha.12 → 0.0.0-alpha.14
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 +1 -1
- package/llms.txt +14 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -291,7 +291,7 @@ each installed component stays self-contained.
|
|
|
291
291
|
| `slider` | Single-thumb or range slider with continuous and discrete modes |
|
|
292
292
|
| `progress` | Linear and circular progress indicators (determinate and indeterminate) |
|
|
293
293
|
| `text-field` | Text input with animated floating label, 2 variants (filled, outlined) |
|
|
294
|
-
| `layout` | Layout primitives: Box, Row, Column, Grid, and SafeAreaView wrapper |
|
|
294
|
+
| `layout` | Layout primitives: Box, Row, Column, Grid with responsive columns and spanning cells, and SafeAreaView wrapper |
|
|
295
295
|
| `list` | List container with interactive items and dividers |
|
|
296
296
|
| `divider` | Horizontal or vertical 1dp rule with optional leading/trailing insets and thickness/color overrides. |
|
|
297
297
|
| `loading-indicator` | MD3 Expressive shape-morphing loading spinner (contained + uncontained, determinate + indeterminate) |
|
package/llms.txt
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
# @rootnative/cli — CLI for RootNative UI
|
|
2
2
|
|
|
3
|
-
> Version: 0.0.0-alpha.
|
|
3
|
+
> Version: 0.0.0-alpha.14
|
|
4
4
|
> Binary: `rootnative`
|
|
5
5
|
> Requirements: Node >=18
|
|
6
6
|
|
|
7
7
|
## CLI (`rootnative`)
|
|
8
8
|
|
|
9
|
+
### Which command
|
|
10
|
+
|
|
11
|
+
| You want | Run |
|
|
12
|
+
| --- | --- |
|
|
13
|
+
| A new project from scratch | `rootnative create` |
|
|
14
|
+
| The copy-paste workflow in an existing project | `rootnative init` |
|
|
15
|
+
| Copy a component (and its dependencies) into the project | `rootnative add <component>` |
|
|
16
|
+
| Refresh installed component files from the pinned registry | `rootnative update` |
|
|
17
|
+
| Move to a new release — bump `@rootnative/core` and the registry pin | `rootnative upgrade` |
|
|
18
|
+
| See what is available and what is installed | `rootnative list` |
|
|
19
|
+
| Diagnose a broken setup | `rootnative doctor` |
|
|
20
|
+
|
|
9
21
|
### Commands
|
|
10
22
|
|
|
11
23
|
#### `rootnative create [name]`
|
|
@@ -50,7 +62,7 @@ Creates `rootnative.json`:
|
|
|
50
62
|
"$schema": "https://rootnative.github.io/ui/schema.json",
|
|
51
63
|
"aliases": { "components": "@/components/ui", "lib": "@/lib" },
|
|
52
64
|
"registryUrl": "https://raw.githubusercontent.com/rootnative/ui",
|
|
53
|
-
"registryVersion": "v0.0.0-alpha.
|
|
65
|
+
"registryVersion": "v0.0.0-alpha.14"
|
|
54
66
|
}
|
|
55
67
|
```
|
|
56
68
|
|