Open
Description
Description
Currently, empty days must be provided with an empty array like this {'yyyy-mm-dd':[]}
. After iterating through those empty days, the AgendaList renders the fragment returned from renderEmptyDate
. For devs who want a design that has empty dates always rendered, this uses a ton of processing power because they must then create a function where they provide a year of empty dates. For these developers, it would be beneficial to provide a prop alwaysRenderEmptyDates: boolean
. This prop will always render an empty item, rather than looping through an array in order to get the empty items, if a day is empty, it will render an empty day automatically. In theory this should save CPU cycles and increase speed.