@thinkwise/testwise 0.1.66 → 0.1.75
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/README.md +39 -39
- package/Testwise.ts +2 -3
- package/config.json +9 -9
- package/dist/Testwise.js +2 -4
- package/dist/Testwise.js.map +1 -1
- package/dist/Testwise.json +25 -0
- package/dist/helpers/LoginHelper.d.ts +2 -2
- package/dist/helpers/LoginHelper.js +3 -3
- package/dist/helpers/LoginHelper.js.map +1 -1
- package/dist/package-lock.json +2 -2
- package/dist/package.json +1 -1
- package/dist/page-extensions/GlobalComponents.d.ts +19 -0
- package/dist/page-extensions/GlobalComponents.js +21 -0
- package/dist/page-extensions/GlobalComponents.js.map +1 -0
- package/dist/page-extensions/LoginFeatures.d.ts +1 -1
- package/dist/page-extensions/LoginFeatures.js +2 -2
- package/dist/page-extensions/LoginFeatures.js.map +1 -1
- package/dist/page-extensions/index.d.ts +1 -0
- package/dist/page-extensions/index.js +1 -0
- package/dist/page-extensions/index.js.map +1 -1
- package/dist/seed-data/screen-schemas/chart.json +25 -0
- package/dist/seed-data/screen-schemas/chart_horizontal.json +25 -0
- package/dist/seed-data/screen-schemas/chart_no_fields.json +14 -0
- package/dist/seed-data/screen-schemas/cube.json +40 -0
- package/dist/seed-data/screen-schemas/cube_horizontal.json +40 -0
- package/dist/seed-data/screen-schemas/cube_no_fields.json +25 -0
- package/dist/seed-data/screen-schemas/form_only.json +20 -0
- package/dist/seed-data/screen-schemas/form_with_tree.json +20 -0
- package/dist/seed-data/screen-schemas/grid_with_card_list.json +20 -0
- package/dist/seed-data/screen-schemas/grid_with_filter_form.json +20 -0
- package/dist/seed-data/screen-schemas/grid_with_map.json +20 -0
- package/dist/seed-data/screen-schemas/grid_with_prefilter_bar.json +20 -0
- package/dist/seed-data/screen-schemas/grid_with_report_bar.json +20 -0
- package/dist/seed-data/screen-schemas/grid_with_report_tiles.json +20 -0
- package/dist/seed-data/screen-schemas/hierarchy.json +43 -0
- package/dist/seed-data/screen-schemas/hierarchy_card_list.json +39 -0
- package/dist/seed-data/screen-schemas/hierarchy_no_filter.json +38 -0
- package/dist/seed-data/screen-schemas/look_up_popup.json +48 -0
- package/dist/seed-data/screen-schemas/master_detail.json +39 -0
- package/dist/seed-data/screen-schemas/master_detail_no_filter.json +34 -0
- package/dist/seed-data/screen-schemas/master_detail_vertical.json +39 -0
- package/dist/seed-data/screen-schemas/master_detail_with_preview.json +25 -0
- package/dist/seed-data/screen-schemas/master_detail_with_task_bar.json +48 -0
- package/dist/seed-data/screen-schemas/master_detail_with_task_tiles.json +44 -0
- package/dist/seed-data/screen-schemas/master_vertical_detail.json +39 -0
- package/dist/seed-data/screen-schemas/pivot_grid.json +25 -0
- package/dist/seed-data/screen-schemas/pivot_grid_horizontal.json +25 -0
- package/dist/seed-data/screen-schemas/pivot_grid_no_fields.json +14 -0
- package/dist/seed-data/screen-schemas/scheduler.json +14 -0
- package/dist/seed-data/screen-schemas/test.json +30 -0
- package/dist/seed-data/screen-schemas/testpoonam.json +40 -0
- package/dist/seed-data/screen-schemas/view_customer_cube.json +36 -0
- package/dist/seed-data/subjects.json +1586 -0
- package/helpers/LoginHelper.ts +3 -3
- package/package.json +58 -58
- package/page-extensions/GlobalComponents.ts +37 -0
- package/page-extensions/LoginFeatures.ts +3 -3
- package/page-extensions/index.ts +1 -0
- package/scripts/Testwise.template.json +24 -24
- package/scripts/main.js +11 -11
- package/scripts/tsconfig.template.json +11 -11
- package/tsconfig.json +19 -19
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_grid_with_map",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
6
|
+
"Maps1": { "$ref": "#/definitions/Maps" },
|
|
7
|
+
"Splitter14": { "$ref": "#/definitions/Splitter" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Grid1",
|
|
11
|
+
"Maps1",
|
|
12
|
+
"Splitter14"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"Maps": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
18
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_grid_with_prefilter_bar",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
6
|
+
"Prefilter1": { "$ref": "#/definitions/PrefilterList" },
|
|
7
|
+
"Splitter6": { "$ref": "#/definitions/Splitter" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Grid1",
|
|
11
|
+
"Prefilter1",
|
|
12
|
+
"Splitter6"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"PrefilterList": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
18
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_grid_with_report_bar",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Grid8": { "$ref": "#/definitions/Grid" },
|
|
6
|
+
"Report4": { "$ref": "#/definitions/ReportBar" },
|
|
7
|
+
"Splitter42": { "$ref": "#/definitions/Splitter" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Grid8",
|
|
11
|
+
"Report4",
|
|
12
|
+
"Splitter42"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"ReportBar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
18
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_grid_with_report_tiles",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Grid8": { "$ref": "#/definitions/Grid" },
|
|
6
|
+
"ReportTiles2": { "$ref": "#/definitions/ReportTiles" },
|
|
7
|
+
"Splitter43": { "$ref": "#/definitions/Splitter" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Grid8",
|
|
11
|
+
"ReportTiles2",
|
|
12
|
+
"Splitter43"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"ReportTiles": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
18
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_hierarchy",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
6
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
7
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
8
|
+
"Splitter_57301229": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter_F68EF403": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
12
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
13
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" },
|
|
14
|
+
"Tabbed1Tabpage3": { "$ref": "#/definitions/DetailTab" },
|
|
15
|
+
"Toolbar_65DC5D55": { "$ref": "#/definitions/Actionbar" },
|
|
16
|
+
"Toolbar_75D854B8": { "$ref": "#/definitions/Actionbar" }
|
|
17
|
+
},
|
|
18
|
+
"required": [
|
|
19
|
+
"CombinedFilter1",
|
|
20
|
+
"Form1",
|
|
21
|
+
"Grid1",
|
|
22
|
+
"Splitter_57301229",
|
|
23
|
+
"Splitter_F68EF403",
|
|
24
|
+
"Splitter1",
|
|
25
|
+
"Tabbed1",
|
|
26
|
+
"Tabbed1Tabpage1",
|
|
27
|
+
"Tabbed1Tabpage2",
|
|
28
|
+
"Tabbed1Tabpage3",
|
|
29
|
+
"Toolbar_65DC5D55",
|
|
30
|
+
"Toolbar_75D854B8"
|
|
31
|
+
],
|
|
32
|
+
"additionalProperties": false,
|
|
33
|
+
"definitions": {
|
|
34
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
38
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
39
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
40
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
41
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_hierarchy_card_list",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"card_list_action_bar": { "$ref": "#/definitions/Actionbar" },
|
|
6
|
+
"Cardlist1": { "$ref": "#/definitions/Cardlist" },
|
|
7
|
+
"form_custom_action_bar": { "$ref": "#/definitions/CustomActionBar" },
|
|
8
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
9
|
+
"Splitter_F68EF403": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter5": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
12
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
13
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" },
|
|
14
|
+
"Tabbed1Tabpage3": { "$ref": "#/definitions/DetailTab" }
|
|
15
|
+
},
|
|
16
|
+
"required": [
|
|
17
|
+
"card_list_action_bar",
|
|
18
|
+
"Cardlist1",
|
|
19
|
+
"form_custom_action_bar",
|
|
20
|
+
"Form1",
|
|
21
|
+
"Splitter_F68EF403",
|
|
22
|
+
"Splitter5",
|
|
23
|
+
"Tabbed1",
|
|
24
|
+
"Tabbed1Tabpage1",
|
|
25
|
+
"Tabbed1Tabpage2",
|
|
26
|
+
"Tabbed1Tabpage3"
|
|
27
|
+
],
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"definitions": {
|
|
30
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
31
|
+
"Cardlist": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
32
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"CustomActionBar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_hierarchy_no_filter",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
6
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
7
|
+
"Splitter_D06733C6": { "$ref": "#/definitions/Splitter" },
|
|
8
|
+
"Splitter_E518D20D": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
10
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
11
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" },
|
|
12
|
+
"Tabbed1Tabpage3": { "$ref": "#/definitions/DetailTab" },
|
|
13
|
+
"Toolbar_4FC90C67": { "$ref": "#/definitions/Actionbar" },
|
|
14
|
+
"Toolbar_86919ADA": { "$ref": "#/definitions/Actionbar" }
|
|
15
|
+
},
|
|
16
|
+
"required": [
|
|
17
|
+
"Form1",
|
|
18
|
+
"Grid1",
|
|
19
|
+
"Splitter_D06733C6",
|
|
20
|
+
"Splitter_E518D20D",
|
|
21
|
+
"Tabbed1",
|
|
22
|
+
"Tabbed1Tabpage1",
|
|
23
|
+
"Tabbed1Tabpage2",
|
|
24
|
+
"Tabbed1Tabpage3",
|
|
25
|
+
"Toolbar_4FC90C67",
|
|
26
|
+
"Toolbar_86919ADA"
|
|
27
|
+
],
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"definitions": {
|
|
30
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
31
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
32
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_look_up_popup",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
6
|
+
"CustomActionBar1": { "$ref": "#/definitions/CustomActionBar" },
|
|
7
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
8
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
9
|
+
"Splitter_4CEF0EEE": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Splitter2": { "$ref": "#/definitions/Splitter" },
|
|
12
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
13
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
14
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" },
|
|
15
|
+
"Tabbed1Tabpage3": { "$ref": "#/definitions/ComponentTab" },
|
|
16
|
+
"Tabbed2": { "$ref": "#/definitions/Tab" },
|
|
17
|
+
"Tabbed2Tabpage1": { "$ref": "#/definitions/DetailTab" },
|
|
18
|
+
"Toolbar_45C2970A": { "$ref": "#/definitions/Actionbar" }
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"CombinedFilter1",
|
|
22
|
+
"CustomActionBar1",
|
|
23
|
+
"Form1",
|
|
24
|
+
"Grid1",
|
|
25
|
+
"Splitter_4CEF0EEE",
|
|
26
|
+
"Splitter1",
|
|
27
|
+
"Splitter2",
|
|
28
|
+
"Tabbed1",
|
|
29
|
+
"Tabbed1Tabpage1",
|
|
30
|
+
"Tabbed1Tabpage2",
|
|
31
|
+
"Tabbed1Tabpage3",
|
|
32
|
+
"Tabbed2",
|
|
33
|
+
"Tabbed2Tabpage1",
|
|
34
|
+
"Toolbar_45C2970A"
|
|
35
|
+
],
|
|
36
|
+
"additionalProperties": false,
|
|
37
|
+
"definitions": {
|
|
38
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
39
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
40
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
41
|
+
"CustomActionBar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
42
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
43
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
44
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
45
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
46
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_detail",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
6
|
+
"Form2": { "$ref": "#/definitions/Form" },
|
|
7
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
8
|
+
"Splitter_7A5D95EF": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter2": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
12
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
13
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/DetailTab" },
|
|
14
|
+
"Toolbar_3574C040": { "$ref": "#/definitions/Actionbar" }
|
|
15
|
+
},
|
|
16
|
+
"required": [
|
|
17
|
+
"CombinedFilter1",
|
|
18
|
+
"Form2",
|
|
19
|
+
"Grid1",
|
|
20
|
+
"Splitter_7A5D95EF",
|
|
21
|
+
"Splitter1",
|
|
22
|
+
"Splitter2",
|
|
23
|
+
"Tabbed1",
|
|
24
|
+
"Tabbed1Tabpage1",
|
|
25
|
+
"Tabbed1Tabpage2",
|
|
26
|
+
"Toolbar_3574C040"
|
|
27
|
+
],
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"definitions": {
|
|
30
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
31
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
32
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_detail_no_filter",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
6
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
7
|
+
"Splitter_003C1367": { "$ref": "#/definitions/Splitter" },
|
|
8
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
10
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
11
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/DetailTab" },
|
|
12
|
+
"Toolbar_E86285DA": { "$ref": "#/definitions/Actionbar" }
|
|
13
|
+
},
|
|
14
|
+
"required": [
|
|
15
|
+
"Form1",
|
|
16
|
+
"Grid1",
|
|
17
|
+
"Splitter_003C1367",
|
|
18
|
+
"Splitter1",
|
|
19
|
+
"Tabbed1",
|
|
20
|
+
"Tabbed1Tabpage1",
|
|
21
|
+
"Tabbed1Tabpage2",
|
|
22
|
+
"Toolbar_E86285DA"
|
|
23
|
+
],
|
|
24
|
+
"additionalProperties": false,
|
|
25
|
+
"definitions": {
|
|
26
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
27
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
28
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
29
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
30
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
31
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
32
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_detail_vertical",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
6
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
7
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
8
|
+
"Splitter_3E1ACCD4": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter2": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter3": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
12
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
13
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/DetailTab" },
|
|
14
|
+
"Toolbar_74A8F59A": { "$ref": "#/definitions/Actionbar" }
|
|
15
|
+
},
|
|
16
|
+
"required": [
|
|
17
|
+
"CombinedFilter1",
|
|
18
|
+
"Form1",
|
|
19
|
+
"Grid1",
|
|
20
|
+
"Splitter_3E1ACCD4",
|
|
21
|
+
"Splitter2",
|
|
22
|
+
"Splitter3",
|
|
23
|
+
"Tabbed1",
|
|
24
|
+
"Tabbed1Tabpage1",
|
|
25
|
+
"Tabbed1Tabpage2",
|
|
26
|
+
"Toolbar_74A8F59A"
|
|
27
|
+
],
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"definitions": {
|
|
30
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
31
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
32
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_detail_with_preview",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
6
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
7
|
+
"Preview1": { "$ref": "#/definitions/Preview" },
|
|
8
|
+
"Splitter3": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter4": { "$ref": "#/definitions/Splitter" }
|
|
10
|
+
},
|
|
11
|
+
"required": [
|
|
12
|
+
"Form1",
|
|
13
|
+
"Grid1",
|
|
14
|
+
"Preview1",
|
|
15
|
+
"Splitter3",
|
|
16
|
+
"Splitter4"
|
|
17
|
+
],
|
|
18
|
+
"additionalProperties": false,
|
|
19
|
+
"definitions": {
|
|
20
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
21
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
22
|
+
"Preview": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
23
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_detail_with_task_bar",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
6
|
+
"Form2": { "$ref": "#/definitions/Form" },
|
|
7
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
8
|
+
"Splitter_7A5D95EF": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter2": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Splitter6": { "$ref": "#/definitions/Splitter" },
|
|
12
|
+
"Splitter7": { "$ref": "#/definitions/Splitter" },
|
|
13
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
14
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
15
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/DetailTab" },
|
|
16
|
+
"Task1": { "$ref": "#/definitions/TaskBar" },
|
|
17
|
+
"Task2": { "$ref": "#/definitions/TaskBar" },
|
|
18
|
+
"Toolbar_3574C040": { "$ref": "#/definitions/Actionbar" }
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"CombinedFilter1",
|
|
22
|
+
"Form2",
|
|
23
|
+
"Grid1",
|
|
24
|
+
"Splitter_7A5D95EF",
|
|
25
|
+
"Splitter1",
|
|
26
|
+
"Splitter2",
|
|
27
|
+
"Splitter6",
|
|
28
|
+
"Splitter7",
|
|
29
|
+
"Tabbed1",
|
|
30
|
+
"Tabbed1Tabpage1",
|
|
31
|
+
"Tabbed1Tabpage2",
|
|
32
|
+
"Task1",
|
|
33
|
+
"Task2",
|
|
34
|
+
"Toolbar_3574C040"
|
|
35
|
+
],
|
|
36
|
+
"additionalProperties": false,
|
|
37
|
+
"definitions": {
|
|
38
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
39
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
40
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
41
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
42
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
43
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
44
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
45
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
46
|
+
"TaskBar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_detail_with_task_tiles",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
6
|
+
"Form2": { "$ref": "#/definitions/Form" },
|
|
7
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
8
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter2": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter4": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Splitter6": { "$ref": "#/definitions/Splitter" },
|
|
12
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
13
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
14
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/DetailTab" },
|
|
15
|
+
"TaskTiles2": { "$ref": "#/definitions/TaskTiles" },
|
|
16
|
+
"Toolbar_3574C040": { "$ref": "#/definitions/Actionbar" }
|
|
17
|
+
},
|
|
18
|
+
"required": [
|
|
19
|
+
"CombinedFilter1",
|
|
20
|
+
"Form2",
|
|
21
|
+
"Grid1",
|
|
22
|
+
"Splitter1",
|
|
23
|
+
"Splitter2",
|
|
24
|
+
"Splitter4",
|
|
25
|
+
"Splitter6",
|
|
26
|
+
"Tabbed1",
|
|
27
|
+
"Tabbed1Tabpage1",
|
|
28
|
+
"Tabbed1Tabpage2",
|
|
29
|
+
"TaskTiles2",
|
|
30
|
+
"Toolbar_3574C040"
|
|
31
|
+
],
|
|
32
|
+
"additionalProperties": false,
|
|
33
|
+
"definitions": {
|
|
34
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
38
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
39
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
40
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
41
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
42
|
+
"TaskTiles": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_master_vertical_detail",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"ActionBar1": { "$ref": "#/definitions/Actionbar" },
|
|
6
|
+
"CombinedFilter1": { "$ref": "#/definitions/CombinedFilter" },
|
|
7
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
8
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
9
|
+
"Splitter5": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter6": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Splitter7": { "$ref": "#/definitions/Splitter" },
|
|
12
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
13
|
+
"Tabbed1DetailTabPage1": { "$ref": "#/definitions/DetailTab" },
|
|
14
|
+
"Tabbed1TabPage1": { "$ref": "#/definitions/ComponentTab" }
|
|
15
|
+
},
|
|
16
|
+
"required": [
|
|
17
|
+
"ActionBar1",
|
|
18
|
+
"CombinedFilter1",
|
|
19
|
+
"Form1",
|
|
20
|
+
"Grid1",
|
|
21
|
+
"Splitter5",
|
|
22
|
+
"Splitter6",
|
|
23
|
+
"Splitter7",
|
|
24
|
+
"Tabbed1",
|
|
25
|
+
"Tabbed1DetailTabPage1",
|
|
26
|
+
"Tabbed1TabPage1"
|
|
27
|
+
],
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"definitions": {
|
|
30
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
31
|
+
"CombinedFilter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
32
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"DetailTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"Grid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_pivot_grid",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"PivotGrid1": { "$ref": "#/definitions/PivotGrid" },
|
|
6
|
+
"PivotGridFieldList1": { "$ref": "#/definitions/PivotGridFieldList" },
|
|
7
|
+
"Splitter_7C8DB098": { "$ref": "#/definitions/Splitter" },
|
|
8
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Toolbar_0324318B": { "$ref": "#/definitions/Actionbar" }
|
|
10
|
+
},
|
|
11
|
+
"required": [
|
|
12
|
+
"PivotGrid1",
|
|
13
|
+
"PivotGridFieldList1",
|
|
14
|
+
"Splitter_7C8DB098",
|
|
15
|
+
"Splitter1",
|
|
16
|
+
"Toolbar_0324318B"
|
|
17
|
+
],
|
|
18
|
+
"additionalProperties": false,
|
|
19
|
+
"definitions": {
|
|
20
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
21
|
+
"PivotGrid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
22
|
+
"PivotGridFieldList": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
23
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_pivot_grid_horizontal",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"PivotGrid1": { "$ref": "#/definitions/PivotGrid" },
|
|
6
|
+
"PivotGridFieldList1": { "$ref": "#/definitions/PivotGridFieldList" },
|
|
7
|
+
"Splitter_5E23D2B7": { "$ref": "#/definitions/Splitter" },
|
|
8
|
+
"Splitter6": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Toolbar_CF3E41A3": { "$ref": "#/definitions/Actionbar" }
|
|
10
|
+
},
|
|
11
|
+
"required": [
|
|
12
|
+
"PivotGrid1",
|
|
13
|
+
"PivotGridFieldList1",
|
|
14
|
+
"Splitter_5E23D2B7",
|
|
15
|
+
"Splitter6",
|
|
16
|
+
"Toolbar_CF3E41A3"
|
|
17
|
+
],
|
|
18
|
+
"additionalProperties": false,
|
|
19
|
+
"definitions": {
|
|
20
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
21
|
+
"PivotGrid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
22
|
+
"PivotGridFieldList": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
23
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_pivot_grid_no_fields",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"PivotGrid1": { "$ref": "#/definitions/PivotGrid" }
|
|
6
|
+
},
|
|
7
|
+
"required": [
|
|
8
|
+
"PivotGrid1"
|
|
9
|
+
],
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"definitions": {
|
|
12
|
+
"PivotGrid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
13
|
+
}
|
|
14
|
+
}
|