@thinkwise/testwise 0.1.65 → 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 -0
- package/Testwise.ts +2 -3
- package/components/grid/Grid.ts +23 -0
- package/components/grid/GridObjects.ts +3 -1
- package/dist/Testwise.js +2 -4
- package/dist/Testwise.js.map +1 -1
- package/dist/Testwise.json +25 -0
- package/dist/components/grid/Grid.d.ts +19 -0
- package/dist/components/grid/Grid.js +21 -0
- package/dist/components/grid/Grid.js.map +1 -1
- package/dist/components/grid/GridObjects.d.ts +1 -0
- package/dist/components/grid/GridObjects.js +2 -1
- package/dist/components/grid/GridObjects.js.map +1 -1
- 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 +223 -254
- package/dist/package.json +5 -6
- 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 +1 -1
- package/page-extensions/GlobalComponents.ts +37 -0
- package/page-extensions/LoginFeatures.ts +3 -3
- package/page-extensions/index.ts +1 -0
- package/scripts/setup.js +34 -34
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thinkwise/testwise",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.74",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
|
|
12
12
|
"format:fix": "run-s \"lint --fix\" && biome check --fix --unsafe",
|
|
13
|
-
"format:check": "run-s \"lint \" && biome check"
|
|
14
|
-
"postinstall": "node scripts/main.js install"
|
|
13
|
+
"format:check": "run-s \"lint \" && biome check"
|
|
15
14
|
},
|
|
16
15
|
"keywords": [],
|
|
17
16
|
"author": "",
|
|
@@ -23,11 +22,11 @@
|
|
|
23
22
|
"chalk": "^5.4.1",
|
|
24
23
|
"csv-parse": "^5.6.0",
|
|
25
24
|
"dotenv": "^17.2.2",
|
|
26
|
-
"prompts": "^2.4.2"
|
|
27
|
-
"ts-node": "^10.9.2"
|
|
25
|
+
"prompts": "^2.4.2"
|
|
28
26
|
},
|
|
29
27
|
"peerDependencies": {
|
|
30
|
-
"@playwright/test": "^1.52.0"
|
|
28
|
+
"@playwright/test": "^1.52.0",
|
|
29
|
+
"typescript": "^5.8.3"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
32
|
"@biomejs/biome": "^2.1.2",
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { Page } from '@playwright/test';
|
|
2
|
+
import { ExportComponent, PopUpComponent } from '../components/index.js';
|
|
3
|
+
import type { Test } from '../types/CoreTypes.js';
|
|
4
|
+
declare class GlobalComponents {
|
|
5
|
+
popUp: PopUpComponent;
|
|
6
|
+
export: ExportComponent;
|
|
7
|
+
constructor(page: Page);
|
|
8
|
+
}
|
|
9
|
+
declare module '@playwright/test' {
|
|
10
|
+
interface Page {
|
|
11
|
+
components: GlobalComponents;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export declare class Components {
|
|
15
|
+
private _test;
|
|
16
|
+
constructor(test: Test);
|
|
17
|
+
get test(): Test;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ExportComponent, PopUpComponent } from '../components/index.js';
|
|
2
|
+
class GlobalComponents {
|
|
3
|
+
constructor(page) {
|
|
4
|
+
this.popUp = new PopUpComponent(page);
|
|
5
|
+
this.export = new ExportComponent(page);
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export class Components {
|
|
9
|
+
constructor(test) {
|
|
10
|
+
this._test = test.extend({
|
|
11
|
+
page: async ({ page }, use) => {
|
|
12
|
+
page.components = new GlobalComponents(page);
|
|
13
|
+
await use(page);
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
get test() {
|
|
18
|
+
return this._test;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=GlobalComponents.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlobalComponents.js","sourceRoot":"","sources":["../../page-extensions/GlobalComponents.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAGzE,MAAM,gBAAgB;IAIpB,YAAY,IAAU;QACpB,IAAI,CAAC,KAAK,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;CACF;AAQD,MAAM,OAAO,UAAU;IAGrB,YAAY,IAAU;QACpB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YACvB,IAAI,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE;gBAC5B,IAAI,CAAC,UAAU,GAAG,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAC;gBAE7C,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC;SACF,CAAC,CAAC;IACL,CAAC;IAED,IAAI,IAAI;QACN,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;CACF"}
|
|
@@ -2,7 +2,7 @@ import type { Test } from '../types/CoreTypes.js';
|
|
|
2
2
|
import type { UniversalLoginOptions } from '../types/index.js';
|
|
3
3
|
declare module '@playwright/test' {
|
|
4
4
|
interface Page {
|
|
5
|
-
logIn(): Promise<void>;
|
|
5
|
+
logIn(applicationId?: string): Promise<void>;
|
|
6
6
|
logInWithCredentials(username: string, password: string): Promise<void>;
|
|
7
7
|
logInWithOptions(options: UniversalLoginOptions): Promise<void>;
|
|
8
8
|
logOut(): Promise<void>;
|
|
@@ -4,8 +4,8 @@ export class LoginFeatures {
|
|
|
4
4
|
this._test = test.extend({
|
|
5
5
|
page: async ({ page }, use) => {
|
|
6
6
|
this._loginHelper = new LoginHelper(page);
|
|
7
|
-
page.logIn = async () => {
|
|
8
|
-
await this.loginHelper.logIn();
|
|
7
|
+
page.logIn = async (applicationId) => {
|
|
8
|
+
await this.loginHelper.logIn(applicationId);
|
|
9
9
|
};
|
|
10
10
|
page.logInWithCredentials = async (username, password) => {
|
|
11
11
|
await this.loginHelper.logInWithCredentials(username, password);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LoginFeatures.js","sourceRoot":"","sources":["../../page-extensions/LoginFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAaxD,MAAM,OAAO,aAAa;IAIxB,YAAY,IAAU;QACpB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YACvB,IAAI,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE;gBAC5B,IAAI,CAAC,YAAY,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;gBAE1C,IAAI,CAAC,KAAK,GAAG,KAAK,
|
|
1
|
+
{"version":3,"file":"LoginFeatures.js","sourceRoot":"","sources":["../../page-extensions/LoginFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAaxD,MAAM,OAAO,aAAa;IAIxB,YAAY,IAAU;QACpB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YACvB,IAAI,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE;gBAC5B,IAAI,CAAC,YAAY,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;gBAE1C,IAAI,CAAC,KAAK,GAAG,KAAK,EAAE,aAAsB,EAAE,EAAE;oBAC5C,MAAM,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;gBAC9C,CAAC,CAAC;gBAEF,IAAI,CAAC,oBAAoB,GAAG,KAAK,EAAE,QAAgB,EAAE,QAAgB,EAAE,EAAE;oBACvE,MAAM,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;gBAClE,CAAC,CAAC;gBAEF,IAAI,CAAC,gBAAgB,GAAG,KAAK,EAAE,OAA8B,EAAE,EAAE;oBAC/D,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;gBACnD,CAAC,CAAC;gBAEF,IAAI,CAAC,MAAM,GAAG,KAAK,IAAI,EAAE;oBACvB,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;gBAClC,CAAC,CAAC;gBAEF,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC;SACF,CAAC,CAAC;IACL,CAAC;IAED,IAAY,WAAW;QACrB,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;YACvB,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;QACpD,CAAC;QAED,OAAO,IAAI,CAAC,YAAY,CAAC;IAC3B,CAAC;IAED,IAAI,IAAI;QACN,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../page-extensions/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../page-extensions/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_chart",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Chart1": { "$ref": "#/definitions/Chart" },
|
|
6
|
+
"PivotGridFieldList1": { "$ref": "#/definitions/PivotGridFieldList" },
|
|
7
|
+
"Splitter_DB1D3C31": { "$ref": "#/definitions/Splitter" },
|
|
8
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Toolbar_BB2502FC": { "$ref": "#/definitions/Actionbar" }
|
|
10
|
+
},
|
|
11
|
+
"required": [
|
|
12
|
+
"Chart1",
|
|
13
|
+
"PivotGridFieldList1",
|
|
14
|
+
"Splitter_DB1D3C31",
|
|
15
|
+
"Splitter1",
|
|
16
|
+
"Toolbar_BB2502FC"
|
|
17
|
+
],
|
|
18
|
+
"additionalProperties": false,
|
|
19
|
+
"definitions": {
|
|
20
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
21
|
+
"Chart": { "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_chart_horizontal",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Chart1": { "$ref": "#/definitions/Chart" },
|
|
6
|
+
"PivotGridFieldList1": { "$ref": "#/definitions/PivotGridFieldList" },
|
|
7
|
+
"Splitter_A5007C3F": { "$ref": "#/definitions/Splitter" },
|
|
8
|
+
"Splitter2": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Toolbar_907134B1": { "$ref": "#/definitions/Actionbar" }
|
|
10
|
+
},
|
|
11
|
+
"required": [
|
|
12
|
+
"Chart1",
|
|
13
|
+
"PivotGridFieldList1",
|
|
14
|
+
"Splitter_A5007C3F",
|
|
15
|
+
"Splitter2",
|
|
16
|
+
"Toolbar_907134B1"
|
|
17
|
+
],
|
|
18
|
+
"additionalProperties": false,
|
|
19
|
+
"definitions": {
|
|
20
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
21
|
+
"Chart": { "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_chart_no_fields",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Chart1": { "$ref": "#/definitions/Chart" }
|
|
6
|
+
},
|
|
7
|
+
"required": [
|
|
8
|
+
"Chart1"
|
|
9
|
+
],
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"definitions": {
|
|
12
|
+
"Chart": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_cube",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Chart1": { "$ref": "#/definitions/Chart" },
|
|
6
|
+
"PivotGrid1": { "$ref": "#/definitions/PivotGrid" },
|
|
7
|
+
"PivotGridFieldList1": { "$ref": "#/definitions/PivotGridFieldList" },
|
|
8
|
+
"Splitter_886BCD13": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter_E71D598C": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
12
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
13
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" },
|
|
14
|
+
"Toolbar_503DB1BD": { "$ref": "#/definitions/Actionbar" },
|
|
15
|
+
"Toolbar_BE6BDF12": { "$ref": "#/definitions/Actionbar" }
|
|
16
|
+
},
|
|
17
|
+
"required": [
|
|
18
|
+
"Chart1",
|
|
19
|
+
"PivotGrid1",
|
|
20
|
+
"PivotGridFieldList1",
|
|
21
|
+
"Splitter_886BCD13",
|
|
22
|
+
"Splitter_E71D598C",
|
|
23
|
+
"Splitter1",
|
|
24
|
+
"Tabbed1",
|
|
25
|
+
"Tabbed1Tabpage1",
|
|
26
|
+
"Tabbed1Tabpage2",
|
|
27
|
+
"Toolbar_503DB1BD",
|
|
28
|
+
"Toolbar_BE6BDF12"
|
|
29
|
+
],
|
|
30
|
+
"additionalProperties": false,
|
|
31
|
+
"definitions": {
|
|
32
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"Chart": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"PivotGrid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"PivotGridFieldList": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
38
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_cube_horizontal",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Chart1": { "$ref": "#/definitions/Chart" },
|
|
6
|
+
"PivotGrid1": { "$ref": "#/definitions/PivotGrid" },
|
|
7
|
+
"PivotGridFieldList1": { "$ref": "#/definitions/PivotGridFieldList" },
|
|
8
|
+
"Splitter_78515F00": { "$ref": "#/definitions/Splitter" },
|
|
9
|
+
"Splitter_A6E7DBE5": { "$ref": "#/definitions/Splitter" },
|
|
10
|
+
"Splitter5": { "$ref": "#/definitions/Splitter" },
|
|
11
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
12
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
13
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" },
|
|
14
|
+
"Toolbar_96F2195F": { "$ref": "#/definitions/Actionbar" },
|
|
15
|
+
"Toolbar_CF139710": { "$ref": "#/definitions/Actionbar" }
|
|
16
|
+
},
|
|
17
|
+
"required": [
|
|
18
|
+
"Chart1",
|
|
19
|
+
"PivotGrid1",
|
|
20
|
+
"PivotGridFieldList1",
|
|
21
|
+
"Splitter_78515F00",
|
|
22
|
+
"Splitter_A6E7DBE5",
|
|
23
|
+
"Splitter5",
|
|
24
|
+
"Tabbed1",
|
|
25
|
+
"Tabbed1Tabpage1",
|
|
26
|
+
"Tabbed1Tabpage2",
|
|
27
|
+
"Toolbar_96F2195F",
|
|
28
|
+
"Toolbar_CF139710"
|
|
29
|
+
],
|
|
30
|
+
"additionalProperties": false,
|
|
31
|
+
"definitions": {
|
|
32
|
+
"Actionbar": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
33
|
+
"Chart": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
34
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
35
|
+
"PivotGrid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
36
|
+
"PivotGridFieldList": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
37
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
38
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_cube_no_fields",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Chart1": { "$ref": "#/definitions/Chart" },
|
|
6
|
+
"PivotGrid1": { "$ref": "#/definitions/PivotGrid" },
|
|
7
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
8
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" },
|
|
9
|
+
"Tabbed1Tabpage2": { "$ref": "#/definitions/ComponentTab" }
|
|
10
|
+
},
|
|
11
|
+
"required": [
|
|
12
|
+
"Chart1",
|
|
13
|
+
"PivotGrid1",
|
|
14
|
+
"Tabbed1",
|
|
15
|
+
"Tabbed1Tabpage1",
|
|
16
|
+
"Tabbed1Tabpage2"
|
|
17
|
+
],
|
|
18
|
+
"additionalProperties": false,
|
|
19
|
+
"definitions": {
|
|
20
|
+
"Chart": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
21
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
22
|
+
"PivotGrid": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
23
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_form_only",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Form2": { "$ref": "#/definitions/Form" },
|
|
6
|
+
"Tabbed1": { "$ref": "#/definitions/Tab" },
|
|
7
|
+
"Tabbed1Tabpage1": { "$ref": "#/definitions/ComponentTab" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Form2",
|
|
11
|
+
"Tabbed1",
|
|
12
|
+
"Tabbed1Tabpage1"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"ComponentTab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
18
|
+
"Tab": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_form_with_tree",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Form1": { "$ref": "#/definitions/Form" },
|
|
6
|
+
"Splitter1": { "$ref": "#/definitions/Splitter" },
|
|
7
|
+
"Tree1": { "$ref": "#/definitions/TreeView" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Form1",
|
|
11
|
+
"Splitter1",
|
|
12
|
+
"Tree1"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"Form": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"Splitter": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
18
|
+
"TreeView": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "I_grid_with_card_list",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Cardlist2": { "$ref": "#/definitions/Cardlist" },
|
|
6
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
7
|
+
"Splitter10": { "$ref": "#/definitions/Splitter" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Cardlist2",
|
|
11
|
+
"Grid1",
|
|
12
|
+
"Splitter10"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"Cardlist": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"Grid": { "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_filter_form",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"Filter1": { "$ref": "#/definitions/FilterForm" },
|
|
6
|
+
"Grid1": { "$ref": "#/definitions/Grid" },
|
|
7
|
+
"Splitter8": { "$ref": "#/definitions/Splitter" }
|
|
8
|
+
},
|
|
9
|
+
"required": [
|
|
10
|
+
"Filter1",
|
|
11
|
+
"Grid1",
|
|
12
|
+
"Splitter8"
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"definitions": {
|
|
16
|
+
"FilterForm": { "type": "object", "properties": { "temp": { "type": "string" } }, "required": ["temp"], "additionalProperties": false },
|
|
17
|
+
"Grid": { "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_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
|
+
}
|