@itwin/editor-frontend 3.1.0-dev.27 → 3.1.0-dev.32
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 +33 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
# Change Log - @itwin/editor-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
|
+
- The Cartographic creation API now takes an interface as an argument with named properties. This will avoid callers mixing up the order of longitude, latitude, and height.
|
|
11
|
+
- fix code for breaking change to .query() method
|
|
12
|
+
- Create interpolation curve for through points construction.
|
|
13
|
+
- InterpolationCurve3d support
|
|
14
|
+
- Upgrade target to ES2019 and deliver both a CommonJs and ESModule version of package
|
|
15
|
+
- Dynamics should honor appearance overrides appliled to original element. Added blend tools.
|
|
16
|
+
- Updated to Electron 14
|
|
17
|
+
- Added ability to convert iModel coordinates to or from any Geographic CRS
|
|
18
|
+
- Support multi-select of sub-entities.
|
|
19
|
+
- Provide default tool assistance for face/edge/vertex selection phase.
|
|
20
|
+
- rename to @itwin/editor-frontend
|
|
21
|
+
- Allow sweep/spin of open path to create a sheet.
|
|
22
|
+
- Don't try to locate sub-entity under cursor until previous request completes.
|
|
23
|
+
- Create bcurve from control points now supports closure.
|
|
24
|
+
- Basic solid modeling operations are now covered.
|
|
25
|
+
- Improve error messages for "editor project location save".
|
|
26
|
+
- Don't hide original elements until we get a result. Cache filterHit status.
|
|
27
|
+
- Replace usage of I18N with generic Localization interface.
|
|
28
|
+
- remove ClientRequestContext.current
|
|
29
|
+
- Update to use new tool setting helper methods.
|
|
30
|
+
- New solid modeling ipc interface
|
|
31
|
+
- More solid modeling functionality.
|
|
32
|
+
- Add tool settings for solid modeling tools.
|
|
33
|
+
- New tools to sweep/spin faces and delete faces/imprinted edges.
|
|
34
|
+
- tool.run and tool.parseAndRun are now async methods
|
|
35
|
+
- Added tool setting helper methods.
|
|
4
36
|
|
|
5
37
|
## 2.19.28
|
|
6
38
|
Wed, 12 Jan 2022 14:52:38 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/editor-frontend",
|
|
3
|
-
"version": "3.1.0-dev.
|
|
3
|
+
"version": "3.1.0-dev.32",
|
|
4
4
|
"description": "iTwin.js frontend components",
|
|
5
5
|
"main": "lib/cjs/editor-frontend.js",
|
|
6
6
|
"module": "lib/esm/editor-frontend.js",
|
|
@@ -23,19 +23,19 @@
|
|
|
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.
|
|
26
|
+
"@itwin/core-bentley": "^3.1.0-dev.32",
|
|
27
|
+
"@itwin/core-common": "^3.1.0-dev.32"
|
|
28
28
|
},
|
|
29
29
|
"//devDependencies": [
|
|
30
30
|
"NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
|
|
31
31
|
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
|
|
32
32
|
],
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@itwin/build-tools": "3.1.0-dev.
|
|
35
|
-
"@itwin/certa": "3.1.0-dev.
|
|
36
|
-
"@itwin/core-bentley": "3.1.0-dev.
|
|
37
|
-
"@itwin/core-common": "3.1.0-dev.
|
|
38
|
-
"@itwin/eslint-plugin": "3.1.0-dev.
|
|
34
|
+
"@itwin/build-tools": "3.1.0-dev.32",
|
|
35
|
+
"@itwin/certa": "3.1.0-dev.32",
|
|
36
|
+
"@itwin/core-bentley": "3.1.0-dev.32",
|
|
37
|
+
"@itwin/core-common": "3.1.0-dev.32",
|
|
38
|
+
"@itwin/eslint-plugin": "3.1.0-dev.32",
|
|
39
39
|
"cpx2": "^3.0.0",
|
|
40
40
|
"eslint": "^7.11.0",
|
|
41
41
|
"rimraf": "^3.0.2",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"NOTE: editor-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@itwin/core-frontend": "3.1.0-dev.
|
|
50
|
-
"@itwin/core-geometry": "3.1.0-dev.
|
|
51
|
-
"@itwin/editor-common": "3.1.0-dev.
|
|
52
|
-
"@itwin/appui-abstract": "3.1.0-dev.
|
|
49
|
+
"@itwin/core-frontend": "3.1.0-dev.32",
|
|
50
|
+
"@itwin/core-geometry": "3.1.0-dev.32",
|
|
51
|
+
"@itwin/editor-common": "3.1.0-dev.32",
|
|
52
|
+
"@itwin/appui-abstract": "3.1.0-dev.32"
|
|
53
53
|
},
|
|
54
54
|
"eslintConfig": {
|
|
55
55
|
"plugins": [
|