@anvil-works/anvil-cli 0.5.14 → 0.6.0
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 +26 -0
- package/dist/SavePathRouter.d.ts.map +1 -1
- package/dist/api.d.ts +1 -0
- package/dist/api.d.ts.map +1 -1
- package/dist/cli.js +900 -233
- package/dist/componentBuiltinTypes.d.ts +11 -0
- package/dist/componentBuiltinTypes.d.ts.map +1 -0
- package/dist/index.js +906 -242
- package/dist/program.d.ts.map +1 -1
- package/dist/serviceSources.d.ts +5 -0
- package/dist/serviceSources.d.ts.map +1 -0
- package/dist/services/git-auth.d.ts +9 -0
- package/dist/services/git-auth.d.ts.map +1 -1
- package/dist/validators.d.ts +43 -3
- package/dist/validators.d.ts.map +1 -1
- package/dist/watch/SyncManager.d.ts +1 -0
- package/dist/watch/SyncManager.d.ts.map +1 -1
- package/package.json +1 -1
- package/scripts/install/install.sh +4 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Built-in Anvil component type names allowed in form_template YAML.
|
|
3
|
+
*
|
|
4
|
+
* Primary source: `anvil/platform/editor/react/src/data/componentIcons.ts` — the `icons` object keys.
|
|
5
|
+
* Excludes `UNKNOWN` / `UNKNOWN_MIN` (toolbox placeholders, not real component types).
|
|
6
|
+
*
|
|
7
|
+
* `HtmlTemplate` is used in serialized forms; the toolbox maps `HtmlPanel` to the same designer class
|
|
8
|
+
* (see runtime `instantiation.ts`). Include `HtmlTemplate` here so YAML validates.
|
|
9
|
+
*/
|
|
10
|
+
export declare const BUILTIN_COMPONENT_TYPES: Set<string>;
|
|
11
|
+
//# sourceMappingURL=componentBuiltinTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"componentBuiltinTypes.d.ts","sourceRoot":"","sources":["../src/componentBuiltinTypes.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,eAAO,MAAM,uBAAuB,aA+BlC,CAAC"}
|