@rootnative/cli 0.0.0-alpha.13 → 0.0.0-alpha.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 +1 -1
- package/dist/index.mjs +2 -4
- package/llms.txt +2 -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/dist/index.mjs
CHANGED
|
@@ -664,9 +664,8 @@ var TEMPLATE_CONFIGS = {
|
|
|
664
664
|
"package.json",
|
|
665
665
|
"app.json",
|
|
666
666
|
"tsconfig.json",
|
|
667
|
-
"babel.config.js",
|
|
668
667
|
".gitignore",
|
|
669
|
-
"index.
|
|
668
|
+
"index.ts",
|
|
670
669
|
"App.tsx"
|
|
671
670
|
],
|
|
672
671
|
dirs: ["assets"]
|
|
@@ -676,7 +675,6 @@ var TEMPLATE_CONFIGS = {
|
|
|
676
675
|
"package.json",
|
|
677
676
|
"app.json",
|
|
678
677
|
"tsconfig.json",
|
|
679
|
-
"babel.config.js",
|
|
680
678
|
".gitignore",
|
|
681
679
|
"app/_layout.tsx",
|
|
682
680
|
"app/index.tsx"
|
|
@@ -686,8 +684,8 @@ var TEMPLATE_CONFIGS = {
|
|
|
686
684
|
};
|
|
687
685
|
var TEMPLATE_BINARY_FILES = [
|
|
688
686
|
"assets/icon.png",
|
|
689
|
-
"assets/splash.png",
|
|
690
687
|
"assets/adaptive-icon.png",
|
|
688
|
+
"assets/splash.png",
|
|
691
689
|
"assets/favicon.png"
|
|
692
690
|
];
|
|
693
691
|
var TEMPLATE_OPTIONAL_TEXT_FILES = ["CLAUDE.md", "README.md"];
|
package/llms.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @rootnative/cli — CLI for RootNative UI
|
|
2
2
|
|
|
3
|
-
> Version: 0.0.0-alpha.
|
|
3
|
+
> Version: 0.0.0-alpha.15
|
|
4
4
|
> Binary: `rootnative`
|
|
5
5
|
> Requirements: Node >=18
|
|
6
6
|
|
|
@@ -62,7 +62,7 @@ Creates `rootnative.json`:
|
|
|
62
62
|
"$schema": "https://rootnative.github.io/ui/schema.json",
|
|
63
63
|
"aliases": { "components": "@/components/ui", "lib": "@/lib" },
|
|
64
64
|
"registryUrl": "https://raw.githubusercontent.com/rootnative/ui",
|
|
65
|
-
"registryVersion": "v0.0.0-alpha.
|
|
65
|
+
"registryVersion": "v0.0.0-alpha.15"
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|