handsontable 0.0.0-next-a417c2b-20231124 → 0.0.0-next-44acfea-20231127

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.

Files changed (41) hide show
  1. package/3rdparty/walkontable/src/overlay/_base.js +2 -2
  2. package/3rdparty/walkontable/src/overlay/_base.mjs +2 -2
  3. package/3rdparty/walkontable/src/renderer/columnHeaders.js +1 -1
  4. package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +2 -2
  5. package/3rdparty/walkontable/src/renderer/rows.js +1 -1
  6. package/3rdparty/walkontable/src/renderer/rows.mjs +2 -2
  7. package/base.js +2 -2
  8. package/base.mjs +2 -2
  9. package/dataMap/replaceData.js +3 -1
  10. package/dataMap/replaceData.mjs +3 -1
  11. package/dist/handsontable.css +2 -2
  12. package/dist/handsontable.full.css +2 -2
  13. package/dist/handsontable.full.js +49 -45
  14. package/dist/handsontable.full.min.css +2 -2
  15. package/dist/handsontable.full.min.js +6 -6
  16. package/dist/handsontable.js +49 -45
  17. package/dist/handsontable.min.css +2 -2
  18. package/dist/handsontable.min.js +31 -31
  19. package/editors/dateEditor/dateEditor.js +0 -7
  20. package/editors/dateEditor/dateEditor.mjs +1 -8
  21. package/editors/handsontableEditor/handsontableEditor.js +0 -7
  22. package/editors/handsontableEditor/handsontableEditor.mjs +1 -8
  23. package/editors/passwordEditor/passwordEditor.js +4 -0
  24. package/editors/passwordEditor/passwordEditor.mjs +5 -1
  25. package/helpers/a11y.js +2 -0
  26. package/helpers/a11y.mjs +1 -0
  27. package/helpers/mixed.js +1 -1
  28. package/helpers/mixed.mjs +1 -1
  29. package/package.json +1 -1
  30. package/renderers/autocompleteRenderer/autocompleteRenderer.js +0 -3
  31. package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +1 -4
  32. package/renderers/checkboxRenderer/checkboxRenderer.js +0 -1
  33. package/renderers/checkboxRenderer/checkboxRenderer.mjs +0 -1
  34. package/renderers/dateRenderer/dateRenderer.js +0 -5
  35. package/renderers/dateRenderer/dateRenderer.mjs +0 -5
  36. package/renderers/handsontableRenderer/handsontableRenderer.js +0 -5
  37. package/renderers/handsontableRenderer/handsontableRenderer.mjs +0 -5
  38. package/renderers/selectRenderer/selectRenderer.js +0 -5
  39. package/renderers/selectRenderer/selectRenderer.mjs +0 -5
  40. package/tableView.js +31 -2
  41. package/tableView.mjs +31 -2
@@ -249,8 +249,8 @@ class Overlay {
249
249
  rootDocument,
250
250
  rootWindow
251
251
  } = this.domBindings;
252
- const clone = rootDocument.createElement('DIV');
253
- const clonedTable = rootDocument.createElement('TABLE');
252
+ const clone = rootDocument.createElement('div');
253
+ const clonedTable = rootDocument.createElement('table');
254
254
  const tableParent = wtTable.wtRootElement.parentNode;
255
255
  clone.className = `${_constants.CLONE_CLASS_NAMES.get(this.type)} handsontable`;
256
256
  clone.setAttribute('dir', this.isRtl() ? 'rtl' : 'ltr');
@@ -245,8 +245,8 @@ export class Overlay {
245
245
  rootDocument,
246
246
  rootWindow
247
247
  } = this.domBindings;
248
- const clone = rootDocument.createElement('DIV');
249
- const clonedTable = rootDocument.createElement('TABLE');
248
+ const clone = rootDocument.createElement('div');
249
+ const clonedTable = rootDocument.createElement('table');
250
250
  const tableParent = wtTable.wtRootElement.parentNode;
251
251
  clone.className = `${CLONE_CLASS_NAMES.get(this.type)} handsontable`;
252
252
  clone.setAttribute('dir', this.isRtl() ? 'rtl' : 'ltr');
