handsontable 0.0.0-next-3e0b40d-20241017 → 0.0.0-next-802f59c-20241024

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 (116) hide show
  1. package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -5
  2. package/3rdparty/walkontable/src/calculator/viewportRows.mjs +2 -5
  3. package/3rdparty/walkontable/src/core/clone.js +0 -1
  4. package/3rdparty/walkontable/src/core/clone.mjs +0 -1
  5. package/3rdparty/walkontable/src/core/core.js +0 -2
  6. package/3rdparty/walkontable/src/core/core.mjs +0 -2
  7. package/3rdparty/walkontable/src/overlay/_base.js +1 -3
  8. package/3rdparty/walkontable/src/overlay/_base.mjs +1 -3
  9. package/3rdparty/walkontable/src/overlay/bottom.js +2 -2
  10. package/3rdparty/walkontable/src/overlay/bottom.mjs +2 -2
  11. package/3rdparty/walkontable/src/overlay/inlineStart.js +1 -1
  12. package/3rdparty/walkontable/src/overlay/inlineStart.mjs +1 -1
  13. package/3rdparty/walkontable/src/overlay/top.js +1 -1
  14. package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
  15. package/3rdparty/walkontable/src/overlays.js +7 -6
  16. package/3rdparty/walkontable/src/overlays.mjs +7 -6
  17. package/3rdparty/walkontable/src/renderer/colGroup.js +1 -1
  18. package/3rdparty/walkontable/src/renderer/colGroup.mjs +1 -1
  19. package/3rdparty/walkontable/src/renderer/table.js +1 -1
  20. package/3rdparty/walkontable/src/renderer/table.mjs +1 -1
  21. package/3rdparty/walkontable/src/settings.js +2 -7
  22. package/3rdparty/walkontable/src/settings.mjs +2 -7
  23. package/3rdparty/walkontable/src/table.js +8 -35
  24. package/3rdparty/walkontable/src/table.mjs +8 -35
  25. package/3rdparty/walkontable/src/utils/column.js +1 -43
  26. package/3rdparty/walkontable/src/utils/column.mjs +1 -43
  27. package/3rdparty/walkontable/src/viewport.js +66 -88
  28. package/3rdparty/walkontable/src/viewport.mjs +67 -89
  29. package/CHANGELOG.md +5 -0
  30. package/base.js +2 -2
  31. package/base.mjs +2 -2
  32. package/core/hooks/constants.js +2 -0
  33. package/core/hooks/constants.mjs +2 -0
  34. package/core/hooks/index.d.ts +2 -2
  35. package/core.d.ts +2 -2
  36. package/core.js +6 -15
  37. package/core.mjs +6 -15
  38. package/dataMap/metaManager/metaSchema.js +0 -17
  39. package/dataMap/metaManager/metaSchema.mjs +0 -17
  40. package/dist/handsontable.css +5 -236
  41. package/dist/handsontable.full.css +3 -3
  42. package/dist/handsontable.full.js +4539 -4231
  43. package/dist/handsontable.full.min.css +3 -4
  44. package/dist/handsontable.full.min.js +26 -26
  45. package/dist/handsontable.js +4230 -3928
  46. package/dist/handsontable.min.css +4 -9
  47. package/dist/handsontable.min.js +24 -24
  48. package/editors/autocompleteEditor/autocompleteEditor.js +1 -1
  49. package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -1
  50. package/editors/baseEditor/baseEditor.js +1 -1
  51. package/editors/baseEditor/baseEditor.mjs +1 -1
  52. package/editors/dateEditor/dateEditor.js +0 -2
  53. package/editors/dateEditor/dateEditor.mjs +0 -2
  54. package/editors/handsontableEditor/handsontableEditor.js +1 -1
  55. package/editors/handsontableEditor/handsontableEditor.mjs +1 -1
  56. package/editors/passwordEditor/passwordEditor.js +0 -4
  57. package/editors/passwordEditor/passwordEditor.mjs +1 -5
  58. package/editors/selectEditor/selectEditor.js +9 -20
  59. package/editors/selectEditor/selectEditor.mjs +9 -20
  60. package/editors/textEditor/textEditor.js +11 -7
  61. package/editors/textEditor/textEditor.mjs +12 -8
  62. package/helpers/mixed.js +3 -3
  63. package/helpers/mixed.mjs +3 -3
  64. package/index.d.ts +7 -0
  65. package/package.json +8 -10
  66. package/plugins/comments/commentEditor.js +1 -8
  67. package/plugins/comments/commentEditor.mjs +1 -8
  68. package/plugins/comments/comments.js +2 -2
  69. package/plugins/comments/comments.mjs +2 -2
  70. package/plugins/contextMenu/menu/menu.js +4 -4
  71. package/plugins/contextMenu/menu/menu.mjs +4 -4
  72. package/plugins/index.d.ts +3 -0
  73. package/plugins/index.js +3 -0
  74. package/plugins/index.mjs +3 -1
  75. package/plugins/manualColumnMove/manualColumnMove.js +1 -3
  76. package/plugins/manualColumnMove/manualColumnMove.mjs +1 -3
  77. package/plugins/manualColumnResize/manualColumnResize.js +24 -12
  78. package/plugins/manualColumnResize/manualColumnResize.mjs +24 -12
  79. package/plugins/manualRowMove/manualRowMove.js +1 -1
  80. package/plugins/manualRowMove/manualRowMove.mjs +1 -1
  81. package/plugins/mergeCells/mergeCells.js +1 -1
  82. package/plugins/mergeCells/mergeCells.mjs +1 -1
  83. package/plugins/nestedRows/ui/headers.js +1 -3
  84. package/plugins/nestedRows/ui/headers.mjs +1 -3
  85. package/plugins/stretchColumns/calculator.js +159 -0
  86. package/plugins/stretchColumns/calculator.mjs +155 -0
  87. package/plugins/stretchColumns/index.d.ts +1 -0
  88. package/plugins/stretchColumns/index.js +7 -0
  89. package/plugins/stretchColumns/index.mjs +1 -0
  90. package/plugins/stretchColumns/strategies/_base.js +85 -0
  91. package/plugins/stretchColumns/strategies/_base.mjs +81 -0
  92. package/plugins/stretchColumns/strategies/all.js +68 -0
  93. package/plugins/stretchColumns/strategies/all.mjs +64 -0
  94. package/plugins/stretchColumns/strategies/last.js +77 -0
  95. package/plugins/stretchColumns/strategies/last.mjs +73 -0
  96. package/plugins/stretchColumns/stretchColumns.d.ts +11 -0
  97. package/plugins/stretchColumns/stretchColumns.js +211 -0
  98. package/plugins/stretchColumns/stretchColumns.mjs +207 -0
  99. package/tableView.js +39 -39
  100. package/tableView.mjs +39 -39
  101. package/utils/autoResize.js +1 -4
  102. package/utils/autoResize.mjs +1 -4
  103. package/utils/ghostTable.js +1 -1
  104. package/utils/ghostTable.mjs +1 -1
  105. package/3rdparty/walkontable/src/utils/columnStretching.js +0 -197
  106. package/3rdparty/walkontable/src/utils/columnStretching.mjs +0 -193
  107. package/3rdparty/walkontable/src/utils/stylesHandler.js +0 -185
  108. package/3rdparty/walkontable/src/utils/stylesHandler.mjs +0 -181
  109. package/helpers/themes.js +0 -17
  110. package/helpers/themes.mjs +0 -13
  111. package/styles/handsontable.css +0 -1920
  112. package/styles/handsontable.min.css +0 -30
  113. package/styles/ht-theme-gemini.css +0 -690
  114. package/styles/ht-theme-gemini.min.css +0 -30
  115. package/styles/ht-theme-main.css +0 -712
  116. package/styles/ht-theme-main.min.css +0 -30
