jspreadsheet 9.1.22 → 9.1.23
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 -5
- package/dist/index.js +436 -436
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -518,7 +518,7 @@ declare namespace jspreadsheet {
|
|
|
518
518
|
csvDelimiter?: string;
|
|
519
519
|
/** Allow column sorting */
|
|
520
520
|
columnSorting?: boolean;
|
|
521
|
-
/** Sorting the column on dblclick in the header. Default:
|
|
521
|
+
/** Sorting the column on dblclick in the header. Default: true */
|
|
522
522
|
columnSortingOnDblClick?: boolean;
|
|
523
523
|
/** Allow column dragging */
|
|
524
524
|
columnDrag?: boolean;
|
|
@@ -858,13 +858,13 @@ declare namespace jspreadsheet {
|
|
|
858
858
|
/** Array with the header DOM elements */
|
|
859
859
|
headers: Array<HTMLElement>;
|
|
860
860
|
/** Hide column */
|
|
861
|
-
hideColumn: (column: number) => void;
|
|
861
|
+
hideColumn: (column: number|number[]) => void;
|
|
862
862
|
/** Hide the filters */
|
|
863
863
|
hideFilter: () => void;
|
|
864
864
|
/** Hide index column */
|
|
865
865
|
hideIndex: () => void;
|
|
866
866
|
/** Hide row */
|
|
867
|
-
hideRow: (row: number) => void;
|
|
867
|
+
hideRow: (row: number|number[]) => void;
|
|
868
868
|
/** Hide the search container */
|
|
869
869
|
hideSearch: () => void;
|
|
870
870
|
/** Add a new column */
|
|
@@ -1033,13 +1033,13 @@ declare namespace jspreadsheet {
|
|
|
1033
1033
|
/** Set the width of one column by its position */
|
|
1034
1034
|
setWidth: (col: number, width: number) => void;
|
|
1035
1035
|
/** Show column */
|
|
1036
|
-
showColumn: (column: number) => void;
|
|
1036
|
+
showColumn: (column: number|number[]) => void;
|
|
1037
1037
|
/** Show filter controls */
|
|
1038
1038
|
showFilter: () => void;
|
|
1039
1039
|
/** Show index column */
|
|
1040
1040
|
showIndex: () => void;
|
|
1041
1041
|
/** Show row */
|
|
1042
|
-
showRow: (row: number) => void;
|
|
1042
|
+
showRow: (row: number|number[]) => void;
|
|
1043
1043
|
/** Hide the search container */
|
|
1044
1044
|
showSearch: () => void;
|
|
1045
1045
|
/** DOM Worksheet table */
|