-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug-expression-test.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathdebug-expression-test.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"app": {
"title": "Debug Expression Test",
"pages": [
{
"id": "testPage",
"title": "Test Page",
"route": "/test",
"layout": "vertical",
"components": [
{
"id": "input1",
"type": "input",
"label": "Input 1",
"props": {
"inputType": "number",
"placeholder": "Enter a number"
}
},
{
"id": "calculated1",
"type": "input",
"label": "Calculated 1 (input1 * 2)",
"expression": {
"expression": "input1 * 2",
"mode": "value",
"dependencies": ["input1"],
"evaluateOnChange": true,
"debounceMs": 100,
"defaultValue": 0
},
"props": {
"inputType": "number",
"readOnly": true,
"helperText": "Calculated automatically"
}
}
],
"isEndPage": true
}
]
},
"defaultLanguage": "en",
"supportedLanguages": ["en"],
"languageDetails": [
{
"code": "en",
"name": "English",
"nativeName": "English"
}
]
}