deephaven / deephaven-plugins

Deephaven Plugins
11 stars 15 forks source link

feat: add undefined type option #1026

Open wusteven815 opened 3 days ago

wusteven815 commented 3 days ago
wusteven815 commented 3 days ago

Example:

from deephaven import ui

@ui.component
def nullish_calendar():
    return ui.flex(
        ui.calendar(value=ui.types.Undefined),
        ui.calendar(value=None),
    )

calendar_test = nullish_calendar()