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
Currently typescript throws "module has no exported member Dimmer" sure enough in the typescript declaration file between Checkbox and Dropdown (which are before and after Dimmer in the docs) there is no Dimmer component.
I just upgraded to 0.63.3 hoping it would fix this error:
error TS2324: Property 'dimmer' is missing in type 'IntrinsicAttributes & IntrinsicClassAttributes<Component<ImageProps, ComponentState>> & { childre...'.
But that's perhaps a different issue?
I get it when I try to use Image
Update: I got it working with this workaround {...{dimmer: ""}}
From this other issue that seems similar: #698
@IsaackRasmussen Yes that is a different issue. This issue was about the Dimmer component not the dimmer property.
The {...{}} is unfortunately a common work around we have to use when using the as property otherwise you shouldn't have to use it. I don't think #698 is the same problem you're having. You may want to open a new issue for adding the dimmer property to the Image component typescript definition.
Currently typescript throws "module has no exported member Dimmer" sure enough in the typescript declaration file between Checkbox and Dropdown (which are before and after Dimmer in the docs) there is no Dimmer component.
I can work on a PR (I have to regardless) unless there's a typical person whose good at creating them by hand.
The text was updated successfully, but these errors were encountered: