@itwin/core-frontend 3.5.0-dev.30 → 3.5.0-dev.31
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 +17 -1
- package/package.json +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
# Change Log - @itwin/core-frontend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 28 Oct 2022 13:34:58 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.4.3
|
|
6
|
+
Fri, 28 Oct 2022 13:34:58 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- ArcGIS tilemap requests were missing oauth2 token if available.
|
|
11
|
+
- Reproject reality tiles to the surface of the Earth.
|
|
12
|
+
|
|
13
|
+
## 3.4.2
|
|
14
|
+
Mon, 24 Oct 2022 13:23:45 GMT
|
|
15
|
+
|
|
16
|
+
### Updates
|
|
17
|
+
|
|
18
|
+
- Add functions to obtain the extents of geometric models asynchronously on the backend.
|
|
19
|
+
- Fall back to requesting a tile from the backend when a request to cloud storage throws a 404 error.
|
|
4
20
|
|
|
5
21
|
## 3.4.1
|
|
6
22
|
Mon, 17 Oct 2022 20:06:51 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/core-frontend",
|
|
3
|
-
"version": "3.5.0-dev.
|
|
3
|
+
"version": "3.5.0-dev.31",
|
|
4
4
|
"description": "iTwin.js frontend components",
|
|
5
5
|
"main": "lib/cjs/core-frontend.js",
|
|
6
6
|
"module": "lib/esm/core-frontend.js",
|
|
@@ -22,29 +22,29 @@
|
|
|
22
22
|
"url": "http://www.bentley.com"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@itwin/appui-abstract": "^3.5.0-dev.
|
|
26
|
-
"@itwin/core-bentley": "^3.5.0-dev.
|
|
27
|
-
"@itwin/core-common": "^3.5.0-dev.
|
|
28
|
-
"@itwin/core-geometry": "^3.5.0-dev.
|
|
29
|
-
"@itwin/core-orbitgt": "^3.5.0-dev.
|
|
30
|
-
"@itwin/core-quantity": "^3.5.0-dev.
|
|
31
|
-
"@itwin/webgl-compatibility": "^3.5.0-dev.
|
|
25
|
+
"@itwin/appui-abstract": "^3.5.0-dev.31",
|
|
26
|
+
"@itwin/core-bentley": "^3.5.0-dev.31",
|
|
27
|
+
"@itwin/core-common": "^3.5.0-dev.31",
|
|
28
|
+
"@itwin/core-geometry": "^3.5.0-dev.31",
|
|
29
|
+
"@itwin/core-orbitgt": "^3.5.0-dev.31",
|
|
30
|
+
"@itwin/core-quantity": "^3.5.0-dev.31",
|
|
31
|
+
"@itwin/webgl-compatibility": "^3.5.0-dev.31"
|
|
32
32
|
},
|
|
33
33
|
"//devDependencies": [
|
|
34
34
|
"NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
|
|
35
35
|
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
|
|
36
36
|
],
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@itwin/appui-abstract": "3.5.0-dev.
|
|
39
|
-
"@itwin/build-tools": "3.5.0-dev.
|
|
40
|
-
"@itwin/core-bentley": "3.5.0-dev.
|
|
41
|
-
"@itwin/core-common": "3.5.0-dev.
|
|
42
|
-
"@itwin/core-geometry": "3.5.0-dev.
|
|
43
|
-
"@itwin/core-orbitgt": "3.5.0-dev.
|
|
44
|
-
"@itwin/core-quantity": "3.5.0-dev.
|
|
45
|
-
"@itwin/certa": "3.5.0-dev.
|
|
46
|
-
"@itwin/eslint-plugin": "3.5.0-dev.
|
|
47
|
-
"@itwin/webgl-compatibility": "3.5.0-dev.
|
|
38
|
+
"@itwin/appui-abstract": "3.5.0-dev.31",
|
|
39
|
+
"@itwin/build-tools": "3.5.0-dev.31",
|
|
40
|
+
"@itwin/core-bentley": "3.5.0-dev.31",
|
|
41
|
+
"@itwin/core-common": "3.5.0-dev.31",
|
|
42
|
+
"@itwin/core-geometry": "3.5.0-dev.31",
|
|
43
|
+
"@itwin/core-orbitgt": "3.5.0-dev.31",
|
|
44
|
+
"@itwin/core-quantity": "3.5.0-dev.31",
|
|
45
|
+
"@itwin/certa": "3.5.0-dev.31",
|
|
46
|
+
"@itwin/eslint-plugin": "3.5.0-dev.31",
|
|
47
|
+
"@itwin/webgl-compatibility": "3.5.0-dev.31",
|
|
48
48
|
"@types/chai": "4.3.1",
|
|
49
49
|
"@types/chai-as-promised": "^7",
|
|
50
50
|
"@types/deep-assign": "^0.1.0",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"@itwin/object-storage-azure": "~1.4.0",
|
|
77
77
|
"@itwin/cloud-agnostic-core": "~1.4.0",
|
|
78
78
|
"@itwin/object-storage-core": "~1.4.0",
|
|
79
|
-
"@itwin/core-i18n": "3.5.0-dev.
|
|
80
|
-
"@itwin/core-telemetry": "3.5.0-dev.
|
|
79
|
+
"@itwin/core-i18n": "3.5.0-dev.31",
|
|
80
|
+
"@itwin/core-telemetry": "3.5.0-dev.31",
|
|
81
81
|
"@loaders.gl/core": "^3.1.6",
|
|
82
82
|
"@loaders.gl/draco": "^3.1.6",
|
|
83
83
|
"deep-assign": "^2.0.0",
|