@constela/language-server 0.1.32 → 0.1.33

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/dist/index.js +2 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -449,11 +449,11 @@ var VIEW_DOCS = {
449
449
  description: "Text node - represents text content"
450
450
  },
451
451
  if: {
452
- signature: '{ "kind": "if", "condition": Expression, "then": ViewNode, "else"?: ViewNode }',
452
+ signature: '{ "kind": "if", "condition": Expression, "transition"?: TransitionDirective, "then": ViewNode, "else"?: ViewNode }',
453
453
  description: "If node - conditional rendering"
454
454
  },
455
455
  each: {
456
- signature: '{ "kind": "each", "items": Expression, "as": string, "index"?: string, "key"?: Expression, "body": ViewNode }',
456
+ signature: '{ "kind": "each", "items": Expression, "as": string, "index"?: string, "key"?: Expression, "transition"?: TransitionDirective, "body": ViewNode }',
457
457
  description: "Each node - list rendering"
458
458
  },
459
459
  component: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/language-server",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "Language Server Protocol implementation for Constela DSL",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23,8 +23,8 @@
23
23
  "vscode-languageserver-textdocument": "^1.0.12",
24
24
  "vscode-jsonrpc": "^8.2.1",
25
25
  "jsonc-parser": "^3.3.1",
26
- "@constela/core": "0.22.1",
27
- "@constela/compiler": "0.15.22"
26
+ "@constela/core": "0.23.0",
27
+ "@constela/compiler": "0.16.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "^20.10.0",