handsontable 0.0.0-next-f29c16e-20230904 → 0.0.0-next-8b47293-20230904
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.d.ts +1 -1
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +5 -5
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +3 -3
- package/dist/handsontable.js +5 -5
- 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/autoColumnSize/autoColumnSize.d.ts +2 -0
- package/plugins/autoRowSize/autoRowSize.d.ts +2 -0
- package/plugins/filters/conditionCollection.d.ts +3 -2
- package/plugins/filters/filters.d.ts +3 -5
- package/plugins/hiddenColumns/hiddenColumns.d.ts +1 -0
- package/plugins/hiddenRows/hiddenRows.d.ts +1 -0
package/helpers/mixed.js
CHANGED
@@ -134,7 +134,7 @@ const domMessages = {
|
|
134
134
|
function _injectProductInfo(key, element) {
|
135
135
|
const hasValidType = !isEmpty(key);
|
136
136
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
137
|
-
const hotVersion = "0.0.0-next-
|
137
|
+
const hotVersion = "0.0.0-next-8b47293-20230904";
|
138
138
|
let keyValidityDate;
|
139
139
|
let consoleMessageState = 'invalid';
|
140
140
|
let domMessageState = 'invalid';
|
package/helpers/mixed.mjs
CHANGED
@@ -124,7 +124,7 @@ const domMessages = {
|
|
124
124
|
export function _injectProductInfo(key, element) {
|
125
125
|
const hasValidType = !isEmpty(key);
|
126
126
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
127
|
-
const hotVersion = "0.0.0-next-
|
127
|
+
const hotVersion = "0.0.0-next-8b47293-20230904";
|
128
128
|
let keyValidityDate;
|
129
129
|
let consoleMessageState = 'invalid';
|
130
130
|
let 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-8b47293-20230904",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -2,6 +2,7 @@ import {
|
|
2
2
|
ConditionId,
|
3
3
|
OperationType,
|
4
4
|
CellLikeData,
|
5
|
+
ColumnConditions,
|
5
6
|
} from './filters';
|
6
7
|
|
7
8
|
export type ConditionName = 'begins_with' | 'between' | 'by_value' | 'contains' | 'empty' | 'ends_with' |
|
@@ -18,7 +19,7 @@ export default class ConditionCollection {
|
|
18
19
|
addCondition(column: number, conditionDefinition: ConditionId, operation?: OperationType, position?: number): void;
|
19
20
|
clean(): void;
|
20
21
|
destroy(): void;
|
21
|
-
exportAllConditions():
|
22
|
+
exportAllConditions(): ColumnConditions[];
|
22
23
|
getConditions(column: number): Condition[];
|
23
24
|
getFilteredColumns(): number[];
|
24
25
|
getColumnStackPosition(column: number): number | void;
|
@@ -27,6 +28,6 @@ export default class ConditionCollection {
|
|
27
28
|
isEmpty(): boolean;
|
28
29
|
isMatch(value: CellLikeData, column: number): boolean;
|
29
30
|
isMatchInConditions(conditions: Condition[], value: CellLikeData, operationType?: OperationType): boolean;
|
30
|
-
importAllConditions(conditions:
|
31
|
+
importAllConditions(conditions: ColumnConditions[]): void;
|
31
32
|
removeConditions(column: number): void;
|
32
33
|
}
|
@@ -1,14 +1,12 @@
|
|
1
1
|
import Core from '../../core';
|
2
2
|
import { BasePlugin } from '../base';
|
3
|
-
import ConditionCollection
|
3
|
+
import ConditionCollection, {
|
4
|
+
ConditionName as _ConditionName,
|
5
|
+
} from './conditionCollection';
|
4
6
|
import ConditionUpdateObserver from './conditionUpdateObserver';
|
5
7
|
|
6
8
|
type _OperationType = 'conjunction' | 'disjunction';
|
7
9
|
export type OperationType = _OperationType;
|
8
|
-
|
9
|
-
type _ConditionName = 'begins_with' | 'between' | 'by_value' | 'contains' | 'empty' |
|
10
|
-
'ends_with' | 'eq' | 'gt' | 'gte' | 'lt' | 'lte' | 'not_between' | 'not_contains' |
|
11
|
-
'not_empty' | 'neq';
|
12
10
|
export type ConditionName = _ConditionName;
|
13
11
|
|
14
12
|
export interface ColumnConditions {
|