/
githubmirror
/
marktext
Обзор
Документация
Войти
/
githubmirror
/
marktext
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/muyajs/lib/ui/tableTools/config.js
36 строк
804 B
Ran Luo
chore: convert repo to pnpm monorepo (packages/desktop, muyajs, website) (#4302)
29 май 2026, 05:25
Не верифицирован
29 май 2026, 05:25
565bfcd
Код
Авторство
О чём код?
export const getToolList = (t) => { return { left: [{ label: t('editor.insertRowAbove'), action: 'insert', location: 'previous', target: 'row' }, { label: t('editor.insertRowBelow'), action: 'insert', location: 'next', target: 'row' }, { label: t('editor.removeRow'), action: 'remove', location: 'current', target: 'row' }], bottom: [{ label: t('editor.insertColumnLeft'), action: 'insert', location: 'left', target: 'column' }, { label: t('editor.insertColumnRight'), action: 'insert', location: 'right', target: 'column' }, { label: t('editor.removeColumn'), action: 'remove', location: 'current', target: 'column' }] } }