Modal Settings Reference mismatch with typescript type definition #3081
Labels
tag/next-release/nightly
Any issue which has a corresponding PR which has been merged and is available in the nightly build
type/bug
Any issue which is a bug or PR which fixes a bug
Milestone
Bug Report
the type definition here (
transition: string | Partial<Pick<TransitionSettings, keyof TransitionSettings>>
) does not match withthe example for the transition settings from https://fomantic-ui.com/modules/modal.html#/settings:
Expected result
The keys from the documentation's example object are correct. The type definition should reflect that. Thus, something like:
transition: string | ModalTransitionSettings
The text was updated successfully, but these errors were encountered: