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
Is your feature request related to a problem? Please describe.
Some interfaces use isDisabled?: MaybeAccessor<boolean | undefined> while others use isDisabled?: boolean. The former is forcing me to create a function that handles the possible accessor when I need to access the prop myself. Would be nice to standardize on either pattern. Having both is a bit confusing.
Describe the solution you'd like
Remove MaybeAccessor from user facing props type.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Some interfaces use
isDisabled?: MaybeAccessor<boolean | undefined>
while others useisDisabled?: boolean
. The former is forcing me to create a function that handles the possible accessor when I need to access the prop myself. Would be nice to standardize on either pattern. Having both is a bit confusing.Describe the solution you'd like
Remove
MaybeAccessor
from user facing props type.The text was updated successfully, but these errors were encountered: