We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add feature and example of creating ModalControllers with custom modal types.
ModalController
layout
open
layouts
const MyModal = new ModalController({ layouts: { dialog: DialogLayout }, // Optional // default: { layout: "dialog" } })
These both should work in same way.
Modal.open(PopupComponent, { layout: "dialog" }) // Without default layout. Modal.open(PopupComponent) // With default layout.
The text was updated successfully, but these errors were encountered:
FrameMuse
Successfully merging a pull request may close this issue.
Add feature and example of creating
ModalController
s with custom modal types.Example 1
Description
layout
param toopen
methodlayouts
param toModalController
constructor configModalController
constructor configImplementation
Result
These both should work in same way.
The text was updated successfully, but these errors were encountered: