@itwin/presentation-common 5.0.0-dev.1 → 5.0.0-dev.11
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 +29 -1
- package/lib/cjs/presentation-common/KeySet.d.ts.map +1 -1
- package/lib/cjs/presentation-common/KeySet.js +11 -8
- package/lib/cjs/presentation-common/KeySet.js.map +1 -1
- package/lib/cjs/presentation-common/PresentationRpcInterface.d.ts +17 -0
- package/lib/cjs/presentation-common/PresentationRpcInterface.d.ts.map +1 -1
- package/lib/cjs/presentation-common/PresentationRpcInterface.js +17 -0
- package/lib/cjs/presentation-common/PresentationRpcInterface.js.map +1 -1
- package/lib/cjs/presentation-common/RpcRequestsHandler.d.ts.map +1 -1
- package/lib/cjs/presentation-common/RpcRequestsHandler.js +13 -1
- package/lib/cjs/presentation-common/RpcRequestsHandler.js.map +1 -1
- package/lib/cjs/presentation-common/content/PropertyValueFormatter.d.ts.map +1 -1
- package/lib/cjs/presentation-common/content/PropertyValueFormatter.js +31 -23
- package/lib/cjs/presentation-common/content/PropertyValueFormatter.js.map +1 -1
- package/lib/esm/presentation-common/KeySet.d.ts.map +1 -1
- package/lib/esm/presentation-common/KeySet.js +11 -8
- package/lib/esm/presentation-common/KeySet.js.map +1 -1
- package/lib/esm/presentation-common/PresentationRpcInterface.d.ts +17 -0
- package/lib/esm/presentation-common/PresentationRpcInterface.d.ts.map +1 -1
- package/lib/esm/presentation-common/PresentationRpcInterface.js +17 -0
- package/lib/esm/presentation-common/PresentationRpcInterface.js.map +1 -1
- package/lib/esm/presentation-common/RpcRequestsHandler.d.ts.map +1 -1
- package/lib/esm/presentation-common/RpcRequestsHandler.js +13 -1
- package/lib/esm/presentation-common/RpcRequestsHandler.js.map +1 -1
- package/lib/esm/presentation-common/content/PropertyValueFormatter.d.ts.map +1 -1
- package/lib/esm/presentation-common/content/PropertyValueFormatter.js +31 -23
- package/lib/esm/presentation-common/content/PropertyValueFormatter.js.map +1 -1
- package/package.json +12 -12
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.11",
|
|
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.11",
|
|
26
|
+
"@itwin/core-common": "^5.0.0-dev.11",
|
|
27
|
+
"@itwin/core-quantity": "^5.0.0-dev.11",
|
|
28
|
+
"@itwin/ecschema-metadata": "^5.0.0-dev.11"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@itwin/eslint-plugin": "5.0.0-dev.1",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"chai-jest-snapshot": "^2.0.0",
|
|
45
45
|
"chai-subset": "1.6.0",
|
|
46
46
|
"cpx2": "^3.0.0",
|
|
47
|
-
"cross-env": "^
|
|
47
|
+
"cross-env": "^7.0.3",
|
|
48
48
|
"deep-equal": "^1",
|
|
49
49
|
"eslint": "^9.13.0",
|
|
50
50
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -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-
|
|
66
|
-
"@itwin/core-
|
|
67
|
-
"@itwin/core-quantity": "5.0.0-dev.
|
|
68
|
-
"@itwin/ecschema-metadata": "5.0.0-dev.
|
|
64
|
+
"@itwin/build-tools": "5.0.0-dev.11",
|
|
65
|
+
"@itwin/core-bentley": "5.0.0-dev.11",
|
|
66
|
+
"@itwin/core-common": "5.0.0-dev.11",
|
|
67
|
+
"@itwin/core-quantity": "5.0.0-dev.11",
|
|
68
|
+
"@itwin/ecschema-metadata": "5.0.0-dev.11"
|
|
69
69
|
},
|
|
70
70
|
"nyc": {
|
|
71
71
|
"extends": "./node_modules/@itwin/build-tools/.nycrc"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"cover": "nyc npm -s test",
|
|
83
83
|
"docs": "npm run -s docs:reference && npm run -s docs:changelog",
|
|
84
84
|
"docs:changelog": "cpx ./CHANGELOG.md ../../generated-docs/presentation/presentation-common",
|
|
85
|
-
"docs:reference": "betools docs --
|
|
85
|
+
"docs:reference": "betools docs --json=../../generated-docs/presentation/presentation-common/file.json --tsIndexFile=presentation-common.ts --onlyJson",
|
|
86
86
|
"extract": "betools extract --fileExt=ts --extractFrom=./src/test --recursive --out=../../generated-docs/extract",
|
|
87
87
|
"extract-api": "betools extract-api --entry=presentation-common",
|
|
88
88
|
"ruleset-json-schema": "npm run -s ruleset-json-schema:generate && npm run -s ruleset-json-schema:post-process",
|