@itwin/presentation-common 5.0.0-dev.6 → 5.0.0-dev.7
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/CHANGELOG.md +22 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
# Change Log - @itwin/presentation-common
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 14 Nov 2024 18:13:56 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.10.1
|
|
6
|
+
Thu, 14 Nov 2024 18:11:00 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Fixed enum property values formatting issue, where raw value was used instead of enum's display value.
|
|
11
|
+
|
|
12
|
+
## 4.10.0
|
|
13
|
+
Wed, 13 Nov 2024 15:23:39 GMT
|
|
14
|
+
|
|
15
|
+
### Minor changes
|
|
16
|
+
|
|
17
|
+
- All public methods of `PresentationRpcInterface` have been deprecated. Going forward, RPC interfaces should not be called directly. Public wrappers such as `PresentationManager` should be used instead.
|
|
18
|
+
|
|
19
|
+
### Updates
|
|
20
|
+
|
|
21
|
+
- Add extended data for calculated properties
|
|
22
|
+
- ContentFormatter does not throw when formatting properties with 'undefined' value
|
|
23
|
+
- KeySet: Always store instance key class name in `Schema:Class` format.
|
|
24
|
+
- Fix failure to deserialize content from JSON for instances with nulls in array property values
|
|
4
25
|
|
|
5
26
|
## 4.9.7
|
|
6
27
|
Wed, 06 Nov 2024 19:23:04 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/presentation-common",
|
|
3
|
-
"version": "5.0.0-dev.
|
|
3
|
+
"version": "5.0.0-dev.7",
|
|
4
4
|
"description": "Common pieces for iModel.js presentation packages",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"module": "lib/esm/presentation-common.js",
|
|
23
23
|
"typings": "lib/cjs/presentation-common",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@itwin/core-bentley": "^5.0.0-dev.
|
|
26
|
-
"@itwin/core-common": "^5.0.0-dev.
|
|
27
|
-
"@itwin/core-quantity": "^5.0.0-dev.
|
|
28
|
-
"@itwin/ecschema-metadata": "^5.0.0-dev.
|
|
25
|
+
"@itwin/core-bentley": "^5.0.0-dev.7",
|
|
26
|
+
"@itwin/core-common": "^5.0.0-dev.7",
|
|
27
|
+
"@itwin/core-quantity": "^5.0.0-dev.7",
|
|
28
|
+
"@itwin/ecschema-metadata": "^5.0.0-dev.7"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@itwin/eslint-plugin": "5.0.0-dev.1",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
"typescript": "~5.6.2",
|
|
62
62
|
"typescript-json-schema": "^0.55.0",
|
|
63
63
|
"yargs": "^17.4.0",
|
|
64
|
-
"@itwin/build-tools": "5.0.0-dev.
|
|
65
|
-
"@itwin/core-bentley": "5.0.0-dev.
|
|
66
|
-
"@itwin/core-common": "5.0.0-dev.
|
|
67
|
-
"@itwin/core-quantity": "5.0.0-dev.
|
|
68
|
-
"@itwin/ecschema-metadata": "5.0.0-dev.
|
|
64
|
+
"@itwin/build-tools": "5.0.0-dev.7",
|
|
65
|
+
"@itwin/core-bentley": "5.0.0-dev.7",
|
|
66
|
+
"@itwin/core-common": "5.0.0-dev.7",
|
|
67
|
+
"@itwin/core-quantity": "5.0.0-dev.7",
|
|
68
|
+
"@itwin/ecschema-metadata": "5.0.0-dev.7"
|
|
69
69
|
},
|
|
70
70
|
"nyc": {
|
|
71
71
|
"extends": "./node_modules/@itwin/build-tools/.nycrc"
|