handsontable 0.0.0-next-ce9ed46-20230427 → 0.0.0-next-f240315-20230428
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.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +1 -1
- package/core.mjs +1 -1
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +13 -8
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +13 -8
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/autoRowSize/autoRowSize.js +2 -2
- package/plugins/autoRowSize/autoRowSize.mjs +2 -2
- package/plugins/filters/filters.js +5 -0
- package/plugins/filters/filters.mjs +5 -0
package/helpers/mixed.js
CHANGED
|
@@ -152,7 +152,7 @@ var domMessages = {
|
|
|
152
152
|
function _injectProductInfo(key, element) {
|
|
153
153
|
var hasValidType = !isEmpty(key);
|
|
154
154
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
|
155
|
-
var hotVersion = "0.0.0-next-
|
|
155
|
+
var hotVersion = "0.0.0-next-f240315-20230428";
|
|
156
156
|
var keyValidityDate;
|
|
157
157
|
var consoleMessageState = 'invalid';
|
|
158
158
|
var domMessageState = 'invalid';
|
package/helpers/mixed.mjs
CHANGED
|
@@ -142,7 +142,7 @@ var domMessages = {
|
|
|
142
142
|
export function _injectProductInfo(key, element) {
|
|
143
143
|
var hasValidType = !isEmpty(key);
|
|
144
144
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
|
145
|
-
var hotVersion = "0.0.0-next-
|
|
145
|
+
var hotVersion = "0.0.0-next-f240315-20230428";
|
|
146
146
|
var keyValidityDate;
|
|
147
147
|
var consoleMessageState = 'invalid';
|
|
148
148
|
var domMessageState = 'invalid';
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"url": "https://github.com/handsontable/handsontable/issues"
|
|
11
11
|
},
|
|
12
12
|
"author": "Handsoncode <hello@handsontable.com>",
|
|
13
|
-
"version": "0.0.0-next-
|
|
13
|
+
"version": "0.0.0-next-f240315-20230428",
|
|
14
14
|
"main": "index",
|
|
15
15
|
"module": "index.mjs",
|
|
16
16
|
"jsnext:main": "index.mjs",
|
|
@@ -83,10 +83,10 @@ var ROW_WIDTHS_MAP_NAME = 'autoRowSize';
|
|
|
83
83
|
* To configure the sync/async distribution, you can pass an absolute value (number of rows) or a percentage value to a config object:
|
|
84
84
|
* ```js
|
|
85
85
|
* // as a number (300 rows in sync, rest async)
|
|
86
|
-
* autoRowSize: {syncLimit: 300}
|
|
86
|
+
* autoRowSize: {syncLimit: 300},
|
|
87
87
|
*
|
|
88
88
|
* // as a string (percent)
|
|
89
|
-
* autoRowSize: {syncLimit: '40%'}
|
|
89
|
+
* autoRowSize: {syncLimit: '40%'},
|
|
90
90
|
*
|
|
91
91
|
* // allow sample duplication
|
|
92
92
|
* autoRowSize: {syncLimit: '40%', allowSampleDuplicates: true},
|
|
@@ -76,10 +76,10 @@ var ROW_WIDTHS_MAP_NAME = 'autoRowSize';
|
|
|
76
76
|
* To configure the sync/async distribution, you can pass an absolute value (number of rows) or a percentage value to a config object:
|
|
77
77
|
* ```js
|
|
78
78
|
* // as a number (300 rows in sync, rest async)
|
|
79
|
-
* autoRowSize: {syncLimit: 300}
|
|
79
|
+
* autoRowSize: {syncLimit: 300},
|
|
80
80
|
*
|
|
81
81
|
* // as a string (percent)
|
|
82
|
-
* autoRowSize: {syncLimit: '40%'}
|
|
82
|
+
* autoRowSize: {syncLimit: '40%'},
|
|
83
83
|
*
|
|
84
84
|
* // allow sample duplication
|
|
85
85
|
* autoRowSize: {syncLimit: '40%', allowSampleDuplicates: true},
|
|
@@ -329,6 +329,11 @@ var Filters = /*#__PURE__*/function (_BasePlugin) {
|
|
|
329
329
|
* * `between` - Between
|
|
330
330
|
* * `by_value` - By value
|
|
331
331
|
* * `contains` - Contains
|
|
332
|
+
* * `date_after` - After a date
|
|
333
|
+
* * `date_before` - Before a date
|
|
334
|
+
* * `date_today` - Today
|
|
335
|
+
* * `date_tomorrow` - Tomorrow
|
|
336
|
+
* * `date_yesterday` - Yesterday
|
|
332
337
|
* * `empty` - Empty
|
|
333
338
|
* * `ends_with` - Ends with
|
|
334
339
|
* * `eq` - Equal
|
|
@@ -319,6 +319,11 @@ export var Filters = /*#__PURE__*/function (_BasePlugin) {
|
|
|
319
319
|
* * `between` - Between
|
|
320
320
|
* * `by_value` - By value
|
|
321
321
|
* * `contains` - Contains
|
|
322
|
+
* * `date_after` - After a date
|
|
323
|
+
* * `date_before` - Before a date
|
|
324
|
+
* * `date_today` - Today
|
|
325
|
+
* * `date_tomorrow` - Tomorrow
|
|
326
|
+
* * `date_yesterday` - Yesterday
|
|
322
327
|
* * `empty` - Empty
|
|
323
328
|
* * `ends_with` - Ends with
|
|
324
329
|
* * `eq` - Equal
|