@itwin/presentation-testing 3.4.0-dev.57 → 3.4.0-dev.58
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/lib/cjs/presentation-testing/ContentBuilder.d.ts +87 -87
- package/lib/cjs/presentation-testing/ContentBuilder.js +147 -147
- package/lib/cjs/presentation-testing/ContentBuilder.js.map +1 -1
- package/lib/cjs/presentation-testing/Helpers.d.ts +38 -38
- package/lib/cjs/presentation-testing/Helpers.js +125 -125
- package/lib/cjs/presentation-testing/Helpers.js.map +1 -1
- package/lib/cjs/presentation-testing/HierarchyBuilder.d.ts +66 -66
- package/lib/cjs/presentation-testing/HierarchyBuilder.js +68 -68
- package/lib/cjs/presentation-testing/HierarchyBuilder.js.map +1 -1
- package/lib/cjs/presentation-testing/IModelBuilder.d.ts +45 -45
- package/lib/cjs/presentation-testing/IModelBuilder.js +170 -170
- package/lib/cjs/presentation-testing/IModelBuilder.js.map +1 -1
- package/lib/cjs/presentation-testing/IModelTestUtility.d.ts +24 -24
- package/lib/cjs/presentation-testing/IModelTestUtility.js +62 -62
- package/lib/cjs/presentation-testing/IModelTestUtility.js.map +1 -1
- package/lib/cjs/presentation-testing.d.ts +28 -28
- package/lib/cjs/presentation-testing.js +44 -44
- package/lib/cjs/presentation-testing.js.map +1 -1
- package/lib/esm/presentation-testing/ContentBuilder.d.ts +87 -87
- package/lib/esm/presentation-testing/ContentBuilder.js +143 -143
- package/lib/esm/presentation-testing/ContentBuilder.js.map +1 -1
- package/lib/esm/presentation-testing/Helpers.d.ts +38 -38
- package/lib/esm/presentation-testing/Helpers.js +100 -100
- package/lib/esm/presentation-testing/Helpers.js.map +1 -1
- package/lib/esm/presentation-testing/HierarchyBuilder.d.ts +66 -66
- package/lib/esm/presentation-testing/HierarchyBuilder.js +63 -63
- package/lib/esm/presentation-testing/HierarchyBuilder.js.map +1 -1
- package/lib/esm/presentation-testing/IModelBuilder.d.ts +45 -45
- package/lib/esm/presentation-testing/IModelBuilder.js +146 -146
- package/lib/esm/presentation-testing/IModelBuilder.js.map +1 -1
- package/lib/esm/presentation-testing/IModelTestUtility.d.ts +24 -24
- package/lib/esm/presentation-testing/IModelTestUtility.js +58 -58
- package/lib/esm/presentation-testing/IModelTestUtility.js.map +1 -1
- package/lib/esm/presentation-testing.d.ts +28 -28
- package/lib/esm/presentation-testing.js +32 -32
- package/lib/esm/presentation-testing.js.map +1 -1
- package/package.json +13 -13
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
/*---------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
|
-
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* @module Hierarchies
|
|
7
|
-
*
|
|
8
|
-
* @docs-group-description Hierarchies
|
|
9
|
-
* Types for testing hierarchies.
|
|
10
|
-
*/
|
|
11
|
-
export * from "./presentation-testing/HierarchyBuilder";
|
|
12
|
-
/**
|
|
13
|
-
* @module Content
|
|
14
|
-
*
|
|
15
|
-
* @docs-group-description Content
|
|
16
|
-
* Types for testing content.
|
|
17
|
-
*/
|
|
18
|
-
export * from "./presentation-testing/ContentBuilder";
|
|
19
|
-
/**
|
|
20
|
-
* @module Helpers
|
|
21
|
-
*
|
|
22
|
-
* @docs-group-description Helpers
|
|
23
|
-
* Various test helpers.
|
|
24
|
-
*/
|
|
25
|
-
export * from "./presentation-testing/Helpers";
|
|
26
|
-
/**
|
|
27
|
-
* @module TestUtilities
|
|
28
|
-
*
|
|
29
|
-
* @docs-group-description TestUtilities
|
|
30
|
-
* Various test helpers.
|
|
31
|
-
*/
|
|
32
|
-
export * from "./presentation-testing/IModelTestUtility";
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* @module Hierarchies
|
|
7
|
+
*
|
|
8
|
+
* @docs-group-description Hierarchies
|
|
9
|
+
* Types for testing hierarchies.
|
|
10
|
+
*/
|
|
11
|
+
export * from "./presentation-testing/HierarchyBuilder";
|
|
12
|
+
/**
|
|
13
|
+
* @module Content
|
|
14
|
+
*
|
|
15
|
+
* @docs-group-description Content
|
|
16
|
+
* Types for testing content.
|
|
17
|
+
*/
|
|
18
|
+
export * from "./presentation-testing/ContentBuilder";
|
|
19
|
+
/**
|
|
20
|
+
* @module Helpers
|
|
21
|
+
*
|
|
22
|
+
* @docs-group-description Helpers
|
|
23
|
+
* Various test helpers.
|
|
24
|
+
*/
|
|
25
|
+
export * from "./presentation-testing/Helpers";
|
|
26
|
+
/**
|
|
27
|
+
* @module TestUtilities
|
|
28
|
+
*
|
|
29
|
+
* @docs-group-description TestUtilities
|
|
30
|
+
* Various test helpers.
|
|
31
|
+
*/
|
|
32
|
+
export * from "./presentation-testing/IModelTestUtility";
|
|
33
33
|
//# sourceMappingURL=presentation-testing.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"presentation-testing.js","sourceRoot":"","sources":["../../src/presentation-testing.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F;;;;;GAKG;AACH,cAAc,yCAAyC,CAAC;AAExD;;;;;GAKG;AACH,cAAc,uCAAuC,CAAC;AAEtD;;;;;GAKG;AACH,cAAc,gCAAgC,CAAC;AAE/C;;;;;GAKG;AACH,cAAc,0CAA0C,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/**\n * @module Hierarchies\n *\n * @docs-group-description Hierarchies\n * Types for testing hierarchies.\n */\nexport * from \"./presentation-testing/HierarchyBuilder\";\n\n/**\n * @module Content\n *\n * @docs-group-description Content\n * Types for testing content.\n */\nexport * from \"./presentation-testing/ContentBuilder\";\n\n/**\n * @module Helpers\n *\n * @docs-group-description Helpers\n * Various test helpers.\n */\nexport * from \"./presentation-testing/Helpers\";\n\n/**\n * @module TestUtilities\n *\n * @docs-group-description TestUtilities\n * Various test helpers.\n */\nexport * from \"./presentation-testing/IModelTestUtility\";\n"]}
|
|
1
|
+
{"version":3,"file":"presentation-testing.js","sourceRoot":"","sources":["../../src/presentation-testing.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F;;;;;GAKG;AACH,cAAc,yCAAyC,CAAC;AAExD;;;;;GAKG;AACH,cAAc,uCAAuC,CAAC;AAEtD;;;;;GAKG;AACH,cAAc,gCAAgC,CAAC;AAE/C;;;;;GAKG;AACH,cAAc,0CAA0C,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n/**\r\n * @module Hierarchies\r\n *\r\n * @docs-group-description Hierarchies\r\n * Types for testing hierarchies.\r\n */\r\nexport * from \"./presentation-testing/HierarchyBuilder\";\r\n\r\n/**\r\n * @module Content\r\n *\r\n * @docs-group-description Content\r\n * Types for testing content.\r\n */\r\nexport * from \"./presentation-testing/ContentBuilder\";\r\n\r\n/**\r\n * @module Helpers\r\n *\r\n * @docs-group-description Helpers\r\n * Various test helpers.\r\n */\r\nexport * from \"./presentation-testing/Helpers\";\r\n\r\n/**\r\n * @module TestUtilities\r\n *\r\n * @docs-group-description TestUtilities\r\n * Various test helpers.\r\n */\r\nexport * from \"./presentation-testing/IModelTestUtility\";\r\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/presentation-testing",
|
|
3
|
-
"version": "3.4.0-dev.
|
|
3
|
+
"version": "3.4.0-dev.58",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"ignore-styles": "^5.0.1"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@itwin/appui-abstract": "3.4.0-dev.
|
|
29
|
-
"@itwin/build-tools": "3.4.0-dev.
|
|
30
|
-
"@itwin/components-react": "3.4.0-dev.
|
|
31
|
-
"@itwin/core-backend": "3.4.0-dev.
|
|
32
|
-
"@itwin/core-bentley": "3.4.0-dev.
|
|
33
|
-
"@itwin/core-common": "3.4.0-dev.
|
|
34
|
-
"@itwin/core-frontend": "3.4.0-dev.
|
|
35
|
-
"@itwin/eslint-plugin": "3.4.0-dev.
|
|
36
|
-
"@itwin/presentation-backend": "3.4.0-dev.
|
|
37
|
-
"@itwin/presentation-common": "3.4.0-dev.
|
|
38
|
-
"@itwin/presentation-components": "3.4.0-dev.
|
|
39
|
-
"@itwin/presentation-frontend": "3.4.0-dev.
|
|
28
|
+
"@itwin/appui-abstract": "3.4.0-dev.58",
|
|
29
|
+
"@itwin/build-tools": "3.4.0-dev.58",
|
|
30
|
+
"@itwin/components-react": "3.4.0-dev.58",
|
|
31
|
+
"@itwin/core-backend": "3.4.0-dev.58",
|
|
32
|
+
"@itwin/core-bentley": "3.4.0-dev.58",
|
|
33
|
+
"@itwin/core-common": "3.4.0-dev.58",
|
|
34
|
+
"@itwin/core-frontend": "3.4.0-dev.58",
|
|
35
|
+
"@itwin/eslint-plugin": "3.4.0-dev.58",
|
|
36
|
+
"@itwin/presentation-backend": "3.4.0-dev.58",
|
|
37
|
+
"@itwin/presentation-common": "3.4.0-dev.58",
|
|
38
|
+
"@itwin/presentation-components": "3.4.0-dev.58",
|
|
39
|
+
"@itwin/presentation-frontend": "3.4.0-dev.58",
|
|
40
40
|
"@types/chai": "4.3.1",
|
|
41
41
|
"@types/chai-as-promised": "^7",
|
|
42
42
|
"@types/chai-jest-snapshot": "^1.3.0",
|