From b039254340159c016ce0d9053364c0af27d84315 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 2 Aug 2023 15:01:49 +0300 Subject: [PATCH] Refactor #4231 - For OrderList --- components/lib/orderlist/OrderList.d.ts | 4 ++++ components/lib/orderlist/OrderList.vue | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/components/lib/orderlist/OrderList.d.ts b/components/lib/orderlist/OrderList.d.ts index 27a6a0f2e..5a9319f90 100755 --- a/components/lib/orderlist/OrderList.d.ts +++ b/components/lib/orderlist/OrderList.d.ts @@ -108,6 +108,10 @@ export interface OrderListPassThroughOptions { * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; + /** + * Used to control Vue Transition API. + */ + transition?: any; } /** diff --git a/components/lib/orderlist/OrderList.vue b/components/lib/orderlist/OrderList.vue index 3f730603f..2d6ee257c 100755 --- a/components/lib/orderlist/OrderList.vue +++ b/components/lib/orderlist/OrderList.vue @@ -52,7 +52,7 @@ @focus="onListFocus" @blur="onListBlur" @keydown="onListKeyDown" - v-bind="{ ...listProps, ...ptm('list') }" + v-bind="{ ...listProps, ...ptm('list'), ...ptm('transition') }" >