Skip to content

Commit a62507f

Browse files
committed
tweak maxes
1 parent 1aa68f1 commit a62507f

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.yarn/install-state.gz

-130 Bytes
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@skiff-org/prosemirror-tables",
3-
"version": "3.7.4",
3+
"version": "3.8.0",
44
"description": "ProseMirror's rowspan/colspan tables component",
55
"main": "dist/index.js",
66
"module": "dist/index.es.js",

src/columnresizing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const key = new PluginKey('tableColumnResizing');
1111

1212
export function columnResizing({
1313
handleWidth = 5,
14-
cellMinWidth = 75,
14+
cellMinWidth = 120,
1515
View = TableView,
1616
lastColumnResizable = true
1717
} = {}) {

src/commands.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
import {tableNodeTypes} from './schema/schema';
2424
import {typeInheritance} from './columnsTypes/typeInheritance';
2525

26-
const MAX_COLS = 500;
26+
const MAX_COLS = 200;
2727

2828
// Helper to get the selected rectangle in a table, if any. Adds table
2929
// map, table node, and table start offset to the object for

0 commit comments

Comments
 (0)