Refactor #3832 Refactor #3833 - For OrderList

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-07 09:47:23 +03:00
parent 30beabe7b8
commit 5017cedd0b
3 changed files with 65 additions and 9 deletions

View file

@ -93,19 +93,35 @@ const OrderListEvents = [
const OrderListSlots = [
{
name: 'header',
description: "Custom content for the component's header"
description: "Custom content for the component's header."
},
{
name: 'item',
description: 'Custom content for the item'
description: 'Custom content for the item.'
},
{
name: 'controlsstart',
description: 'Custom content before the buttons'
description: 'Custom content before the buttons.'
},
{
name: 'controlsend',
description: 'Custom content after the buttons'
description: 'Custom content after the buttons.'
},
{
name: 'movetopicon',
description: 'Custom move top icon template.'
},
{
name: 'moveupicon',
description: 'Custom move up icon template.'
},
{
name: 'movedownicon',
description: 'Custom move down icon template.'
},
{
name: 'movebottomicon',
description: 'Custom move bottom icon template.'
}
];