mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-29 03:00:45 -04:00
5
NEWS.md
5
NEWS.md
@@ -1,5 +1,9 @@
|
|||||||
# shiny (development version)
|
# shiny (development version)
|
||||||
|
|
||||||
|
## Bug fixes
|
||||||
|
|
||||||
|
* Fixed a bug introduced in v1.9.0 where the boundaries of hover/click/brush regions on plots were being incorrectly scaled when browser zoom was used. (#4111)
|
||||||
|
|
||||||
# shiny 1.9.0
|
# shiny 1.9.0
|
||||||
|
|
||||||
## New busy indication feature
|
## New busy indication feature
|
||||||
@@ -31,6 +35,7 @@ In addition, various properties of the spinners and pulse can be customized with
|
|||||||
* Output bindings that are removed, invalidated, then inserted again (while invalidated) now correctly include the `.recalculating` CSS class. (#4039)
|
* Output bindings that are removed, invalidated, then inserted again (while invalidated) now correctly include the `.recalculating` CSS class. (#4039)
|
||||||
|
|
||||||
* Fixed a recent issue with `uiOutput()` and `conditionalPanel()` not properly lower opacity when recalculation (in a Bootstrap 5 context). (#4027)
|
* Fixed a recent issue with `uiOutput()` and `conditionalPanel()` not properly lower opacity when recalculation (in a Bootstrap 5 context). (#4027)
|
||||||
|
|
||||||
* Image outputs that were scaled by CSS had certain regions that were unresponsive to hover/click/brush handlers. (#3234)
|
* Image outputs that were scaled by CSS had certain regions that were unresponsive to hover/click/brush handlers. (#3234)
|
||||||
|
|
||||||
# shiny 1.8.1.1
|
# shiny 1.8.1.1
|
||||||
|
|||||||
@@ -14583,13 +14583,7 @@
|
|||||||
var dists = [];
|
var dists = [];
|
||||||
var i5;
|
var i5;
|
||||||
for (i5 = 0; i5 < coordmap.panels.length; i5++) {
|
for (i5 = 0; i5 < coordmap.panels.length; i5++) {
|
||||||
var panelRange = coordmap.panels[i5].range;
|
var b3 = coordmap.panels[i5].range;
|
||||||
var b3 = {
|
|
||||||
top: panelRange.top * cssToImgRatio.y,
|
|
||||||
bottom: panelRange.bottom * cssToImgRatio.y,
|
|
||||||
left: panelRange.left * cssToImgRatio.x,
|
|
||||||
right: panelRange.right * cssToImgRatio.x
|
|
||||||
};
|
|
||||||
if (x2 <= b3.right + expandImg.x && x2 >= b3.left - expandImg.x && y4 <= b3.bottom + expandImg.y && y4 >= b3.top - expandImg.y) {
|
if (x2 <= b3.right + expandImg.x && x2 >= b3.left - expandImg.x && y4 <= b3.bottom + expandImg.y && y4 >= b3.top - expandImg.y) {
|
||||||
matches.push(coordmap.panels[i5]);
|
matches.push(coordmap.panels[i5]);
|
||||||
var xdist = 0;
|
var xdist = 0;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
2
inst/www/shared/shiny.min.js
vendored
2
inst/www/shared/shiny.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -293,13 +293,7 @@ function initCoordmap(
|
|||||||
let i;
|
let i;
|
||||||
|
|
||||||
for (i = 0; i < coordmap.panels.length; i++) {
|
for (i = 0; i < coordmap.panels.length; i++) {
|
||||||
const panelRange = coordmap.panels[i].range;
|
const b = coordmap.panels[i].range;
|
||||||
const b = {
|
|
||||||
top: panelRange.top * cssToImgRatio.y,
|
|
||||||
bottom: panelRange.bottom * cssToImgRatio.y,
|
|
||||||
left: panelRange.left * cssToImgRatio.x,
|
|
||||||
right: panelRange.right * cssToImgRatio.x,
|
|
||||||
};
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
x <= b.right + expandImg.x &&
|
x <= b.right + expandImg.x &&
|
||||||
|
|||||||
Reference in New Issue
Block a user