Refactor #4231 - For OrderList

pull/4239/head
mertsincan 2023-08-02 15:01:49 +03:00
parent 94bd3ef462
commit b039254340
2 changed files with 5 additions and 1 deletions

View File

@ -108,6 +108,10 @@ export interface OrderListPassThroughOptions {
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
/**
* Used to control Vue Transition API.
*/
transition?: any;
}
/**

View File

@ -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