Skip to content
New issue

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

Fix bug with modal open / close. Usage of prop link is necessary. #592

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions src/pug/_mixins.pug
Original file line number Diff line number Diff line change
Expand Up @@ -136,67 +136,67 @@ mixin vueLinkActionsProps
td panel-open
td string<br>boolean
td
td CSS selector of panel to open on click. Or can be <code>left</code> or <code>right</code> if there is only left or right panel in DOM.
td CSS selector of panel to open on click. Or can be <code>left</code> or <code>right</code> if there is only left or right panel in DOM. It is necessarily used together with <code>link</code>.
tr
td panel-close
td string<br>boolean
td
td Closes panel on click
td Closes panel on click. It is necessarily used together with <code>link</code>.
tr
td panel-toggle
td string<br>boolean
td
td CSS selector of panel to toggle on click. Or can be <code>left</code> or <code>right</code> if there is only left or right panel in DOM.
td CSS selector of panel to toggle on click. Or can be <code>left</code> or <code>right</code> if there is only left or right panel in DOM. It is necessarily used together with <code>link</code>.
tr
td actions-open
td string<br>boolean
td
td CSS selector of the action sheet to open on click
td CSS selector of the action sheet to open on click. It is necessarily used together with <code>link</code>.
tr
td actions-close
td string<br>boolean
td
td CSS selector of the action sheet to close on click. Or boolean property to close currently opened action sheet
td CSS selector of the action sheet to close on click. Or boolean property to close currently opened action sheet. It is necessarily used together with <code>link</code>.
tr
td popup-open
td string<br>boolean
td
td CSS selector of the popup to open on click
td CSS selector of the popup to open on click. It is necessarily used together with <code>link</code>.
tr
td popup-close
td string<br>boolean
td
td CSS selector of the popup to close on click. Or boolean property to close currently opened popup
td CSS selector of the popup to close on click. Or boolean property to close currently opened popup. It is necessarily used together with <code>link</code>.
tr
td popover-open
td string<br>boolean
td
td CSS selector of the popover to open on click
td CSS selector of the popover to open on click. It is necessarily used together with <code>link</code>.
tr
td popover-close
td string<br>boolean
td
td CSS selector of the popover to close on click. Or boolean property to close currently opened popover
td CSS selector of the popover to close on click. Or boolean property to close currently opened popover. It is necessarily used together with <code>link</code>.
tr
td sheet-open
td string<br>boolean
td
td CSS selector of the sheet modal to open on click
td CSS selector of the sheet modal to open on click. It is necessarily used together with <code>link</code>.
tr
td sheet-close
td string<br>boolean
td
td CSS selector of the sheet modal to close on click. Or boolean property to close currently opened sheet modal
td CSS selector of the sheet modal to close on click. Or boolean property to close currently opened sheet modal. It is necessarily used together with <code>link</code>.
tr
td login-screen-open
td string<br>boolean
td
td CSS selector of the login screen to open on click
td CSS selector of the login screen to open on click. It is necessarily used together with <code>link</code>.
tr
td login-screen-close
td string<br>boolean
td
td CSS selector of the login screen to close on click. Or boolean property to close currently opened login screen
td CSS selector of the login screen to close on click. Or boolean property to close currently opened login screen. It is necessarily used together with <code>link</code>.
tr
td sortable-enable
td string<br>boolean
Expand Down