rszymanski
rszymanski
@mdubel Thank your the comments! I actually thought about adding a wrapper like this: ```r calendar_range( input_id = "date_range", min = "2020-01-01", max = "2020-03-01", start_value = "2020-01-02", end_value =...
@mdubel I have added a wrapper in form of a separate component (that way we avoid creating implicit ids). Now you can create a calendar range like this: ```r calendar_range(...
@calderonsamuel thank you for reporting the issue (and for the reproducible example!) You are right with your diagnosis! It is caused by a large z-index number of the `.empty-state-container` class....
@dsen6644 Thank your for the suggestion, we'll keep that in mind during the next batch of work on shiny.emptystate!
**Notes:** 1. The [ResizeObserver we are using](https://github.com/Appsilon/shiny.emptystate/blob/main/inst/emptystate.js#L1-L12) does not report changes to the element's position. Potentially using the [IntersectionObserver might allow us to catch changes of the position ](https://stackoverflow.com/questions/40251082/an-event-or-observer-for-changes-to-getboundingclientrect) 2....
Given the fix attempt in https://github.com/Appsilon/shiny.emptystate/pull/42 this might be a bit of an edge case. We figured out how to reposition an item, but if we want to things behave...