handsontable 16.1.1 → 16.2.0-next-90d1117-20251117
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/3rdparty/walkontable/src/overlays.js +1 -1
- package/3rdparty/walkontable/src/overlays.mjs +1 -1
- package/3rdparty/walkontable/src/selection/border/border.js +19 -3
- package/3rdparty/walkontable/src/selection/border/border.mjs +19 -3
- package/CHANGELOG.md +39 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/coordsMapper/index.js +11 -0
- package/core/coordsMapper/index.mjs +1 -0
- package/core/hooks/bucket.js +7 -1
- package/core/hooks/bucket.mjs +7 -1
- package/core/hooks/constants.js +54 -0
- package/core/hooks/constants.mjs +54 -0
- package/core/hooks/index.d.ts +6 -0
- package/core/index.js +10 -4
- package/core/index.mjs +2 -1
- package/core.d.ts +3 -2
- package/core.js +67 -26
- package/core.mjs +56 -15
- package/dataMap/metaManager/metaSchema.js +197 -20
- package/dataMap/metaManager/metaSchema.mjs +197 -20
- package/dist/handsontable.css +175 -3
- package/dist/handsontable.full.css +175 -3
- package/dist/handsontable.full.js +10864 -8426
- package/dist/handsontable.full.min.css +5 -4
- package/dist/handsontable.full.min.js +194 -193
- package/dist/handsontable.js +7126 -4827
- package/dist/handsontable.min.css +4 -4
- package/dist/handsontable.min.js +43 -42
- package/dist/languages/all.js +168 -21
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.js +8 -1
- package/dist/languages/ar-AR.min.js +1 -1
- package/dist/languages/cs-CZ.js +8 -1
- package/dist/languages/cs-CZ.min.js +1 -1
- package/dist/languages/de-CH.js +8 -1
- package/dist/languages/de-CH.min.js +1 -1
- package/dist/languages/de-DE.js +8 -1
- package/dist/languages/de-DE.min.js +1 -1
- package/dist/languages/en-US.js +8 -1
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/es-MX.js +8 -1
- package/dist/languages/es-MX.min.js +1 -1
- package/dist/languages/fa-IR.js +8 -1
- package/dist/languages/fa-IR.min.js +1 -1
- package/dist/languages/fr-FR.js +8 -1
- package/dist/languages/fr-FR.min.js +1 -1
- package/dist/languages/hr-HR.js +8 -1
- package/dist/languages/hr-HR.min.js +1 -1
- package/dist/languages/it-IT.js +8 -1
- package/dist/languages/it-IT.min.js +1 -1
- package/dist/languages/ja-JP.js +8 -1
- package/dist/languages/ja-JP.min.js +1 -1
- package/dist/languages/ko-KR.js +8 -1
- package/dist/languages/ko-KR.min.js +1 -1
- package/dist/languages/lv-LV.js +8 -1
- package/dist/languages/lv-LV.min.js +1 -1
- package/dist/languages/nb-NO.js +8 -1
- package/dist/languages/nb-NO.min.js +1 -1
- package/dist/languages/nl-NL.js +8 -1
- package/dist/languages/nl-NL.min.js +1 -1
- package/dist/languages/pl-PL.js +8 -1
- package/dist/languages/pl-PL.min.js +1 -1
- package/dist/languages/pt-BR.js +8 -1
- package/dist/languages/pt-BR.min.js +1 -1
- package/dist/languages/ru-RU.js +8 -1
- package/dist/languages/ru-RU.min.js +1 -1
- package/dist/languages/sr-SP.js +8 -1
- package/dist/languages/sr-SP.min.js +1 -1
- package/dist/languages/zh-CN.js +8 -1
- package/dist/languages/zh-CN.min.js +1 -1
- package/dist/languages/zh-TW.js +8 -1
- package/dist/languages/zh-TW.min.js +1 -1
- package/editors/autocompleteEditor/autocompleteEditor.js +21 -1
- package/editors/autocompleteEditor/autocompleteEditor.mjs +22 -2
- package/focusManager/constants.js +25 -0
- package/focusManager/constants.mjs +22 -0
- package/focusManager/eventListener.js +107 -0
- package/focusManager/eventListener.mjs +103 -0
- package/{focusManager.d.ts → focusManager/grid.d.ts} +1 -1
- package/{focusManager.js → focusManager/grid.js} +48 -17
- package/{focusManager.mjs → focusManager/grid.mjs} +47 -16
- package/focusManager/index.d.ts +2 -0
- package/focusManager/index.js +20 -0
- package/focusManager/index.mjs +20 -0
- package/focusManager/scope.js +133 -0
- package/focusManager/scope.mjs +129 -0
- package/focusManager/scopeManager.d.ts +19 -0
- package/focusManager/scopeManager.js +268 -0
- package/focusManager/scopeManager.mjs +263 -0
- package/focusManager/scopes/grid.js +120 -0
- package/focusManager/scopes/grid.mjs +116 -0
- package/focusManager/scopes/index.js +13 -0
- package/focusManager/scopes/index.mjs +9 -0
- package/{utils → focusManager/utils}/focusDetector.js +21 -31
- package/{utils → focusManager/utils}/focusDetector.mjs +21 -31
- package/focusManager/utils/utils.js +95 -0
- package/focusManager/utils/utils.mjs +89 -0
- package/helpers/dom/element.js +1 -1
- package/helpers/dom/element.mjs +2 -2
- package/helpers/dom/event.js +1 -1
- package/helpers/dom/event.mjs +1 -1
- package/helpers/mixed.js +2 -65
- package/helpers/mixed.mjs +2 -63
- package/i18n/constants.js +10 -1
- package/i18n/constants.mjs +10 -1
- package/i18n/languages/ar-AR.js +8 -1
- package/i18n/languages/ar-AR.mjs +8 -1
- package/i18n/languages/cs-CZ.js +8 -1
- package/i18n/languages/cs-CZ.mjs +8 -1
- package/i18n/languages/de-CH.js +8 -1
- package/i18n/languages/de-CH.mjs +8 -1
- package/i18n/languages/de-DE.js +8 -1
- package/i18n/languages/de-DE.mjs +8 -1
- package/i18n/languages/en-US.js +8 -1
- package/i18n/languages/en-US.mjs +8 -1
- package/i18n/languages/es-MX.js +8 -1
- package/i18n/languages/es-MX.mjs +8 -1
- package/i18n/languages/fa-IR.js +8 -1
- package/i18n/languages/fa-IR.mjs +8 -1
- package/i18n/languages/fr-FR.js +8 -1
- package/i18n/languages/fr-FR.mjs +8 -1
- package/i18n/languages/hr-HR.js +8 -1
- package/i18n/languages/hr-HR.mjs +8 -1
- package/i18n/languages/it-IT.js +8 -1
- package/i18n/languages/it-IT.mjs +8 -1
- package/i18n/languages/ja-JP.js +8 -1
- package/i18n/languages/ja-JP.mjs +8 -1
- package/i18n/languages/ko-KR.js +8 -1
- package/i18n/languages/ko-KR.mjs +8 -1
- package/i18n/languages/lv-LV.js +8 -1
- package/i18n/languages/lv-LV.mjs +8 -1
- package/i18n/languages/nb-NO.js +8 -1
- package/i18n/languages/nb-NO.mjs +8 -1
- package/i18n/languages/nl-NL.js +8 -1
- package/i18n/languages/nl-NL.mjs +8 -1
- package/i18n/languages/pl-PL.js +8 -1
- package/i18n/languages/pl-PL.mjs +8 -1
- package/i18n/languages/pt-BR.js +8 -1
- package/i18n/languages/pt-BR.mjs +8 -1
- package/i18n/languages/ru-RU.js +8 -1
- package/i18n/languages/ru-RU.mjs +8 -1
- package/i18n/languages/sr-SP.js +8 -1
- package/i18n/languages/sr-SP.mjs +8 -1
- package/i18n/languages/zh-CN.js +8 -1
- package/i18n/languages/zh-CN.mjs +8 -1
- package/i18n/languages/zh-TW.js +8 -1
- package/i18n/languages/zh-TW.mjs +8 -1
- package/index.d.ts +9 -0
- package/languages/all.js +168 -21
- package/languages/ar-AR.js +8 -1
- package/languages/ar-AR.mjs +8 -1
- package/languages/cs-CZ.js +8 -1
- package/languages/cs-CZ.mjs +8 -1
- package/languages/de-CH.js +8 -1
- package/languages/de-CH.mjs +8 -1
- package/languages/de-DE.js +8 -1
- package/languages/de-DE.mjs +8 -1
- package/languages/en-US.js +8 -1
- package/languages/en-US.mjs +8 -1
- package/languages/es-MX.js +8 -1
- package/languages/es-MX.mjs +8 -1
- package/languages/fa-IR.js +8 -1
- package/languages/fa-IR.mjs +8 -1
- package/languages/fr-FR.js +8 -1
- package/languages/fr-FR.mjs +8 -1
- package/languages/hr-HR.js +8 -1
- package/languages/hr-HR.mjs +8 -1
- package/languages/index.js +168 -21
- package/languages/it-IT.js +8 -1
- package/languages/it-IT.mjs +8 -1
- package/languages/ja-JP.js +8 -1
- package/languages/ja-JP.mjs +8 -1
- package/languages/ko-KR.js +8 -1
- package/languages/ko-KR.mjs +8 -1
- package/languages/lv-LV.js +8 -1
- package/languages/lv-LV.mjs +8 -1
- package/languages/nb-NO.js +8 -1
- package/languages/nb-NO.mjs +8 -1
- package/languages/nl-NL.js +8 -1
- package/languages/nl-NL.mjs +8 -1
- package/languages/pl-PL.js +8 -1
- package/languages/pl-PL.mjs +8 -1
- package/languages/pt-BR.js +8 -1
- package/languages/pt-BR.mjs +8 -1
- package/languages/ru-RU.js +8 -1
- package/languages/ru-RU.mjs +8 -1
- package/languages/sr-SP.js +8 -1
- package/languages/sr-SP.mjs +8 -1
- package/languages/zh-CN.js +8 -1
- package/languages/zh-CN.mjs +8 -1
- package/languages/zh-TW.js +8 -1
- package/languages/zh-TW.mjs +8 -1
- package/package.json +25 -7
- package/plugins/autoRowSize/autoRowSize.js +8 -1
- package/plugins/autoRowSize/autoRowSize.mjs +8 -1
- package/plugins/base/base.js +36 -10
- package/plugins/base/base.mjs +36 -10
- package/plugins/columnSummary/endpoints.js +13 -3
- package/plugins/columnSummary/endpoints.mjs +13 -3
- package/plugins/customBorders/customBorders.d.ts +1 -0
- package/plugins/customBorders/customBorders.js +32 -2
- package/plugins/customBorders/customBorders.mjs +32 -2
- package/plugins/dialog/constants.js +7 -0
- package/plugins/dialog/constants.mjs +4 -0
- package/plugins/dialog/dialog.d.ts +22 -2
- package/plugins/dialog/dialog.js +197 -81
- package/plugins/dialog/dialog.mjs +196 -81
- package/plugins/dialog/templates/base.js +60 -0
- package/plugins/dialog/templates/base.mjs +56 -0
- package/plugins/dialog/templates/confirm.js +106 -0
- package/plugins/dialog/templates/confirm.mjs +102 -0
- package/plugins/dialog/templates/index.js +6 -0
- package/plugins/dialog/templates/index.mjs +4 -0
- package/plugins/dialog/ui.js +125 -41
- package/plugins/dialog/ui.mjs +119 -35
- package/plugins/emptyDataState/emptyDataState.d.ts +24 -0
- package/plugins/emptyDataState/emptyDataState.js +526 -0
- package/plugins/emptyDataState/emptyDataState.mjs +521 -0
- package/plugins/emptyDataState/index.d.ts +1 -0
- package/plugins/emptyDataState/index.js +7 -0
- package/plugins/emptyDataState/index.mjs +1 -0
- package/plugins/emptyDataState/ui.js +282 -0
- package/plugins/emptyDataState/ui.mjs +278 -0
- package/plugins/filters/component/value.js +16 -1
- package/plugins/filters/component/value.mjs +16 -1
- package/plugins/filters/filters.d.ts +5 -1
- package/plugins/filters/filters.js +22 -1
- package/plugins/filters/filters.mjs +22 -1
- package/plugins/filters/ui/multipleSelect.js +90 -79
- package/plugins/filters/ui/multipleSelect.mjs +90 -79
- package/plugins/index.d.ts +3 -0
- package/plugins/index.js +3 -0
- package/plugins/index.mjs +3 -1
- package/plugins/mergeCells/utils.js +1 -5
- package/plugins/mergeCells/utils.mjs +1 -5
- package/plugins/pagination/pagination.js +37 -175
- package/plugins/pagination/pagination.mjs +37 -175
- package/plugins/pagination/strategies/autoPageSize.js +2 -2
- package/plugins/pagination/strategies/autoPageSize.mjs +2 -2
- package/plugins/pagination/ui.js +6 -10
- package/plugins/pagination/ui.mjs +7 -11
- package/plugins/stretchColumns/calculator.js +3 -1
- package/plugins/stretchColumns/calculator.mjs +3 -1
- package/plugins/undoRedo/undoRedo.js +16 -6
- package/plugins/undoRedo/undoRedo.mjs +16 -5
- package/renderers/checkboxRenderer/checkboxRenderer.js +12 -15
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +12 -15
- package/selection/selection.js +1 -1
- package/selection/selection.mjs +1 -1
- package/settings.d.ts +3 -0
- package/shortcutContexts/commands/index.js +2 -1
- package/shortcutContexts/commands/index.mjs +2 -1
- package/shortcutContexts/commands/tabNavigation.js +51 -0
- package/shortcutContexts/commands/tabNavigation.mjs +48 -0
- package/shortcutContexts/constants.js +16 -1
- package/shortcutContexts/constants.mjs +16 -1
- package/shortcutContexts/editor.js +2 -2
- package/shortcutContexts/editor.mjs +3 -3
- package/shortcutContexts/grid.js +19 -3
- package/shortcutContexts/grid.mjs +20 -4
- package/shortcuts/manager.d.ts +1 -0
- package/shortcuts/manager.js +17 -2
- package/shortcuts/manager.mjs +17 -2
- package/styles/handsontable.css +192 -35
- package/styles/handsontable.min.css +3 -3
- package/styles/ht-icons-horizon.css +233 -0
- package/styles/ht-icons-horizon.min.css +30 -0
- package/styles/ht-icons-main.css +233 -0
- package/styles/ht-icons-main.min.css +30 -0
- package/styles/ht-theme-classic-no-icons.css +399 -0
- package/styles/ht-theme-classic-no-icons.min.css +30 -0
- package/styles/ht-theme-classic.css +308 -556
- package/styles/ht-theme-classic.min.css +3 -3
- package/styles/ht-theme-horizon-no-icons.css +405 -0
- package/styles/ht-theme-horizon-no-icons.min.css +30 -0
- package/styles/ht-theme-horizon.css +312 -556
- package/styles/ht-theme-horizon.min.css +3 -3
- package/styles/ht-theme-main-no-icons.css +396 -0
- package/styles/ht-theme-main-no-icons.min.css +30 -0
- package/styles/ht-theme-main.css +303 -556
- package/styles/ht-theme-main.min.css +3 -3
- package/tableView.js +23 -5
- package/tableView.mjs +23 -5
- package/utils/dataStructures/uniqueMap.js +10 -0
- package/utils/dataStructures/uniqueMap.mjs +10 -0
- package/utils/ghostTable.js +0 -3
- package/utils/ghostTable.mjs +0 -3
- package/utils/stylesHandler.js +19 -4
- package/utils/stylesHandler.mjs +19 -4
- package/core/focusCatcher/index.js +0 -131
- package/core/focusCatcher/index.mjs +0 -127
- package/core/focusCatcher/utils.js +0 -31
- package/core/focusCatcher/utils.mjs +0 -27
- package/plugins/pagination/focusController.js +0 -27
- package/plugins/pagination/focusController.mjs +0 -23
package/dist/handsontable.css
CHANGED
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
|
27
27
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
|
28
28
|
*
|
|
29
|
-
* Version: 16.
|
|
30
|
-
* Release date:
|
|
29
|
+
* Version: 16.2.0-next-90d1117-20251117
|
|
30
|
+
* Release date: 20/11/2025 (built at 17/11/2025 11:49:11)
|
|
31
31
|
*/
|
|
32
32
|
/**
|
|
33
33
|
* Fix for bootstrap styles
|
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
padding-right: 0;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
.handsontable.ht-wrapper {
|
|
95
|
+
height: 100%;
|
|
96
|
+
width: 100%;
|
|
97
|
+
}
|
|
98
|
+
|
|
94
99
|
.handsontable .table-striped > tbody > tr:nth-of-type(even) {
|
|
95
100
|
background-color: #FFF;
|
|
96
101
|
}
|
|
@@ -325,6 +330,35 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
|
325
330
|
cursor: crosshair;
|
|
326
331
|
}
|
|
327
332
|
|
|
333
|
+
/* dashed borders */
|
|
334
|
+
.htBorders .wtBorder.ht-border-style-dashed-vertical {
|
|
335
|
+
background-image: repeating-linear-gradient(
|
|
336
|
+
to bottom,
|
|
337
|
+
var(--ht-custom-border-color) 0 5px,
|
|
338
|
+
transparent 0 10px
|
|
339
|
+
);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.htBorders .wtBorder.ht-border-style-dashed-horizontal {
|
|
343
|
+
background-image: repeating-linear-gradient(
|
|
344
|
+
to right,
|
|
345
|
+
var(--ht-custom-border-color) 0 5px,
|
|
346
|
+
transparent 0 10px
|
|
347
|
+
);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.htBorders .wtBorder.ht-border-style-dotted-horizontal {
|
|
351
|
+
background-image: radial-gradient(circle, var(--ht-custom-border-color) calc(var(--ht-custom-border-size) / 2), transparent 0);
|
|
352
|
+
background-size: calc(var(--ht-custom-border-size) * 2) var(--ht-custom-border-size);
|
|
353
|
+
background-repeat: repeat-x;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.htBorders .wtBorder.ht-border-style-dotted-vertical {
|
|
357
|
+
background-image: radial-gradient(circle, var(--ht-custom-border-color) calc(var(--ht-custom-border-size) / 2), transparent 0);
|
|
358
|
+
background-size: var(--ht-custom-border-size) calc(var(--ht-custom-border-size) * 2);
|
|
359
|
+
background-repeat: repeat-y;
|
|
360
|
+
}
|
|
361
|
+
|
|
328
362
|
.ht_clone_master {
|
|
329
363
|
z-index: 100;
|
|
330
364
|
}
|
|
@@ -435,7 +469,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
|
435
469
|
font-size: 10px;
|
|
436
470
|
}
|
|
437
471
|
|
|
438
|
-
.
|
|
472
|
+
.htFocusCatcher {
|
|
439
473
|
position: absolute;
|
|
440
474
|
z-index: -1;
|
|
441
475
|
opacity: 0;
|
|
@@ -2193,6 +2227,57 @@ thead th.hiddenHeaderText .colHeader {
|
|
|
2193
2227
|
background-color: #f7f7f9;
|
|
2194
2228
|
}
|
|
2195
2229
|
|
|
2230
|
+
.ht-dialog--confirm .ht-dialog__content-wrapper {
|
|
2231
|
+
text-align: center;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.ht-dialog--confirm .ht-dialog__content-wrapper-inner {
|
|
2235
|
+
display: flex;
|
|
2236
|
+
flex-direction: column;
|
|
2237
|
+
align-items: center;
|
|
2238
|
+
justify-content: center;
|
|
2239
|
+
gap: 8px;
|
|
2240
|
+
max-width: 480px;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.ht-dialog--confirm .ht-dialog__content-wrapper-inner--background {
|
|
2244
|
+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
|
|
2245
|
+
background-color: #f7f7f9;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.ht-dialog--confirm .ht-dialog__content {
|
|
2249
|
+
display: flex;
|
|
2250
|
+
flex-direction: column;
|
|
2251
|
+
align-items: center;
|
|
2252
|
+
justify-content: center;
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
.ht-dialog--confirm .ht-dialog__content:has(.ht-dialog__buttons) {
|
|
2256
|
+
gap: 4px;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.ht-dialog--confirm .ht-dialog__title {
|
|
2260
|
+
margin: 0;
|
|
2261
|
+
font-size: 16px;
|
|
2262
|
+
font-weight: 400;
|
|
2263
|
+
line-height: 24px;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
.ht-dialog--confirm .ht-dialog__description {
|
|
2267
|
+
margin: 0;
|
|
2268
|
+
color: #222;
|
|
2269
|
+
font-size: 12px;
|
|
2270
|
+
font-weight: 400;
|
|
2271
|
+
line-height: 16px;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.ht-dialog--confirm .ht-dialog__buttons {
|
|
2275
|
+
display: flex;
|
|
2276
|
+
flex-direction: row;
|
|
2277
|
+
flex-wrap: wrap;
|
|
2278
|
+
gap: 8px;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2196
2281
|
.ht-root-wrapper .ht-pagination {
|
|
2197
2282
|
color: #222;
|
|
2198
2283
|
background: #f0f0f0;
|
|
@@ -2376,3 +2461,90 @@ thead th.hiddenHeaderText .colHeader {
|
|
|
2376
2461
|
transform: rotate(360deg);
|
|
2377
2462
|
}
|
|
2378
2463
|
}
|
|
2464
|
+
|
|
2465
|
+
.ht-empty-data-state {
|
|
2466
|
+
display: none;
|
|
2467
|
+
position: absolute;
|
|
2468
|
+
width: 100%;
|
|
2469
|
+
left: 0;
|
|
2470
|
+
z-index: 999;
|
|
2471
|
+
overflow-y: auto;
|
|
2472
|
+
border: 1px solid #ccc;
|
|
2473
|
+
box-sizing: border-box;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.ht-empty-data-state * {
|
|
2477
|
+
box-sizing: border-box !important;
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
.ht-empty-data-state__content-wrapper {
|
|
2481
|
+
display: flex;
|
|
2482
|
+
align-items: center;
|
|
2483
|
+
justify-content: center;
|
|
2484
|
+
text-align: center;
|
|
2485
|
+
width: 100%;
|
|
2486
|
+
min-height: 100%;
|
|
2487
|
+
padding: 16px;
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
.ht-empty-data-state__content-wrapper-inner {
|
|
2491
|
+
display: flex;
|
|
2492
|
+
flex-direction: column;
|
|
2493
|
+
align-items: center;
|
|
2494
|
+
justify-content: center;
|
|
2495
|
+
max-width: 480px;
|
|
2496
|
+
padding: 16px;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.ht-empty-data-state__content-wrapper-inner:focus {
|
|
2500
|
+
outline: none;
|
|
2501
|
+
box-shadow: 0 0 0 1px #4b89ff;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.ht-empty-data-state__content {
|
|
2505
|
+
display: flex;
|
|
2506
|
+
flex-direction: column;
|
|
2507
|
+
align-items: center;
|
|
2508
|
+
justify-content: center;
|
|
2509
|
+
gap: 4px;
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
.ht-empty-data-state__title {
|
|
2513
|
+
margin: 0;
|
|
2514
|
+
font-size: 16px;
|
|
2515
|
+
font-weight: 400;
|
|
2516
|
+
line-height: 24px;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
.ht-empty-data-state__description {
|
|
2520
|
+
margin: 0;
|
|
2521
|
+
color: #222;
|
|
2522
|
+
font-size: 12px;
|
|
2523
|
+
line-height: 16px;
|
|
2524
|
+
font-weight: 400;
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
.ht-empty-data-state__buttons {
|
|
2528
|
+
display: flex;
|
|
2529
|
+
justify-content: center;
|
|
2530
|
+
flex-direction: row;
|
|
2531
|
+
flex-wrap: wrap;
|
|
2532
|
+
gap: 8px;
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
.ht-empty-data-state__buttons--has-buttons {
|
|
2536
|
+
margin-top: 8px;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
.ht-empty-data-state--disable-top-border {
|
|
2540
|
+
border-top-width: 0;
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
.ht-empty-data-state--disable-inline-border {
|
|
2544
|
+
border-inline-start-width: 0;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
.ht-empty-data-state--disable-bottom-border, .ht-empty-data-state:has(~ .ht-pagination) {
|
|
2548
|
+
border-bottom-width: 0;
|
|
2549
|
+
}
|
|
2550
|
+
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
|
27
27
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
|
28
28
|
*
|
|
29
|
-
* Version: 16.
|
|
30
|
-
* Release date:
|
|
29
|
+
* Version: 16.2.0-next-90d1117-20251117
|
|
30
|
+
* Release date: 20/11/2025 (built at 17/11/2025 11:49:11)
|
|
31
31
|
*/
|
|
32
32
|
/**
|
|
33
33
|
* Fix for bootstrap styles
|
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
padding-right: 0;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
.handsontable.ht-wrapper {
|
|
95
|
+
height: 100%;
|
|
96
|
+
width: 100%;
|
|
97
|
+
}
|
|
98
|
+
|
|
94
99
|
.handsontable .table-striped > tbody > tr:nth-of-type(even) {
|
|
95
100
|
background-color: #FFF;
|
|
96
101
|
}
|
|
@@ -325,6 +330,35 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
|
325
330
|
cursor: crosshair;
|
|
326
331
|
}
|
|
327
332
|
|
|
333
|
+
/* dashed borders */
|
|
334
|
+
.htBorders .wtBorder.ht-border-style-dashed-vertical {
|
|
335
|
+
background-image: repeating-linear-gradient(
|
|
336
|
+
to bottom,
|
|
337
|
+
var(--ht-custom-border-color) 0 5px,
|
|
338
|
+
transparent 0 10px
|
|
339
|
+
);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.htBorders .wtBorder.ht-border-style-dashed-horizontal {
|
|
343
|
+
background-image: repeating-linear-gradient(
|
|
344
|
+
to right,
|
|
345
|
+
var(--ht-custom-border-color) 0 5px,
|
|
346
|
+
transparent 0 10px
|
|
347
|
+
);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.htBorders .wtBorder.ht-border-style-dotted-horizontal {
|
|
351
|
+
background-image: radial-gradient(circle, var(--ht-custom-border-color) calc(var(--ht-custom-border-size) / 2), transparent 0);
|
|
352
|
+
background-size: calc(var(--ht-custom-border-size) * 2) var(--ht-custom-border-size);
|
|
353
|
+
background-repeat: repeat-x;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.htBorders .wtBorder.ht-border-style-dotted-vertical {
|
|
357
|
+
background-image: radial-gradient(circle, var(--ht-custom-border-color) calc(var(--ht-custom-border-size) / 2), transparent 0);
|
|
358
|
+
background-size: var(--ht-custom-border-size) calc(var(--ht-custom-border-size) * 2);
|
|
359
|
+
background-repeat: repeat-y;
|
|
360
|
+
}
|
|
361
|
+
|
|
328
362
|
.ht_clone_master {
|
|
329
363
|
z-index: 100;
|
|
330
364
|
}
|
|
@@ -435,7 +469,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
|
435
469
|
font-size: 10px;
|
|
436
470
|
}
|
|
437
471
|
|
|
438
|
-
.
|
|
472
|
+
.htFocusCatcher {
|
|
439
473
|
position: absolute;
|
|
440
474
|
z-index: -1;
|
|
441
475
|
opacity: 0;
|
|
@@ -2193,6 +2227,57 @@ thead th.hiddenHeaderText .colHeader {
|
|
|
2193
2227
|
background-color: #f7f7f9;
|
|
2194
2228
|
}
|
|
2195
2229
|
|
|
2230
|
+
.ht-dialog--confirm .ht-dialog__content-wrapper {
|
|
2231
|
+
text-align: center;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.ht-dialog--confirm .ht-dialog__content-wrapper-inner {
|
|
2235
|
+
display: flex;
|
|
2236
|
+
flex-direction: column;
|
|
2237
|
+
align-items: center;
|
|
2238
|
+
justify-content: center;
|
|
2239
|
+
gap: 8px;
|
|
2240
|
+
max-width: 480px;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.ht-dialog--confirm .ht-dialog__content-wrapper-inner--background {
|
|
2244
|
+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
|
|
2245
|
+
background-color: #f7f7f9;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.ht-dialog--confirm .ht-dialog__content {
|
|
2249
|
+
display: flex;
|
|
2250
|
+
flex-direction: column;
|
|
2251
|
+
align-items: center;
|
|
2252
|
+
justify-content: center;
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
.ht-dialog--confirm .ht-dialog__content:has(.ht-dialog__buttons) {
|
|
2256
|
+
gap: 4px;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.ht-dialog--confirm .ht-dialog__title {
|
|
2260
|
+
margin: 0;
|
|
2261
|
+
font-size: 16px;
|
|
2262
|
+
font-weight: 400;
|
|
2263
|
+
line-height: 24px;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
.ht-dialog--confirm .ht-dialog__description {
|
|
2267
|
+
margin: 0;
|
|
2268
|
+
color: #222;
|
|
2269
|
+
font-size: 12px;
|
|
2270
|
+
font-weight: 400;
|
|
2271
|
+
line-height: 16px;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.ht-dialog--confirm .ht-dialog__buttons {
|
|
2275
|
+
display: flex;
|
|
2276
|
+
flex-direction: row;
|
|
2277
|
+
flex-wrap: wrap;
|
|
2278
|
+
gap: 8px;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2196
2281
|
.ht-root-wrapper .ht-pagination {
|
|
2197
2282
|
color: #222;
|
|
2198
2283
|
background: #f0f0f0;
|
|
@@ -2376,6 +2461,93 @@ thead th.hiddenHeaderText .colHeader {
|
|
|
2376
2461
|
transform: rotate(360deg);
|
|
2377
2462
|
}
|
|
2378
2463
|
}
|
|
2464
|
+
|
|
2465
|
+
.ht-empty-data-state {
|
|
2466
|
+
display: none;
|
|
2467
|
+
position: absolute;
|
|
2468
|
+
width: 100%;
|
|
2469
|
+
left: 0;
|
|
2470
|
+
z-index: 999;
|
|
2471
|
+
overflow-y: auto;
|
|
2472
|
+
border: 1px solid #ccc;
|
|
2473
|
+
box-sizing: border-box;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.ht-empty-data-state * {
|
|
2477
|
+
box-sizing: border-box !important;
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
.ht-empty-data-state__content-wrapper {
|
|
2481
|
+
display: flex;
|
|
2482
|
+
align-items: center;
|
|
2483
|
+
justify-content: center;
|
|
2484
|
+
text-align: center;
|
|
2485
|
+
width: 100%;
|
|
2486
|
+
min-height: 100%;
|
|
2487
|
+
padding: 16px;
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
.ht-empty-data-state__content-wrapper-inner {
|
|
2491
|
+
display: flex;
|
|
2492
|
+
flex-direction: column;
|
|
2493
|
+
align-items: center;
|
|
2494
|
+
justify-content: center;
|
|
2495
|
+
max-width: 480px;
|
|
2496
|
+
padding: 16px;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.ht-empty-data-state__content-wrapper-inner:focus {
|
|
2500
|
+
outline: none;
|
|
2501
|
+
box-shadow: 0 0 0 1px #4b89ff;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.ht-empty-data-state__content {
|
|
2505
|
+
display: flex;
|
|
2506
|
+
flex-direction: column;
|
|
2507
|
+
align-items: center;
|
|
2508
|
+
justify-content: center;
|
|
2509
|
+
gap: 4px;
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
.ht-empty-data-state__title {
|
|
2513
|
+
margin: 0;
|
|
2514
|
+
font-size: 16px;
|
|
2515
|
+
font-weight: 400;
|
|
2516
|
+
line-height: 24px;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
.ht-empty-data-state__description {
|
|
2520
|
+
margin: 0;
|
|
2521
|
+
color: #222;
|
|
2522
|
+
font-size: 12px;
|
|
2523
|
+
line-height: 16px;
|
|
2524
|
+
font-weight: 400;
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
.ht-empty-data-state__buttons {
|
|
2528
|
+
display: flex;
|
|
2529
|
+
justify-content: center;
|
|
2530
|
+
flex-direction: row;
|
|
2531
|
+
flex-wrap: wrap;
|
|
2532
|
+
gap: 8px;
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
.ht-empty-data-state__buttons--has-buttons {
|
|
2536
|
+
margin-top: 8px;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
.ht-empty-data-state--disable-top-border {
|
|
2540
|
+
border-top-width: 0;
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
.ht-empty-data-state--disable-inline-border {
|
|
2544
|
+
border-inline-start-width: 0;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
.ht-empty-data-state--disable-bottom-border, .ht-empty-data-state:has(~ .ht-pagination) {
|
|
2548
|
+
border-bottom-width: 0;
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2379
2551
|
/*!
|
|
2380
2552
|
* Pikaday
|
|
2381
2553
|
* Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
|