@itwin/core-frontend 4.2.0-dev.5 → 4.2.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.
- package/CHANGELOG.md +40 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,45 @@
|
|
|
1
1
|
# Change Log - @itwin/core-frontend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 15 Aug 2023 19:39:59 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.1.0
|
|
6
|
+
Mon, 14 Aug 2023 14:36:34 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Fix decoding of draco-compressed texture coordinates in glTF.
|
|
11
|
+
- Take into account the aspectRatioSkew of the view inside the window area tool.
|
|
12
|
+
- Fixed world decorations disappearing and asserts
|
|
13
|
+
- Fixed black view caused by certain cases of going back down to one viewport.
|
|
14
|
+
- Fix background map layers failing to blend with an opaque solid base layer.
|
|
15
|
+
- avoid unnecessary preflight requests when loading tiles from cloud cache
|
|
16
|
+
- Fix Viewport.isPixelSelectable following signature change of Viewport.mapLayerFromIds
|
|
17
|
+
- Added support for UniqueValue renderer in ArcGIS feature format
|
|
18
|
+
- Two map-layers instances having different formatId or subLayers set should not share the same tile tree.
|
|
19
|
+
- Improved ArcGIS map-layers validation.
|
|
20
|
+
- Revisited Viewport.getMapFeatureInfo, it now return graphics along with records.
|
|
21
|
+
- Added logging to 'MapLayerImageryProvider.createTileTree' and added missing export in MapLayerSources.
|
|
22
|
+
- Upgrade sinon to 15.0.4
|
|
23
|
+
- Fix gaps in certain reprojected tiles.
|
|
24
|
+
- Promoted TentativeOrAccuSnap to public
|
|
25
|
+
- Ensure element Ids are loaded for RenderTimeline element when schedule scripts are applied on the frontend.
|
|
26
|
+
- Promote many rendering-related APIs.
|
|
27
|
+
- Introduce compact encoding scheme for edges in iMdl tiles.
|
|
28
|
+
- Fix assertion when reading glTF containing a normal map.
|
|
29
|
+
- Add more efficient methods for converting multiple points to and from an iModel's spatial coordinate system.
|
|
30
|
+
- Support decoding point clouds from glTF.
|
|
31
|
+
- Split iMdl tile decoding into two phases: parsing and graphics creation.
|
|
32
|
+
- Decode iMdl tile content in a web worker.
|
|
33
|
+
- Treat non-standard mimeType "image/jpg" as "image/jpeg".
|
|
34
|
+
- Support snapping to elements inside of orthogonal view attachments.
|
|
35
|
+
- ViewCreator3d fits to the extents of the viewed models. SpatialViewState.computeFitRange accepts an optional minimal fit range.
|
|
36
|
+
- add ViewStore apis
|
|
37
|
+
- Switch to ESLint new flat config system
|
|
38
|
+
|
|
39
|
+
## 4.0.7
|
|
40
|
+
Thu, 10 Aug 2023 13:19:24 GMT
|
|
41
|
+
|
|
42
|
+
_Version update only_
|
|
4
43
|
|
|
5
44
|
## 4.0.6
|
|
6
45
|
Mon, 24 Jul 2023 05:07:33 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/core-frontend",
|
|
3
|
-
"version": "4.2.0-dev.
|
|
3
|
+
"version": "4.2.0-dev.6",
|
|
4
4
|
"description": "iTwin.js frontend components",
|
|
5
5
|
"main": "lib/cjs/core-frontend.js",
|
|
6
6
|
"module": "lib/esm/core-frontend.js",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"url": "http://www.bentley.com"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@itwin/appui-abstract": "^4.2.0-dev.
|
|
27
|
-
"@itwin/core-bentley": "^4.2.0-dev.
|
|
28
|
-
"@itwin/core-common": "^4.2.0-dev.
|
|
29
|
-
"@itwin/core-geometry": "^4.2.0-dev.
|
|
30
|
-
"@itwin/core-orbitgt": "^4.2.0-dev.
|
|
31
|
-
"@itwin/core-quantity": "^4.2.0-dev.
|
|
26
|
+
"@itwin/appui-abstract": "^4.2.0-dev.6",
|
|
27
|
+
"@itwin/core-bentley": "^4.2.0-dev.6",
|
|
28
|
+
"@itwin/core-common": "^4.2.0-dev.6",
|
|
29
|
+
"@itwin/core-geometry": "^4.2.0-dev.6",
|
|
30
|
+
"@itwin/core-orbitgt": "^4.2.0-dev.6",
|
|
31
|
+
"@itwin/core-quantity": "^4.2.0-dev.6"
|
|
32
32
|
},
|
|
33
33
|
"//devDependencies": [
|
|
34
34
|
"NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"source-map-loader": "^4.0.0",
|
|
56
56
|
"typescript": "~5.0.2",
|
|
57
57
|
"webpack": "^5.76.0",
|
|
58
|
-
"@itwin/appui-abstract": "4.2.0-dev.
|
|
59
|
-
"@itwin/
|
|
60
|
-
"@itwin/
|
|
61
|
-
"@itwin/core-
|
|
62
|
-
"@itwin/core-
|
|
63
|
-
"@itwin/core-orbitgt": "4.2.0-dev.
|
|
64
|
-
"@itwin/core-quantity": "4.2.0-dev.
|
|
65
|
-
"@itwin/certa": "4.2.0-dev.
|
|
58
|
+
"@itwin/appui-abstract": "4.2.0-dev.6",
|
|
59
|
+
"@itwin/build-tools": "4.2.0-dev.6",
|
|
60
|
+
"@itwin/core-bentley": "4.2.0-dev.6",
|
|
61
|
+
"@itwin/core-geometry": "4.2.0-dev.6",
|
|
62
|
+
"@itwin/core-common": "4.2.0-dev.6",
|
|
63
|
+
"@itwin/core-orbitgt": "4.2.0-dev.6",
|
|
64
|
+
"@itwin/core-quantity": "4.2.0-dev.6",
|
|
65
|
+
"@itwin/certa": "4.2.0-dev.6"
|
|
66
66
|
},
|
|
67
67
|
"//dependencies": [
|
|
68
68
|
"NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API",
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
"@loaders.gl/draco": "^3.1.6",
|
|
76
76
|
"fuse.js": "^3.3.0",
|
|
77
77
|
"wms-capabilities": "0.4.0",
|
|
78
|
-
"@itwin/core-i18n": "4.2.0-dev.
|
|
79
|
-
"@itwin/
|
|
80
|
-
"@itwin/
|
|
78
|
+
"@itwin/core-i18n": "4.2.0-dev.6",
|
|
79
|
+
"@itwin/core-telemetry": "4.2.0-dev.6",
|
|
80
|
+
"@itwin/webgl-compatibility": "4.2.0-dev.6"
|
|
81
81
|
},
|
|
82
82
|
"nyc": {
|
|
83
83
|
"extends": "./node_modules/@itwin/build-tools/.nycrc"
|