Fixed #3771 -Image: Add Additional Toolbar Buttons

This commit is contained in:
Furkan Sezis 2023-03-22 16:40:31 +03:00
parent 18fcf71928
commit d0abb29693
3 changed files with 60 additions and 6 deletions

View file

@ -25,7 +25,27 @@ const ImageEvents = [
const ImageSlots = [
{
name: 'indicator',
description: 'Custom content for the preview indicator'
description: 'Custom content for the preview indicator.'
},
{
name: 'refresh',
description: 'Custom content for the component refresh.'
},
{
name: 'undo',
description: 'Custom content for the component undo.'
},
{
name: 'zoomout',
description: 'Custom content for the component zoomout.'
},
{
name: 'zoomin',
description: 'Custom content for the component zoomin.'
},
{
name: 'close',
description: 'Custom content for the component close.'
}
];