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
Allow each widget's properties interface to be extended, so instead of: export default class Button extends ButtonBase<ButtonProperties>
we would have: export default class Button<P extends ButtonProperties = ButtonProperties> extends ButtonBase<P>
Enhancement
Allow each widget's properties interface to be extended, so instead of:
export default class Button extends ButtonBase<ButtonProperties>
we would have:
export default class Button<P extends ButtonProperties = ButtonProperties> extends ButtonBase<P>
Comes from the first point in #266 (comment)
The text was updated successfully, but these errors were encountered: