@itwin/presentation-backend 5.0.0-dev.56 → 5.0.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-backend/NativePlatform.js +2 -0
- package/lib/cjs/presentation-backend/NativePlatform.js.map +1 -1
- package/lib/cjs/presentation-backend/Presentation.js +8 -2
- package/lib/cjs/presentation-backend/Presentation.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationIpcHandler.js +1 -4
- package/lib/cjs/presentation-backend/PresentationIpcHandler.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationManager.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/PresentationManager.js +16 -12
- package/lib/cjs/presentation-backend/PresentationManager.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationManagerDetail.d.ts +3 -1
- package/lib/cjs/presentation-backend/PresentationManagerDetail.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/PresentationManagerDetail.js +51 -17
- package/lib/cjs/presentation-backend/PresentationManagerDetail.js.map +1 -1
- package/lib/cjs/presentation-backend/PresentationRpcImpl.d.ts +5 -5
- package/lib/cjs/presentation-backend/PresentationRpcImpl.d.ts.map +1 -1
- package/lib/cjs/presentation-backend/PresentationRpcImpl.js +11 -36
- package/lib/cjs/presentation-backend/PresentationRpcImpl.js.map +1 -1
- package/lib/cjs/presentation-backend/RulesetEmbedder.js +5 -3
- package/lib/cjs/presentation-backend/RulesetEmbedder.js.map +1 -1
- package/lib/cjs/presentation-backend/RulesetManager.js +2 -1
- package/lib/cjs/presentation-backend/RulesetManager.js.map +1 -1
- package/lib/cjs/presentation-backend/RulesetVariablesManager.js +2 -0
- package/lib/cjs/presentation-backend/RulesetVariablesManager.js.map +1 -1
- package/lib/cjs/presentation-backend/TemporaryStorage.js +29 -25
- package/lib/cjs/presentation-backend/TemporaryStorage.js.map +1 -1
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/presentation-backend",
|
|
3
|
-
"version": "5.0.0-dev.
|
|
3
|
+
"version": "5.0.0-dev.58",
|
|
4
4
|
"description": "Backend of iTwin.js Presentation library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"main": "lib/cjs/presentation-backend.js",
|
|
24
24
|
"typings": "lib/cjs/presentation-backend",
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@itwin/core-
|
|
27
|
-
"@itwin/
|
|
28
|
-
"@itwin/
|
|
29
|
-
"@itwin/core-
|
|
30
|
-
"@itwin/
|
|
31
|
-
"@itwin/
|
|
26
|
+
"@itwin/core-backend": "5.0.0-dev.58",
|
|
27
|
+
"@itwin/core-bentley": "5.0.0-dev.58",
|
|
28
|
+
"@itwin/ecschema-metadata": "5.0.0-dev.58",
|
|
29
|
+
"@itwin/core-common": "5.0.0-dev.58",
|
|
30
|
+
"@itwin/presentation-common": "5.0.0-dev.58",
|
|
31
|
+
"@itwin/core-quantity": "5.0.0-dev.58"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@itwin/eslint-plugin": "5.0.0-dev.1",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"source-map-support": "^0.5.6",
|
|
68
68
|
"typemoq": "^2.1.0",
|
|
69
69
|
"typescript": "~5.6.2",
|
|
70
|
-
"@itwin/build-tools": "5.0.0-dev.
|
|
71
|
-
"@itwin/core-quantity": "5.0.0-dev.
|
|
72
|
-
"@itwin/core-
|
|
73
|
-
"@itwin/core-
|
|
74
|
-
"@itwin/
|
|
75
|
-
"@itwin/
|
|
76
|
-
"@itwin/
|
|
70
|
+
"@itwin/build-tools": "5.0.0-dev.58",
|
|
71
|
+
"@itwin/core-quantity": "5.0.0-dev.58",
|
|
72
|
+
"@itwin/core-bentley": "5.0.0-dev.58",
|
|
73
|
+
"@itwin/core-backend": "5.0.0-dev.58",
|
|
74
|
+
"@itwin/core-common": "5.0.0-dev.58",
|
|
75
|
+
"@itwin/ecschema-metadata": "5.0.0-dev.58",
|
|
76
|
+
"@itwin/presentation-common": "5.0.0-dev.58"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
79
|
"object-hash": "^1.3.1",
|