jspreadsheet 11.0.0-beta.13 → 11.0.0-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -1
- package/dist/index.js +508 -539
- package/dist/jspreadsheet.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1482,8 +1482,12 @@ declare namespace jspreadsheet {
|
|
|
1482
1482
|
setNestedHeaders: (config: any[]) => void;
|
|
1483
1483
|
/** Deprecated. Alias for parent.setPlugins */
|
|
1484
1484
|
setPlugins: (plugins: Record<string, Function>) => void;
|
|
1485
|
-
/**
|
|
1485
|
+
/** Alias for setProperty */
|
|
1486
1486
|
setProperties: (columnNumber: number, rowNumberOrColumnSettings: number|Column, cellSettings?: Cell) => void;
|
|
1487
|
+
/** Add a new configuration settings for a column or cell */
|
|
1488
|
+
setProperty: (columnNumber: number, rowNumberOrColumnSettings: number|Column, cellSettings?: Cell) => void;
|
|
1489
|
+
/** Add new properties to the existing column or cell settings */
|
|
1490
|
+
updateProperty: (columnNumber: number, rowNumberOrColumnSettings: number|Column, cellSettings?: Cell) => void;
|
|
1487
1491
|
/** Set or reset the cell as readonly */
|
|
1488
1492
|
setReadOnly: (cellName: string|HTMLElement, state: boolean) => void;
|
|
1489
1493
|
/** Set the data from one row */
|