handsontable 0.0.0-next-1f21f59-20240912 → 0.0.0-next-c33a3a6-20240916
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/base.js +2 -2
- package/base.mjs +2 -2
- package/core.d.ts +12 -0
- package/core.js +153 -2
- package/core.mjs +153 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +158 -7
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +3 -3
- package/dist/handsontable.js +158 -7
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +11 -11
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
package/base.js
CHANGED
@@ -45,8 +45,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
45
45
|
Handsontable.CellCoords = _src.CellCoords;
|
46
46
|
Handsontable.CellRange = _src.CellRange;
|
47
47
|
Handsontable.packageName = 'handsontable';
|
48
|
-
Handsontable.buildDate = "
|
49
|
-
Handsontable.version = "0.0.0-next-
|
48
|
+
Handsontable.buildDate = "16/09/2024 09:34:24";
|
49
|
+
Handsontable.version = "0.0.0-next-c33a3a6-20240916";
|
50
50
|
Handsontable.languages = {
|
51
51
|
dictionaryKeys: _registry.dictionaryKeys,
|
52
52
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
35
35
|
Handsontable.CellCoords = CellCoords;
|
36
36
|
Handsontable.CellRange = CellRange;
|
37
37
|
Handsontable.packageName = 'handsontable';
|
38
|
-
Handsontable.buildDate = "
|
39
|
-
Handsontable.version = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "16/09/2024 09:34:30";
|
39
|
+
Handsontable.version = "0.0.0-next-c33a3a6-20240916";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys,
|
42
42
|
getLanguageDictionary,
|
package/core.d.ts
CHANGED
@@ -81,8 +81,20 @@ export default class Core {
|
|
81
81
|
getDataAtRowProp(row: number, prop: string): CellValue;
|
82
82
|
getDataType(rowFrom: number, columnFrom: number, rowTo: number, columnTo: number): CellType | 'mixed';
|
83
83
|
getDirectionFactor(): 1 | -1;
|
84
|
+
getFirstFullyVisibleColumn(): number | null;
|
85
|
+
getFirstFullyVisibleRow(): number | null;
|
86
|
+
getFirstPartiallyVisibleColumn(): number | null;
|
87
|
+
getFirstPartiallyVisibleRow(): number | null;
|
88
|
+
getFirstRenderedVisibleColumn(): number | null;
|
89
|
+
getFirstRenderedVisibleRow(): number | null;
|
84
90
|
getFocusManager(): FocusManager;
|
85
91
|
getInstance(): Core;
|
92
|
+
getLastFullyVisibleColumn(): number | null;
|
93
|
+
getLastFullyVisibleRow(): number | null;
|
94
|
+
getLastPartiallyVisibleColumn(): number | null;
|
95
|
+
getLastPartiallyVisibleRow(): number | null;
|
96
|
+
getLastRenderedVisibleColumn(): number | null;
|
97
|
+
getLastRenderedVisibleRow(): number | null;
|
86
98
|
getPlugin<T extends keyof Plugins>(pluginName: T): Plugins[T];
|
87
99
|
getPlugin(pluginName: string): Plugins['basePlugin'];
|
88
100
|
getRowHeader(): Array<string | number>;
|
package/core.js
CHANGED
@@ -2445,8 +2445,7 @@ function Core(rootElement, userSettings) {
|
|
2445
2445
|
* by adding or removing rows and columns at specified positions.
|
2446
2446
|
*
|
2447
2447
|
* ::: tip
|
2448
|
-
*
|
2449
|
-
* is an [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays).
|
2448
|
+
* If you use an array of objects in your [`data`](@/api/options.md#data), the column-related actions won't work.
|
2450
2449
|
* :::
|
2451
2450
|
*
|
2452
2451
|
* ```js
|
@@ -4241,6 +4240,158 @@ function Core(rootElement, userSettings) {
|
|
4241
4240
|
return editorManager.getActiveEditor();
|
4242
4241
|
};
|
4243
4242
|
|
4243
|
+
/**
|
4244
|
+
* Returns the first rendered row in the DOM (usually, it is not visible in the table's viewport).
|
4245
|
+
*
|
4246
|
+
* @since 14.6.0
|
4247
|
+
* @memberof Core#
|
4248
|
+
* @function getFirstRenderedVisibleRow
|
4249
|
+
* @returns {number | null}
|
4250
|
+
*/
|
4251
|
+
this.getFirstRenderedVisibleRow = function () {
|
4252
|
+
return instance.view.getFirstRenderedVisibleRow();
|
4253
|
+
};
|
4254
|
+
|
4255
|
+
/**
|
4256
|
+
* Returns the last rendered row in the DOM (usually, it is not visible in the table's viewport).
|
4257
|
+
*
|
4258
|
+
* @since 14.6.0
|
4259
|
+
* @memberof Core#
|
4260
|
+
* @function getLastRenderedVisibleRow
|
4261
|
+
* @returns {number | null}
|
4262
|
+
*/
|
4263
|
+
this.getLastRenderedVisibleRow = function () {
|
4264
|
+
return instance.view.getLastRenderedVisibleRow();
|
4265
|
+
};
|
4266
|
+
|
4267
|
+
/**
|
4268
|
+
* Returns the first rendered column in the DOM (usually, it is not visible in the table's viewport).
|
4269
|
+
*
|
4270
|
+
* @since 14.6.0
|
4271
|
+
* @memberof Core#
|
4272
|
+
* @function getFirstRenderedVisibleColumn
|
4273
|
+
* @returns {number | null}
|
4274
|
+
*/
|
4275
|
+
this.getFirstRenderedVisibleColumn = function () {
|
4276
|
+
return instance.view.getFirstRenderedVisibleColumn();
|
4277
|
+
};
|
4278
|
+
|
4279
|
+
/**
|
4280
|
+
* Returns the last rendered column in the DOM (usually, it is not visible in the table's viewport).
|
4281
|
+
*
|
4282
|
+
* @since 14.6.0
|
4283
|
+
* @memberof Core#
|
4284
|
+
* @function getLastRenderedVisibleColumn
|
4285
|
+
* @returns {number | null}
|
4286
|
+
*/
|
4287
|
+
this.getLastRenderedVisibleColumn = function () {
|
4288
|
+
return instance.view.getLastRenderedVisibleColumn();
|
4289
|
+
};
|
4290
|
+
|
4291
|
+
/**
|
4292
|
+
* Returns the first fully visible row in the table viewport. When the table has overlays the method returns
|
4293
|
+
* the first row of the main table that is not overlapped by overlay.
|
4294
|
+
*
|
4295
|
+
* @since 14.6.0
|
4296
|
+
* @memberof Core#
|
4297
|
+
* @function getFirstFullyVisibleRow
|
4298
|
+
* @returns {number | null}
|
4299
|
+
*/
|
4300
|
+
this.getFirstFullyVisibleRow = function () {
|
4301
|
+
return instance.view.getFirstFullyVisibleRow();
|
4302
|
+
};
|
4303
|
+
|
4304
|
+
/**
|
4305
|
+
* Returns the last fully visible row in the table viewport. When the table has overlays the method returns
|
4306
|
+
* the first row of the main table that is not overlapped by overlay.
|
4307
|
+
*
|
4308
|
+
* @since 14.6.0
|
4309
|
+
* @memberof Core#
|
4310
|
+
* @function getLastFullyVisibleRow
|
4311
|
+
* @returns {number | null}
|
4312
|
+
*/
|
4313
|
+
this.getLastFullyVisibleRow = function () {
|
4314
|
+
return instance.view.getLastFullyVisibleRow();
|
4315
|
+
};
|
4316
|
+
|
4317
|
+
/**
|
4318
|
+
* Returns the first fully visible column in the table viewport. When the table has overlays the method returns
|
4319
|
+
* the first row of the main table that is not overlapped by overlay.
|
4320
|
+
*
|
4321
|
+
* @since 14.6.0
|
4322
|
+
* @memberof Core#
|
4323
|
+
* @function getFirstFullyVisibleColumn
|
4324
|
+
* @returns {number | null}
|
4325
|
+
*/
|
4326
|
+
this.getFirstFullyVisibleColumn = function () {
|
4327
|
+
return instance.view.getFirstFullyVisibleColumn();
|
4328
|
+
};
|
4329
|
+
|
4330
|
+
/**
|
4331
|
+
* Returns the last fully visible column in the table viewport. When the table has overlays the method returns
|
4332
|
+
* the first row of the main table that is not overlapped by overlay.
|
4333
|
+
*
|
4334
|
+
* @since 14.6.0
|
4335
|
+
* @memberof Core#
|
4336
|
+
* @function getLastFullyVisibleColumn
|
4337
|
+
* @returns {number | null}
|
4338
|
+
*/
|
4339
|
+
this.getLastFullyVisibleColumn = function () {
|
4340
|
+
return instance.view.getLastFullyVisibleColumn();
|
4341
|
+
};
|
4342
|
+
|
4343
|
+
/**
|
4344
|
+
* Returns the first partially visible row in the table viewport. When the table has overlays the method returns
|
4345
|
+
* the first row of the main table that is not overlapped by overlay.
|
4346
|
+
*
|
4347
|
+
* @since 14.6.0
|
4348
|
+
* @memberof Core#
|
4349
|
+
* @function getFirstPartiallyVisibleRow
|
4350
|
+
* @returns {number | null}
|
4351
|
+
*/
|
4352
|
+
this.getFirstPartiallyVisibleRow = function () {
|
4353
|
+
return instance.view.getFirstPartiallyVisibleRow();
|
4354
|
+
};
|
4355
|
+
|
4356
|
+
/**
|
4357
|
+
* Returns the last partially visible row in the table viewport. When the table has overlays the method returns
|
4358
|
+
* the first row of the main table that is not overlapped by overlay.
|
4359
|
+
*
|
4360
|
+
* @since 14.6.0
|
4361
|
+
* @memberof Core#
|
4362
|
+
* @function getLastPartiallyVisibleRow
|
4363
|
+
* @returns {number | null}
|
4364
|
+
*/
|
4365
|
+
this.getLastPartiallyVisibleRow = function () {
|
4366
|
+
return instance.view.getLastPartiallyVisibleRow();
|
4367
|
+
};
|
4368
|
+
|
4369
|
+
/**
|
4370
|
+
* Returns the first partially visible column in the table viewport. When the table has overlays the method returns
|
4371
|
+
* the first row of the main table that is not overlapped by overlay.
|
4372
|
+
*
|
4373
|
+
* @since 14.6.0
|
4374
|
+
* @memberof Core#
|
4375
|
+
* @function getFirstPartiallyVisibleColumn
|
4376
|
+
* @returns {number | null}
|
4377
|
+
*/
|
4378
|
+
this.getFirstPartiallyVisibleColumn = function () {
|
4379
|
+
return instance.view.getFirstPartiallyVisibleColumn();
|
4380
|
+
};
|
4381
|
+
|
4382
|
+
/**
|
4383
|
+
* Returns the last partially visible column in the table viewport. When the table has overlays the method returns
|
4384
|
+
* the first row of the main table that is not overlapped by overlay.
|
4385
|
+
*
|
4386
|
+
* @since 14.6.0
|
4387
|
+
* @memberof Core#
|
4388
|
+
* @function getLastPartiallyVisibleColumn
|
4389
|
+
* @returns {number | null}
|
4390
|
+
*/
|
4391
|
+
this.getLastPartiallyVisibleColumn = function () {
|
4392
|
+
return instance.view.getLastPartiallyVisibleColumn();
|
4393
|
+
};
|
4394
|
+
|
4244
4395
|
/**
|
4245
4396
|
* Returns plugin instance by provided its name.
|
4246
4397
|
*
|
package/core.mjs
CHANGED
@@ -2440,8 +2440,7 @@ export default function Core(rootElement, userSettings) {
|
|
2440
2440
|
* by adding or removing rows and columns at specified positions.
|
2441
2441
|
*
|
2442
2442
|
* ::: tip
|
2443
|
-
*
|
2444
|
-
* is an [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays).
|
2443
|
+
* If you use an array of objects in your [`data`](@/api/options.md#data), the column-related actions won't work.
|
2445
2444
|
* :::
|
2446
2445
|
*
|
2447
2446
|
* ```js
|
@@ -4236,6 +4235,158 @@ export default function Core(rootElement, userSettings) {
|
|
4236
4235
|
return editorManager.getActiveEditor();
|
4237
4236
|
};
|
4238
4237
|
|
4238
|
+
/**
|
4239
|
+
* Returns the first rendered row in the DOM (usually, it is not visible in the table's viewport).
|
4240
|
+
*
|
4241
|
+
* @since 14.6.0
|
4242
|
+
* @memberof Core#
|
4243
|
+
* @function getFirstRenderedVisibleRow
|
4244
|
+
* @returns {number | null}
|
4245
|
+
*/
|
4246
|
+
this.getFirstRenderedVisibleRow = function () {
|
4247
|
+
return instance.view.getFirstRenderedVisibleRow();
|
4248
|
+
};
|
4249
|
+
|
4250
|
+
/**
|
4251
|
+
* Returns the last rendered row in the DOM (usually, it is not visible in the table's viewport).
|
4252
|
+
*
|
4253
|
+
* @since 14.6.0
|
4254
|
+
* @memberof Core#
|
4255
|
+
* @function getLastRenderedVisibleRow
|
4256
|
+
* @returns {number | null}
|
4257
|
+
*/
|
4258
|
+
this.getLastRenderedVisibleRow = function () {
|
4259
|
+
return instance.view.getLastRenderedVisibleRow();
|
4260
|
+
};
|
4261
|
+
|
4262
|
+
/**
|
4263
|
+
* Returns the first rendered column in the DOM (usually, it is not visible in the table's viewport).
|
4264
|
+
*
|
4265
|
+
* @since 14.6.0
|
4266
|
+
* @memberof Core#
|
4267
|
+
* @function getFirstRenderedVisibleColumn
|
4268
|
+
* @returns {number | null}
|
4269
|
+
*/
|
4270
|
+
this.getFirstRenderedVisibleColumn = function () {
|
4271
|
+
return instance.view.getFirstRenderedVisibleColumn();
|
4272
|
+
};
|
4273
|
+
|
4274
|
+
/**
|
4275
|
+
* Returns the last rendered column in the DOM (usually, it is not visible in the table's viewport).
|
4276
|
+
*
|
4277
|
+
* @since 14.6.0
|
4278
|
+
* @memberof Core#
|
4279
|
+
* @function getLastRenderedVisibleColumn
|
4280
|
+
* @returns {number | null}
|
4281
|
+
*/
|
4282
|
+
this.getLastRenderedVisibleColumn = function () {
|
4283
|
+
return instance.view.getLastRenderedVisibleColumn();
|
4284
|
+
};
|
4285
|
+
|
4286
|
+
/**
|
4287
|
+
* Returns the first fully visible row in the table viewport. When the table has overlays the method returns
|
4288
|
+
* the first row of the main table that is not overlapped by overlay.
|
4289
|
+
*
|
4290
|
+
* @since 14.6.0
|
4291
|
+
* @memberof Core#
|
4292
|
+
* @function getFirstFullyVisibleRow
|
4293
|
+
* @returns {number | null}
|
4294
|
+
*/
|
4295
|
+
this.getFirstFullyVisibleRow = function () {
|
4296
|
+
return instance.view.getFirstFullyVisibleRow();
|
4297
|
+
};
|
4298
|
+
|
4299
|
+
/**
|
4300
|
+
* Returns the last fully visible row in the table viewport. When the table has overlays the method returns
|
4301
|
+
* the first row of the main table that is not overlapped by overlay.
|
4302
|
+
*
|
4303
|
+
* @since 14.6.0
|
4304
|
+
* @memberof Core#
|
4305
|
+
* @function getLastFullyVisibleRow
|
4306
|
+
* @returns {number | null}
|
4307
|
+
*/
|
4308
|
+
this.getLastFullyVisibleRow = function () {
|
4309
|
+
return instance.view.getLastFullyVisibleRow();
|
4310
|
+
};
|
4311
|
+
|
4312
|
+
/**
|
4313
|
+
* Returns the first fully visible column in the table viewport. When the table has overlays the method returns
|
4314
|
+
* the first row of the main table that is not overlapped by overlay.
|
4315
|
+
*
|
4316
|
+
* @since 14.6.0
|
4317
|
+
* @memberof Core#
|
4318
|
+
* @function getFirstFullyVisibleColumn
|
4319
|
+
* @returns {number | null}
|
4320
|
+
*/
|
4321
|
+
this.getFirstFullyVisibleColumn = function () {
|
4322
|
+
return instance.view.getFirstFullyVisibleColumn();
|
4323
|
+
};
|
4324
|
+
|
4325
|
+
/**
|
4326
|
+
* Returns the last fully visible column in the table viewport. When the table has overlays the method returns
|
4327
|
+
* the first row of the main table that is not overlapped by overlay.
|
4328
|
+
*
|
4329
|
+
* @since 14.6.0
|
4330
|
+
* @memberof Core#
|
4331
|
+
* @function getLastFullyVisibleColumn
|
4332
|
+
* @returns {number | null}
|
4333
|
+
*/
|
4334
|
+
this.getLastFullyVisibleColumn = function () {
|
4335
|
+
return instance.view.getLastFullyVisibleColumn();
|
4336
|
+
};
|
4337
|
+
|
4338
|
+
/**
|
4339
|
+
* Returns the first partially visible row in the table viewport. When the table has overlays the method returns
|
4340
|
+
* the first row of the main table that is not overlapped by overlay.
|
4341
|
+
*
|
4342
|
+
* @since 14.6.0
|
4343
|
+
* @memberof Core#
|
4344
|
+
* @function getFirstPartiallyVisibleRow
|
4345
|
+
* @returns {number | null}
|
4346
|
+
*/
|
4347
|
+
this.getFirstPartiallyVisibleRow = function () {
|
4348
|
+
return instance.view.getFirstPartiallyVisibleRow();
|
4349
|
+
};
|
4350
|
+
|
4351
|
+
/**
|
4352
|
+
* Returns the last partially visible row in the table viewport. When the table has overlays the method returns
|
4353
|
+
* the first row of the main table that is not overlapped by overlay.
|
4354
|
+
*
|
4355
|
+
* @since 14.6.0
|
4356
|
+
* @memberof Core#
|
4357
|
+
* @function getLastPartiallyVisibleRow
|
4358
|
+
* @returns {number | null}
|
4359
|
+
*/
|
4360
|
+
this.getLastPartiallyVisibleRow = function () {
|
4361
|
+
return instance.view.getLastPartiallyVisibleRow();
|
4362
|
+
};
|
4363
|
+
|
4364
|
+
/**
|
4365
|
+
* Returns the first partially visible column in the table viewport. When the table has overlays the method returns
|
4366
|
+
* the first row of the main table that is not overlapped by overlay.
|
4367
|
+
*
|
4368
|
+
* @since 14.6.0
|
4369
|
+
* @memberof Core#
|
4370
|
+
* @function getFirstPartiallyVisibleColumn
|
4371
|
+
* @returns {number | null}
|
4372
|
+
*/
|
4373
|
+
this.getFirstPartiallyVisibleColumn = function () {
|
4374
|
+
return instance.view.getFirstPartiallyVisibleColumn();
|
4375
|
+
};
|
4376
|
+
|
4377
|
+
/**
|
4378
|
+
* Returns the last partially visible column in the table viewport. When the table has overlays the method returns
|
4379
|
+
* the first row of the main table that is not overlapped by overlay.
|
4380
|
+
*
|
4381
|
+
* @since 14.6.0
|
4382
|
+
* @memberof Core#
|
4383
|
+
* @function getLastPartiallyVisibleColumn
|
4384
|
+
* @returns {number | null}
|
4385
|
+
*/
|
4386
|
+
this.getLastPartiallyVisibleColumn = function () {
|
4387
|
+
return instance.view.getLastPartiallyVisibleColumn();
|
4388
|
+
};
|
4389
|
+
|
4239
4390
|
/**
|
4240
4391
|
* Returns plugin instance by provided its name.
|
4241
4392
|
*
|
package/dist/handsontable.css
CHANGED
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 30/07/2024 (built at
|
28
|
+
* Version: 0.0.0-next-c33a3a6-20240916
|
29
|
+
* Release date: 30/07/2024 (built at 16/09/2024 09:34:35)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 30/07/2024 (built at
|
28
|
+
* Version: 0.0.0-next-c33a3a6-20240916
|
29
|
+
* Release date: 30/07/2024 (built at 16/09/2024 09:34:35)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 30/07/2024 (built at
|
28
|
+
* Version: 0.0.0-next-c33a3a6-20240916
|
29
|
+
* Release date: 30/07/2024 (built at 16/09/2024 09:34:35)
|
30
30
|
*/
|
31
31
|
(function webpackUniversalModuleDefinition(root, factory) {
|
32
32
|
if(typeof exports === 'object' && typeof module === 'object')
|
@@ -42675,8 +42675,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
42675
42675
|
Handsontable.CellCoords = _src.CellCoords;
|
42676
42676
|
Handsontable.CellRange = _src.CellRange;
|
42677
42677
|
Handsontable.packageName = 'handsontable';
|
42678
|
-
Handsontable.buildDate = "
|
42679
|
-
Handsontable.version = "0.0.0-next-
|
42678
|
+
Handsontable.buildDate = "16/09/2024 09:34:35";
|
42679
|
+
Handsontable.version = "0.0.0-next-c33a3a6-20240916";
|
42680
42680
|
Handsontable.languages = {
|
42681
42681
|
dictionaryKeys: _registry.dictionaryKeys,
|
42682
42682
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
@@ -45174,8 +45174,7 @@ function Core(rootElement, userSettings) {
|
|
45174
45174
|
* by adding or removing rows and columns at specified positions.
|
45175
45175
|
*
|
45176
45176
|
* ::: tip
|
45177
|
-
*
|
45178
|
-
* is an [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays).
|
45177
|
+
* If you use an array of objects in your [`data`](@/api/options.md#data), the column-related actions won't work.
|
45179
45178
|
* :::
|
45180
45179
|
*
|
45181
45180
|
* ```js
|
@@ -46970,6 +46969,158 @@ function Core(rootElement, userSettings) {
|
|
46970
46969
|
return editorManager.getActiveEditor();
|
46971
46970
|
};
|
46972
46971
|
|
46972
|
+
/**
|
46973
|
+
* Returns the first rendered row in the DOM (usually, it is not visible in the table's viewport).
|
46974
|
+
*
|
46975
|
+
* @since 14.6.0
|
46976
|
+
* @memberof Core#
|
46977
|
+
* @function getFirstRenderedVisibleRow
|
46978
|
+
* @returns {number | null}
|
46979
|
+
*/
|
46980
|
+
this.getFirstRenderedVisibleRow = function () {
|
46981
|
+
return instance.view.getFirstRenderedVisibleRow();
|
46982
|
+
};
|
46983
|
+
|
46984
|
+
/**
|
46985
|
+
* Returns the last rendered row in the DOM (usually, it is not visible in the table's viewport).
|
46986
|
+
*
|
46987
|
+
* @since 14.6.0
|
46988
|
+
* @memberof Core#
|
46989
|
+
* @function getLastRenderedVisibleRow
|
46990
|
+
* @returns {number | null}
|
46991
|
+
*/
|
46992
|
+
this.getLastRenderedVisibleRow = function () {
|
46993
|
+
return instance.view.getLastRenderedVisibleRow();
|
46994
|
+
};
|
46995
|
+
|
46996
|
+
/**
|
46997
|
+
* Returns the first rendered column in the DOM (usually, it is not visible in the table's viewport).
|
46998
|
+
*
|
46999
|
+
* @since 14.6.0
|
47000
|
+
* @memberof Core#
|
47001
|
+
* @function getFirstRenderedVisibleColumn
|
47002
|
+
* @returns {number | null}
|
47003
|
+
*/
|
47004
|
+
this.getFirstRenderedVisibleColumn = function () {
|
47005
|
+
return instance.view.getFirstRenderedVisibleColumn();
|
47006
|
+
};
|
47007
|
+
|
47008
|
+
/**
|
47009
|
+
* Returns the last rendered column in the DOM (usually, it is not visible in the table's viewport).
|
47010
|
+
*
|
47011
|
+
* @since 14.6.0
|
47012
|
+
* @memberof Core#
|
47013
|
+
* @function getLastRenderedVisibleColumn
|
47014
|
+
* @returns {number | null}
|
47015
|
+
*/
|
47016
|
+
this.getLastRenderedVisibleColumn = function () {
|
47017
|
+
return instance.view.getLastRenderedVisibleColumn();
|
47018
|
+
};
|
47019
|
+
|
47020
|
+
/**
|
47021
|
+
* Returns the first fully visible row in the table viewport. When the table has overlays the method returns
|
47022
|
+
* the first row of the main table that is not overlapped by overlay.
|
47023
|
+
*
|
47024
|
+
* @since 14.6.0
|
47025
|
+
* @memberof Core#
|
47026
|
+
* @function getFirstFullyVisibleRow
|
47027
|
+
* @returns {number | null}
|
47028
|
+
*/
|
47029
|
+
this.getFirstFullyVisibleRow = function () {
|
47030
|
+
return instance.view.getFirstFullyVisibleRow();
|
47031
|
+
};
|
47032
|
+
|
47033
|
+
/**
|
47034
|
+
* Returns the last fully visible row in the table viewport. When the table has overlays the method returns
|
47035
|
+
* the first row of the main table that is not overlapped by overlay.
|
47036
|
+
*
|
47037
|
+
* @since 14.6.0
|
47038
|
+
* @memberof Core#
|
47039
|
+
* @function getLastFullyVisibleRow
|
47040
|
+
* @returns {number | null}
|
47041
|
+
*/
|
47042
|
+
this.getLastFullyVisibleRow = function () {
|
47043
|
+
return instance.view.getLastFullyVisibleRow();
|
47044
|
+
};
|
47045
|
+
|
47046
|
+
/**
|
47047
|
+
* Returns the first fully visible column in the table viewport. When the table has overlays the method returns
|
47048
|
+
* the first row of the main table that is not overlapped by overlay.
|
47049
|
+
*
|
47050
|
+
* @since 14.6.0
|
47051
|
+
* @memberof Core#
|
47052
|
+
* @function getFirstFullyVisibleColumn
|
47053
|
+
* @returns {number | null}
|
47054
|
+
*/
|
47055
|
+
this.getFirstFullyVisibleColumn = function () {
|
47056
|
+
return instance.view.getFirstFullyVisibleColumn();
|
47057
|
+
};
|
47058
|
+
|
47059
|
+
/**
|
47060
|
+
* Returns the last fully visible column in the table viewport. When the table has overlays the method returns
|
47061
|
+
* the first row of the main table that is not overlapped by overlay.
|
47062
|
+
*
|
47063
|
+
* @since 14.6.0
|
47064
|
+
* @memberof Core#
|
47065
|
+
* @function getLastFullyVisibleColumn
|
47066
|
+
* @returns {number | null}
|
47067
|
+
*/
|
47068
|
+
this.getLastFullyVisibleColumn = function () {
|
47069
|
+
return instance.view.getLastFullyVisibleColumn();
|
47070
|
+
};
|
47071
|
+
|
47072
|
+
/**
|
47073
|
+
* Returns the first partially visible row in the table viewport. When the table has overlays the method returns
|
47074
|
+
* the first row of the main table that is not overlapped by overlay.
|
47075
|
+
*
|
47076
|
+
* @since 14.6.0
|
47077
|
+
* @memberof Core#
|
47078
|
+
* @function getFirstPartiallyVisibleRow
|
47079
|
+
* @returns {number | null}
|
47080
|
+
*/
|
47081
|
+
this.getFirstPartiallyVisibleRow = function () {
|
47082
|
+
return instance.view.getFirstPartiallyVisibleRow();
|
47083
|
+
};
|
47084
|
+
|
47085
|
+
/**
|
47086
|
+
* Returns the last partially visible row in the table viewport. When the table has overlays the method returns
|
47087
|
+
* the first row of the main table that is not overlapped by overlay.
|
47088
|
+
*
|
47089
|
+
* @since 14.6.0
|
47090
|
+
* @memberof Core#
|
47091
|
+
* @function getLastPartiallyVisibleRow
|
47092
|
+
* @returns {number | null}
|
47093
|
+
*/
|
47094
|
+
this.getLastPartiallyVisibleRow = function () {
|
47095
|
+
return instance.view.getLastPartiallyVisibleRow();
|
47096
|
+
};
|
47097
|
+
|
47098
|
+
/**
|
47099
|
+
* Returns the first partially visible column in the table viewport. When the table has overlays the method returns
|
47100
|
+
* the first row of the main table that is not overlapped by overlay.
|
47101
|
+
*
|
47102
|
+
* @since 14.6.0
|
47103
|
+
* @memberof Core#
|
47104
|
+
* @function getFirstPartiallyVisibleColumn
|
47105
|
+
* @returns {number | null}
|
47106
|
+
*/
|
47107
|
+
this.getFirstPartiallyVisibleColumn = function () {
|
47108
|
+
return instance.view.getFirstPartiallyVisibleColumn();
|
47109
|
+
};
|
47110
|
+
|
47111
|
+
/**
|
47112
|
+
* Returns the last partially visible column in the table viewport. When the table has overlays the method returns
|
47113
|
+
* the first row of the main table that is not overlapped by overlay.
|
47114
|
+
*
|
47115
|
+
* @since 14.6.0
|
47116
|
+
* @memberof Core#
|
47117
|
+
* @function getLastPartiallyVisibleColumn
|
47118
|
+
* @returns {number | null}
|
47119
|
+
*/
|
47120
|
+
this.getLastPartiallyVisibleColumn = function () {
|
47121
|
+
return instance.view.getLastPartiallyVisibleColumn();
|
47122
|
+
};
|
47123
|
+
|
46973
47124
|
/**
|
46974
47125
|
* Returns plugin instance by provided its name.
|
46975
47126
|
*
|
@@ -53247,7 +53398,7 @@ const domMessages = {
|
|
53247
53398
|
function _injectProductInfo(key, element) {
|
53248
53399
|
const hasValidType = !isEmpty(key);
|
53249
53400
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
53250
|
-
const hotVersion = "0.0.0-next-
|
53401
|
+
const hotVersion = "0.0.0-next-c33a3a6-20240916";
|
53251
53402
|
let keyValidityDate;
|
53252
53403
|
let consoleMessageState = 'invalid';
|
53253
53404
|
let domMessageState = 'invalid';
|
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 30/07/2024 (built at
|
28
|
+
* Version: 0.0.0-next-c33a3a6-20240916
|
29
|
+
* Release date: 30/07/2024 (built at 16/09/2024 09:34:54)
|
30
30
|
*/.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.col-lg-2.handsontable,.col-lg-3.handsontable,.col-lg-4.handsontable,.col-lg-5.handsontable,.col-lg-6.handsontable,.col-lg-7.handsontable,.col-lg-8.handsontable,.col-lg-9.handsontable,.col-md-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.col-md-2.handsontable,.col-md-3.handsontable,.col-md-4.handsontable,.col-md-5.handsontable,.col-md-6.handsontable,.col-md-7.handsontable,.col-md-8.handsontable,.col-md-9.handsontable .col-sm-1.handsontable,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.col-sm-2.handsontable,.col-sm-3.handsontable,.col-sm-4.handsontable,.col-sm-5.handsontable,.col-sm-6.handsontable,.col-sm-7.handsontable,.col-sm-8.handsontable,.col-sm-9.handsontable .col-xs-1.handsontable,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable,.col-xs-2.handsontable,.col-xs-3.handsontable,.col-xs-4.handsontable,.col-xs-5.handsontable,.col-xs-6.handsontable,.col-xs-7.handsontable,.col-xs-8.handsontable,.col-xs-9.handsontable{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable{position:relative}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{width:0}.handsontable .wtSpreader{height:auto;position:relative;width:0}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:auto}.handsontable table.htCore{border-collapse:separate;border-spacing:0;border-width:0;cursor:default;margin:0;max-height:none;max-width:none;outline-width:0;table-layout:fixed;width:0}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{background-color:#fff;border-bottom:1px solid #ccc;border-left-width:0;border-right:1px solid #ccc;border-top-width:0;empty-cells:show;height:22px;line-height:21px;outline:none;outline-width:0;overflow:hidden;padding:0 4px;vertical-align:top;white-space:pre-wrap}[dir=rtl].handsontable td,[dir=rtl].handsontable th{border-left:1px solid #ccc;border-right-width:0}.handsontable th:last-child{border-bottom:1px solid #ccc;border-left:none;border-right:1px solid #ccc}[dir=rtl].handsontable th:last-child{border-left:1px solid #ccc;border-right:none}.handsontable td:first-of-type,.handsontable th:first-child{border-left:1px solid #ccc}[dir=rtl].handsontable td:first-of-type,[dir=rtl].handsontable th:first-child{border-right:1px solid #ccc}.handsontable .ht_clone_top th:nth-child(2){border-left-width:0;border-right:1px solid #ccc}[dir=rtl].handsontable .ht_clone_top th:nth-child(2){border-left:1px solid #ccc;border-right-width:0}.handsontable.htRowHeaders thead tr th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2){border-right:1px solid #ccc}.handsontable tr:first-child td,.handsontable tr:first-child th{border-top:1px solid #ccc}.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child{border-left:1px solid #ccc;border-right-width:0}[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child{border-left-width:0;border-right:1px solid #ccc}.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr:last-child th{border-bottom-width:0}.handsontable th{background-color:#f0f0f0;color:#222;font-weight:400;text-align:center;white-space:nowrap}.handsontable thead th{padding:0}.handsontable th.active{background-color:#ccc}.handsontable thead th .relative{padding:2px 4px}.handsontable span.colHeader{display:inline-block;line-height:1.1}.handsontable .wtBorder{font-size:0;position:absolute}.handsontable .wtBorder.hidden{display:none!important}.handsontable .wtBorder.current{z-index:10}.handsontable .wtBorder.area{z-index:8}.handsontable .wtBorder.fill{z-index:6}.handsontable .wtBorder.corner{cursor:crosshair;font-size:0}.ht_clone_master{z-index:100}.ht_clone_inline_start{z-index:120}.ht_clone_bottom{z-index:130}.ht_clone_bottom_inline_start_corner{z-index:150}.ht_clone_top{z-index:160}.ht_clone_top_inline_start_corner{z-index:180}.handsontable col.hidden{width:0!important}.handsontable tr.hidden,.handsontable tr.hidden td,.handsontable tr.hidden th{display:none}.ht_clone_bottom,.ht_clone_inline_start,.ht_clone_top,.ht_master{overflow:hidden}.ht_master .wtHolder{overflow:auto}.handsontable .ht_clone_inline_start table.htCore>thead,.handsontable .ht_master table.htCore>tbody>tr>th,.handsontable .ht_master table.htCore>thead{visibility:hidden}.ht_clone_bottom .wtHolder,.ht_clone_inline_start .wtHolder,.ht_clone_top .wtHolder{overflow:hidden}.handsontable{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:13px;font-weight:400;touch-action:manipulation}.handsontable a{color:#104acc}.handsontable.htAutoSize{left:-99000px;position:absolute;top:-99000px;visibility:hidden}.handsontable td.htInvalid{background-color:#ffbeba!important}.handsontable td.htNoWrap{white-space:nowrap}.handsontable td.invisibleSelection,.handsontable th.invisibleSelection{outline:none}.handsontable td.invisibleSelection::selection,.handsontable th.invisibleSelection::selection{background:hsla(0,0%,100%,0)}.hot-display-license-info{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:10px;font-weight:400;padding:5px 0 3px;text-align:left}.hot-display-license-info a{color:#104acc;font-size:10px}.handsontable .htFocusCatcher{border:0;height:0;margin:0;opacity:0;padding:0;position:absolute;width:0;z-index:-1}.handsontable .manualColumnResizer{cursor:col-resize;height:25px;position:absolute;top:0;width:5px;z-index:210}.handsontable .manualRowResizer{cursor:row-resize;height:5px;left:0;position:absolute;width:50px;z-index:210}.handsontable .manualColumnResizer.active,.handsontable .manualColumnResizer:hover,.handsontable .manualRowResizer.active,.handsontable .manualRowResizer:hover{background-color:#34a9db}.handsontable .manualColumnResizerGuide{background-color:#34a9db;border-left:none;border-right:1px dashed #777;display:none;margin-left:5px;margin-right:unset;position:absolute;right:unset;top:0;width:0}[dir=rtl].handsontable .manualColumnResizerGuide{border-left:1px dashed #777;border-right:none;left:unset;margin-left:unset;margin-right:5px}.handsontable .manualRowResizerGuide{background-color:#34a9db;border-bottom:1px dashed #777;bottom:0;display:none;height:0;left:0;margin-top:5px;position:absolute}.handsontable .manualColumnResizerGuide.active,.handsontable .manualRowResizerGuide.active{display:block;z-index:209}.handsontable td.area,.handsontable td.area-1,.handsontable td.area-2,.handsontable td.area-3,.handsontable td.area-4,.handsontable td.area-5,.handsontable td.area-6,.handsontable td.area-7{position:relative}.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{background:#005eff;bottom:0;content:"";left:0;position:absolute;right:0;top:0}.handsontable td.area:before{opacity:.1}.handsontable td.area-1:before{opacity:.2}.handsontable td.area-2:before{opacity:.27}.handsontable td.area-3:before{opacity:.35}.handsontable td.area-4:before{opacity:.41}.handsontable td.area-5:before{opacity:.47}.handsontable td.area-6:before{opacity:.54}.handsontable td.area-7:before{opacity:.58}.handsontable tbody th.current,.handsontable thead th.current{box-shadow:inset 0 0 0 2px #4b89ff}.handsontable tbody th.ht__highlight,.handsontable thead th.ht__highlight{background-color:#dcdcdc}.handsontable tbody th.ht__active_highlight,.handsontable thead th.ht__active_highlight{background-color:#8eb0e7;color:#000}.handsontableInput{background-color:#fff;border:none;border-radius:0;box-shadow:inset 0 0 0 2px #5292f7;color:#000;display:block;font-family:inherit;font-size:inherit;line-height:21px;margin:0;outline-width:0;padding:1px 5px 0;resize:none}.handsontableInput:focus{outline:none}.handsontableInputHolder{left:0;position:absolute;top:0}.htSelectEditor{-webkit-appearance:menulist-button!important;border:2px solid #4b89ff;position:absolute;width:auto}.htSelectEditor:focus{outline:none}.handsontable .htDimmed{color:#777}.handsontable .htSubmenu{position:relative}.handsontable .htSubmenu :after{color:#777;content:"▶";font-size:9px;position:absolute;right:5px}[dir=rtl].handsontable .htSubmenu :after{content:""}[dir=rtl].handsontable .htSubmenu :before{color:#777;content:"◀";font-size:9px;left:5px;position:absolute}.handsontable .htLeft{text-align:left}.handsontable .htCenter{text-align:center}.handsontable .htRight{text-align:right}.handsontable .htJustify{text-align:justify}.handsontable .htTop{vertical-align:top}.handsontable .htMiddle{vertical-align:middle}.handsontable .htBottom{vertical-align:bottom}.handsontable .htPlaceholder{color:#999}.handsontable.listbox{margin:0}.handsontable.listbox .ht_master table{background:#fff;border:1px solid #ccc;border-collapse:separate}.handsontable.listbox td,.handsontable.listbox th,.handsontable.listbox tr:first-child td,.handsontable.listbox tr:first-child th,.handsontable.listbox tr:last-child th{border-color:transparent!important}.handsontable.listbox td,.handsontable.listbox th{text-overflow:ellipsis;white-space:nowrap}.handsontable.listbox td.htDimmed{color:inherit;cursor:default;font-style:inherit}.handsontable.listbox .wtBorder{visibility:hidden}.handsontable.listbox tr td.current,.handsontable.listbox tr:hover td{background:#eee}.ht_editor_hidden{z-index:-1}.ht_editor_visible{z-index:200}.handsontable td.htSearchResult{background:#fcedd9;color:#583707}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch}.handsontable.mobile .handsontableInput:focus{-webkit-appearance:none;-webkit-box-shadow:inset 0 0 0 2px #5292f7;-moz-box-shadow:inset 0 0 0 2px #5292f7;box-shadow:inset 0 0 0 2px #5292f7}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px;z-index:9999}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{left:unset;right:-10000px}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}
|
31
31
|
/*!
|
32
32
|
* Pikaday
|