@itwin/presentation-frontend 4.6.0-dev.3 → 4.6.0-dev.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,6 +1,23 @@
1
1
  # Change Log - @itwin/presentation-frontend
2
2
 
3
- This log was last generated on Mon, 25 Mar 2024 22:24:35 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 03 Apr 2024 18:28:10 GMT and should not be manually modified.
4
+
5
+ ## 4.5.1
6
+ Wed, 03 Apr 2024 18:26:59 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.5.0
11
+ Tue, 02 Apr 2024 19:06:00 GMT
12
+
13
+ ### Updates
14
+
15
+ - Added ability to provide custom selection storage. This allows to use `@itwin/presentation-frontned` with `@itwin/unified-selection`.
16
+ - Add `getNodesIterator`, `getDistinctValuesIterator`, `getContentIterator` and `getDisplayLabelDefinitionIterator` methods to `PresentationManager` which return async iterators and load data using multiple parallel requests.
17
+ - Deprecate `getNodes`, `getNodesAndCount`, `getContent`, `getContentAndSize`, `getPagedDistinctValues` and `getDisplayLabelDefinitions` in favor of the alternatives which return iterators.
18
+ - Made initialization of a new iModel connection non-blocking in most cases and moved the responsibility of doing that to the `FavoritePropertiesManager` class.
19
+ - Deprecated synchronous `FavoritePropertiesManager` functions `has` and `sortFields` in favor of `hasAsync` and `sortFieldsAsync`.
20
+ - Deprecated `FavoritePropertiesManager.initializeConnection` because it's not necessary to call anymore.
4
21
 
5
22
  ## 4.4.8
6
23
  Mon, 25 Mar 2024 22:22:26 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/presentation-frontend",
3
- "version": "4.6.0-dev.3",
3
+ "version": "4.6.0-dev.6",
4
4
  "description": "Frontend of iModel.js Presentation library",
5
5
  "main": "lib/cjs/presentation-frontend.js",
6
6
  "module": "lib/esm/presentation-frontend.js",
@@ -28,12 +28,12 @@
28
28
  "rxjs-for-await": "^1.0.0"
29
29
  },
30
30
  "peerDependencies": {
31
- "@itwin/core-bentley": "^4.6.0-dev.3",
32
- "@itwin/core-common": "^4.6.0-dev.3",
33
- "@itwin/core-frontend": "^4.6.0-dev.3",
34
- "@itwin/core-quantity": "^4.6.0-dev.3",
35
- "@itwin/ecschema-metadata": "^4.6.0-dev.3",
36
- "@itwin/presentation-common": "^4.6.0-dev.3"
31
+ "@itwin/core-bentley": "^4.6.0-dev.6",
32
+ "@itwin/core-common": "^4.6.0-dev.6",
33
+ "@itwin/core-frontend": "^4.6.0-dev.6",
34
+ "@itwin/core-quantity": "^4.6.0-dev.6",
35
+ "@itwin/ecschema-metadata": "^4.6.0-dev.6",
36
+ "@itwin/presentation-common": "^4.6.0-dev.6"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@itwin/eslint-plugin": "4.0.0-dev.44",
@@ -65,14 +65,14 @@
65
65
  "source-map-support": "^0.5.6",
66
66
  "typemoq": "^2.1.0",
67
67
  "typescript": "~5.0.2",
68
- "@itwin/build-tools": "4.6.0-dev.3",
69
- "@itwin/core-common": "4.6.0-dev.3",
70
- "@itwin/core-bentley": "4.6.0-dev.3",
71
- "@itwin/core-frontend": "4.6.0-dev.3",
72
- "@itwin/core-i18n": "4.6.0-dev.3",
73
- "@itwin/core-quantity": "4.6.0-dev.3",
74
- "@itwin/ecschema-metadata": "4.6.0-dev.3",
75
- "@itwin/presentation-common": "4.6.0-dev.3"
68
+ "@itwin/core-common": "4.6.0-dev.6",
69
+ "@itwin/build-tools": "4.6.0-dev.6",
70
+ "@itwin/core-frontend": "4.6.0-dev.6",
71
+ "@itwin/core-bentley": "4.6.0-dev.6",
72
+ "@itwin/core-i18n": "4.6.0-dev.6",
73
+ "@itwin/core-quantity": "4.6.0-dev.6",
74
+ "@itwin/ecschema-metadata": "4.6.0-dev.6",
75
+ "@itwin/presentation-common": "4.6.0-dev.6"
76
76
  },
77
77
  "nyc": {
78
78
  "extends": "./node_modules/@itwin/build-tools/.nycrc"