@progress/kendo-angular-editor
Version:
Kendo UI Editor for Angular
15 lines (14 loc) • 666 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { insertNode, createTable } from '@progress/kendo-editor-common';
/**
* @hidden
*/
export const insertTable = (attrs) => (state, dispatch) => {
const newTable = createTable(state.schema.nodes, attrs.rows, attrs.cols);
if (newTable) {
insertNode(newTable, true)(state, dispatch);
}
};