@progress/kendo-react-data-tools 8.2.0-develop.33 → 8.2.0-develop.35
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/dist/cdn/js/kendo-react-datatools.js +1 -1
- package/filter/Expression.js +1 -1
- package/filter/Expression.mjs +12 -10
- package/filter/Filter.js +1 -1
- package/filter/Filter.mjs +103 -35
- package/filter/Group.js +1 -1
- package/filter/Group.mjs +17 -17
- package/filter/filters/DateFilter.js +1 -1
- package/filter/filters/DateFilter.mjs +4 -3
- package/filter/filters/EnumFilter.js +1 -1
- package/filter/filters/EnumFilter.mjs +2 -1
- package/filter/filters/NumericFilter.js +1 -1
- package/filter/filters/NumericFilter.mjs +2 -1
- package/filter/filters/TextFilter.js +1 -1
- package/filter/filters/TextFilter.mjs +2 -1
- package/header/FilterRow.js +1 -1
- package/header/FilterRow.mjs +34 -27
- package/index.d.mts +15 -0
- package/index.d.ts +15 -0
- package/index.js +1 -1
- package/index.mjs +31 -30
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.mjs
CHANGED
|
@@ -12,7 +12,7 @@ import { ColumnResizer as a } from "./drag/ColumnResizer.mjs";
|
|
|
12
12
|
import { CommonDragLogic as p } from "./drag/CommonDragLogic.mjs";
|
|
13
13
|
import { DragClue as x } from "./drag/DragClue.mjs";
|
|
14
14
|
import { DropClue as f } from "./drag/DropClue.mjs";
|
|
15
|
-
import { createDataTree as A, extendDataItem as _, filterBy as T, flatData as E, getItemPath as d, modifySubItems as D, moveTreeItem as
|
|
15
|
+
import { createDataTree as A, extendDataItem as _, filterBy as T, flatData as E, getItemPath as d, modifySubItems as D, moveTreeItem as s, orderBy as N, removeItems as F, treeToFlat as b } from "./utils/data-operations.mjs";
|
|
16
16
|
import { getGroupIds as O, setExpandedState as B, setGroupIds as R } from "./utils/group-operations.mjs";
|
|
17
17
|
import { useTableKeyboardNavigation as I } from "./navigation/hooks.mjs";
|
|
18
18
|
import { KEYBOARD_NAV_CANCEL_BUTTON_CLASS as L, KEYBOARD_NAV_DATA_BODY as K, KEYBOARD_NAV_DATA_HEADER as M, KEYBOARD_NAV_DATA_ID as y, KEYBOARD_NAV_DATA_LEVEL as v, KEYBOARD_NAV_DATA_SCOPE as V, KEYBOARD_NAV_DATA_ZONE as Y, KEYBOARD_NAV_EDIT_BUTTON_CLASS as H, KEYBOARD_NAV_FILTER_COL_SUFFIX as P, tableKeyboardNavigationBodyAttributes as U, tableKeyboardNavigationHeaderAttributes as w, tableKeyboardNavigationScopeAttributes as z } from "./navigation/constants.mjs";
|
|
@@ -25,7 +25,7 @@ import { TABLE_COL_INDEX_ATTRIBUTE as ee, TABLE_PREVENT_SELECTION_ELEMENT as oe,
|
|
|
25
25
|
import { closestTagName as me, getColumnIndex as le, getOffset as ae, getRowIndex as ne, getSelectedState as pe, getSelectedStateFromKeyDown as ie, getSelectionOptions as xe, isInNonSelectable as ue, relativeContextElement as fe, setSelectedState as Ce } from "./selection/utils.mjs";
|
|
26
26
|
import { ClipboardService as _e } from "./clipboard/clipboard.service.mjs";
|
|
27
27
|
import { ClipboardActionType as Ee, populateClipboardData as de } from "./clipboard/common.mjs";
|
|
28
|
-
import { createFilterComponent as
|
|
28
|
+
import { createFilterComponent as se } from "./filteringCells/FilterComponent.mjs";
|
|
29
29
|
import { BooleanFilterCell as Fe } from "./filteringCells/BooleanFilter.mjs";
|
|
30
30
|
import { DateFilterCell as ge } from "./filteringCells/DateFilter.mjs";
|
|
31
31
|
import { NumericFilterCell as Be } from "./filteringCells/NumericFilter.mjs";
|
|
@@ -46,34 +46,34 @@ import { DateFilter as no } from "./filter/filters/DateFilter.mjs";
|
|
|
46
46
|
import { BooleanFilter as io } from "./filter/filters/BooleanFilter.mjs";
|
|
47
47
|
import { EnumFilter as uo } from "./filter/filters/EnumFilter.mjs";
|
|
48
48
|
import { Expression as Co } from "./filter/Expression.mjs";
|
|
49
|
-
import { Filter as _o } from "./filter/Filter.mjs";
|
|
50
|
-
import { Group as
|
|
51
|
-
import { Operators as No, stringOperator as
|
|
52
|
-
import { ColumnMenuBooleanColumn as
|
|
53
|
-
import { ColumnMenuFilterForm as
|
|
54
|
-
import { ColumnMenuFilterLogic as
|
|
55
|
-
import { ColumnMenuBooleanFilter as
|
|
56
|
-
import { ColumnMenuItem as
|
|
57
|
-
import { ColumnMenuOperators as
|
|
49
|
+
import { Filter as _o, selectors as To } from "./filter/Filter.mjs";
|
|
50
|
+
import { Group as Do } from "./filter/Group.mjs";
|
|
51
|
+
import { Operators as No, stringOperator as Fo, unaryOperator as bo } from "./filter/operators.mjs";
|
|
52
|
+
import { ColumnMenuBooleanColumn as Oo, ColumnMenuDateColumn as Bo, ColumnMenuNumericColumn as Ro, ColumnMenuTextColumn as So } from "./columnmenu/ColumnMenu.mjs";
|
|
53
|
+
import { ColumnMenuFilterForm as co, ColumnMenuForm as Lo } from "./columnmenu/ColumnMenuFilterForm.mjs";
|
|
54
|
+
import { ColumnMenuFilterLogic as Mo } from "./columnmenu/ColumnMenuFilterLogic.mjs";
|
|
55
|
+
import { ColumnMenuBooleanFilter as vo, ColumnMenuDateFilter as Vo, ColumnMenuNumericFilter as Yo, ColumnMenuTextFilter as Ho } from "./columnmenu/ColumnMenuFilters.mjs";
|
|
56
|
+
import { ColumnMenuItem as Uo } from "./columnmenu/ColumnMenuItem.mjs";
|
|
57
|
+
import { ColumnMenuOperators as zo } from "./columnmenu/ColumnMenuOperators.mjs";
|
|
58
58
|
export {
|
|
59
59
|
io as BooleanFilter,
|
|
60
60
|
Fe as BooleanFilterCell,
|
|
61
61
|
Ee as ClipboardActionType,
|
|
62
62
|
_e as ClipboardService,
|
|
63
63
|
ce as ColumnDefaultProps,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
64
|
+
Oo as ColumnMenuBooleanColumn,
|
|
65
|
+
vo as ColumnMenuBooleanFilter,
|
|
66
|
+
Bo as ColumnMenuDateColumn,
|
|
67
|
+
Vo as ColumnMenuDateFilter,
|
|
68
|
+
co as ColumnMenuFilterForm,
|
|
69
|
+
Mo as ColumnMenuFilterLogic,
|
|
70
|
+
Lo as ColumnMenuForm,
|
|
71
|
+
Uo as ColumnMenuItem,
|
|
72
|
+
Ro as ColumnMenuNumericColumn,
|
|
73
|
+
Yo as ColumnMenuNumericFilter,
|
|
74
|
+
zo as ColumnMenuOperators,
|
|
75
|
+
So as ColumnMenuTextColumn,
|
|
76
|
+
Ho as ColumnMenuTextFilter,
|
|
77
77
|
m as ColumnResize,
|
|
78
78
|
a as ColumnResizer,
|
|
79
79
|
p as CommonDragLogic,
|
|
@@ -86,7 +86,7 @@ export {
|
|
|
86
86
|
Ke as FILTER_ROW_CLASS,
|
|
87
87
|
_o as Filter,
|
|
88
88
|
Me as FilterRow,
|
|
89
|
-
|
|
89
|
+
Do as Group,
|
|
90
90
|
ve as Header,
|
|
91
91
|
Ye as HeaderCell,
|
|
92
92
|
Pe as HeaderRow,
|
|
@@ -115,7 +115,7 @@ export {
|
|
|
115
115
|
Se as TextFilterCell,
|
|
116
116
|
me as closestTagName,
|
|
117
117
|
A as createDataTree,
|
|
118
|
-
|
|
118
|
+
se as createFilterComponent,
|
|
119
119
|
_ as extendDataItem,
|
|
120
120
|
T as filterBy,
|
|
121
121
|
E as flatData,
|
|
@@ -132,18 +132,19 @@ export {
|
|
|
132
132
|
We as isRtl,
|
|
133
133
|
Ze as mapColumns,
|
|
134
134
|
D as modifySubItems,
|
|
135
|
-
|
|
135
|
+
s as moveTreeItem,
|
|
136
136
|
je as nextColumn,
|
|
137
137
|
he as normalize,
|
|
138
|
-
|
|
138
|
+
N as orderBy,
|
|
139
139
|
de as populateClipboardData,
|
|
140
140
|
ke as readColumns,
|
|
141
141
|
fe as relativeContextElement,
|
|
142
142
|
F as removeItems,
|
|
143
|
+
To as selectors,
|
|
143
144
|
B as setExpandedState,
|
|
144
145
|
R as setGroupIds,
|
|
145
146
|
Ce as setSelectedState,
|
|
146
|
-
|
|
147
|
+
Fo as stringOperator,
|
|
147
148
|
oo as tableColumnsVirtualization,
|
|
148
149
|
W as tableKeyboardNavigation,
|
|
149
150
|
U as tableKeyboardNavigationBodyAttributes,
|
|
@@ -151,7 +152,7 @@ export {
|
|
|
151
152
|
z as tableKeyboardNavigationScopeAttributes,
|
|
152
153
|
q as tableKeyboardNavigationTools,
|
|
153
154
|
b as treeToFlat,
|
|
154
|
-
|
|
155
|
+
bo as unaryOperator,
|
|
155
156
|
qe as updateLeft,
|
|
156
157
|
Je as updateRight,
|
|
157
158
|
I as useTableKeyboardNavigation
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-data-tools",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1722586801,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-data-tools",
|
|
3
|
-
"version": "8.2.0-develop.
|
|
3
|
+
"version": "8.2.0-develop.35",
|
|
4
4
|
"description": "Includes React Pager & React Filter component, an intuitive interface to create complex filter descriptions. KendoReact Data Tools package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"@progress/kendo-data-query": "^1.0.0",
|
|
26
26
|
"@progress/kendo-drawing": "^1.20.1",
|
|
27
27
|
"@progress/kendo-licensing": "^1.3.4",
|
|
28
|
-
"@progress/kendo-react-animation": "8.2.0-develop.
|
|
29
|
-
"@progress/kendo-react-buttons": "8.2.0-develop.
|
|
30
|
-
"@progress/kendo-react-common": "8.2.0-develop.
|
|
31
|
-
"@progress/kendo-react-dateinputs": "8.2.0-develop.
|
|
32
|
-
"@progress/kendo-react-dropdowns": "8.2.0-develop.
|
|
33
|
-
"@progress/kendo-react-inputs": "8.2.0-develop.
|
|
34
|
-
"@progress/kendo-react-intl": "8.2.0-develop.
|
|
35
|
-
"@progress/kendo-react-popup": "8.2.0-develop.
|
|
28
|
+
"@progress/kendo-react-animation": "8.2.0-develop.35",
|
|
29
|
+
"@progress/kendo-react-buttons": "8.2.0-develop.35",
|
|
30
|
+
"@progress/kendo-react-common": "8.2.0-develop.35",
|
|
31
|
+
"@progress/kendo-react-dateinputs": "8.2.0-develop.35",
|
|
32
|
+
"@progress/kendo-react-dropdowns": "8.2.0-develop.35",
|
|
33
|
+
"@progress/kendo-react-inputs": "8.2.0-develop.35",
|
|
34
|
+
"@progress/kendo-react-intl": "8.2.0-develop.35",
|
|
35
|
+
"@progress/kendo-react-popup": "8.2.0-develop.35",
|
|
36
36
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
37
37
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
38
38
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|