Skip to content

Commit

Permalink
Refactor #4231 - For Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Aug 2, 2023
1 parent de86b5f commit 7e2819c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions components/lib/panel/Panel.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ export interface PanelPassThroughOptions {
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
/**
* Used to control Vue Transition API.
*/
transition?: any;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion components/lib/panel/Panel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</button>
</div>
</div>
<transition name="p-toggleable-content">
<transition name="p-toggleable-content" v-bind="ptm('transition')">
<div v-show="!d_collapsed" :id="ariaId + '_content'" :class="cx('toggleablecontent')" role="region" :aria-labelledby="ariaId + '_header'" v-bind="ptm('toggleablecontent')">
<div :class="cx('content')" v-bind="ptm('content')">
<slot></slot>
Expand Down

0 comments on commit 7e2819c

Please sign in to comment.