Remove legacy compute schema support

This commit is contained in:
2026-01-18 17:41:57 +00:00
parent a718aca6f5
commit 966b6f2aa6
20 changed files with 260 additions and 281 deletions

View File

@@ -38,7 +38,7 @@
"id": "displayName",
"type": "computed",
"dependencies": ["userProfile"],
"computeId": "displayName"
"expression": "data.userProfile.name"
}
],
"components": [

View File

@@ -19,9 +19,12 @@
"valuePlaceholder": "{\"key\": \"value\"}"
},
"computed": {
"computeLabel": "Compute Function",
"computePlaceholder": "(data) => data.source1 + data.source2",
"computeHelp": "Function that computes the value from other data sources",
"expressionLabel": "Expression",
"expressionPlaceholder": "data.source1",
"expressionHelp": "Expression that computes the value from other data sources",
"valueTemplateLabel": "Value Template (JSON)",
"valueTemplatePlaceholder": "{\n \"total\": \"data.items.length\"\n}",
"valueTemplateHelp": "Template object with expressions for computed fields",
"dependenciesLabel": "Dependencies",
"availableSourcesLabel": "Available Sources",
"emptyDependencies": "No data sources available. Create KV or static sources first."