feat(list-converter): a small converter who deals with column based data and do some stuff with it

This commit is contained in:
Carsten Götzinger 2023-05-02 18:32:41 +02:00
parent ce3150c65d
commit adcffe1e51
8 changed files with 426 additions and 139 deletions

View file

@ -0,0 +1,13 @@
import { ArrowsShuffle } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'List converter',
path: '/list-converter',
description:
'This tool can process column-based data and apply various changes (transpose, add prefix and suffix, reverse list, sort list, lowercase values, truncate values) to each row.',
keywords: ['list', 'converter', 'sort', 'reverse', 'prefix', 'suffix', 'lowercase', 'truncate'],
component: () => import('./list-converter.vue'),
icon: ArrowsShuffle,
createdAt: new Date('2023-04-28'),
});