I can no longer highlight dates in airDatepickerInput() with shinyWidgets 0.7.2 and 0.7.3. This is a minimal example, where the dates are highlighted with updateAirDateInput():
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
airDatepickerInput("date",
value = Sys.Date() + 3,
minDate = Sys.Date(),
maxDate = Sys.Date() + 10,
highlightedDates = Sys.Date() + 1)
)
server <- function(input, output, session) {
highlight_dates <- Sys.Date() + c(2, 5, 8)
updateAirDateInput(inputId = "date",
options = list(highlightedDates = highlight_dates,
maxDate = Sys.Date() + 15))
}
shinyApp(ui, server)
With shinyWidgets 0.7.1, the date picker looked like this:

But with the newer versions, the dots under the highlighted dates are gone:

The highlighting also does not work if it is done directly in airDatepickerInput().
I can no longer highlight dates in
airDatepickerInput()with shinyWidgets 0.7.2 and 0.7.3. This is a minimal example, where the dates are highlighted withupdateAirDateInput():With shinyWidgets 0.7.1, the date picker looked like this:
But with the newer versions, the dots under the highlighted dates are gone:
The highlighting also does not work if it is done directly in
airDatepickerInput().