@progress/kendo-react-data-tools 9.4.0-develop.20 → 9.4.0-develop.22
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/clipboard/common.js +5 -5
- package/clipboard/common.mjs +81 -45
- package/dist/cdn/js/kendo-react-datatools.js +1 -1
- package/index.d.mts +66 -6
- package/index.d.ts +66 -6
- package/index.js +1 -1
- package/index.mjs +146 -136
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
package/index.d.ts
CHANGED
|
@@ -18,6 +18,11 @@ import * as React_2 from 'react';
|
|
|
18
18
|
import { SortDescriptor } from '@progress/kendo-data-query';
|
|
19
19
|
import { SVGIcon } from '@progress/kendo-react-common';
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
export declare const addHeaders: (initialData: string, cols: string[], event: ClipboardDataEvent) => string;
|
|
25
|
+
|
|
21
26
|
/**
|
|
22
27
|
* Represents the base object of the `onPageChange` event. It is usually used
|
|
23
28
|
* in custom pager scenarios in cases when we don't need any of the events or the target.
|
|
@@ -199,7 +204,7 @@ export declare interface ClipboardData {
|
|
|
199
204
|
}
|
|
200
205
|
|
|
201
206
|
/**
|
|
202
|
-
* Represents the object of the `
|
|
207
|
+
* Represents the object of the `ClipboardDataEvent` event.
|
|
203
208
|
*/
|
|
204
209
|
export declare interface ClipboardDataEvent {
|
|
205
210
|
/**
|
|
@@ -214,6 +219,10 @@ export declare interface ClipboardDataEvent {
|
|
|
214
219
|
* All the Grid columns. It takes value of type of [ColumnBaseProps]({% slug api_data-tools_columnbaseprops %})<[CellProps]({% slug api_data-tools_cellprops %})>[]
|
|
215
220
|
*/
|
|
216
221
|
columns: ColumnBaseProps[];
|
|
222
|
+
/**
|
|
223
|
+
* Passes the dataItemKey prop in the clipboard action.
|
|
224
|
+
*/
|
|
225
|
+
dataItemKey: string;
|
|
217
226
|
/**
|
|
218
227
|
* Passes the clipboard prop copyHeaders value in the clipboard action.
|
|
219
228
|
*/
|
|
@@ -226,10 +235,6 @@ export declare interface ClipboardDataEvent {
|
|
|
226
235
|
* Sets the row delimiter used when manipulating the clipboard data Defaults to `\r\n`.
|
|
227
236
|
*/
|
|
228
237
|
newLineDelimiter?: string;
|
|
229
|
-
/**
|
|
230
|
-
* Passes the dataItemKey prop in the clipboard action.
|
|
231
|
-
*/
|
|
232
|
-
dataItemKey: string;
|
|
233
238
|
}
|
|
234
239
|
|
|
235
240
|
/**
|
|
@@ -1237,6 +1242,21 @@ export declare function flatData(data: any[], getChildren: (dataItem: any) => an
|
|
|
1237
1242
|
/** @hidden */
|
|
1238
1243
|
export declare const flatToTree: (flat: GroupState[]) => GroupExpandDescriptor[];
|
|
1239
1244
|
|
|
1245
|
+
/**
|
|
1246
|
+
* @hidden
|
|
1247
|
+
*/
|
|
1248
|
+
export declare const getClipboardData: (event: ClipboardDataEvent, copiedItems: ClipboardItem_2[]) => string;
|
|
1249
|
+
|
|
1250
|
+
/**
|
|
1251
|
+
* @hidden
|
|
1252
|
+
*/
|
|
1253
|
+
export declare const getClipboardItemsToPaste: (args: PopulateClipboardArgs, clipboardText: string) => string[][];
|
|
1254
|
+
|
|
1255
|
+
/**
|
|
1256
|
+
* @hidden
|
|
1257
|
+
*/
|
|
1258
|
+
export declare const getClipboardText: (copiedItems: ClipboardItem_2[], event: ClipboardDataEvent) => string;
|
|
1259
|
+
|
|
1240
1260
|
/** @hidden */
|
|
1241
1261
|
export declare const getColumnIndex: (element: HTMLTableCellElement) => number | undefined;
|
|
1242
1262
|
|
|
@@ -1276,15 +1296,40 @@ export declare function getIndex(event: any, parent: HTMLTableRowElement | HTMLD
|
|
|
1276
1296
|
*/
|
|
1277
1297
|
export declare const getItemPath: (tree: any[], level: number[], subItemsField?: string) => any[];
|
|
1278
1298
|
|
|
1299
|
+
/**
|
|
1300
|
+
* @hidden
|
|
1301
|
+
*/
|
|
1302
|
+
export declare const getItemsToPaste: (args: PopulateClipboardArgs, clipboardText: string) => any[][];
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* @hidden
|
|
1306
|
+
*/
|
|
1307
|
+
export declare const getItemsToUpdateOnPaste: (args: PopulateClipboardArgs, selectedItems: ClipboardItem_2[], dataLength: number, dataItemKey: string) => any[];
|
|
1308
|
+
|
|
1279
1309
|
/** @hidden */
|
|
1280
1310
|
export declare const getOffset: (offsetParent: any) => any;
|
|
1281
1311
|
|
|
1312
|
+
/**
|
|
1313
|
+
* @hidden
|
|
1314
|
+
*/
|
|
1315
|
+
export declare const getPastedItems: (args: PopulateClipboardArgs, clipboardText: string) => ClipboardItem_2[];
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* @hidden
|
|
1319
|
+
*/
|
|
1320
|
+
export declare const getPreviouslyCopiedItemsData: (previousCopiedItems?: ClipboardItem_2[]) => any[][];
|
|
1321
|
+
|
|
1282
1322
|
/** @hidden */
|
|
1283
1323
|
export declare const getRowIndex: (element: HTMLTableRowElement) => number | undefined;
|
|
1284
1324
|
|
|
1285
1325
|
/** @hidden */
|
|
1286
1326
|
export declare const getSearchFromString: (search: CompositeFilterDescriptor, value: string) => CompositeFilterDescriptor;
|
|
1287
1327
|
|
|
1328
|
+
/**
|
|
1329
|
+
* @hidden
|
|
1330
|
+
*/
|
|
1331
|
+
export declare const getSelectedItems: (args: PopulateClipboardArgs) => ClipboardItem_2[];
|
|
1332
|
+
|
|
1288
1333
|
/**
|
|
1289
1334
|
* Get selected state from the component selection event.
|
|
1290
1335
|
*
|
|
@@ -1323,6 +1368,12 @@ export declare const getSelectionOptions: (selectable?: boolean | TableSelectabl
|
|
|
1323
1368
|
/** @hidden */
|
|
1324
1369
|
export declare const getStringFromSearch: (search: CompositeFilterDescriptor | undefined) => string;
|
|
1325
1370
|
|
|
1371
|
+
/**
|
|
1372
|
+
* Represents the object of the `GridClipboardEvent` event.
|
|
1373
|
+
*/
|
|
1374
|
+
export declare interface GridClipboardEvent extends ClipboardDataEvent, ClipboardData {
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1326
1377
|
/**
|
|
1327
1378
|
* @hidden
|
|
1328
1379
|
*/
|
|
@@ -1578,6 +1629,11 @@ export declare const isInNonSelectable: (target: HTMLElement | null) => boolean;
|
|
|
1578
1629
|
*/
|
|
1579
1630
|
export declare function isRtl(element: HTMLElement | null): boolean;
|
|
1580
1631
|
|
|
1632
|
+
/**
|
|
1633
|
+
* @hidden
|
|
1634
|
+
*/
|
|
1635
|
+
export declare const itemToString: (item: any, cols: string[]) => string | null;
|
|
1636
|
+
|
|
1581
1637
|
/**
|
|
1582
1638
|
* @hidden
|
|
1583
1639
|
*/
|
|
@@ -1963,7 +2019,7 @@ export declare interface PagerTargetEvent {
|
|
|
1963
2019
|
*/
|
|
1964
2020
|
export declare interface PopulateClipboardArgs {
|
|
1965
2021
|
/**
|
|
1966
|
-
* Represents the object of the `
|
|
2022
|
+
* Represents the base object of the `ClipboardDataEvent` event.
|
|
1967
2023
|
*/
|
|
1968
2024
|
event: ClipboardDataEvent;
|
|
1969
2025
|
/**
|
|
@@ -1984,6 +2040,10 @@ export declare interface PopulateClipboardArgs {
|
|
|
1984
2040
|
* Passes subItemsField that will be used in grouping cases.
|
|
1985
2041
|
*/
|
|
1986
2042
|
subItemsField?: string;
|
|
2043
|
+
/**
|
|
2044
|
+
* Previous copied items.
|
|
2045
|
+
*/
|
|
2046
|
+
previousCopiedItems?: ClipboardItem_2[];
|
|
1987
2047
|
}
|
|
1988
2048
|
|
|
1989
2049
|
/**
|
package/index.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const A=require("./pager/Pager.js"),
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const A=require("./pager/Pager.js"),g=require("./drag/ColumnResize.js"),p=require("./drag/ColumnResizer.js"),_=require("./drag/CommonDragLogic.js"),D=require("./drag/DragClue.js"),N=require("./drag/DropClue.js"),e=require("./utils/data-operations.js"),u=require("./utils/group-operations.js"),F=require("./navigation/hooks.js"),t=require("./navigation/constants.js"),b=require("./navigation/NavigatableSettings.js"),O=require("./navigation/TableKeyboardNavigation.js"),I=require("./navigation/TableKeyboardNavigationContext.js"),S=require("./navigation/utils.js"),R=require("./selection/TableSelection.js"),s=require("./selection/constants.js"),o=require("./selection/utils.js"),q=require("./editing/utils.js"),d=require("./editing/editReducer.js"),B=require("./detail-expansion/utils.js"),C=require("./detail-expansion/expandReducer.js"),a=require("./group-expansion/groupExpandReducer.js"),x=require("./clipboard/clipboard.service.js"),r=require("./clipboard/common.js"),L=require("./filteringCells/FilterComponent.js"),M=require("./filteringCells/BooleanFilter.js"),K=require("./filteringCells/DateFilter.js"),y=require("./filteringCells/NumericFilter.js"),v=require("./filteringCells/TextFilter.js"),P=require("./header/ColumnProps.js"),c=require("./header/FilterRow.js"),H=require("./header/Header.js"),V=require("./header/HeaderCell.js"),Y=require("./header/HeaderRow.js"),f=require("./header/HeaderSelectionCell.js"),U=require("./header/SortSettings.js"),n=require("./header/utils/index.js"),G=require("./header/HeaderThElement.js"),h=require("./header/HeaderTdElement.js"),w=require("./virtualization/columns.js"),z=require("./filter/filters/TextFilter.js"),X=require("./filter/filters/NumericFilter.js"),$=require("./filter/filters/DateFilter.js"),W=require("./filter/filters/BooleanFilter.js"),Z=require("./filter/filters/EnumFilter.js"),j=require("./filter/Expression.js"),T=require("./filter/Filter.js"),k=require("./filter/Group.js"),m=require("./filter/operators.js"),i=require("./columnmenu/ColumnMenu.js"),E=require("./columnmenu/ColumnMenuFilterForm.js"),J=require("./columnmenu/ColumnMenuFilterLogic.js"),l=require("./columnmenu/ColumnMenuFilters.js"),Q=require("./columnmenu/ColumnMenuItem.js"),ee=require("./columnmenu/ColumnMenuOperators.js");exports.Pager=A.Pager;exports.ColumnResize=g.ColumnResize;exports.ColumnResizer=p.ColumnResizer;exports.CommonDragLogic=_.CommonDragLogic;exports.DragClue=D.DragClue;exports.DropClue=N.DropClue;exports.combineFilters=e.combineFilters;exports.createDataTree=e.createDataTree;exports.extendDataItem=e.extendDataItem;exports.filterBy=e.filterBy;exports.flatData=e.flatData;exports.getItemPath=e.getItemPath;exports.getSearchFromString=e.getSearchFromString;exports.getStringFromSearch=e.getStringFromSearch;exports.modifySubItems=e.modifySubItems;exports.moveTreeItem=e.moveTreeItem;exports.orderBy=e.orderBy;exports.removeItems=e.removeItems;exports.treeToFlat=e.treeToFlat;exports.getGroupIds=u.getGroupIds;exports.setExpandedState=u.setExpandedState;exports.setGroupIds=u.setGroupIds;exports.useTableKeyboardNavigation=F.useTableKeyboardNavigation;exports.KEYBOARD_NAV_CANCEL_BUTTON_CLASS=t.KEYBOARD_NAV_CANCEL_BUTTON_CLASS;exports.KEYBOARD_NAV_DATA_BODY=t.KEYBOARD_NAV_DATA_BODY;exports.KEYBOARD_NAV_DATA_HEADER=t.KEYBOARD_NAV_DATA_HEADER;exports.KEYBOARD_NAV_DATA_ID=t.KEYBOARD_NAV_DATA_ID;exports.KEYBOARD_NAV_DATA_LEVEL=t.KEYBOARD_NAV_DATA_LEVEL;exports.KEYBOARD_NAV_DATA_SCOPE=t.KEYBOARD_NAV_DATA_SCOPE;exports.KEYBOARD_NAV_DATA_ZONE=t.KEYBOARD_NAV_DATA_ZONE;exports.KEYBOARD_NAV_EDIT_BUTTON_CLASS=t.KEYBOARD_NAV_EDIT_BUTTON_CLASS;exports.KEYBOARD_NAV_FILTER_COL_SUFFIX=t.KEYBOARD_NAV_FILTER_COL_SUFFIX;exports.tableKeyboardNavigationBodyAttributes=t.tableKeyboardNavigationBodyAttributes;exports.tableKeyboardNavigationHeaderAttributes=t.tableKeyboardNavigationHeaderAttributes;exports.tableKeyboardNavigationScopeAttributes=t.tableKeyboardNavigationScopeAttributes;exports.NavigatableMode=b.NavigatableMode;exports.tableKeyboardNavigation=O.tableKeyboardNavigation;exports.TableKeyboardNavigationContext=I.TableKeyboardNavigationContext;exports.tableKeyboardNavigationTools=S.tableKeyboardNavigationTools;exports.TableSelection=R.TableSelection;exports.TABLE_COL_INDEX_ATTRIBUTE=s.TABLE_COL_INDEX_ATTRIBUTE;exports.TABLE_PREVENT_SELECTION_ELEMENT=s.TABLE_PREVENT_SELECTION_ELEMENT;exports.TABLE_ROW_INDEX_ATTRIBUTE=s.TABLE_ROW_INDEX_ATTRIBUTE;exports.closestTagName=o.closestTagName;exports.getColumnIndex=o.getColumnIndex;exports.getOffset=o.getOffset;exports.getRowIndex=o.getRowIndex;exports.getSelectedState=o.getSelectedState;exports.getSelectedStateFromKeyDown=o.getSelectedStateFromKeyDown;exports.getSelectionOptions=o.getSelectionOptions;exports.isInNonSelectable=o.isInNonSelectable;exports.relativeContextElement=o.relativeContextElement;exports.setSelectedState=o.setSelectedState;exports.getEditableOptions=q.getEditableOptions;exports.EDIT_ACTION=d.EDIT_ACTION;exports.editReducer=d.editReducer;exports.getDetailExpandableOptions=B.getDetailExpandableOptions;exports.DETAIL_EXPAND_ACTION=C.DETAIL_EXPAND_ACTION;exports.detailExpandReducer=C.detailExpandReducer;exports.GROUP_EXPAND_ACTION=a.GROUP_EXPAND_ACTION;exports.findGroupExpand=a.findGroupExpand;exports.flatToTree=a.flatToTree;exports.getGroupExpandableOptions=a.getGroupExpandableOptions;exports.groupExpandReducer=a.groupExpandReducer;exports.isExpanded=a.isExpanded;exports.ClipboardService=x.ClipboardService;exports.ClipboardActionType=r.ClipboardActionType;exports.addHeaders=r.addHeaders;exports.getClipboardData=r.getClipboardData;exports.getClipboardItemsToPaste=r.getClipboardItemsToPaste;exports.getClipboardText=r.getClipboardText;exports.getItemsToPaste=r.getItemsToPaste;exports.getItemsToUpdateOnPaste=r.getItemsToUpdateOnPaste;exports.getPastedItems=r.getPastedItems;exports.getPreviouslyCopiedItemsData=r.getPreviouslyCopiedItemsData;exports.getSelectedItems=r.getSelectedItems;exports.itemToString=r.itemToString;exports.populateClipboardData=r.populateClipboardData;exports.createFilterComponent=L.createFilterComponent;exports.BooleanFilterCell=M.BooleanFilterCell;exports.DateFilterCell=K.DateFilterCell;exports.NumericFilterCell=y.NumericFilterCell;exports.TextFilterCell=v.TextFilterCell;exports.ColumnDefaultProps=P.ColumnDefaultProps;exports.FILTER_ROW_CLASS=c.FILTER_ROW_CLASS;exports.FilterRow=c.FilterRow;exports.Header=H.Header;exports.HeaderCell=V.HeaderCell;exports.HeaderRow=Y.HeaderRow;exports.HeaderSelectionCell=f.HeaderSelectionCell;exports.normalize=U.normalize;exports.getIndex=n.getIndex;exports.isRtl=n.isRtl;exports.mapColumns=n.mapColumns;exports.nextColumn=n.nextColumn;exports.readColumns=n.readColumns;exports.updateLeft=n.updateLeft;exports.updateRight=n.updateRight;exports.HeaderThElement=G.HeaderThElement;exports.HeaderTdElement=h.HeaderTdElement;exports.tableColumnsVirtualization=w.tableColumnsVirtualization;exports.TextFilter=z.TextFilter;exports.NumericFilter=X.NumericFilter;exports.DateFilter=$.DateFilter;exports.BooleanFilter=W.BooleanFilter;exports.EnumFilter=Z.EnumFilter;exports.Expression=j.Expression;exports.Filter=T.Filter;exports.selectors=T.selectors;exports.Group=k.Group;exports.Operators=m.Operators;exports.stringOperator=m.stringOperator;exports.unaryOperator=m.unaryOperator;exports.ColumnMenuBooleanColumn=i.ColumnMenuBooleanColumn;exports.ColumnMenuDateColumn=i.ColumnMenuDateColumn;exports.ColumnMenuNumericColumn=i.ColumnMenuNumericColumn;exports.ColumnMenuTextColumn=i.ColumnMenuTextColumn;exports.ColumnMenuFilterForm=E.ColumnMenuFilterForm;exports.ColumnMenuForm=E.ColumnMenuForm;exports.ColumnMenuFilterLogic=J.ColumnMenuFilterLogic;exports.ColumnMenuBooleanFilter=l.ColumnMenuBooleanFilter;exports.ColumnMenuDateFilter=l.ColumnMenuDateFilter;exports.ColumnMenuNumericFilter=l.ColumnMenuNumericFilter;exports.ColumnMenuTextFilter=l.ColumnMenuTextFilter;exports.ColumnMenuItem=Q.ColumnMenuItem;exports.ColumnMenuOperators=ee.ColumnMenuOperators;
|
package/index.mjs
CHANGED
|
@@ -5,176 +5,186 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { Pager as
|
|
9
|
-
import { ColumnResize as
|
|
8
|
+
import { Pager as t } from "./pager/Pager.mjs";
|
|
9
|
+
import { ColumnResize as a } from "./drag/ColumnResize.mjs";
|
|
10
10
|
import { ColumnResizer as l } from "./drag/ColumnResizer.mjs";
|
|
11
|
-
import { CommonDragLogic as
|
|
11
|
+
import { CommonDragLogic as n } from "./drag/CommonDragLogic.mjs";
|
|
12
12
|
import { DragClue as x } from "./drag/DragClue.mjs";
|
|
13
13
|
import { DropClue as f } from "./drag/DropClue.mjs";
|
|
14
|
-
import { combineFilters as
|
|
15
|
-
import { getGroupIds as
|
|
14
|
+
import { combineFilters as C, createDataTree as T, extendDataItem as A, filterBy as E, flatData as s, getItemPath as _, getSearchFromString as g, getStringFromSearch as D, modifySubItems as N, moveTreeItem as I, orderBy as O, removeItems as b, treeToFlat as F } from "./utils/data-operations.mjs";
|
|
15
|
+
import { getGroupIds as R, setExpandedState as c, setGroupIds as B } from "./utils/group-operations.mjs";
|
|
16
16
|
import { useTableKeyboardNavigation as K } from "./navigation/hooks.mjs";
|
|
17
|
-
import { KEYBOARD_NAV_CANCEL_BUTTON_CLASS as
|
|
17
|
+
import { KEYBOARD_NAV_CANCEL_BUTTON_CLASS as M, KEYBOARD_NAV_DATA_BODY as v, KEYBOARD_NAV_DATA_HEADER as P, KEYBOARD_NAV_DATA_ID as V, KEYBOARD_NAV_DATA_LEVEL as Y, KEYBOARD_NAV_DATA_SCOPE as H, KEYBOARD_NAV_DATA_ZONE as U, KEYBOARD_NAV_EDIT_BUTTON_CLASS as G, KEYBOARD_NAV_FILTER_COL_SUFFIX as h, tableKeyboardNavigationBodyAttributes as X, tableKeyboardNavigationHeaderAttributes as w, tableKeyboardNavigationScopeAttributes as z } from "./navigation/constants.mjs";
|
|
18
18
|
import { NavigatableMode as Z } from "./navigation/NavigatableSettings.mjs";
|
|
19
19
|
import { tableKeyboardNavigation as k } from "./navigation/TableKeyboardNavigation.mjs";
|
|
20
20
|
import { TableKeyboardNavigationContext as J } from "./navigation/TableKeyboardNavigationContext.mjs";
|
|
21
21
|
import { tableKeyboardNavigationTools as $ } from "./navigation/utils.mjs";
|
|
22
22
|
import { TableSelection as oe } from "./selection/TableSelection.mjs";
|
|
23
|
-
import { TABLE_COL_INDEX_ATTRIBUTE as
|
|
24
|
-
import { closestTagName as
|
|
25
|
-
import { getEditableOptions as
|
|
26
|
-
import { EDIT_ACTION as
|
|
27
|
-
import { getDetailExpandableOptions as
|
|
28
|
-
import { DETAIL_EXPAND_ACTION as
|
|
29
|
-
import { GROUP_EXPAND_ACTION as
|
|
23
|
+
import { TABLE_COL_INDEX_ATTRIBUTE as re, TABLE_PREVENT_SELECTION_ELEMENT as ae, TABLE_ROW_INDEX_ATTRIBUTE as me } from "./selection/constants.mjs";
|
|
24
|
+
import { closestTagName as pe, getColumnIndex as ne, getOffset as ie, getRowIndex as xe, getSelectedState as ue, getSelectedStateFromKeyDown as fe, getSelectionOptions as de, isInNonSelectable as Ce, relativeContextElement as Te, setSelectedState as Ae } from "./selection/utils.mjs";
|
|
25
|
+
import { getEditableOptions as se } from "./editing/utils.mjs";
|
|
26
|
+
import { EDIT_ACTION as ge, editReducer as De } from "./editing/editReducer.mjs";
|
|
27
|
+
import { getDetailExpandableOptions as Ie } from "./detail-expansion/utils.mjs";
|
|
28
|
+
import { DETAIL_EXPAND_ACTION as be, detailExpandReducer as Fe } from "./detail-expansion/expandReducer.mjs";
|
|
29
|
+
import { GROUP_EXPAND_ACTION as Re, findGroupExpand as ce, flatToTree as Be, getGroupExpandableOptions as Le, groupExpandReducer as Ke, isExpanded as ye } from "./group-expansion/groupExpandReducer.mjs";
|
|
30
30
|
import { ClipboardService as ve } from "./clipboard/clipboard.service.mjs";
|
|
31
|
-
import { ClipboardActionType as Ye,
|
|
32
|
-
import { createFilterComponent as
|
|
33
|
-
import { BooleanFilterCell as
|
|
34
|
-
import { DateFilterCell as
|
|
35
|
-
import { NumericFilterCell as
|
|
36
|
-
import { TextFilterCell as
|
|
37
|
-
import { ColumnDefaultProps as
|
|
38
|
-
import { FILTER_ROW_CLASS as
|
|
39
|
-
import { Header as
|
|
40
|
-
import { HeaderCell as
|
|
41
|
-
import { HeaderRow as
|
|
42
|
-
import { HeaderSelectionCell as
|
|
43
|
-
import { normalize as
|
|
44
|
-
import { getIndex as
|
|
45
|
-
import { HeaderThElement as
|
|
46
|
-
import { HeaderTdElement as
|
|
47
|
-
import { tableColumnsVirtualization as
|
|
48
|
-
import { TextFilter as
|
|
49
|
-
import { NumericFilter as
|
|
50
|
-
import { DateFilter as
|
|
51
|
-
import { BooleanFilter as
|
|
52
|
-
import { EnumFilter as
|
|
53
|
-
import { Expression as
|
|
54
|
-
import { Filter as
|
|
55
|
-
import { Group as
|
|
56
|
-
import { Operators as
|
|
57
|
-
import { ColumnMenuBooleanColumn as
|
|
58
|
-
import { ColumnMenuFilterForm as
|
|
59
|
-
import { ColumnMenuFilterLogic as
|
|
60
|
-
import { ColumnMenuBooleanFilter as
|
|
61
|
-
import { ColumnMenuItem as
|
|
62
|
-
import { ColumnMenuOperators as
|
|
31
|
+
import { ClipboardActionType as Ve, addHeaders as Ye, getClipboardData as He, getClipboardItemsToPaste as Ue, getClipboardText as Ge, getItemsToPaste as he, getItemsToUpdateOnPaste as Xe, getPastedItems as we, getPreviouslyCopiedItemsData as ze, getSelectedItems as We, itemToString as Ze, populateClipboardData as je } from "./clipboard/common.mjs";
|
|
32
|
+
import { createFilterComponent as qe } from "./filteringCells/FilterComponent.mjs";
|
|
33
|
+
import { BooleanFilterCell as Qe } from "./filteringCells/BooleanFilter.mjs";
|
|
34
|
+
import { DateFilterCell as eo } from "./filteringCells/DateFilter.mjs";
|
|
35
|
+
import { NumericFilterCell as to } from "./filteringCells/NumericFilter.mjs";
|
|
36
|
+
import { TextFilterCell as ao } from "./filteringCells/TextFilter.mjs";
|
|
37
|
+
import { ColumnDefaultProps as lo } from "./header/ColumnProps.mjs";
|
|
38
|
+
import { FILTER_ROW_CLASS as no, FilterRow as io } from "./header/FilterRow.mjs";
|
|
39
|
+
import { Header as uo } from "./header/Header.mjs";
|
|
40
|
+
import { HeaderCell as Co } from "./header/HeaderCell.mjs";
|
|
41
|
+
import { HeaderRow as Ao } from "./header/HeaderRow.mjs";
|
|
42
|
+
import { HeaderSelectionCell as so } from "./header/HeaderSelectionCell.mjs";
|
|
43
|
+
import { normalize as go } from "./header/SortSettings.mjs";
|
|
44
|
+
import { getIndex as No, isRtl as Io, mapColumns as Oo, nextColumn as bo, readColumns as Fo, updateLeft as So, updateRight as Ro } from "./header/utils/index.mjs";
|
|
45
|
+
import { HeaderThElement as Bo } from "./header/HeaderThElement.mjs";
|
|
46
|
+
import { HeaderTdElement as Ko } from "./header/HeaderTdElement.mjs";
|
|
47
|
+
import { tableColumnsVirtualization as Mo } from "./virtualization/columns.mjs";
|
|
48
|
+
import { TextFilter as Po } from "./filter/filters/TextFilter.mjs";
|
|
49
|
+
import { NumericFilter as Yo } from "./filter/filters/NumericFilter.mjs";
|
|
50
|
+
import { DateFilter as Uo } from "./filter/filters/DateFilter.mjs";
|
|
51
|
+
import { BooleanFilter as ho } from "./filter/filters/BooleanFilter.mjs";
|
|
52
|
+
import { EnumFilter as wo } from "./filter/filters/EnumFilter.mjs";
|
|
53
|
+
import { Expression as Wo } from "./filter/Expression.mjs";
|
|
54
|
+
import { Filter as jo, selectors as ko } from "./filter/Filter.mjs";
|
|
55
|
+
import { Group as Jo } from "./filter/Group.mjs";
|
|
56
|
+
import { Operators as $o, stringOperator as et, unaryOperator as ot } from "./filter/operators.mjs";
|
|
57
|
+
import { ColumnMenuBooleanColumn as rt, ColumnMenuDateColumn as at, ColumnMenuNumericColumn as mt, ColumnMenuTextColumn as lt } from "./columnmenu/ColumnMenu.mjs";
|
|
58
|
+
import { ColumnMenuFilterForm as nt, ColumnMenuForm as it } from "./columnmenu/ColumnMenuFilterForm.mjs";
|
|
59
|
+
import { ColumnMenuFilterLogic as ut } from "./columnmenu/ColumnMenuFilterLogic.mjs";
|
|
60
|
+
import { ColumnMenuBooleanFilter as dt, ColumnMenuDateFilter as Ct, ColumnMenuNumericFilter as Tt, ColumnMenuTextFilter as At } from "./columnmenu/ColumnMenuFilters.mjs";
|
|
61
|
+
import { ColumnMenuItem as st } from "./columnmenu/ColumnMenuItem.mjs";
|
|
62
|
+
import { ColumnMenuOperators as gt } from "./columnmenu/ColumnMenuOperators.mjs";
|
|
63
63
|
export {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
ho as BooleanFilter,
|
|
65
|
+
Qe as BooleanFilterCell,
|
|
66
|
+
Ve as ClipboardActionType,
|
|
67
67
|
ve as ClipboardService,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
68
|
+
lo as ColumnDefaultProps,
|
|
69
|
+
rt as ColumnMenuBooleanColumn,
|
|
70
|
+
dt as ColumnMenuBooleanFilter,
|
|
71
|
+
at as ColumnMenuDateColumn,
|
|
72
|
+
Ct as ColumnMenuDateFilter,
|
|
73
|
+
nt as ColumnMenuFilterForm,
|
|
74
|
+
ut as ColumnMenuFilterLogic,
|
|
75
|
+
it as ColumnMenuForm,
|
|
76
|
+
st as ColumnMenuItem,
|
|
77
|
+
mt as ColumnMenuNumericColumn,
|
|
78
|
+
Tt as ColumnMenuNumericFilter,
|
|
79
|
+
gt as ColumnMenuOperators,
|
|
80
|
+
lt as ColumnMenuTextColumn,
|
|
81
|
+
At as ColumnMenuTextFilter,
|
|
82
|
+
a as ColumnResize,
|
|
83
83
|
l as ColumnResizer,
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
84
|
+
n as CommonDragLogic,
|
|
85
|
+
be as DETAIL_EXPAND_ACTION,
|
|
86
|
+
Uo as DateFilter,
|
|
87
|
+
eo as DateFilterCell,
|
|
88
88
|
x as DragClue,
|
|
89
89
|
f as DropClue,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
90
|
+
ge as EDIT_ACTION,
|
|
91
|
+
wo as EnumFilter,
|
|
92
|
+
Wo as Expression,
|
|
93
|
+
no as FILTER_ROW_CLASS,
|
|
94
|
+
jo as Filter,
|
|
95
|
+
io as FilterRow,
|
|
96
|
+
Re as GROUP_EXPAND_ACTION,
|
|
97
|
+
Jo as Group,
|
|
98
|
+
uo as Header,
|
|
99
|
+
Co as HeaderCell,
|
|
100
|
+
Ao as HeaderRow,
|
|
101
|
+
so as HeaderSelectionCell,
|
|
102
|
+
Ko as HeaderTdElement,
|
|
103
|
+
Bo as HeaderThElement,
|
|
104
|
+
M as KEYBOARD_NAV_CANCEL_BUTTON_CLASS,
|
|
105
105
|
v as KEYBOARD_NAV_DATA_BODY,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
106
|
+
P as KEYBOARD_NAV_DATA_HEADER,
|
|
107
|
+
V as KEYBOARD_NAV_DATA_ID,
|
|
108
|
+
Y as KEYBOARD_NAV_DATA_LEVEL,
|
|
109
|
+
H as KEYBOARD_NAV_DATA_SCOPE,
|
|
110
|
+
U as KEYBOARD_NAV_DATA_ZONE,
|
|
111
|
+
G as KEYBOARD_NAV_EDIT_BUTTON_CLASS,
|
|
112
112
|
h as KEYBOARD_NAV_FILTER_COL_SUFFIX,
|
|
113
113
|
Z as NavigatableMode,
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
114
|
+
Yo as NumericFilter,
|
|
115
|
+
to as NumericFilterCell,
|
|
116
|
+
$o as Operators,
|
|
117
|
+
t as Pager,
|
|
118
|
+
re as TABLE_COL_INDEX_ATTRIBUTE,
|
|
119
|
+
ae as TABLE_PREVENT_SELECTION_ELEMENT,
|
|
120
|
+
me as TABLE_ROW_INDEX_ATTRIBUTE,
|
|
121
121
|
J as TableKeyboardNavigationContext,
|
|
122
122
|
oe as TableSelection,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
123
|
+
Po as TextFilter,
|
|
124
|
+
ao as TextFilterCell,
|
|
125
|
+
Ye as addHeaders,
|
|
126
|
+
pe as closestTagName,
|
|
127
|
+
C as combineFilters,
|
|
128
|
+
T as createDataTree,
|
|
129
|
+
qe as createFilterComponent,
|
|
130
|
+
Fe as detailExpandReducer,
|
|
131
|
+
De as editReducer,
|
|
132
|
+
A as extendDataItem,
|
|
133
|
+
E as filterBy,
|
|
133
134
|
ce as findGroupExpand,
|
|
134
|
-
|
|
135
|
+
s as flatData,
|
|
135
136
|
Be as flatToTree,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
137
|
+
He as getClipboardData,
|
|
138
|
+
Ue as getClipboardItemsToPaste,
|
|
139
|
+
Ge as getClipboardText,
|
|
140
|
+
ne as getColumnIndex,
|
|
141
|
+
Ie as getDetailExpandableOptions,
|
|
142
|
+
se as getEditableOptions,
|
|
139
143
|
Le as getGroupExpandableOptions,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
144
|
+
R as getGroupIds,
|
|
145
|
+
No as getIndex,
|
|
146
|
+
_ as getItemPath,
|
|
147
|
+
he as getItemsToPaste,
|
|
148
|
+
Xe as getItemsToUpdateOnPaste,
|
|
143
149
|
ie as getOffset,
|
|
150
|
+
we as getPastedItems,
|
|
151
|
+
ze as getPreviouslyCopiedItemsData,
|
|
144
152
|
xe as getRowIndex,
|
|
145
|
-
|
|
153
|
+
g as getSearchFromString,
|
|
154
|
+
We as getSelectedItems,
|
|
146
155
|
ue as getSelectedState,
|
|
147
156
|
fe as getSelectedStateFromKeyDown,
|
|
148
|
-
|
|
149
|
-
|
|
157
|
+
de as getSelectionOptions,
|
|
158
|
+
D as getStringFromSearch,
|
|
150
159
|
Ke as groupExpandReducer,
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
160
|
+
ye as isExpanded,
|
|
161
|
+
Ce as isInNonSelectable,
|
|
162
|
+
Io as isRtl,
|
|
163
|
+
Ze as itemToString,
|
|
164
|
+
Oo as mapColumns,
|
|
165
|
+
N as modifySubItems,
|
|
166
|
+
I as moveTreeItem,
|
|
167
|
+
bo as nextColumn,
|
|
168
|
+
go as normalize,
|
|
169
|
+
O as orderBy,
|
|
170
|
+
je as populateClipboardData,
|
|
171
|
+
Fo as readColumns,
|
|
172
|
+
Te as relativeContextElement,
|
|
173
|
+
b as removeItems,
|
|
174
|
+
ko as selectors,
|
|
165
175
|
c as setExpandedState,
|
|
166
176
|
B as setGroupIds,
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
177
|
+
Ae as setSelectedState,
|
|
178
|
+
et as stringOperator,
|
|
179
|
+
Mo as tableColumnsVirtualization,
|
|
170
180
|
k as tableKeyboardNavigation,
|
|
171
181
|
X as tableKeyboardNavigationBodyAttributes,
|
|
172
182
|
w as tableKeyboardNavigationHeaderAttributes,
|
|
173
183
|
z as tableKeyboardNavigationScopeAttributes,
|
|
174
184
|
$ as tableKeyboardNavigationTools,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
185
|
+
F as treeToFlat,
|
|
186
|
+
ot as unaryOperator,
|
|
187
|
+
So as updateLeft,
|
|
188
|
+
Ro as updateRight,
|
|
179
189
|
K as useTableKeyboardNavigation
|
|
180
190
|
};
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-data-tools",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-data-tools",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1738932367,version:"9.4.0-develop.22",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "9.4.0-develop.
|
|
13
|
+
publishDate: 1738932367,
|
|
14
|
+
version: "9.4.0-develop.22",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-data-tools",
|
|
3
|
-
"version": "9.4.0-develop.
|
|
3
|
+
"version": "9.4.0-develop.22",
|
|
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",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-data-query": "^1.0.0",
|
|
29
29
|
"@progress/kendo-drawing": "^1.21.2",
|
|
30
|
-
"@progress/kendo-licensing": "^1.
|
|
31
|
-
"@progress/kendo-react-animation": "9.4.0-develop.
|
|
32
|
-
"@progress/kendo-react-buttons": "9.4.0-develop.
|
|
33
|
-
"@progress/kendo-react-common": "9.4.0-develop.
|
|
34
|
-
"@progress/kendo-react-dateinputs": "9.4.0-develop.
|
|
35
|
-
"@progress/kendo-react-dropdowns": "9.4.0-develop.
|
|
36
|
-
"@progress/kendo-react-inputs": "9.4.0-develop.
|
|
37
|
-
"@progress/kendo-react-intl": "9.4.0-develop.
|
|
38
|
-
"@progress/kendo-react-popup": "9.4.0-develop.
|
|
30
|
+
"@progress/kendo-licensing": "^1.4.0",
|
|
31
|
+
"@progress/kendo-react-animation": "9.4.0-develop.22",
|
|
32
|
+
"@progress/kendo-react-buttons": "9.4.0-develop.22",
|
|
33
|
+
"@progress/kendo-react-common": "9.4.0-develop.22",
|
|
34
|
+
"@progress/kendo-react-dateinputs": "9.4.0-develop.22",
|
|
35
|
+
"@progress/kendo-react-dropdowns": "9.4.0-develop.22",
|
|
36
|
+
"@progress/kendo-react-inputs": "9.4.0-develop.22",
|
|
37
|
+
"@progress/kendo-react-intl": "9.4.0-develop.22",
|
|
38
|
+
"@progress/kendo-react-popup": "9.4.0-develop.22",
|
|
39
39
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
40
40
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
41
41
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"package": {
|
|
62
62
|
"productName": "KendoReact",
|
|
63
63
|
"productCode": "KENDOUIREACT",
|
|
64
|
-
"publishDate":
|
|
64
|
+
"publishDate": 1738932367,
|
|
65
65
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
66
66
|
}
|
|
67
67
|
},
|