@itwin/map-layers 3.1.0-dev.27 → 3.1.0-dev.28
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 +35 -4
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
# Change Log - @itwin/map-layers
|
|
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
|
+
- Upgrade target to ES2019 and deliver both a CommonJs and ESModule version of package
|
|
11
|
+
- Layers could not be added through MapLayers widget when UserPreferences was not set. Fix various issues related to user preferences.
|
|
12
|
+
- Fixed various CSS issues in map-layers widget after recent UI framework changes.
|
|
13
|
+
- No longer display username/password fields by default in the custom map layers dialog: If validation fails and reports authentication is needed, we then ask end-user for credentials.
|
|
14
|
+
- Use QuantityNumericInput for 'Elevation Offset' and 'Model Height' fields instead of hardcoded units.
|
|
15
|
+
- Migrated from Toggle to ToggleSwitch component in map-layers widget
|
|
16
|
+
- rename contextId -> iTwinId
|
|
17
|
+
- Unregister maplayers itemsProvider and widget control on terminate.
|
|
18
|
+
- Now use 'DisplayStyleState.backgroundMapBase' instead of 'DisplayStyleState.changeBaseMapProps' to update the mapImagery.
|
|
19
|
+
- use new @itwin package names
|
|
20
|
+
- rename to @itwin/map-layers
|
|
21
|
+
- remove ClientRequestContext and its subclasses
|
|
22
|
+
- Replace usage of I18N with generic Localization interface.
|
|
23
|
+
- Renamed an iModel's parent container to iTwin
|
|
24
|
+
- Ignore lint warning for deprecated class
|
|
25
|
+
- Upgraded itwinui-react to 1.16.2. Fixed editor sizes.
|
|
26
|
+
- Update to latest itwinui-react
|
|
27
|
+
- Incorporating iTwinUI-CSS and iTwinUI-React into iModel.js
|
|
28
|
+
- Update to React 17.
|
|
29
|
+
- Created imodel-components folder & package and moved color, lineweight, navigationaids, quantity, timeline & viewport. Deprecated MessageSeverity in ui-core & added it ui-abstract. Added MessagePresenter interface to ui-abstract.
|
|
30
|
+
- Replace deprecated ThemedSelect component with iTwinUI-react Select component.
|
|
31
|
+
- Remove itwinUi css overrides.
|
|
32
|
+
- Replaced ui-core Slider with one from iTwinUi-react.
|
|
33
|
+
- Update to latest types/react package
|
|
34
|
+
- Lock down and update version numbers so docs will build.
|
|
4
35
|
|
|
5
36
|
## 2.19.28
|
|
6
37
|
Wed, 12 Jan 2022 14:52:38 GMT
|
|
@@ -259,7 +290,7 @@ Mon, 24 May 2021 15:58:39 GMT
|
|
|
259
290
|
|
|
260
291
|
### Updates
|
|
261
292
|
|
|
262
|
-
- Fix 'npm run cover' that would never complete.
|
|
293
|
+
- Fix 'npm run cover' that would never complete.
|
|
263
294
|
- Exposed the map masking option in the map layers settings UI.
|
|
264
295
|
- Move map tile trees to Viewport to handle synching correctly
|
|
265
296
|
- Update to latest classnames package
|
|
@@ -334,7 +365,7 @@ Tue, 09 Mar 2021 20:28:13 GMT
|
|
|
334
365
|
|
|
335
366
|
### Updates
|
|
336
367
|
|
|
337
|
-
- Restored base layer visibility button in map manager.
|
|
368
|
+
- Restored base layer visibility button in map manager.
|
|
338
369
|
- Updated to use TypeScript 4.1
|
|
339
370
|
- begin rename project from iModel.js to iTwin.js
|
|
340
371
|
|
|
@@ -359,7 +390,7 @@ Thu, 18 Feb 2021 22:10:13 GMT
|
|
|
359
390
|
### Updates
|
|
360
391
|
|
|
361
392
|
- Provide default props to map-layers widget when used as an extension.
|
|
362
|
-
- ArcGIS token-based authentification support: MapLayerManager now monitor provider status and display a warning icon when there is a authentifiation error while loading tiles. User is allowed to provide credentials without the need to fully re-attach the layer. Invalid credentials feedback is now provided. It is now possible to save an ArcGIS layer requiring authentification in the settings service, althoug redentials wont be persisted.
|
|
393
|
+
- ArcGIS token-based authentification support: MapLayerManager now monitor provider status and display a warning icon when there is a authentifiation error while loading tiles. User is allowed to provide credentials without the need to fully re-attach the layer. Invalid credentials feedback is now provided. It is now possible to save an ArcGIS layer requiring authentification in the settings service, althoug redentials wont be persisted.
|
|
363
394
|
|
|
364
395
|
## 2.11.2
|
|
365
396
|
Thu, 18 Feb 2021 02:50:59 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/map-layers",
|
|
3
|
-
"version": "3.1.0-dev.
|
|
3
|
+
"version": "3.1.0-dev.28",
|
|
4
4
|
"description": "Extension that adds a Map Layers Widget",
|
|
5
5
|
"main": "lib/cjs/map-layers.js",
|
|
6
6
|
"module": "lib/esm/map-layers.js",
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
"url": "http://www.bentley.com"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@itwin/appui-abstract": "3.1.0-dev.
|
|
25
|
-
"@itwin/appui-layout-react": "3.1.0-dev.
|
|
26
|
-
"@itwin/appui-react": "3.1.0-dev.
|
|
27
|
-
"@itwin/build-tools": "3.1.0-dev.
|
|
28
|
-
"@itwin/components-react": "3.1.0-dev.
|
|
29
|
-
"@itwin/core-bentley": "3.1.0-dev.
|
|
30
|
-
"@itwin/core-common": "3.1.0-dev.
|
|
31
|
-
"@itwin/core-frontend": "3.1.0-dev.
|
|
32
|
-
"@itwin/core-geometry": "3.1.0-dev.
|
|
33
|
-
"@itwin/core-quantity": "3.1.0-dev.
|
|
34
|
-
"@itwin/core-react": "3.1.0-dev.
|
|
35
|
-
"@itwin/eslint-plugin": "3.1.0-dev.
|
|
36
|
-
"@itwin/imodel-components-react": "3.1.0-dev.
|
|
24
|
+
"@itwin/appui-abstract": "3.1.0-dev.28",
|
|
25
|
+
"@itwin/appui-layout-react": "3.1.0-dev.28",
|
|
26
|
+
"@itwin/appui-react": "3.1.0-dev.28",
|
|
27
|
+
"@itwin/build-tools": "3.1.0-dev.28",
|
|
28
|
+
"@itwin/components-react": "3.1.0-dev.28",
|
|
29
|
+
"@itwin/core-bentley": "3.1.0-dev.28",
|
|
30
|
+
"@itwin/core-common": "3.1.0-dev.28",
|
|
31
|
+
"@itwin/core-frontend": "3.1.0-dev.28",
|
|
32
|
+
"@itwin/core-geometry": "3.1.0-dev.28",
|
|
33
|
+
"@itwin/core-quantity": "3.1.0-dev.28",
|
|
34
|
+
"@itwin/core-react": "3.1.0-dev.28",
|
|
35
|
+
"@itwin/eslint-plugin": "3.1.0-dev.28",
|
|
36
|
+
"@itwin/imodel-components-react": "3.1.0-dev.28",
|
|
37
37
|
"@itwin/itwinui-css": "0.44.1",
|
|
38
38
|
"@itwin/itwinui-react": "1.29.3",
|
|
39
|
-
"@itwin/presentation-common": "3.1.0-dev.
|
|
39
|
+
"@itwin/presentation-common": "3.1.0-dev.28",
|
|
40
40
|
"@testing-library/react": "^12.0.0",
|
|
41
41
|
"@testing-library/react-hooks": "^7.0.2",
|
|
42
42
|
"@types/chai": "^4.1.4",
|
|
@@ -73,17 +73,17 @@
|
|
|
73
73
|
"react-resize-detector": "^6.7.6"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@itwin/core-bentley": "3.1.0-dev.
|
|
77
|
-
"@itwin/core-geometry": "3.1.0-dev.
|
|
78
|
-
"@itwin/core-common": "3.1.0-dev.
|
|
79
|
-
"@itwin/core-frontend": "3.1.0-dev.
|
|
80
|
-
"@itwin/core-quantity": "3.1.0-dev.
|
|
81
|
-
"@itwin/appui-abstract": "3.1.0-dev.
|
|
82
|
-
"@itwin/components-react": "3.1.0-dev.
|
|
83
|
-
"@itwin/core-react": "3.1.0-dev.
|
|
84
|
-
"@itwin/appui-react": "3.1.0-dev.
|
|
85
|
-
"@itwin/imodel-components-react": "3.1.0-dev.
|
|
86
|
-
"@itwin/appui-layout-react": "3.1.0-dev.
|
|
76
|
+
"@itwin/core-bentley": "3.1.0-dev.28",
|
|
77
|
+
"@itwin/core-geometry": "3.1.0-dev.28",
|
|
78
|
+
"@itwin/core-common": "3.1.0-dev.28",
|
|
79
|
+
"@itwin/core-frontend": "3.1.0-dev.28",
|
|
80
|
+
"@itwin/core-quantity": "3.1.0-dev.28",
|
|
81
|
+
"@itwin/appui-abstract": "3.1.0-dev.28",
|
|
82
|
+
"@itwin/components-react": "3.1.0-dev.28",
|
|
83
|
+
"@itwin/core-react": "3.1.0-dev.28",
|
|
84
|
+
"@itwin/appui-react": "3.1.0-dev.28",
|
|
85
|
+
"@itwin/imodel-components-react": "3.1.0-dev.28",
|
|
86
|
+
"@itwin/appui-layout-react": "3.1.0-dev.28",
|
|
87
87
|
"react": "^17.0.0",
|
|
88
88
|
"react-dom": "^17.0.0"
|
|
89
89
|
},
|