@aeriajs/compiler 0.0.76 → 0.0.77
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/dist/ast.d.ts +1 -0
- package/dist/lexer.d.ts +1 -1
- package/dist/lexer.js +1 -0
- package/dist/parser.js +1 -0
- package/package.json +1 -1
package/dist/ast.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export type CollectionNode = NodeBase<'collection'> & {
|
|
|
79
79
|
functions?: FunctionNode[];
|
|
80
80
|
functionSets?: [string, symbol][];
|
|
81
81
|
required?: RequiredProperties;
|
|
82
|
+
immutable?: readonly string[];
|
|
82
83
|
indexes?: readonly string[];
|
|
83
84
|
presets?: DescriptionPreset[];
|
|
84
85
|
form?: readonly string[];
|
package/dist/lexer.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Token } from './token.js';
|
|
2
2
|
import { Diagnostic } from './diagnostic.js';
|
|
3
|
-
export declare const COLLECTION_KEYWORDS: readonly ["actions", "additionalProperties", "filters", "form", "formLayout", "functions", "icon", "indexes", "individualActions", "layout", "middlewares", "owned", "presets", "properties", "required", "search", "table", "tableMeta", "unique", "writable"];
|
|
3
|
+
export declare const COLLECTION_KEYWORDS: readonly ["actions", "additionalProperties", "filters", "form", "formLayout", "functions", "icon", "immutable", "indexes", "individualActions", "layout", "middlewares", "owned", "presets", "properties", "required", "search", "table", "tableMeta", "unique", "writable"];
|
|
4
4
|
export declare const COLLECTION_ACTIONS_KEYWORDS: readonly ["ask", "button", "clearItem", "effect", "event", "fetchItem", "function", "icon", "label", "params", "query", "requires", "roles", "route", "selection", "setItem", "translate"];
|
|
5
5
|
export declare const COLLECTION_SEARCH_KEYWORDS: readonly ["indexes", "placeholder", "exactMatches"];
|
|
6
6
|
export declare const COLLECTION_LAYOUT_KEYWORDS: readonly ["name", "options"];
|
package/dist/lexer.js
CHANGED
package/dist/parser.js
CHANGED