@itwin/presentation-frontend 3.1.0-dev.25 → 3.1.0-dev.29
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 +30 -3
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,33 @@
|
|
|
1
1
|
# Change Log - @itwin/presentation-frontend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 24 Jan 2022 14:00:52 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.0.0
|
|
6
|
+
Mon, 24 Jan 2022 14:00:52 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- fix code for breaking change to .query() method
|
|
11
|
+
- Upgrade target to ES2019 and deliver both a CommonJs and ESModule version of package
|
|
12
|
+
- fix ecsql row format
|
|
13
|
+
- getAccessToken always returns a token
|
|
14
|
+
- rename contextId -> iTwinId
|
|
15
|
+
- rename to @itwin/presentation-frontend
|
|
16
|
+
- remove ClientRequestContext and its subclasses
|
|
17
|
+
- Allow supplying `SelectionManager` and `FavoritePropertiesManager` props when initializing `Presentation`.
|
|
18
|
+
- Change default `IFavoritePropertiesStorage` implementation to no-op and provide ability to choose another one when initializing `Presentation`.
|
|
19
|
+
- Clean up deprecated APIs
|
|
20
|
+
- Added API to get properties of all elements.
|
|
21
|
+
- Fix hilite set provider somtimes caching results with wrong GUID, causing invalid hilite set being returned afterwards.
|
|
22
|
+
- Added `PresentationManager.getContentSources` API to retrieve information about where content for specific types of elements comes from.
|
|
23
|
+
- Fix `RulesetVariablesManager.onVariableChanged` event not being fired when a mutable value is set.
|
|
24
|
+
- Remove ability to get multiple element properties in frontend.
|
|
25
|
+
- Add `getContentInstanceKeys` RPC to efficiently get content instance keys.
|
|
26
|
+
- Remove `PresentationManager.loadHierarchy` API.
|
|
27
|
+
- Changed uses of `PresentationUnitSystem` to `UnitSystemKey`.
|
|
28
|
+
- Replace usage of I18N with generic Localization interface.
|
|
29
|
+
- Switching to consume new Projects-Client
|
|
30
|
+
- Renamed an iModel's parent container to iTwin
|
|
4
31
|
|
|
5
32
|
## 2.19.28
|
|
6
33
|
Wed, 12 Jan 2022 14:52:38 GMT
|
|
@@ -327,7 +354,7 @@ Tue, 09 Mar 2021 20:28:13 GMT
|
|
|
327
354
|
### Updates
|
|
328
355
|
|
|
329
356
|
- Fixed broken double angle bracket link syntax
|
|
330
|
-
- Changed 'compareHierarchy' to build result in pages for massive result sets.
|
|
357
|
+
- Changed 'compareHierarchy' to build result in pages for massive result sets.
|
|
331
358
|
- HiliteSetProvider: return geometric elements grouped by BisCore.GroupInformationElement
|
|
332
359
|
- Updated to use TypeScript 4.1
|
|
333
360
|
- begin rename project from iModel.js to iTwin.js
|
|
@@ -770,7 +797,7 @@ Mon, 13 May 2019 15:52:05 GMT
|
|
|
770
797
|
- Do not include transient element IDs when syncing with logical selection
|
|
771
798
|
- Always compute selection when syncing tool selection with logical selection - that's necessary to determine concrete element class names. Without that, we're adding keys with "BisCore:Element" class to selection and then our keys compare fails (presentation components like the table always have concrete class names). This can cause rows / nodes not to be highlighted in components.
|
|
772
799
|
- Remove IModelApp subclasses
|
|
773
|
-
- Setup a generic context for tracking client requests, and made various related enhancements to logging, usage tracking and authorization.
|
|
800
|
+
- Setup a generic context for tracking client requests, and made various related enhancements to logging, usage tracking and authorization.
|
|
774
801
|
- Upgrade TypeDoc dependency to 0.14.2
|
|
775
802
|
|
|
776
803
|
## 0.190.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/presentation-frontend",
|
|
3
|
-
"version": "3.1.0-dev.
|
|
3
|
+
"version": "3.1.0-dev.29",
|
|
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",
|
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
"url": "http://www.bentley.com"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@itwin/core-bentley": "^3.1.0-dev.
|
|
27
|
-
"@itwin/core-common": "^3.1.0-dev.
|
|
28
|
-
"@itwin/core-frontend": "^3.1.0-dev.
|
|
29
|
-
"@itwin/core-quantity": "^3.1.0-dev.
|
|
30
|
-
"@itwin/presentation-common": "^3.1.0-dev.
|
|
26
|
+
"@itwin/core-bentley": "^3.1.0-dev.29",
|
|
27
|
+
"@itwin/core-common": "^3.1.0-dev.29",
|
|
28
|
+
"@itwin/core-frontend": "^3.1.0-dev.29",
|
|
29
|
+
"@itwin/core-quantity": "^3.1.0-dev.29",
|
|
30
|
+
"@itwin/presentation-common": "^3.1.0-dev.29"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@itwin/build-tools": "3.1.0-dev.
|
|
34
|
-
"@itwin/core-bentley": "3.1.0-dev.
|
|
35
|
-
"@itwin/core-common": "3.1.0-dev.
|
|
36
|
-
"@itwin/core-frontend": "3.1.0-dev.
|
|
37
|
-
"@itwin/core-i18n": "3.1.0-dev.
|
|
38
|
-
"@itwin/core-quantity": "3.1.0-dev.
|
|
39
|
-
"@itwin/eslint-plugin": "3.1.0-dev.
|
|
40
|
-
"@itwin/presentation-common": "3.1.0-dev.
|
|
33
|
+
"@itwin/build-tools": "3.1.0-dev.29",
|
|
34
|
+
"@itwin/core-bentley": "3.1.0-dev.29",
|
|
35
|
+
"@itwin/core-common": "3.1.0-dev.29",
|
|
36
|
+
"@itwin/core-frontend": "3.1.0-dev.29",
|
|
37
|
+
"@itwin/core-i18n": "3.1.0-dev.29",
|
|
38
|
+
"@itwin/core-quantity": "3.1.0-dev.29",
|
|
39
|
+
"@itwin/eslint-plugin": "3.1.0-dev.29",
|
|
40
|
+
"@itwin/presentation-common": "3.1.0-dev.29",
|
|
41
41
|
"@types/chai": "^4.1.4",
|
|
42
42
|
"@types/chai-as-promised": "^7",
|
|
43
43
|
"@types/chai-jest-snapshot": "^1.3.0",
|