@@ -71,7 +71,7 @@ class ColumnHeadersRenderer extends _base.default {
71
71
  columnHeadersCount
72
72
  } = this.table;
73
73
  if (this.table.isAriaEnabled()) {
74
- (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_PRESENTATION)()]);
74
+ (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_ROWGROUP)()]);
75
75
  }
76
76
  for (let rowHeaderIndex = 0; rowHeaderIndex < columnHeadersCount; rowHeaderIndex += 1) {
77
77
  const {
@@ -1,6 +1,6 @@
1
1
  import { empty, setAttribute, removeAttribute } from "./../../../../helpers/dom/element.mjs";
2
2
  import BaseRenderer from "./_base.mjs";
3
- import { A11Y_COLINDEX, A11Y_COLUMNHEADER, A11Y_PRESENTATION, A11Y_ROW, A11Y_ROWINDEX, A11Y_SCOPE_COL, A11Y_TABINDEX } from "../../../../helpers/a11y.mjs";
3
+ import { A11Y_COLINDEX, A11Y_COLUMNHEADER, A11Y_ROW, A11Y_ROWGROUP, A11Y_ROWINDEX, A11Y_SCOPE_COL, A11Y_TABINDEX } from "../../../../helpers/a11y.mjs";
4
4
  /**
5
5
  * Column headers renderer responsible for managing (inserting, tracking, rendering) TR and TH elements.
6
6
  *
@@ -67,7 +67,7 @@ export default class ColumnHeadersRenderer extends BaseRenderer {
67
67
  columnHeadersCount
68
68
  } = this.table;
69
69
  if (this.table.isAriaEnabled()) {
70
- setAttribute(this.rootNode, [A11Y_PRESENTATION()]);
70
+ setAttribute(this.rootNode, [A11Y_ROWGROUP()]);
71
71
  }
72
72
  for (let rowHeaderIndex = 0; rowHeaderIndex < columnHeadersCount; rowHeaderIndex += 1) {
73
73
  const {
@@ -61,7 +61,7 @@ class RowsRenderer extends _base.default {
61
61
  the number of rendered rows by specifying the table height and/or turning off the "renderAllRows" option.`);
62
62
  }
63
63
  if (this.table.isAriaEnabled()) {
64
- (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_PRESENTATION)()]);
64
+ (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_ROWGROUP)()]);
65
65
  }
66
66
  this.orderView.setSize(rowsToRender).setOffset(this.table.renderedRowToSource(0)).start();
67
67
  for (let visibleRowIndex = 0; visibleRowIndex < rowsToRender; visibleRowIndex++) {
@@ -7,7 +7,7 @@ import { toSingleLine } from "./../../../../helpers/templateLiteralTag.mjs";
7
7
  import { OrderView } from "./../utils/orderView/index.mjs";
8
8
  import BaseRenderer from "./_base.mjs";
9
9
  import { setAttribute } from "../../../../helpers/dom/element.mjs";
10
- import { A11Y_PRESENTATION, A11Y_ROW, A11Y_ROWINDEX } from "../../../../helpers/a11y.mjs";
10
+ import { A11Y_ROW, A11Y_ROWGROUP, A11Y_ROWINDEX } from "../../../../helpers/a11y.mjs";
11
11
  let performanceWarningAppeared = false;
12
12
 
13
13
  /**
@@ -57,7 +57,7 @@ export default class RowsRenderer extends BaseRenderer {
57
57
  the number of rendered rows by specifying the table height and/or turning off the "renderAllRows" option.`);
58
58
  }
59
59
  if (this.table.isAriaEnabled()) {
60
- setAttribute(this.rootNode, [A11Y_PRESENTATION()]);
60
+ setAttribute(this.rootNode, [A11Y_ROWGROUP()]);
61
61
  }
62
62
  this.orderView.setSize(rowsToRender).setOffset(this.table.renderedRowToSource(0)).start();
63
63
  for (let visibleRowIndex = 0; visibleRowIndex < rowsToRender; visibleRowIndex++) {
package/base.js CHANGED
@@ -43,8 +43,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
43
43
  Handsontable.CellCoords = _src.CellCoords;
44
44
  Handsontable.CellRange = _src.CellRange;
45
45
  Handsontable.packageName = 'handsontable';
46
- Handsontable.buildDate = "24/11/2023 11:00:10";
47
- Handsontable.version = "0.0.0-next-a417c2b-20231124";
46
+ Handsontable.buildDate = "27/11/2023 10:22:28";
47
+ Handsontable.version = "0.0.0-next-44acfea-20231127";
48
48
  Handsontable.languages = {
49
49
  dictionaryKeys: _registry.dictionaryKeys,
50
50
  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 = "24/11/2023 11:00:16";
39
- Handsontable.version = "0.0.0-next-a417c2b-20231124";
38
+ Handsontable.buildDate = "27/11/2023 10:22:34";
39
+ Handsontable.version = "0.0.0-next-44acfea-20231127";
40
40
  Handsontable.languages = {
41
41
  dictionaryKeys,
42
42
  getLanguageDictionary,
@@ -114,6 +114,8 @@ function replaceData(data, setDataMapFunction, callbackFunction, config) {
114
114
  hotInstance.render();
115
115
  }
116
116
  if (hotInstance.getSettings().ariaTags) {
117
- (0, _element.setAttribute)(hotInstance.rootElement, [(0, _a11y.A11Y_ROWCOUNT)(hotInstance.countRows()), (0, _a11y.A11Y_COLCOUNT)(hotInstance.countCols())]);
117
+ (0, _element.setAttribute)(hotInstance.rootElement, [(0, _a11y.A11Y_ROWCOUNT)(-1),
118
+ // If run after initialization, add the number of row headers.
119
+ (0, _a11y.A11Y_COLCOUNT)(hotInstance.countCols() + (hotInstance.view ? hotInstance.countRowHeaders() : 0))]);
118
120
  }
119
121
  }
@@ -109,7 +109,9 @@ function replaceData(data, setDataMapFunction, callbackFunction, config) {
109
109
  hotInstance.render();
110
110
  }
111
111
  if (hotInstance.getSettings().ariaTags) {
112
- setAttribute(hotInstance.rootElement, [A11Y_ROWCOUNT(hotInstance.countRows()), A11Y_COLCOUNT(hotInstance.countCols())]);
112
+ setAttribute(hotInstance.rootElement, [A11Y_ROWCOUNT(-1),
113
+ // If run after initialization, add the number of row headers.
114
+ A11Y_COLCOUNT(hotInstance.countCols() + (hotInstance.view ? hotInstance.countRowHeaders() : 0))]);
113
115
  }
114
116
  }
115
117
  export { replaceData };
@@ -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-a417c2b-20231124
29
- * Release date: 31/08/2023 (built at 24/11/2023 11:00:21)
28
+ * Version: 0.0.0-next-44acfea-20231127
29
+ * Release date: 31/08/2023 (built at 27/11/2023 10:22:39)
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-a417c2b-20231124
29
- * Release date: 31/08/2023 (built at 24/11/2023 11:00:21)
28
+ * Version: 0.0.0-next-44acfea-20231127
29
+ * Release date: 31/08/2023 (built at 27/11/2023 10:22:39)
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-a417c2b-20231124
29
- * Release date: 31/08/2023 (built at 24/11/2023 11:00:21)
28
+ * Version: 0.0.0-next-44acfea-20231127
29
+ * Release date: 31/08/2023 (built at 27/11/2023 10:22:39)
30
30
  */
31
31
  (function webpackUniversalModuleDefinition(root, factory) {
32
32
  if(typeof exports === 'object' && typeof module === 'object')
@@ -42664,8 +42664,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
42664
42664
  Handsontable.CellCoords = _src.CellCoords;
42665
42665
  Handsontable.CellRange = _src.CellRange;
42666
42666
  Handsontable.packageName = 'handsontable';
42667
- Handsontable.buildDate = "24/11/2023 11:00:21";
42668
- Handsontable.version = "0.0.0-next-a417c2b-20231124";
42667
+ Handsontable.buildDate = "27/11/2023 10:22:39";
42668
+ Handsontable.version = "0.0.0-next-44acfea-20231127";
42669
42669
  Handsontable.languages = {
42670
42670
  dictionaryKeys: _registry.dictionaryKeys,
42671
42671
  getLanguageDictionary: _registry.getLanguageDictionary,
@@ -52786,7 +52786,7 @@ const domMessages = {
52786
52786
  function _injectProductInfo(key, element) {
52787
52787
  const hasValidType = !isEmpty(key);
52788
52788
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
52789
- const hotVersion = "0.0.0-next-a417c2b-20231124";
52789
+ const hotVersion = "0.0.0-next-44acfea-20231127";
52790
52790
  let keyValidityDate;
52791
52791
  let consoleMessageState = 'invalid';
52792
52792
  let domMessageState = 'invalid';
@@ -60038,6 +60038,8 @@ const A11Y_GRIDCELL = () => ['role', 'gridcell'];
60038
60038
  exports.A11Y_GRIDCELL = A11Y_GRIDCELL;
60039
60039
  const A11Y_ROWHEADER = () => ['role', 'rowheader'];
60040
60040
  exports.A11Y_ROWHEADER = A11Y_ROWHEADER;
60041
+ const A11Y_ROWGROUP = () => ['role', 'rowgroup'];
60042
+ exports.A11Y_ROWGROUP = A11Y_ROWGROUP;
60041
60043
  const A11Y_COLUMNHEADER = () => ['role', 'columnheader'];
60042
60044
  exports.A11Y_COLUMNHEADER = A11Y_COLUMNHEADER;
60043
60045
  const A11Y_ROW = () => ['role', 'row'];
@@ -66522,8 +66524,10 @@ var _src = _interopRequireDefault(__webpack_require__(478));
66522
66524
  var _mouseEventHandler = __webpack_require__(548);
66523
66525
  var _rootInstance = __webpack_require__(549);
66524
66526
  var _a11y = __webpack_require__(445);
66527
+ function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
66525
66528
  function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }
66526
66529
  function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
66530
+ function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
66527
66531
  /**
66528
66532
  * @class TableView
66529
66533
  * @private
@@ -66535,11 +66539,25 @@ var _mouseDown = /*#__PURE__*/new WeakMap();
66535
66539
  var _table = /*#__PURE__*/new WeakMap();
66536
66540
  var _lastWidth = /*#__PURE__*/new WeakMap();
66537
66541
  var _lastHeight = /*#__PURE__*/new WeakMap();
66542
+ var _getAriaColcount = /*#__PURE__*/new WeakSet();
66543
+ var _updateAriaColcount = /*#__PURE__*/new WeakSet();
66538
66544
  class TableView {
66539
66545
  /**
66540
66546
  * @param {Hanstontable} hotInstance Instance of {@link Handsontable}.
66541
66547
  */
66542
66548
  constructor(hotInstance) {
66549
+ /**
66550
+ * Update the `aria-colcount` attribute by the provided value.
66551
+ *
66552
+ * @param {number} delta The number of columns to add or remove to the aria tag.
66553
+ */
66554
+ _classPrivateMethodInitSpec(this, _updateAriaColcount);
66555
+ /**
66556
+ * Return the value of the `aria-colcount` attribute.
66557
+ *
66558
+ * @returns {number} The value of the `aria-colcount` attribute.
66559
+ */
66560
+ _classPrivateMethodInitSpec(this, _getAriaColcount);
66543
66561
  /**
66544
66562
  * Instance of {@link Handsontable}.
66545
66563
  *
@@ -66776,7 +66794,7 @@ class TableView {
66776
66794
  }
66777
66795
  if (this.settings.ariaTags) {
66778
66796
  (0, _element.setAttribute)((0, _classPrivateFieldGet2.default)(this, _table), [(0, _a11y.A11Y_PRESENTATION)()]);
66779
- (0, _element.setAttribute)(rootElement, [(0, _a11y.A11Y_TREEGRID)(), (0, _a11y.A11Y_ROWCOUNT)(this.hot.countRows()), (0, _a11y.A11Y_COLCOUNT)(this.hot.countCols()), (0, _a11y.A11Y_MULTISELECTABLE)()]);
66797
+ (0, _element.setAttribute)(rootElement, [(0, _a11y.A11Y_TREEGRID)(), (0, _a11y.A11Y_ROWCOUNT)(-1), (0, _a11y.A11Y_COLCOUNT)(this.hot.countCols()), (0, _a11y.A11Y_MULTISELECTABLE)()]);
66780
66798
  }
66781
66799
  this.THEAD = rootDocument.createElement('THEAD');
66782
66800
  (0, _classPrivateFieldGet2.default)(this, _table).appendChild(this.THEAD);
@@ -67169,6 +67187,13 @@ class TableView {
67169
67187
  }
67170
67188
  this.hot.runHooks('afterGetRowHeaderRenderers', headerRenderers);
67171
67189
  (0, _classPrivateFieldSet2.default)(this, _rowHeadersCount, headerRenderers.length);
67190
+ if (this.hot.getSettings().ariaTags) {
67191
+ // Update the aria-colcount attribute.
67192
+ // Only needs to be done once after initialization/data update.
67193
+ if (_classPrivateMethodGet(this, _getAriaColcount, _getAriaColcount2).call(this) === this.hot.countCols()) {
67194
+ _classPrivateMethodGet(this, _updateAriaColcount, _updateAriaColcount2).call(this, (0, _classPrivateFieldGet2.default)(this, _rowHeadersCount));
67195
+ }
67196
+ }
67172
67197
  return headerRenderers;
67173
67198
  },
67174
67199
  columnHeaders: () => {
@@ -67808,7 +67833,6 @@ class TableView {
67808
67833
  getRowHeadersCount() {
67809
67834
  return (0, _classPrivateFieldGet2.default)(this, _rowHeadersCount);
67810
67835
  }
67811
-
67812
67836
  /**
67813
67837
  * Destroys internal WalkOnTable's instance. Detaches all of the bonded listeners.
67814
67838
  *
@@ -67819,6 +67843,13 @@ class TableView {
67819
67843
  this.eventManager.destroy();
67820
67844
  }
67821
67845
  }
67846
+ function _getAriaColcount2() {
67847
+ return parseInt(this.hot.rootElement.getAttribute((0, _a11y.A11Y_COLCOUNT)()[0]), 10);
67848
+ }
67849
+ function _updateAriaColcount2(delta) {
67850
+ const colCount = _classPrivateMethodGet(this, _getAriaColcount, _getAriaColcount2).call(this) + delta;
67851
+ (0, _element.setAttribute)(this.hot.rootElement, ...(0, _a11y.A11Y_COLCOUNT)(colCount));
67852
+ }
67822
67853
  var _default = TableView;
67823
67854
  exports["default"] = _default;
67824
67855
 
@@ -73472,7 +73503,7 @@ class ColumnHeadersRenderer extends _base.default {
73472
73503
  columnHeadersCount
73473
73504
  } = this.table;
73474
73505
  if (this.table.isAriaEnabled()) {
73475
- (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_PRESENTATION)()]);
73506
+ (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_ROWGROUP)()]);
73476
73507
  }
73477
73508
  for (let rowHeaderIndex = 0; rowHeaderIndex < columnHeadersCount; rowHeaderIndex += 1) {
73478
73509
  const {
@@ -73646,7 +73677,7 @@ class RowsRenderer extends _base.default {
73646
73677
  the number of rendered rows by specifying the table height and/or turning off the "renderAllRows" option.`);
73647
73678
  }
73648
73679
  if (this.table.isAriaEnabled()) {
73649
- (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_PRESENTATION)()]);
73680
+ (0, _element.setAttribute)(this.rootNode, [(0, _a11y.A11Y_ROWGROUP)()]);
73650
73681
  }
73651
73682
  this.orderView.setSize(rowsToRender).setOffset(this.table.renderedRowToSource(0)).start();
73652
73683
  for (let visibleRowIndex = 0; visibleRowIndex < rowsToRender; visibleRowIndex++) {
@@ -74719,8 +74750,8 @@ class Overlay {
74719
74750
  rootDocument,
74720
74751
  rootWindow
74721
74752
  } = this.domBindings;
74722
- const clone = rootDocument.createElement('DIV');
74723
- const clonedTable = rootDocument.createElement('TABLE');
74753
+ const clone = rootDocument.createElement('div');
74754
+ const clonedTable = rootDocument.createElement('table');
74724
74755
  const tableParent = wtTable.wtRootElement.parentNode;
74725
74756
  clone.className = `${_constants.CLONE_CLASS_NAMES.get(this.type)} handsontable`;
74726
74757
  clone.setAttribute('dir', this.isRtl() ? 'rtl' : 'ltr');
@@ -92841,7 +92872,9 @@ function replaceData(data, setDataMapFunction, callbackFunction, config) {
92841
92872
  hotInstance.render();
92842
92873
  }
92843
92874
  if (hotInstance.getSettings().ariaTags) {
92844
- (0, _element.setAttribute)(hotInstance.rootElement, [(0, _a11y.A11Y_ROWCOUNT)(hotInstance.countRows()), (0, _a11y.A11Y_COLCOUNT)(hotInstance.countCols())]);
92875
+ (0, _element.setAttribute)(hotInstance.rootElement, [(0, _a11y.A11Y_ROWCOUNT)(-1),
92876
+ // If run after initialization, add the number of row headers.
92877
+ (0, _a11y.A11Y_COLCOUNT)(hotInstance.countCols() + (hotInstance.view ? hotInstance.countRowHeaders() : 0))]);
92845
92878
  }
92846
92879
  }
92847
92880
 
@@ -97676,7 +97709,6 @@ var _element = __webpack_require__(302);
97676
97709
  var _event = __webpack_require__(457);
97677
97710
  var _object = __webpack_require__(448);
97678
97711
  var _editorManager = __webpack_require__(451);
97679
- var _a11y = __webpack_require__(445);
97680
97712
  const SHORTCUTS_GROUP = 'handsontableEditor';
97681
97713
  const EDITOR_TYPE = 'handsontable';
97682
97714
 
@@ -97713,9 +97745,6 @@ class HandsontableEditor extends _textEditor.TextEditor {
97713
97745
  }
97714
97746
  (0, _element.setCaretPosition)(this.TEXTAREA, 0, this.TEXTAREA.value.length);
97715
97747
  this.refreshDimensions();
97716
- if (this.hot.getSettings().ariaTags) {
97717
- (0, _element.setAttribute)(this.TD, [(0, _a11y.A11Y_EXPANDED)('true')]);
97718
- }
97719
97748
  }
97720
97749
 
97721
97750
  /**
@@ -97727,9 +97756,6 @@ class HandsontableEditor extends _textEditor.TextEditor {
97727
97756
  }
97728
97757
  this.removeHooksByKey('beforeKeyDown');
97729
97758
  super.close();
97730
- if (this.TD && this.hot.getSettings().ariaTags) {
97731
- (0, _element.setAttribute)(this.TD, [(0, _a11y.A11Y_EXPANDED)('false')]);
97732
- }
97733
97759
  }
97734
97760
 
97735
97761
  /**
@@ -98010,7 +98036,6 @@ var _pikaday = _interopRequireDefault(__webpack_require__(687));
98010
98036
  var _textEditor = __webpack_require__(666);
98011
98037
  var _eventManager = _interopRequireDefault(__webpack_require__(462));
98012
98038
  var _element = __webpack_require__(302);
98013
- var _a11y = __webpack_require__(445);
98014
98039
  var _object = __webpack_require__(448);
98015
98040
  var _unicode = __webpack_require__(456);
98016
98041
  __webpack_require__(688);
@@ -98134,9 +98159,6 @@ class DateEditor extends _textEditor.TextEditor {
98134
98159
  const editorContext = shortcutManager.getContext('editor');
98135
98160
  super.open();
98136
98161
  this.showDatepicker(event);
98137
- if (this.hot.getSettings().ariaTags) {
98138
- (0, _element.setAttribute)(this.TD, [(0, _a11y.A11Y_EXPANDED)('true')]);
98139
- }
98140
98162
  editorContext.addShortcut({
98141
98163
  keys: [['Enter']],
98142
98164
  callback: keyboardEvent => {
@@ -98162,9 +98184,6 @@ class DateEditor extends _textEditor.TextEditor {
98162
98184
  this.hot._registerTimeout(() => {
98163
98185
  this.hot._refreshBorders();
98164
98186
  });
98165
- if (this.TD && this.hot.getSettings().ariaTags) {
98166
- (0, _element.setAttribute)(this.TD, [(0, _a11y.A11Y_EXPANDED)('false')]);
98167
- }
98168
98187
  const shortcutManager = this.hot.getShortcutManager();
98169
98188
  const editorContext = shortcutManager.getContext('editor');
98170
98189
  editorContext.removeShortcutsByGroup(SHORTCUTS_GROUP_EDITOR);
@@ -99713,6 +99732,7 @@ exports.PasswordEditor = _passwordEditor.PasswordEditor;
99713
99732
  exports.__esModule = true;
99714
99733
  var _textEditor = __webpack_require__(666);
99715
99734
  var _element = __webpack_require__(302);
99735
+ var _a11y = __webpack_require__(445);
99716
99736
  const EDITOR_TYPE = 'password';
99717
99737
 
99718
99738
  /**
@@ -99733,6 +99753,9 @@ class PasswordEditor extends _textEditor.TextEditor {
99733
99753
  this.textareaStyle = this.TEXTAREA.style;
99734
99754
  this.textareaStyle.width = 0;
99735
99755
  this.textareaStyle.height = 0;
99756
+ if (this.hot.getSettings().ariaTags) {
99757
+ (0, _element.setAttribute)(this.TEXTAREA, [(0, _a11y.A11Y_HIDDEN)()]);
99758
+ }
99736
99759
  (0, _element.empty)(this.TEXTAREA_PARENT);
99737
99760
  this.TEXTAREA_PARENT.appendChild(this.TEXTAREA);
99738
99761
  }
@@ -100155,9 +100178,6 @@ function autocompleteRenderer(hotInstance, TD, row, col, prop, value, cellProper
100155
100178
 
100156
100179
  TD.insertBefore(ARROW, TD.firstChild);
100157
100180
  (0, _element.addClass)(TD, 'htAutocomplete');
100158
- if (isAriaEnabled) {
100159
- TD.setAttribute(...(0, _a11y.A11Y_HASPOPUP)('listbox'));
100160
- }
100161
100181
  if (!hotInstance.acArrowListener) {
100162
100182
  const eventManager = new _eventManager.default(hotInstance);
100163
100183
 
@@ -100543,7 +100563,6 @@ function createInput(rootDocument) {
100543
100563
  const input = rootDocument.createElement('input');
100544
100564
  input.className = 'htCheckboxRendererInput';
100545
100565
  input.type = 'checkbox';
100546
- input.setAttribute('autocomplete', 'off');
100547
100566
  input.setAttribute('tabindex', '-1');
100548
100567
  return input.cloneNode(false);
100549
100568
  }
@@ -101373,8 +101392,6 @@ exports.dateRenderer = _dateRenderer.dateRenderer;
101373
101392
  exports.__esModule = true;
101374
101393
  exports.dateRenderer = dateRenderer;
101375
101394
  var _autocompleteRenderer = __webpack_require__(700);
101376
- var _a11y = __webpack_require__(445);
101377
- var _element = __webpack_require__(302);
101378
101395
  const RENDERER_TYPE = 'date';
101379
101396
 
101380
101397
  /**
@@ -101392,9 +101409,6 @@ const RENDERER_TYPE = 'date';
101392
101409
  exports.RENDERER_TYPE = RENDERER_TYPE;
101393
101410
  function dateRenderer(hotInstance, TD, row, col, prop, value, cellProperties) {
101394
101411
  _autocompleteRenderer.autocompleteRenderer.apply(this, [hotInstance, TD, row, col, prop, value, cellProperties]);
101395
- if (hotInstance.getSettings().ariaTags) {
101396
- (0, _element.setAttribute)(TD, [(0, _a11y.A11Y_HASPOPUP)('dialog'), (0, _a11y.A11Y_EXPANDED)('false')]);
101397
- }
101398
101412
  }
101399
101413
  dateRenderer.RENDERER_TYPE = RENDERER_TYPE;
101400
101414
 
@@ -101486,8 +101500,6 @@ exports.handsontableRenderer = _handsontableRenderer.handsontableRenderer;
101486
101500
  exports.__esModule = true;
101487
101501
  exports.handsontableRenderer = handsontableRenderer;
101488
101502
  var _autocompleteRenderer = __webpack_require__(700);
101489
- var _a11y = __webpack_require__(445);
101490
- var _element = __webpack_require__(302);
101491
101503
  const RENDERER_TYPE = 'handsontable';
101492
101504
 
101493
101505
  /**
@@ -101505,9 +101517,6 @@ const RENDERER_TYPE = 'handsontable';
101505
101517
  exports.RENDERER_TYPE = RENDERER_TYPE;
101506
101518
  function handsontableRenderer(hotInstance, TD, row, col, prop, value, cellProperties) {
101507
101519
  _autocompleteRenderer.autocompleteRenderer.apply(this, [hotInstance, TD, row, col, prop, value, cellProperties]);
101508
- if (hotInstance.getSettings().ariaTags) {
101509
- (0, _element.setAttribute)(TD, [(0, _a11y.A11Y_HASPOPUP)('true'), (0, _a11y.A11Y_EXPANDED)('false')]);
101510
- }
101511
101520
  }
101512
101521
  handsontableRenderer.RENDERER_TYPE = RENDERER_TYPE;
101513
101522
 
@@ -101630,8 +101639,6 @@ exports.selectRenderer = _selectRenderer.selectRenderer;
101630
101639
  exports.__esModule = true;
101631
101640
  exports.selectRenderer = selectRenderer;
101632
101641
  var _textRenderer = __webpack_require__(673);
101633
- var _a11y = __webpack_require__(445);
101634
- var _element = __webpack_require__(302);
101635
101642
  const RENDERER_TYPE = 'select';
101636
101643
 
101637
101644
  /**
@@ -101647,9 +101654,6 @@ const RENDERER_TYPE = 'select';
101647
101654
  exports.RENDERER_TYPE = RENDERER_TYPE;
101648
101655
  function selectRenderer(hotInstance, TD, row, col, prop, value, cellProperties) {
101649
101656
  _textRenderer.textRenderer.apply(this, [hotInstance, TD, row, col, prop, value, cellProperties]);
101650
- if (hotInstance.getSettings().ariaTags) {
101651
- (0, _element.setAttribute)(TD, ...(0, _a11y.A11Y_HASPOPUP)('listbox'));
101652
- }
101653
101657
  }
101654
101658
  selectRenderer.RENDERER_TYPE = RENDERER_TYPE;
101655
101659
 
@@ -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-a417c2b-20231124
29
- * Release date: 31/08/2023 (built at 24/11/2023 11:00:38)
28
+ * Version: 0.0.0-next-44acfea-20231127
29
+ * Release date: 31/08/2023 (built at 27/11/2023 10:22:57)
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,.handsontable th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable td:first-of-type,[dir=rtl].handsontable th:first-child,[dir=rtl].handsontable th:nth-child(2){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)~.handsontable tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) thead tr th:first-child{border-left:1px solid #ccc;border-right-width:0}[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable tbody tr th,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) 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 thead,.handsontable .ht_master thead,.handsontable .ht_master tr th{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 .columnSorting{position:relative}.handsontable .columnSorting.sortAction:hover{cursor:pointer;text-decoration:underline}.handsontable span.colHeader.columnSorting:before{background-position-x:right;background-repeat:no-repeat;background-size:contain;content:"";height:10px;left:unset;margin-top:-6px;padding-left:8px;padding-right:0;position:absolute;right:-9px;top:50%;width:5px}[dir=rtl].handsontable span.colHeader.columnSorting:before{background-position-x:left;left:-9px;padding-left:0;padding-right:8px;right:unset}.handsontable span.colHeader.columnSorting.ascending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC)}.handsontable span.colHeader.columnSorting.descending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=)}.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled):before{content:"*";display:inline-block;padding-right:20px;position:relative}.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;bottom:-100%\9;content:"";left:0;position:absolute;right:0;top:0}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.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{bottom:-100%}}.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;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 .collapsibleIndicator{background:#eee;border:1px solid #a6a6a6;border-radius:10px;-webkit-box-shadow:0 0 0 6px #eee;-moz-box-shadow:0 0 0 6px #eee;box-shadow:0 0 0 3px #eee;color:#222;cursor:pointer;font-size:10px;height:10px;left:unset;line-height:8px;position:absolute;right:5px;text-align:center;top:50%;transform:translateY(-50%);width:10px}[dir=rtl].handsontable .collapsibleIndicator{left:5px;right:unset}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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