-
Notifications
You must be signed in to change notification settings - Fork 85
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
[next] fix(NcModal): temporary deactivate focus-traps on modal open #5852
Conversation
7c5d5f3
to
453f125
Compare
<div class="navigation__header"> | ||
<NcTextField :value.sync="searchValue" label="Search …" /> | ||
<NcActions> | ||
<NcActionButton close-after-click @click="showModal = true"> | ||
<template #icon> | ||
<IconCog /> | ||
</template> | ||
App settings (close after click) | ||
</NcActionButton> | ||
<NcActionButton @click="showModal = true"> | ||
<template #icon> | ||
<IconCog /> | ||
</template> | ||
App settings (handle only click) | ||
</NcActionButton> | ||
</NcActions> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Antreesy when you handle the .sync
could you also rephrase this part to not have something like search? Because search should only be handled by NcAppNavigationSearch
and we should not have examples doing it other
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- [next] feat(NcAppNavigation): Provide consistent in-app search #5848 is not backported yet
Don't you mind, if I forward-port it as-is, then replace this example on master and then push to the next afterwards?
Signed-off-by: Maksim Sukharev <[email protected]>
Signed-off-by: Maksim Sukharev <[email protected]>
Signed-off-by: Maksim Sukharev <[email protected]>
453f125
to
965fc87
Compare
Backport of PR #5783