@itwin/map-layers 5.6.0 → 5.6.1

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 CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @itwin/map-layers
2
2
 
3
- This log was last generated on Fri, 13 Sep 2024 17:50:00 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 22 Oct 2024 14:41:41 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 5.6.1
8
+
9
+ Tue, 22 Oct 2024 14:41:41 GMT
10
+
11
+ ### Patches
12
+
13
+ - Fix z-index of map layers settings popup ([#1070](https://github.com/iTwin/viewer-components-react/pull/1070))
14
+
7
15
  ## 5.6.0
8
16
 
9
- Fri, 13 Sep 2024 17:50:00 GMT
17
+ Fri, 13 Sep 2024 17:50:16 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
@@ -7,7 +7,8 @@
7
7
  $hovered-icon-color: $buic-foreground-primary;
8
8
 
9
9
  .maplayers-settings-popup {
10
- z-index: 900; // Used to be higher, but we want this be less than modal dialog z-index
10
+ /* TODO: z-index workaround while map-layers-react is using the deprecated Popup component from core-react */
11
+ z-index: 6001; /* one more than floating widget */
11
12
  }
12
13
 
13
14
  .maplayers-settings-popup-panel {
@@ -7,7 +7,8 @@
7
7
  $hovered-icon-color: $buic-foreground-primary;
8
8
 
9
9
  .maplayers-settings-popup {
10
- z-index: 900; // Used to be higher, but we want this be less than modal dialog z-index
10
+ /* TODO: z-index workaround while map-layers-react is using the deprecated Popup component from core-react */
11
+ z-index: 6001; /* one more than floating widget */
11
12
  }
12
13
 
13
14
  .maplayers-settings-popup-panel {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/map-layers",
3
- "version": "5.6.0",
3
+ "version": "5.6.1",
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",