@constela/compiler 0.14.0 → 0.14.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -53,6 +53,7 @@ The compiler transforms JSON programs through three passes:
53
53
  - **concat expression** - Compiles string concatenation expressions
54
54
  - **Object payloads** - Supports object-shaped event handler payloads with expression fields
55
55
  - **call/lambda expressions** - Compiles method calls and anonymous functions for array/string/Math/Date operations
56
+ - **array expression** - Compiles dynamic array construction from expressions
56
57
 
57
58
  ## CompiledProgram Structure
58
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/compiler",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "Compiler for Constela UI framework - AST to Program transformation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -15,7 +15,7 @@
15
15
  "dist"
16
16
  ],
17
17
  "dependencies": {
18
- "@constela/core": "0.15.0"
18
+ "@constela/core": "0.15.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/node": "^20.10.0",