Skip to content

Commit

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

/**
Expand Down
2 changes: 1 addition & 1 deletion components/lib/orderlist/OrderList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
@focus="onListFocus"
@blur="onListBlur"
@keydown="onListKeyDown"
v-bind="{ ...listProps, ...ptm('list') }"
v-bind="{ ...listProps, ...ptm('list'), ...ptm('transition') }"
>
<template v-for="(item, i) of modelValue" :key="getItemKey(item, i)">
<li
Expand Down

0 comments on commit b039254

Please sign in to comment.