handsontable 0.0.0-next-1f21f59-20240912 → 0.0.0-next-108000e-20240912

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 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 = "12/09/2024 13:18:00";
49
- Handsontable.version = "0.0.0-next-1f21f59-20240912";
48
+ Handsontable.buildDate = "12/09/2024 19:03:58";
49
+ Handsontable.version = "0.0.0-next-108000e-20240912";
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 = "12/09/2024 13:18:06";
39
- Handsontable.version = "0.0.0-next-1f21f59-20240912";
38
+ Handsontable.buildDate = "12/09/2024 19:04:03";
39
+ Handsontable.version = "0.0.0-next-108000e-20240912";
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
@@ -4241,6 +4241,158 @@ function Core(rootElement, userSettings) {
4241
4241
  return editorManager.getActiveEditor();
4242
4242
  };
4243
4243
 
4244
+ /**
4245
+ * Returns the first rendered row in the DOM (usually, it is not visible in the table's viewport).
4246
+ *
4247
+ * @since 14.6.0
4248
+ * @memberof Core#
4249
+ * @function getFirstRenderedVisibleRow
4250
+ * @returns {number | null}
4251
+ */
4252
+ this.getFirstRenderedVisibleRow = function () {
4253
+ return instance.view.getFirstRenderedVisibleRow();
4254
+ };
4255
+
4256
+ /**
4257
+ * Returns the last rendered row in the DOM (usually, it is not visible in the table's viewport).
4258
+ *
4259
+ * @since 14.6.0
4260
+ * @memberof Core#
4261
+ * @function getLastRenderedVisibleRow
4262
+ * @returns {number | null}
4263
+ */
4264
+ this.getLastRenderedVisibleRow = function () {
4265
+ return instance.view.getLastRenderedVisibleRow();
4266
+ };
4267
+
4268
+ /**
4269
+ * Returns the first rendered column in the DOM (usually, it is not visible in the table's viewport).
4270
+ *
4271
+ * @since 14.6.0
4272
+ * @memberof Core#
4273
+ * @function getFirstRenderedVisibleColumn
4274
+ * @returns {number | null}
4275
+ */
4276
+ this.getFirstRenderedVisibleColumn = function () {
4277
+ return instance.view.getFirstRenderedVisibleColumn();
4278
+ };
4279
+
4280
+ /**
4281
+ * Returns the last rendered column in the DOM (usually, it is not visible in the table's viewport).
4282
+ *
4283
+ * @since 14.6.0
4284
+ * @memberof Core#
4285
+ * @function getLastRenderedVisibleColumn
4286
+ * @returns {number | null}
4287
+ */
4288
+ this.getLastRenderedVisibleColumn = function () {
4289
+ return instance.view.getLastRenderedVisibleColumn();
4290
+ };
4291
+
4292
+ /**
4293
+ * Returns the first fully visible row in the table viewport. When the table has overlays the method returns
4294
+ * the first row of the main table that is not overlapped by overlay.
4295
+ *
4296
+ * @since 14.6.0
4297
+ * @memberof Core#
4298
+ * @function getFirstFullyVisibleRow
4299
+ * @returns {number | null}
4300
+ */
4301
+ this.getFirstFullyVisibleRow = function () {
4302
+ return instance.view.getFirstFullyVisibleRow();
4303
+ };
4304
+
4305
+ /**
4306
+ * Returns the last fully visible row in the table viewport. When the table has overlays the method returns
4307
+ * the first row of the main table that is not overlapped by overlay.
4308
+ *
4309
+ * @since 14.6.0
4310
+ * @memberof Core#
4311
+ * @function getLastFullyVisibleRow
4312
+ * @returns {number | null}
4313
+ */
4314
+ this.getLastFullyVisibleRow = function () {
4315
+ return instance.view.getLastFullyVisibleRow();
4316
+ };
4317
+
4318
+ /**
4319
+ * Returns the first fully visible column in the table viewport. When the table has overlays the method returns
4320
+ * the first row of the main table that is not overlapped by overlay.
4321
+ *
4322
+ * @since 14.6.0
4323
+ * @memberof Core#
4324
+ * @function getFirstFullyVisibleColumn
4325
+ * @returns {number | null}
4326
+ */
4327
+ this.getFirstFullyVisibleColumn = function () {
4328
+ return instance.view.getFirstFullyVisibleColumn();
4329
+ };
4330
+
4331
+ /**
4332
+ * Returns the last fully visible column in the table viewport. When the table has overlays the method returns
4333
+ * the first row of the main table that is not overlapped by overlay.
4334
+ *
4335
+ * @since 14.6.0
4336
+ * @memberof Core#
4337
+ * @function getLastFullyVisibleColumn
4338
+ * @returns {number | null}
4339
+ */
4340
+ this.getLastFullyVisibleColumn = function () {
4341
+ return instance.view.getLastFullyVisibleColumn();
4342
+ };
4343
+
4344
+ /**
4345
+ * Returns the first partially visible row in the table viewport. When the table has overlays the method returns
4346
+ * the first row of the main table that is not overlapped by overlay.
4347
+ *
4348
+ * @since 14.6.0
4349
+ * @memberof Core#
4350
+ * @function getFirstPartiallyVisibleRow
4351
+ * @returns {number | null}
4352
+ */
4353
+ this.getFirstPartiallyVisibleRow = function () {
4354
+ return instance.view.getFirstPartiallyVisibleRow();
4355
+ };
4356
+
4357
+ /**
4358
+ * Returns the last partially visible row in the table viewport. When the table has overlays the method returns
4359
+ * the first row of the main table that is not overlapped by overlay.
4360
+ *
4361
+ * @since 14.6.0
4362
+ * @memberof Core#
4363
+ * @function getLastPartiallyVisibleRow
4364
+ * @returns {number | null}
4365
+ */
4366
+ this.getLastPartiallyVisibleRow = function () {
4367
+ return instance.view.getLastPartiallyVisibleRow();
4368
+ };
4369
+
4370
+ /**
4371
+ * Returns the first partially visible column in the table viewport. When the table has overlays the method returns
4372
+ * the first row of the main table that is not overlapped by overlay.
4373
+ *
4374
+ * @since 14.6.0
4375
+ * @memberof Core#
4376
+ * @function getFirstPartiallyVisibleColumn
4377
+ * @returns {number | null}
4378
+ */
4379
+ this.getFirstPartiallyVisibleColumn = function () {
4380
+ return instance.view.getFirstPartiallyVisibleColumn();
4381
+ };
4382
+
4383
+ /**
4384
+ * Returns the last partially visible column in the table viewport. When the table has overlays the method returns
4385
+ * the first row of the main table that is not overlapped by overlay.
4386
+ *
4387
+ * @since 14.6.0
4388
+ * @memberof Core#
4389
+ * @function getLastPartiallyVisibleColumn
4390
+ * @returns {number | null}
4391
+ */
4392
+ this.getLastPartiallyVisibleColumn = function () {
4393
+ return instance.view.getLastPartiallyVisibleColumn();
4394
+ };
4395
+
4244
4396
  /**
4245
4397
  * Returns plugin instance by provided its name.
4246
4398
  *
package/core.mjs CHANGED
@@ -4236,6 +4236,158 @@ export default function Core(rootElement, userSettings) {
4236
4236
  return editorManager.getActiveEditor();
4237
4237
  };
4238
4238
 
4239
+ /**
4240
+ * Returns the first rendered row in the DOM (usually, it is not visible in the table's viewport).
4241
+ *
4242
+ * @since 14.6.0
4243
+ * @memberof Core#
4244
+ * @function getFirstRenderedVisibleRow
4245
+ * @returns {number | null}
4246
+ */
4247
+ this.getFirstRenderedVisibleRow = function () {
4248
+ return instance.view.getFirstRenderedVisibleRow();
4249
+ };
4250
+
4251
+ /**
4252
+ * Returns the last rendered row in the DOM (usually, it is not visible in the table's viewport).
4253
+ *
4254
+ * @since 14.6.0
4255
+ * @memberof Core#
4256
+ * @function getLastRenderedVisibleRow
4257
+ * @returns {number | null}
4258
+ */
4259
+ this.getLastRenderedVisibleRow = function () {
4260
+ return instance.view.getLastRenderedVisibleRow();
4261
+ };
4262
+
4263
+ /**
4264
+ * Returns the first rendered column in the DOM (usually, it is not visible in the table's viewport).
4265
+ *
4266
+ * @since 14.6.0
4267
+ * @memberof Core#
4268
+ * @function getFirstRenderedVisibleColumn
4269
+ * @returns {number | null}
4270
+ */
4271
+ this.getFirstRenderedVisibleColumn = function () {
4272
+ return instance.view.getFirstRenderedVisibleColumn();
4273
+ };
4274
+
4275
+ /**
4276
+ * Returns the last rendered column in the DOM (usually, it is not visible in the table's viewport).
4277
+ *
4278
+ * @since 14.6.0
4279
+ * @memberof Core#
4280
+ * @function getLastRenderedVisibleColumn
4281
+ * @returns {number | null}
4282
+ */
4283
+ this.getLastRenderedVisibleColumn = function () {
4284
+ return instance.view.getLastRenderedVisibleColumn();
4285
+ };
4286
+
4287
+ /**
4288
+ * Returns the first fully visible row in the table viewport. When the table has overlays the method returns
4289
+ * the first row of the main table that is not overlapped by overlay.
4290
+ *
4291
+ * @since 14.6.0
4292
+ * @memberof Core#
4293
+ * @function getFirstFullyVisibleRow
4294
+ * @returns {number | null}
4295
+ */
4296
+ this.getFirstFullyVisibleRow = function () {
4297
+ return instance.view.getFirstFullyVisibleRow();
4298
+ };
4299
+
4300
+ /**
4301
+ * Returns the last fully visible row in the table viewport. When the table has overlays the method returns
4302
+ * the first row of the main table that is not overlapped by overlay.
4303
+ *
4304
+ * @since 14.6.0
4305
+ * @memberof Core#
4306
+ * @function getLastFullyVisibleRow
4307
+ * @returns {number | null}
4308
+ */
4309
+ this.getLastFullyVisibleRow = function () {
4310
+ return instance.view.getLastFullyVisibleRow();
4311
+ };
4312
+
4313
+ /**
4314
+ * Returns the first fully visible column in the table viewport. When the table has overlays the method returns
4315
+ * the first row of the main table that is not overlapped by overlay.
4316
+ *
4317
+ * @since 14.6.0
4318
+ * @memberof Core#
4319
+ * @function getFirstFullyVisibleColumn
4320
+ * @returns {number | null}
4321
+ */
4322
+ this.getFirstFullyVisibleColumn = function () {
4323
+ return instance.view.getFirstFullyVisibleColumn();
4324
+ };
4325
+
4326
+ /**
4327
+ * Returns the last fully visible column in the table viewport. When the table has overlays the method returns
4328
+ * the first row of the main table that is not overlapped by overlay.
4329
+ *
4330
+ * @since 14.6.0
4331
+ * @memberof Core#
4332
+ * @function getLastFullyVisibleColumn
4333
+ * @returns {number | null}
4334
+ */
4335
+ this.getLastFullyVisibleColumn = function () {
4336
+ return instance.view.getLastFullyVisibleColumn();
4337
+ };
4338
+
4339
+ /**
4340
+ * Returns the first partially visible row in the table viewport. When the table has overlays the method returns
4341
+ * the first row of the main table that is not overlapped by overlay.
4342
+ *
4343
+ * @since 14.6.0
4344
+ * @memberof Core#
4345
+ * @function getFirstPartiallyVisibleRow
4346
+ * @returns {number | null}
4347
+ */
4348
+ this.getFirstPartiallyVisibleRow = function () {
4349
+ return instance.view.getFirstPartiallyVisibleRow();
4350
+ };
4351
+
4352
+ /**
4353
+ * Returns the last partially visible row in the table viewport. When the table has overlays the method returns
4354
+ * the first row of the main table that is not overlapped by overlay.
4355
+ *
4356
+ * @since 14.6.0
4357
+ * @memberof Core#
4358
+ * @function getLastPartiallyVisibleRow
4359
+ * @returns {number | null}
4360
+ */
4361
+ this.getLastPartiallyVisibleRow = function () {
4362
+ return instance.view.getLastPartiallyVisibleRow();
4363
+ };
4364
+
4365
+ /**
4366
+ * Returns the first partially visible column in the table viewport. When the table has overlays the method returns
4367
+ * the first row of the main table that is not overlapped by overlay.
4368
+ *
4369
+ * @since 14.6.0
4370
+ * @memberof Core#
4371
+ * @function getFirstPartiallyVisibleColumn
4372
+ * @returns {number | null}
4373
+ */
4374
+ this.getFirstPartiallyVisibleColumn = function () {
4375
+ return instance.view.getFirstPartiallyVisibleColumn();
4376
+ };
4377
+
4378
+ /**
4379
+ * Returns the last partially visible column in the table viewport. When the table has overlays the method returns
4380
+ * the first row of the main table that is not overlapped by overlay.
4381
+ *
4382
+ * @since 14.6.0
4383
+ * @memberof Core#
4384
+ * @function getLastPartiallyVisibleColumn
4385
+ * @returns {number | null}
4386
+ */
4387
+ this.getLastPartiallyVisibleColumn = function () {
4388
+ return instance.view.getLastPartiallyVisibleColumn();
4389
+ };
4390
+
4239
4391
  /**
4240
4392
  * Returns plugin instance by provided its name.
4241
4393
  *
@@ -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-1f21f59-20240912
29
- * Release date: 30/07/2024 (built at 12/09/2024 13:18:11)
28
+ * Version: 0.0.0-next-108000e-20240912
29
+ * Release date: 30/07/2024 (built at 12/09/2024 19:04:08)
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-1f21f59-20240912
29
- * Release date: 30/07/2024 (built at 12/09/2024 13:18:11)
28
+ * Version: 0.0.0-next-108000e-20240912
29
+ * Release date: 30/07/2024 (built at 12/09/2024 19:04:08)
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-1f21f59-20240912
29
- * Release date: 30/07/2024 (built at 12/09/2024 13:18:11)
28
+ * Version: 0.0.0-next-108000e-20240912
29
+ * Release date: 30/07/2024 (built at 12/09/2024 19:04:08)
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 = "12/09/2024 13:18:11";
42679
- Handsontable.version = "0.0.0-next-1f21f59-20240912";
42678
+ Handsontable.buildDate = "12/09/2024 19:04:08";
42679
+ Handsontable.version = "0.0.0-next-108000e-20240912";
42680
42680
  Handsontable.languages = {
42681
42681
  dictionaryKeys: _registry.dictionaryKeys,
42682
42682
  getLanguageDictionary: _registry.getLanguageDictionary,
@@ -46970,6 +46970,158 @@ function Core(rootElement, userSettings) {
46970
46970
  return editorManager.getActiveEditor();
46971
46971
  };
46972
46972
 
46973
+ /**
46974
+ * Returns the first rendered row in the DOM (usually, it is not visible in the table's viewport).
46975
+ *
46976
+ * @since 14.6.0
46977
+ * @memberof Core#
46978
+ * @function getFirstRenderedVisibleRow
46979
+ * @returns {number | null}
46980
+ */
46981
+ this.getFirstRenderedVisibleRow = function () {
46982
+ return instance.view.getFirstRenderedVisibleRow();
46983
+ };
46984
+
46985
+ /**
46986
+ * Returns the last rendered row in the DOM (usually, it is not visible in the table's viewport).
46987
+ *
46988
+ * @since 14.6.0
46989
+ * @memberof Core#
46990
+ * @function getLastRenderedVisibleRow
46991
+ * @returns {number | null}
46992
+ */
46993
+ this.getLastRenderedVisibleRow = function () {
46994
+ return instance.view.getLastRenderedVisibleRow();
46995
+ };
46996
+
46997
+ /**
46998
+ * Returns the first rendered column in the DOM (usually, it is not visible in the table's viewport).
46999
+ *
47000
+ * @since 14.6.0
47001
+ * @memberof Core#
47002
+ * @function getFirstRenderedVisibleColumn
47003
+ * @returns {number | null}
47004
+ */
47005
+ this.getFirstRenderedVisibleColumn = function () {
47006
+ return instance.view.getFirstRenderedVisibleColumn();
47007
+ };
47008
+
47009
+ /**
47010
+ * Returns the last rendered column in the DOM (usually, it is not visible in the table's viewport).
47011
+ *
47012
+ * @since 14.6.0
47013
+ * @memberof Core#
47014
+ * @function getLastRenderedVisibleColumn
47015
+ * @returns {number | null}
47016
+ */
47017
+ this.getLastRenderedVisibleColumn = function () {
47018
+ return instance.view.getLastRenderedVisibleColumn();
47019
+ };
47020
+
47021
+ /**
47022
+ * Returns the first fully visible row in the table viewport. When the table has overlays the method returns
47023
+ * the first row of the main table that is not overlapped by overlay.
47024
+ *
47025
+ * @since 14.6.0
47026
+ * @memberof Core#
47027
+ * @function getFirstFullyVisibleRow
47028
+ * @returns {number | null}
47029
+ */
47030
+ this.getFirstFullyVisibleRow = function () {
47031
+ return instance.view.getFirstFullyVisibleRow();
47032
+ };
47033
+
47034
+ /**
47035
+ * Returns the last fully visible row in the table viewport. When the table has overlays the method returns
47036
+ * the first row of the main table that is not overlapped by overlay.
47037
+ *
47038
+ * @since 14.6.0
47039
+ * @memberof Core#
47040
+ * @function getLastFullyVisibleRow
47041
+ * @returns {number | null}
47042
+ */
47043
+ this.getLastFullyVisibleRow = function () {
47044
+ return instance.view.getLastFullyVisibleRow();
47045
+ };
47046
+
47047
+ /**
47048
+ * Returns the first fully visible column in the table viewport. When the table has overlays the method returns
47049
+ * the first row of the main table that is not overlapped by overlay.
47050
+ *
47051
+ * @since 14.6.0
47052
+ * @memberof Core#
47053
+ * @function getFirstFullyVisibleColumn
47054
+ * @returns {number | null}
47055
+ */
47056
+ this.getFirstFullyVisibleColumn = function () {
47057
+ return instance.view.getFirstFullyVisibleColumn();
47058
+ };
47059
+
47060
+ /**
47061
+ * Returns the last fully visible column in the table viewport. When the table has overlays the method returns
47062
+ * the first row of the main table that is not overlapped by overlay.
47063
+ *
47064
+ * @since 14.6.0
47065
+ * @memberof Core#
47066
+ * @function getLastFullyVisibleColumn
47067
+ * @returns {number | null}
47068
+ */
47069
+ this.getLastFullyVisibleColumn = function () {
47070
+ return instance.view.getLastFullyVisibleColumn();
47071
+ };
47072
+
47073
+ /**
47074
+ * Returns the first partially visible row in the table viewport. When the table has overlays the method returns
47075
+ * the first row of the main table that is not overlapped by overlay.
47076
+ *
47077
+ * @since 14.6.0
47078
+ * @memberof Core#
47079
+ * @function getFirstPartiallyVisibleRow
47080
+ * @returns {number | null}
47081
+ */
47082
+ this.getFirstPartiallyVisibleRow = function () {
47083
+ return instance.view.getFirstPartiallyVisibleRow();
47084
+ };
47085
+
47086
+ /**
47087
+ * Returns the last partially visible row in the table viewport. When the table has overlays the method returns
47088
+ * the first row of the main table that is not overlapped by overlay.
47089
+ *
47090
+ * @since 14.6.0
47091
+ * @memberof Core#
47092
+ * @function getLastPartiallyVisibleRow
47093
+ * @returns {number | null}
47094
+ */
47095
+ this.getLastPartiallyVisibleRow = function () {
47096
+ return instance.view.getLastPartiallyVisibleRow();
47097
+ };
47098
+
47099
+ /**
47100
+ * Returns the first partially visible column in the table viewport. When the table has overlays the method returns
47101
+ * the first row of the main table that is not overlapped by overlay.
47102
+ *
47103
+ * @since 14.6.0
47104
+ * @memberof Core#
47105
+ * @function getFirstPartiallyVisibleColumn
47106
+ * @returns {number | null}
47107
+ */
47108
+ this.getFirstPartiallyVisibleColumn = function () {
47109
+ return instance.view.getFirstPartiallyVisibleColumn();
47110
+ };
47111
+
47112
+ /**
47113
+ * Returns the last partially visible column in the table viewport. When the table has overlays the method returns
47114
+ * the first row of the main table that is not overlapped by overlay.
47115
+ *
47116
+ * @since 14.6.0
47117
+ * @memberof Core#
47118
+ * @function getLastPartiallyVisibleColumn
47119
+ * @returns {number | null}
47120
+ */
47121
+ this.getLastPartiallyVisibleColumn = function () {
47122
+ return instance.view.getLastPartiallyVisibleColumn();
47123
+ };
47124
+
46973
47125
  /**
46974
47126
  * Returns plugin instance by provided its name.
46975
47127
  *
@@ -53247,7 +53399,7 @@ const domMessages = {
53247
53399
  function _injectProductInfo(key, element) {
53248
53400
  const hasValidType = !isEmpty(key);
53249
53401
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
53250
- const hotVersion = "0.0.0-next-1f21f59-20240912";
53402
+ const hotVersion = "0.0.0-next-108000e-20240912";
53251
53403
  let keyValidityDate;
53252
53404
  let consoleMessageState = 'invalid';
53253
53405
  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-1f21f59-20240912
29
- * Release date: 30/07/2024 (built at 12/09/2024 13:18:28)
28
+ * Version: 0.0.0-next-108000e-20240912
29
+ * Release date: 30/07/2024 (built at 12/09/2024 19:04:25)
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