/
githubmirror
/
marktext
Обзор
Документация
Войти
/
githubmirror
/
marktext
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/muya/src/ui/tableRowColumMenu/config.ts
44 строки
1 KB
Ran Luo
feat(muya): migrate TS rewrite to packages/muya alongside legacy muyajs (#4314)
29 май 2026, 15:35
Не верифицирован
29 май 2026, 15:35
0d86641
Код
Авторство
О чём код?
export const toolList = { right: [ { label: 'Insert Row Above', action: 'insert', location: 'previous', target: 'row', }, { label: 'Insert Row Below', action: 'insert', location: 'next', target: 'row', }, { label: 'Remove Row', action: 'remove', location: 'current', target: 'row', }, ], bottom: [ { label: 'Insert Column Left', action: 'insert', location: 'left', target: 'column', }, { label: 'Insert Column Right', action: 'insert', location: 'right', target: 'column', }, { label: 'Remove Column', action: 'remove', location: 'current', target: 'column', }, ], }; export type MenuItem = typeof toolList['right'][number];