@@ -237,7 +237,7 @@ export interface Events {
237
237
  modifyColHeader?: (column: number) => void;
238
238
  modifyColumnHeaderHeight?: () => void;
239
239
  modifyColumnHeaderValue?: (headerValue: string, visualColumnIndex: number, headerLevel: number) => void | string;
240
- modifyColWidth?: (width: number, column: number) => void;
240
+ modifyColWidth?: (width: number, column: number, source?: string) => void;
241
241
  modifyCopyableRange?: (copyableRanges: RangeType[]) => void;
242
242
  modifyFiltersMultiSelectValue?: (value: string, meta: CellProperties) => void | CellValue;
243
243
  modifyFocusedElement?: (row: number, column: number, focusedElement: HTMLElement) => void | HTMLElement;
@@ -248,7 +248,7 @@ export interface Events {
248
248
  modifyRowData?: (row: number) => void;
249
249
  modifyRowHeader?: (row: number) => void;
250
250
  modifyRowHeaderWidth?: (rowHeaderWidth: number) => void;
251
- modifyRowHeight?: (height: number, row: number) => void | number;
251
+ modifyRowHeight?: (height: number, row: number, source?: string) => void | number;
252
252
  modifyRowHeightByOverlayName?: (height: number, row: number, overlayType: OverlayType) => void | number;
253
253
  modifySourceData?: (row: number, column: number, valueHolder: { value: CellValue }, ioMode: 'get' | 'set') => void;
254
254
  modifyTransformEnd?: (delta: CellCoords) => void;
package/core.d.ts CHANGED
@@ -69,7 +69,7 @@ export default class Core {
69
69
  getColHeader(): Array<number | string>;
70
70
  getColHeader(column: number, headerLevel?: number): number | string;
71
71
  getColumnMeta(column: number): ColumnSettings;
72
- getColWidth(column: number): number;
72
+ getColWidth(column: number, source?: string): number;
73
73
  getCoords(element: Element | null): CellCoords;
74
74
  getCopyableData(row: number, column: number): string;
75
75
  getCopyableText(startRow: number, startColumn: number, endRow: number, endColumn: number): string;
@@ -99,7 +99,7 @@ export default class Core {
99
99
  getPlugin(pluginName: string): Plugins['basePlugin'];
100
100
  getRowHeader(): Array<string | number>;
101
101
  getRowHeader(row: number): string | number;
102
- getRowHeight(row: number): number;
102
+ getRowHeight(row: number, source?: string): number;
103
103
  getSchema(): RowObject;
104
104
  getSelected(): Array<[number, number, number, number]> | undefined;
105
105
  getSelectedLast(): number[] | undefined;
package/core.js CHANGED
@@ -43,7 +43,6 @@ var _index3 = require("./core/index");
43
43
  var _uniqueMap = require("./utils/dataStructures/uniqueMap");
44
44
  var _shortcuts = require("./shortcuts");
45
45
  var _shortcutContexts = require("./shortcutContexts");
46
- var _themes = require("./helpers/themes");
47
46
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
48
47
  let activeGuid = null;
49
48
 
@@ -230,17 +229,7 @@ function Core(rootElement, userSettings) {
230
229
  this.renderCall = false;
231
230
  rootElement.insertBefore(this.container, rootElement.firstChild);
232
231
  if ((0, _rootInstance.isRootInstance)(this)) {
233
- var _rootElement$parentNo;
234
232
  (0, _mixed._injectProductInfo)(userSettings.licenseKey, rootElement);
235
- const rootThemeClassName = (0, _themes.getThemeClassName)(rootElement.className);
236
- if (rootThemeClassName) {
237
- tableMeta.themeName = rootThemeClassName;
238
- }
239
- (0, _element.addClass)(rootElement, tableMeta.themeName);
240
- const licenseInfo = (_rootElement$parentNo = rootElement.parentNode) === null || _rootElement$parentNo === void 0 ? void 0 : _rootElement$parentNo.querySelector('.hot-display-license-info');
241
- if (licenseInfo) {
242
- (0, _element.addClass)(licenseInfo, tableMeta.themeName);
243
- }
244
233
  }
245
234
  this.guid = `ht_${(0, _string.randomString)()}`; // this is the namespace for global events
246
235
 
@@ -3505,12 +3494,13 @@ function Core(rootElement, userSettings) {
3505
3494
  * @memberof Core#
3506
3495
  * @function getColWidth
3507
3496
  * @param {number} column Visual column index.
3497
+ * @param {string} [source] The source of the call.
3508
3498
  * @returns {number} Column width.
3509
3499
  * @fires Hooks#modifyColWidth
3510
3500
  */
3511
- this.getColWidth = function (column) {
3501
+ this.getColWidth = function (column, source) {
3512
3502
  let width = instance._getColWidthFromSettings(column);
3513
- width = instance.runHooks('modifyColWidth', width, column);
3503
+ width = instance.runHooks('modifyColWidth', width, column, source);
3514
3504
  if (width === undefined) {
3515
3505
  width = _src.DEFAULT_COLUMN_WIDTH;
3516
3506
  }
@@ -3570,12 +3560,13 @@ function Core(rootElement, userSettings) {
3570
3560
  * @memberof Core#
3571
3561
  * @function getRowHeight
3572
3562
  * @param {number} row A visual row index.
3563
+ * @param {string} [source] The source of the call.
3573
3564
  * @returns {number|undefined} The height of the specified row, in pixels.
3574
3565
  * @fires Hooks#modifyRowHeight
3575
3566
  */
3576
- this.getRowHeight = function (row) {
3567
+ this.getRowHeight = function (row, source) {
3577
3568
  let height = instance._getRowHeightFromSettings(row);
3578
- height = instance.runHooks('modifyRowHeight', height, row);
3569
+ height = instance.runHooks('modifyRowHeight', height, row, source);
3579
3570
  return height;
3580
3571
  };
3581
3572
 
package/core.mjs CHANGED
@@ -39,7 +39,6 @@ import { installFocusCatcher, createViewportScroller } from "./core/index.mjs";
39
39
  import { createUniqueMap } from "./utils/dataStructures/uniqueMap.mjs";
40
40
  import { createShortcutManager } from "./shortcuts/index.mjs";
41
41
  import { registerAllShortcutContexts } from "./shortcutContexts/index.mjs";
42
- import { getThemeClassName } from "./helpers/themes.mjs";
43
42
  let activeGuid = null;
44
43
 
45
44
  /**
@@ -225,17 +224,7 @@ export default function Core(rootElement, userSettings) {
225
224
  this.renderCall = false;
226
225
  rootElement.insertBefore(this.container, rootElement.firstChild);
227
226
  if (isRootInstance(this)) {
228
- var _rootElement$parentNo;
229
227
  _injectProductInfo(userSettings.licenseKey, rootElement);
230
- const rootThemeClassName = getThemeClassName(rootElement.className);
231
- if (rootThemeClassName) {
232
- tableMeta.themeName = rootThemeClassName;
233
- }
234
- addClass(rootElement, tableMeta.themeName);
235
- const licenseInfo = (_rootElement$parentNo = rootElement.parentNode) === null || _rootElement$parentNo === void 0 ? void 0 : _rootElement$parentNo.querySelector('.hot-display-license-info');
236
- if (licenseInfo) {
237
- addClass(licenseInfo, tableMeta.themeName);
238
- }
239
228
  }
240
229
  this.guid = `ht_${randomString()}`; // this is the namespace for global events
241
230
 
@@ -3500,12 +3489,13 @@ export default function Core(rootElement, userSettings) {
3500
3489
  * @memberof Core#
3501
3490
  * @function getColWidth
3502
3491
  * @param {number} column Visual column index.
3492
+ * @param {string} [source] The source of the call.
3503
3493
  * @returns {number} Column width.
3504
3494
  * @fires Hooks#modifyColWidth
3505
3495
  */
3506
- this.getColWidth = function (column) {
3496
+ this.getColWidth = function (column, source) {
3507
3497
  let width = instance._getColWidthFromSettings(column);
3508
- width = instance.runHooks('modifyColWidth', width, column);
3498
+ width = instance.runHooks('modifyColWidth', width, column, source);
3509
3499
  if (width === undefined) {
3510
3500
  width = DEFAULT_COLUMN_WIDTH;
3511
3501
  }
@@ -3565,12 +3555,13 @@ export default function Core(rootElement, userSettings) {
3565
3555
  * @memberof Core#
3566
3556
  * @function getRowHeight
3567
3557
  * @param {number} row A visual row index.
3558
+ * @param {string} [source] The source of the call.
3568
3559
  * @returns {number|undefined} The height of the specified row, in pixels.
3569
3560
  * @fires Hooks#modifyRowHeight
3570
3561
  */
3571
- this.getRowHeight = function (row) {
3562
+ this.getRowHeight = function (row, source) {
3572
3563
  let height = instance._getRowHeightFromSettings(row);
3573
- height = instance.runHooks('modifyRowHeight', height, row);
3564
+ height = instance.runHooks('modifyRowHeight', height, row, source);
3574
3565
  return height;
3575
3566
  };
3576
3567
 
@@ -4313,23 +4313,6 @@ var _default = () => {
4313
4313
  * ```
4314
4314
  */
4315
4315
  tableClassName: undefined,
4316
- // TODO: add themeName description
4317
- /**
4318
- * The `themeName` option lets you add CSS class names
4319
- *
4320
- * @memberof Options#
4321
- * @type {string|string[]}
4322
- * @default undefined
4323
- * @category Core
4324
- *
4325
- * @example
4326
- * ```js
4327
- * // add a `ht-theme-name` CSS class name
4328
- * // to every Handsontable instance inside the `container` element
4329
- * themeName: 'ht-theme-name',
4330
- * ```
4331
- */
4332
- themeName: 'ht-theme-main',
4333
4316
  /**
4334
4317
  * The `tabMoves` option configures the action of the <kbd>**Tab**</kbd> key.
4335
4318
  *
@@ -4310,23 +4310,6 @@ export default () => {
4310
4310
  * ```
4311
4311
  */
4312
4312
  tableClassName: undefined,
4313
- // TODO: add themeName description
4314
- /**
4315
- * The `themeName` option lets you add CSS class names
4316
- *
4317
- * @memberof Options#
4318
- * @type {string|string[]}
4319
- * @default undefined
4320
- * @category Core
4321
- *
4322
- * @example
4323
- * ```js
4324
- * // add a `ht-theme-name` CSS class name
4325
- * // to every Handsontable instance inside the `container` element
4326
- * themeName: 'ht-theme-name',
4327
- * ```
4328
- */
4329
- themeName: 'ht-theme-main',
4330
4313
  /**
4331
4314
  * The `tabMoves` option configures the action of the <kbd>**Tab**</kbd> key.
4332
4315
  *
@@ -25,13 +25,13 @@
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-3e0b40d-20241017
29
- * Release date: 01/10/2024 (built at 17/10/2024 06:57:10)
28
+ * Version: 0.0.0-next-802f59c-20241024
29
+ * Release date: 17/10/2024 (built at 24/10/2024 07:23:15)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
33
33
  */
34
- .handsontable .table th, .handsontable .table td {
34
+ .handsontable .table th, .handsontable .table td {
35
35
  border-top: none;
36
36
  }
37
37
 
@@ -792,239 +792,6 @@ TextRenderer placeholder value
792
792
  animation-fill-mode: forwards;
793
793
  -webkit-animation-fill-mode: forwards;
794
794
  }
795
- @charset "UTF-8";
796
- /*!
797
- * Pikaday
798
- * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
799
- */
800
- .pika-single {
801
- z-index: 9999;
802
- display: block;
803
- position: relative;
804
- color: #333;
805
- background: #fff;
806
- border: 1px solid #ccc;
807
- border-bottom-color: #bbb;
808
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
809
- }
810
-
811
- /*
812
- clear child float (pika-lendar), using the famous micro clearfix hack
813
- http://nicolasgallagher.com/micro-clearfix-hack/
814
- */
815
- .pika-single:before,
816
- .pika-single:after {
817
- content: " ";
818
- display: table;
819
- }
820
-
821
- .pika-single:after {
822
- clear: both;
823
- }
824
-
825
- .pika-single.is-hidden {
826
- display: none;
827
- }
828
-
829
- .pika-single.is-bound {
830
- position: absolute;
831
- box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
832
- }
833
-
834
- .pika-lendar {
835
- float: left;
836
- width: 240px;
837
- margin: 8px;
838
- }
839
-
840
- .pika-title {
841
- position: relative;
842
- text-align: center;
843
- }
844
-
845
- .pika-label {
846
- display: inline-block;
847
- position: relative;
848
- z-index: 9999;
849
- overflow: hidden;
850
- margin: 0;
851
- padding: 5px 3px;
852
- font-size: 14px;
853
- line-height: 20px;
854
- font-weight: bold;
855
- background-color: #fff;
856
- }
857
-
858
- .pika-title select {
859
- cursor: pointer;
860
- position: absolute;
861
- z-index: 9998;
862
- margin: 0;
863
- left: 0;
864
- top: 5px;
865
- opacity: 0;
866
- }
867
-
868
- .pika-prev,
869
- .pika-next {
870
- display: block;
871
- cursor: pointer;
872
- position: relative;
873
- outline: none;
874
- border: 0;
875
- padding: 0;
876
- width: 20px;
877
- height: 30px;
878
- /* hide text using text-indent trick, using width value (it's enough) */
879
- text-indent: 20px;
880
- white-space: nowrap;
881
- overflow: hidden;
882
- background-color: transparent;
883
- background-position: center center;
884
- background-repeat: no-repeat;
885
- background-size: 75% 75%;
886
- opacity: 0.5;
887
- }
888
-
889
- .pika-prev:hover,
890
- .pika-next:hover {
891
- opacity: 1;
892
- }
893
-
894
- .pika-prev,
895
- .is-rtl .pika-next {
896
- float: left;
897
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);
898
- }
899
-
900
- .pika-next,
901
- .is-rtl .pika-prev {
902
- float: right;
903
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);
904
- }
905
-
906
- .pika-prev.is-disabled,
907
- .pika-next.is-disabled {
908
- cursor: default;
909
- opacity: 0.2;
910
- }
911
-
912
- .pika-select {
913
- display: inline-block;
914
- }
915
-
916
- .pika-table {
917
- width: 100%;
918
- border-collapse: collapse;
919
- border-spacing: 0;
920
- border: 0;
921
- }
922
-
923
- .pika-table th,
924
- .pika-table td {
925
- width: 14.2857142857%;
926
- padding: 0;
927
- }
928
-
929
- .pika-table th {
930
- color: #999;
931
- font-size: 12px;
932
- line-height: 25px;
933
- font-weight: bold;
934
- text-align: center;
935
- }
936
-
937
- .pika-button {
938
- cursor: pointer;
939
- display: block;
940
- box-sizing: border-box;
941
- -moz-box-sizing: border-box;
942
- outline: none;
943
- border: 0;
944
- margin: 0;
945
- width: 100%;
946
- padding: 5px;
947
- color: #666;
948
- font-size: 12px;
949
- line-height: 15px;
950
- text-align: center;
951
- background: #f5f5f5;
952
- height: initial;
953
- }
954
-
955
- .pika-week {
956
- font-size: 11px;
957
- color: #999;
958
- }
959
-
960
- .is-today .pika-button {
961
- color: #33aaff;
962
- font-weight: bold;
963
- }
964
-
965
- .is-selected .pika-button,
966
- .has-event .pika-button {
967
- color: #fff;
968
- font-weight: bold;
969
- background: #33aaff;
970
- box-shadow: inset 0 1px 3px #178fe5;
971
- border-radius: 3px;
972
- }
973
-
974
- .has-event .pika-button {
975
- background: #005da9;
976
- box-shadow: inset 0 1px 3px #0076c9;
977
- }
978
-
979
- .is-disabled .pika-button,
980
- .is-inrange .pika-button {
981
- background: #D5E9F7;
982
- }
983
-
984
- .is-startrange .pika-button {
985
- color: #fff;
986
- background: #6CB31D;
987
- box-shadow: none;
988
- border-radius: 3px;
989
- }
990
-
991
- .is-endrange .pika-button {
992
- color: #fff;
993
- background: #33aaff;
994
- box-shadow: none;
995
- border-radius: 3px;
996
- }
997
-
998
- .is-disabled .pika-button {
999
- pointer-events: none;
1000
- cursor: default;
1001
- color: #999;
1002
- opacity: 0.3;
1003
- }
1004
-
1005
- .is-outside-current-month .pika-button {
1006
- color: #999;
1007
- opacity: 0.3;
1008
- }
1009
-
1010
- .is-selection-disabled {
1011
- pointer-events: none;
1012
- cursor: default;
1013
- }
1014
-
1015
- .pika-button:hover,
1016
- .pika-row.pick-whole-week:hover .pika-button {
1017
- color: #fff;
1018
- background: #ff8000;
1019
- box-shadow: none;
1020
- border-radius: 3px;
1021
- }
1022
-
1023
- /* styling for abbr */
1024
- .pika-table abbr {
1025
- border-bottom: none;
1026
- cursor: help;
1027
- }
1028
795
  /*
1029
796
  AutocompleteRenderer down arrow
1030
797
  */
@@ -2289,3 +2056,5 @@ textarea.HandsontableCopyPaste {
2289
2056
  left: 0;
2290
2057
  right: unset;
2291
2058
  }
2059
+
2060
+ /*# sourceMappingURL=handsontable.css.map*/
@@ -25,13 +25,13 @@
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-3e0b40d-20241017
29
- * Release date: 01/10/2024 (built at 17/10/2024 06:57:10)
28
+ * Version: 0.0.0-next-802f59c-20241024
29
+ * Release date: 17/10/2024 (built at 24/10/2024 07:23:15)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
33
33
  */
34
- .handsontable .table th, .handsontable .table td {
34
+ .handsontable .table th, .handsontable .table td {
35
35
  border-top: none;
36
36
  }
37
37