handsontable 0.0.0-next-31297ac-20231204 → 0.0.0-next-d76be4f-20231206
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/3rdparty/walkontable/src/calculator/index.js +11 -6
- package/3rdparty/walkontable/src/calculator/index.mjs +5 -3
- package/3rdparty/walkontable/src/calculator/renderAllColumns.js +50 -0
- package/3rdparty/walkontable/src/calculator/renderAllColumns.mjs +46 -0
- package/3rdparty/walkontable/src/calculator/renderAllRows.js +50 -0
- package/3rdparty/walkontable/src/calculator/renderAllRows.mjs +46 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -122
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +2 -124
- package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -1
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +2 -3
- package/3rdparty/walkontable/src/index.js +3 -4
- package/3rdparty/walkontable/src/index.mjs +1 -2
- package/3rdparty/walkontable/src/renderer/colGroup.js +10 -0
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +10 -0
- package/3rdparty/walkontable/src/renderer/rows.js +4 -3
- package/3rdparty/walkontable/src/renderer/rows.mjs +4 -3
- package/3rdparty/walkontable/src/settings.js +2 -0
- package/3rdparty/walkontable/src/settings.mjs +2 -0
- package/3rdparty/walkontable/src/utils/column.js +27 -12
- package/3rdparty/walkontable/src/utils/column.mjs +27 -12
- package/3rdparty/walkontable/src/utils/columnStretching.js +219 -0
- package/3rdparty/walkontable/src/utils/columnStretching.mjs +215 -0
- package/3rdparty/walkontable/src/viewport.js +22 -17
- package/3rdparty/walkontable/src/viewport.mjs +23 -18
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/focusCatcher/index.js +34 -4
- package/core/focusCatcher/index.mjs +34 -4
- package/dataMap/metaManager/metaSchema.js +28 -2
- package/dataMap/metaManager/metaSchema.mjs +28 -2
- package/dataMap/metaManager/mods/extendMetaProperties.js +12 -0
- package/dataMap/metaManager/mods/extendMetaProperties.mjs +12 -0
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +1960 -1646
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +70 -67
- package/dist/handsontable.js +1962 -1648
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +27 -24
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/settings.d.ts +1 -0
- package/tableView.js +1 -0
- package/tableView.mjs +1 -0
package/helpers/mixed.js
CHANGED
@@ -134,7 +134,7 @@ const domMessages = {
|
|
134
134
|
function _injectProductInfo(key, element) {
|
135
135
|
const hasValidType = !isEmpty(key);
|
136
136
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
137
|
-
const hotVersion = "0.0.0-next-
|
137
|
+
const hotVersion = "0.0.0-next-d76be4f-20231206";
|
138
138
|
let keyValidityDate;
|
139
139
|
let consoleMessageState = 'invalid';
|
140
140
|
let domMessageState = 'invalid';
|
package/helpers/mixed.mjs
CHANGED
@@ -124,7 +124,7 @@ const domMessages = {
|
|
124
124
|
export function _injectProductInfo(key, element) {
|
125
125
|
const hasValidType = !isEmpty(key);
|
126
126
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
127
|
-
const hotVersion = "0.0.0-next-
|
127
|
+
const hotVersion = "0.0.0-next-d76be4f-20231206";
|
128
128
|
let keyValidityDate;
|
129
129
|
let consoleMessageState = 'invalid';
|
130
130
|
let domMessageState = 'invalid';
|
package/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"url": "https://github.com/handsontable/handsontable/issues"
|
11
11
|
},
|
12
12
|
"author": "Handsoncode <hello@handsontable.com>",
|
13
|
-
"version": "0.0.0-next-
|
13
|
+
"version": "0.0.0-next-d76be4f-20231206",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
package/settings.d.ts
CHANGED
@@ -181,6 +181,7 @@ export interface GridSettings extends Events {
|
|
181
181
|
preventWheel?: boolean;
|
182
182
|
readOnly?: boolean;
|
183
183
|
readOnlyCellClassName?: string;
|
184
|
+
renderAllColumns?: boolean;
|
184
185
|
renderAllRows?: boolean;
|
185
186
|
renderer?: RendererType | string | BaseRenderer;
|
186
187
|
rowHeaders?: boolean | string[] | ((index: number) => string);
|
package/tableView.js
CHANGED
@@ -668,6 +668,7 @@ class TableView {
|
|
668
668
|
},
|
669
669
|
minSpareRows: () => this.settings.minSpareRows,
|
670
670
|
renderAllRows: this.settings.renderAllRows,
|
671
|
+
renderAllColumns: this.settings.renderAllColumns,
|
671
672
|
rowHeaders: () => {
|
672
673
|
const headerRenderers = [];
|
673
674
|
if (this.hot.hasRowHeaders()) {
|
package/tableView.mjs
CHANGED
@@ -664,6 +664,7 @@ class TableView {
|
|
664
664
|
},
|
665
665
|
minSpareRows: () => this.settings.minSpareRows,
|
666
666
|
renderAllRows: this.settings.renderAllRows,
|
667
|
+
renderAllColumns: this.settings.renderAllColumns,
|
667
668
|
rowHeaders: () => {
|
668
669
|
const headerRenderers = [];
|
669
670
|
if (this.hot.hasRowHeaders()) {
|