Hi,
regarding the Popup Design updates in version 4.28, if the content of the popup is higher than the map, there is no vertical scrolling in the popup.
Here is the comparison in 4.27 vs 4.28:
Regards,
Matej
Solved! Go to Solution.
Hi,
I've just spotted this as well. As a temporary fix add the following styling override in your application:
/* WARNING Required to fix broken Esri Styling */
.esri-features.esri-widget.esri-widget--panel {
overflow: hidden;
}
Thanks for sharing, however this is not applicable for ArcGIS apps using the Popup widget, like Map Viewer, Dashboards, etc.
Try adding this to your fix as well, that will make the popup content scrollable.
.esri-features.esri-widget.esri-widget--panel calcite-flow{
overflow: auto;
}
Hi Anne! Is there a place where developers can see the a summary of patch-level changes to the ArcGIS JS SDK?
The release notes for 4.28 are an overview of the minor-level release: https://developers.arcgis.com/javascript/latest/4.28/
But... there's no place to find the difference between 4.28.0 and 4.28.1, for example.
Your comment on this post is one of the few pieces of evidence online of any specific changes made in a patch-level version.
Version 4.28 has had several patch-level releases all the way up to 4.28.10, and there's no way to see detail of the incremental changes. (The increments themselves can be found in the package version history: https://www.npmjs.com/package/@arcgis/core?activeTab=versions ).
The SDK is not open-source, and is only provided in minified code, so it's not easy for someone to even do a code comparison to glean the changes from patch to patch.
Is there a resource you can point me to that enumerates those changes at the patch level?
Thank you!