You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current Behavior
Bulma Calendar EventType doesn't include the 'save' event even though this is documented as a valid event type. This causes ts syntax errors when subscribing to 'save' events (works functionally though).
Current definition:
type EventType = 'show' | 'hide' | 'select' | 'select:start';
Environment
Current Behavior
Bulma Calendar EventType doesn't include the 'save' event even though this is documented as a valid event type. This causes ts syntax errors when subscribing to 'save' events (works functionally though).
Current definition:
type EventType = 'show' | 'hide' | 'select' | 'select:start';
Possible Solution
Recommend this be changed to:
type EventType = 'show' | 'hide' | 'select' | 'select:start' | 'save';
The text was updated successfully, but these errors were encountered: