We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37b414d commit 1b59e3aCopy full SHA for 1b59e3a
src/components/searchbox/NodeSearchBoxPopover.vue
@@ -2,11 +2,20 @@
2
<div>
3
<Dialog
4
v-model:visible="visible"
5
- pt:root="invisible-dialog-root"
6
- pt:mask="node-search-box-dialog-mask"
7
modal
8
:dismissable-mask="dismissable"
9
@hide="clearFilters"
+ :pt="{
+ root: { class: 'invisible-dialog-root' },
10
+ mask: { class: 'node-search-box-dialog-mask' },
11
+ transition: {
12
+ enterFromClass: 'opacity-0 scale-75',
13
+ // 100ms is the duration of the transition in the dialog component
14
+ enterActiveClass: 'transition-all duration-100 ease-out',
15
+ leaveActiveClass: 'transition-all duration-100 ease-in',
16
+ leaveToClass: 'opacity-0 scale-75'
17
+ }
18
+ }"
19
>
20
<template #container>
21
<NodeSearchBox
0 commit comments