@progress/kendo-react-grid 11.3.1 → 11.4.0-develop.1
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/GridClientWrapper.js +1 -1
- package/GridClientWrapper.mjs +338 -322
- package/GridState.js +1 -1
- package/GridState.mjs +69 -64
- package/dist/cdn/js/kendo-react-grid.js +1 -1
- package/index.d.mts +325 -5
- package/index.d.ts +325 -5
- package/index.js +1 -1
- package/index.mjs +62 -58
- package/messages/index.js +2 -1
- package/messages/index.mjs +57 -48
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +17 -16
- package/toolbar-tools/GridToolbarAI.js +9 -0
- package/toolbar-tools/GridToolbarAI.mjs +187 -0
- package/toolbar-tools/ai-tool/GridAIPrompt.js +9 -0
- package/toolbar-tools/ai-tool/GridAIPrompt.mjs +90 -0
- package/utils/premium.js +1 -1
- package/utils/premium.mjs +11 -10
package/index.d.ts
CHANGED
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
import { AIPromptCardInterface } from '@progress/kendo-react-conversational-ui';
|
|
9
|
+
import { AIPromptOutputInterface } from '@progress/kendo-react-conversational-ui';
|
|
10
|
+
import { AxiosRequestConfig } from 'axios';
|
|
11
|
+
import { AxiosResponse } from 'axios';
|
|
8
12
|
import { BaseEvent } from '@progress/kendo-react-common';
|
|
9
13
|
import { ButtonProps } from '@progress/kendo-react-buttons';
|
|
10
14
|
import { CellProps } from '@progress/kendo-react-data-tools';
|
|
@@ -13,6 +17,7 @@ import { ColumnBaseProps } from '@progress/kendo-react-data-tools';
|
|
|
13
17
|
import { ColumnSortSettings } from '@progress/kendo-react-data-tools';
|
|
14
18
|
import { ComponentType } from 'react';
|
|
15
19
|
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
20
|
+
import { CustomComponent } from '@progress/kendo-react-common';
|
|
16
21
|
import { DataResult } from '@progress/kendo-data-query';
|
|
17
22
|
import { DetailExpandDescriptor } from '@progress/kendo-react-data-tools';
|
|
18
23
|
import { DialogProps } from '@progress/kendo-react-dialogs';
|
|
@@ -20,6 +25,7 @@ import { DragClue } from '@progress/kendo-react-data-tools';
|
|
|
20
25
|
import { DropClue } from '@progress/kendo-react-data-tools';
|
|
21
26
|
import { EditDescriptor } from '@progress/kendo-react-data-tools';
|
|
22
27
|
import { FieldProps } from '@progress/kendo-react-form';
|
|
28
|
+
import { FilterDescriptor } from '@progress/kendo-data-query';
|
|
23
29
|
import { FilterOperator } from '@progress/kendo-react-data-tools';
|
|
24
30
|
import { getSelectedState } from '@progress/kendo-react-data-tools';
|
|
25
31
|
import { getSelectedStateFromKeyDown } from '@progress/kendo-react-data-tools';
|
|
@@ -39,8 +45,10 @@ import { MenuSelectEvent } from '@progress/kendo-react-layout';
|
|
|
39
45
|
import { NavigatableSettings } from '@progress/kendo-react-data-tools';
|
|
40
46
|
import { NormalizedDragEvent } from '@progress/kendo-react-common';
|
|
41
47
|
import { Offset } from '@progress/kendo-react-popup';
|
|
48
|
+
import { outputViewDefaults } from '@progress/kendo-react-conversational-ui';
|
|
42
49
|
import { PagerProps } from '@progress/kendo-react-data-tools';
|
|
43
50
|
import { PagerTargetEvent } from '@progress/kendo-react-data-tools';
|
|
51
|
+
import { promptViewDefaults } from '@progress/kendo-react-conversational-ui';
|
|
44
52
|
import * as React_2 from 'react';
|
|
45
53
|
import { ReactElement } from 'react';
|
|
46
54
|
import { SearchField } from '@progress/kendo-react-data-tools';
|
|
@@ -59,6 +67,7 @@ import { TableKeyDownEvent } from '@progress/kendo-react-data-tools';
|
|
|
59
67
|
import { TableSelectableMode } from '@progress/kendo-react-data-tools';
|
|
60
68
|
import { TableSelectableSettings } from '@progress/kendo-react-data-tools';
|
|
61
69
|
import { TableSelectionChangeEvent } from '@progress/kendo-react-data-tools';
|
|
70
|
+
import { TextAreaProps } from '@progress/kendo-react-inputs';
|
|
62
71
|
import { TextBoxChangeEvent } from '@progress/kendo-react-inputs';
|
|
63
72
|
import { TextBoxProps } from '@progress/kendo-react-inputs';
|
|
64
73
|
import { ToolbarProps } from '@progress/kendo-react-buttons';
|
|
@@ -91,6 +100,28 @@ export declare const cellInputChange: (value: any, e: React_2.SyntheticEvent<any
|
|
|
91
100
|
*/
|
|
92
101
|
export declare const cellOperatorChange: (event: any, currentValue: any, onChange: Function) => void;
|
|
93
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Represents a composite highlight descriptor for a grid.
|
|
105
|
+
* It contains a map of cell identifiers to their highlight status,
|
|
106
|
+
* an array of filter descriptors, and the logical operator used to combine the filters.
|
|
107
|
+
*/
|
|
108
|
+
export declare interface CompositeHighlightDescriptor {
|
|
109
|
+
/**
|
|
110
|
+
* A map of cell identifiers to a boolean indicating whether the cell should be highlighted.
|
|
111
|
+
*/
|
|
112
|
+
cells: {
|
|
113
|
+
[key: string]: boolean;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* An array of filter descriptors representing the filters applied to the grid.
|
|
117
|
+
*/
|
|
118
|
+
filters: FilterDescriptor[];
|
|
119
|
+
/**
|
|
120
|
+
* The logical operator ('and' | 'or') used to combine the filters.
|
|
121
|
+
*/
|
|
122
|
+
logic: 'and' | 'or';
|
|
123
|
+
}
|
|
124
|
+
|
|
94
125
|
/**
|
|
95
126
|
* @hidden
|
|
96
127
|
*/
|
|
@@ -313,6 +344,139 @@ export declare const GRID_PREVENT_SELECTION_ELEMENT = "data-prevent-selection";
|
|
|
313
344
|
/** The attribute required by the Grid selection on Grid `tr` elements. */
|
|
314
345
|
export declare const GRID_ROW_INDEX_ATTRIBUTE = "data-grid-row-index";
|
|
315
346
|
|
|
347
|
+
export declare const GridAIPrompt: (props: GridAIPromptProps) => JSX.Element;
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* Props for the `GridAIPrompt` component, which provides AI-powered prompt and output functionality in a grid toolbar.
|
|
351
|
+
*
|
|
352
|
+
* @example
|
|
353
|
+
* ```tsx
|
|
354
|
+
* <GridAIPrompt
|
|
355
|
+
* promptValue="Summarize this data"
|
|
356
|
+
* outputs={[{ text: "Summary...", ... }]}
|
|
357
|
+
* streaming={true}
|
|
358
|
+
* onPromptRequest={handlePrompt}
|
|
359
|
+
* suggestionsList={["Summarize", "Explain", "Generate chart"]}
|
|
360
|
+
* />
|
|
361
|
+
* ```
|
|
362
|
+
*/
|
|
363
|
+
export declare interface GridAIPromptProps {
|
|
364
|
+
/**
|
|
365
|
+
* List of AI-generated outputs to display.
|
|
366
|
+
*
|
|
367
|
+
* @example
|
|
368
|
+
* outputs={[{ text: "AI output 1" }, { text: "AI output 2" }]}
|
|
369
|
+
*/
|
|
370
|
+
outputs?: AIPromptOutputInterface[];
|
|
371
|
+
/**
|
|
372
|
+
* Indicates whether the prompt is currently streaming or processing.
|
|
373
|
+
*
|
|
374
|
+
* @example
|
|
375
|
+
* streaming={true}
|
|
376
|
+
*/
|
|
377
|
+
streaming?: boolean;
|
|
378
|
+
/**
|
|
379
|
+
* Configuration for the output card displaying AI results.
|
|
380
|
+
*
|
|
381
|
+
* @example
|
|
382
|
+
* outputCard={{ title: "AI Result", content: "..." }}
|
|
383
|
+
*/
|
|
384
|
+
outputCard?: AIPromptCardInterface;
|
|
385
|
+
/**
|
|
386
|
+
* Current value of the prompt input field.
|
|
387
|
+
*
|
|
388
|
+
* @example
|
|
389
|
+
* promptValue="Describe the selected rows"
|
|
390
|
+
*/
|
|
391
|
+
promptValue?: string;
|
|
392
|
+
/**
|
|
393
|
+
* Placeholder text for the prompt input field.
|
|
394
|
+
*
|
|
395
|
+
* @example
|
|
396
|
+
* promptPlaceHolder="Type your question here..."
|
|
397
|
+
*/
|
|
398
|
+
promptPlaceHolder?: string;
|
|
399
|
+
/**
|
|
400
|
+
* Custom component to render the prompt input field.
|
|
401
|
+
*
|
|
402
|
+
* @example
|
|
403
|
+
* promptInput={CustomTextArea}
|
|
404
|
+
*/
|
|
405
|
+
promptInput?: CustomComponent<TextAreaProps>;
|
|
406
|
+
/**
|
|
407
|
+
* Callback fired when the active view changes.
|
|
408
|
+
*
|
|
409
|
+
* @param viewName The name of the new active view.
|
|
410
|
+
* @example
|
|
411
|
+
* onActiveViewChange={(view) => setActiveView(view)}
|
|
412
|
+
*/
|
|
413
|
+
onActiveViewChange?: (viewName: string) => void;
|
|
414
|
+
/**
|
|
415
|
+
* Custom component to render the generate button.
|
|
416
|
+
*
|
|
417
|
+
* @example
|
|
418
|
+
* generateButton={CustomGenerateButton}
|
|
419
|
+
*/
|
|
420
|
+
generateButton?: CustomComponent<ButtonProps>;
|
|
421
|
+
/**
|
|
422
|
+
* Name of the currently active view.
|
|
423
|
+
*
|
|
424
|
+
* @example
|
|
425
|
+
* activeView="prompt"
|
|
426
|
+
*/
|
|
427
|
+
activeView?: string;
|
|
428
|
+
/**
|
|
429
|
+
* Array of toolbar items to display, can include prompt or output view defaults.
|
|
430
|
+
*
|
|
431
|
+
* @example
|
|
432
|
+
* toolbarItems={[promptViewDefaults, outputViewDefaults]}
|
|
433
|
+
*/
|
|
434
|
+
toolbarItems?: Array<typeof promptViewDefaults | typeof outputViewDefaults>;
|
|
435
|
+
/**
|
|
436
|
+
* Callback fired when the user clicks the Copy button in the output card.
|
|
437
|
+
*
|
|
438
|
+
* @example
|
|
439
|
+
* onCopy={() => copyToClipboard()}
|
|
440
|
+
*/
|
|
441
|
+
onCopy?: () => void;
|
|
442
|
+
/**
|
|
443
|
+
* Callback fired when the user rates the output.
|
|
444
|
+
*
|
|
445
|
+
* @example
|
|
446
|
+
* onOutputRating={() => handleRating()}
|
|
447
|
+
*/
|
|
448
|
+
onOutputRating?: () => void;
|
|
449
|
+
/**
|
|
450
|
+
* Callback fired when the user submits a prompt request.
|
|
451
|
+
*
|
|
452
|
+
* @param prompt The prompt text submitted by the user.
|
|
453
|
+
* @example
|
|
454
|
+
* onPromptRequest={(prompt) => sendPrompt(prompt)}
|
|
455
|
+
*/
|
|
456
|
+
onPromptRequest?: (prompt: string) => void;
|
|
457
|
+
/**
|
|
458
|
+
* List of prompt suggestions to display to the user.
|
|
459
|
+
*
|
|
460
|
+
* @example
|
|
461
|
+
* suggestionsList={["Summarize", "Explain", "Generate chart"]}
|
|
462
|
+
*/
|
|
463
|
+
suggestionsList?: string[];
|
|
464
|
+
/**
|
|
465
|
+
* Callback fired when the user cancels the current operation.
|
|
466
|
+
*
|
|
467
|
+
* @example
|
|
468
|
+
* onCancel={() => cancelPrompt()}
|
|
469
|
+
*/
|
|
470
|
+
onCancel?: () => void;
|
|
471
|
+
/**
|
|
472
|
+
* Callback fired when the user closes the current operation.
|
|
473
|
+
*
|
|
474
|
+
* @example
|
|
475
|
+
* onClose={() => closePrompt()}
|
|
476
|
+
*/
|
|
477
|
+
onClose?: () => void;
|
|
478
|
+
}
|
|
479
|
+
|
|
316
480
|
/**
|
|
317
481
|
* @hidden
|
|
318
482
|
*/
|
|
@@ -2070,6 +2234,22 @@ export declare const GridHierarchyCell: (props: {
|
|
|
2070
2234
|
cellProps: GridCellProps;
|
|
2071
2235
|
}) => JSX.Element | null;
|
|
2072
2236
|
|
|
2237
|
+
/**
|
|
2238
|
+
* Represents the object of the `onHighlightChange` Grid event.
|
|
2239
|
+
*/
|
|
2240
|
+
export declare interface GridHighlightChangeEvent {
|
|
2241
|
+
/**
|
|
2242
|
+
* The new highlight descriptor based on the user action.
|
|
2243
|
+
*/
|
|
2244
|
+
highlight: GridHighlightDescriptor;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
export declare interface GridHighlightDescriptor {
|
|
2248
|
+
[id: string]: boolean | {
|
|
2249
|
+
[id: string]: boolean;
|
|
2250
|
+
};
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2073
2253
|
/**
|
|
2074
2254
|
* Represents the object of the `onItemChange` Grid event.
|
|
2075
2255
|
*/
|
|
@@ -2124,6 +2304,10 @@ export declare const gridMessages: {
|
|
|
2124
2304
|
"grid.adaptiveToolbarSortTitle": string;
|
|
2125
2305
|
"grid.adaptiveToolbarGroupTitle": string;
|
|
2126
2306
|
"grid.toolbarSort": string;
|
|
2307
|
+
"grid.toolbarAI": string;
|
|
2308
|
+
"grid.toolbarAIApply": string;
|
|
2309
|
+
"grid.aIResponseData": string;
|
|
2310
|
+
"grid.generatedWithAI": string;
|
|
2127
2311
|
"grid.toolbarGroup": string;
|
|
2128
2312
|
"grid.toolbarFilter": string;
|
|
2129
2313
|
"grid.toolbarColumnsChooser": string;
|
|
@@ -2542,6 +2726,17 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
|
|
|
2542
2726
|
* ```
|
|
2543
2727
|
*/
|
|
2544
2728
|
onFilterChange?: (event: GridFilterChangeEvent) => void;
|
|
2729
|
+
/**
|
|
2730
|
+
* Fires when the Grid highlight is modified. You must handle the event and filter the data.
|
|
2731
|
+
*
|
|
2732
|
+
* @example
|
|
2733
|
+
* ```jsx
|
|
2734
|
+
* <Grid
|
|
2735
|
+
* onHighlightChange={(event) => console.log('Highlight changed:', event.highlight)}
|
|
2736
|
+
* />
|
|
2737
|
+
* ```
|
|
2738
|
+
*/
|
|
2739
|
+
onHighlightChange?: (event: GridHighlightChangeEvent) => void;
|
|
2545
2740
|
/**
|
|
2546
2741
|
* Specifies whether the loader of the Grid will be displayed.
|
|
2547
2742
|
*
|
|
@@ -2834,11 +3029,7 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
|
|
|
2834
3029
|
* <Grid highlight={{ ['item-data-key-id']: { name: true } }} />
|
|
2835
3030
|
* ```
|
|
2836
3031
|
*/
|
|
2837
|
-
highlight?:
|
|
2838
|
-
[id: string]: boolean | {
|
|
2839
|
-
[id: string]: boolean;
|
|
2840
|
-
};
|
|
2841
|
-
};
|
|
3032
|
+
highlight?: GridHighlightDescriptor;
|
|
2842
3033
|
/**
|
|
2843
3034
|
* The default `select` state applied to the Grid when using uncontrolled mode.
|
|
2844
3035
|
*
|
|
@@ -3562,6 +3753,135 @@ export declare const GridToolbar: {
|
|
|
3562
3753
|
displayName: string;
|
|
3563
3754
|
};
|
|
3564
3755
|
|
|
3756
|
+
/**
|
|
3757
|
+
* Represents the GridToolbarAI component.
|
|
3758
|
+
*/
|
|
3759
|
+
export declare const GridToolbarAI: {
|
|
3760
|
+
(props: GridToolbarAIProps): JSX.Element;
|
|
3761
|
+
displayName: string;
|
|
3762
|
+
};
|
|
3763
|
+
|
|
3764
|
+
export declare interface GridToolbarAIProps {
|
|
3765
|
+
/**
|
|
3766
|
+
* Defines the URL to which the request will be sent.
|
|
3767
|
+
*
|
|
3768
|
+
* @example
|
|
3769
|
+
* ```jsx
|
|
3770
|
+
* <GridToolbarAI requestUrl="https://example.com/api/ai" />
|
|
3771
|
+
* ```
|
|
3772
|
+
*/
|
|
3773
|
+
requestUrl?: string;
|
|
3774
|
+
/**
|
|
3775
|
+
* Defines the options for the axios request.
|
|
3776
|
+
*
|
|
3777
|
+
* @example
|
|
3778
|
+
* ```jsx
|
|
3779
|
+
* <GridToolbarAI requestOptions={{ timeout: 5000 }} />
|
|
3780
|
+
* ```
|
|
3781
|
+
*/
|
|
3782
|
+
requestOptions?: AxiosRequestConfig;
|
|
3783
|
+
/**
|
|
3784
|
+
* Called before the request is sent.
|
|
3785
|
+
*
|
|
3786
|
+
* @example
|
|
3787
|
+
* ```jsx
|
|
3788
|
+
* <GridToolbarAI onPromptRequest={(request) => console.log(request)} />
|
|
3789
|
+
* ```
|
|
3790
|
+
*/
|
|
3791
|
+
onPromptRequest?: (request: GridToolbarAIRequestData, isRetry?: boolean) => void;
|
|
3792
|
+
/**
|
|
3793
|
+
* Called when the response is received.
|
|
3794
|
+
*
|
|
3795
|
+
* @example
|
|
3796
|
+
* ```jsx
|
|
3797
|
+
* <GridToolbarAI onResponseSuccess={(response) => console.log(response)} />
|
|
3798
|
+
* ```
|
|
3799
|
+
*/
|
|
3800
|
+
onResponseSuccess?: (response: AxiosResponse<any>) => void;
|
|
3801
|
+
/**
|
|
3802
|
+
* Called when the response returns an error.
|
|
3803
|
+
*
|
|
3804
|
+
* @example
|
|
3805
|
+
* ```jsx
|
|
3806
|
+
* <GridToolbarAI onResponseError={(error) => console.error(error)} />
|
|
3807
|
+
* ```
|
|
3808
|
+
*/
|
|
3809
|
+
onResponseError?: (error: any) => void;
|
|
3810
|
+
/**
|
|
3811
|
+
* Defines the user role for the request. Defaults to 'user'.
|
|
3812
|
+
*
|
|
3813
|
+
* @example
|
|
3814
|
+
* ```jsx
|
|
3815
|
+
* <GridToolbarAI role="admin" />
|
|
3816
|
+
* ```
|
|
3817
|
+
*/
|
|
3818
|
+
role?: string;
|
|
3819
|
+
/**
|
|
3820
|
+
* Customizes the AI prompt component.
|
|
3821
|
+
*
|
|
3822
|
+
* @example
|
|
3823
|
+
* ```jsx
|
|
3824
|
+
* <GridToolbarAI gridAIPrompt={MyCustomPromptComponent} />
|
|
3825
|
+
* ```
|
|
3826
|
+
*/
|
|
3827
|
+
gridAIPrompt?: CustomComponent<GridAIPromptProps>;
|
|
3828
|
+
/**
|
|
3829
|
+
* Defines the icon rendered in the GridToolbarAI tool ([see example]({% slug overview_icon %})).
|
|
3830
|
+
*
|
|
3831
|
+
* @example
|
|
3832
|
+
* ```jsx
|
|
3833
|
+
* <GridToolbarAI icon="home" />
|
|
3834
|
+
* ```
|
|
3835
|
+
*/
|
|
3836
|
+
icon?: string;
|
|
3837
|
+
/**
|
|
3838
|
+
* Defines the SVG icon rendered in the GridToolbarAI tool ([see example]({% slug overview_svgicon %})).
|
|
3839
|
+
*
|
|
3840
|
+
* @example
|
|
3841
|
+
* ```jsx
|
|
3842
|
+
* import { gearIcon } from '@progress/kendo-svg-icons';
|
|
3843
|
+
*
|
|
3844
|
+
* <GridToolbarAI svgIcon={gearIcon} />
|
|
3845
|
+
* ```
|
|
3846
|
+
*/
|
|
3847
|
+
svgIcon?: SVGIcon_2;
|
|
3848
|
+
/**
|
|
3849
|
+
* Specifies if the popup will be displayed.
|
|
3850
|
+
*
|
|
3851
|
+
* @example
|
|
3852
|
+
* ```jsx
|
|
3853
|
+
* <GridToolbarAI show={true} />
|
|
3854
|
+
* ```
|
|
3855
|
+
*/
|
|
3856
|
+
show?: boolean;
|
|
3857
|
+
/**
|
|
3858
|
+
* The method that will be called to close the column menu.
|
|
3859
|
+
*
|
|
3860
|
+
* @example
|
|
3861
|
+
* ```jsx
|
|
3862
|
+
* <GridToolbarAI onCloseWindow={() => console.log('close menu');} />
|
|
3863
|
+
* ```
|
|
3864
|
+
*/
|
|
3865
|
+
onCloseWindow?: () => void;
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
export declare interface GridToolbarAIRequestData {
|
|
3869
|
+
role: string;
|
|
3870
|
+
columns: Array<{
|
|
3871
|
+
field: string;
|
|
3872
|
+
}>;
|
|
3873
|
+
headers: Record<string, string>;
|
|
3874
|
+
promptMessage: string;
|
|
3875
|
+
requestOptions: {
|
|
3876
|
+
url?: string;
|
|
3877
|
+
method?: string;
|
|
3878
|
+
withCredentials?: boolean;
|
|
3879
|
+
responseType?: string;
|
|
3880
|
+
cancelToken?: any;
|
|
3881
|
+
[key: string]: any;
|
|
3882
|
+
};
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3565
3885
|
/**
|
|
3566
3886
|
* Represents the GridToolbarCheckboxFilter component.
|
|
3567
3887
|
*/
|
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 G=require("./Grid.js"),a=require("./GridColumn.js"),C=require("./columnMenu/GridColumnMenuWrapper.js"),s=require("./columnMenu/GridColumnMenuGroup.js"),
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const G=require("./Grid.js"),a=require("./GridColumn.js"),C=require("./columnMenu/GridColumnMenuWrapper.js"),s=require("./columnMenu/GridColumnMenuGroup.js"),n=require("./columnMenu/GridColumnMenuSort.js"),o=require("./columnMenu/GridColumnMenuFilter.js"),c=require("./columnMenu/GridColumnMenuFilterUI.js"),m=require("./columnMenu/GridColumnMenuFilterCell.js"),p=require("./columnMenu/GridColumnMenuCheckboxFilter.js"),M=require("./columnMenu/GridColumnMenuColumnsList.js"),g=require("./columnMenu/GridColumnMenuColumnsChooser.js"),T=require("./cells/datacell/GridCell.js"),q=require("./cells/editcell/GridEditCell.js"),I=require("./cells/groupcell/GridGroupCell.js"),b=require("./cells/hierarchycell/GridHierarchyCell.js"),S=require("./cells/GridFilterCell.js"),F=require("./header/GridHeaderCell.js"),E=require("./cells/selectioncell/GridSelectionCell.js"),P=require("./rows/GridDetailRow.js"),h=require("./rows/GridRow.js"),x=require("./GridToolbar.js"),D=require("./toolbar-tools/GridToolbarSpacer.js"),R=require("./toolbar-tools/GridToolbarSeparator.js"),_=require("./toolbar-tools/GridToolbarCheckboxFilter.js"),B=require("./toolbar-tools/GridToolbarColumnsChooser.js"),N=require("./toolbar-tools/GridToolbarFilter.js"),f=require("./toolbar-tools/GridToolbarSort.js"),A=require("./toolbar-tools/GridToolbarGroup.js"),L=require("./toolbar-tools/GridToolbarAI.js"),O=require("./toolbar-tools/ai-tool/GridAIPrompt.js"),y=require("./components/noRecords/GridNoRecords.js"),w=require("./columnMenu/GridColumnMenuItem.js"),k=require("./columnMenu/GridColumnMenuItemContent.js"),v=require("./columnMenu/GridColumnMenuItemGroup.js"),i=require("./constants/index.js"),t=require("@progress/kendo-react-data-tools"),U=require("./drag/CommonDragLogic.js"),r=require("./filterCommon.js"),e=require("./messages/index.js"),l=require("./StatusBar.js"),u=require("./contextMenu/GridContextMenu.js"),d=require("./contextMenu/enums.js"),H=require("./GridSearchBox.js"),W=require("./GridPdfExportButton.js");exports.Grid=G.Grid;exports.GridColumn=a.GridColumn;exports.GridColumnMenuWrapper=C.GridColumnMenuWrapper;exports.GridColumnMenuGroup=s.GridColumnMenuGroup;exports.GridColumnMenuSort=n.GridColumnMenuSort;exports.isColumnMenuSortActive=n.isColumnMenuSortActive;exports.GridColumnMenuFilter=o.GridColumnMenuFilter;exports.filterGroupByField=o.filterGroupByField;exports.isColumnMenuFilterActive=o.isColumnMenuFilterActive;exports.rootFilterOrDefault=o.rootFilterOrDefault;exports.GridColumnMenuFilterUI=c.GridColumnMenuFilterUI;exports.GridColumnMenuFilterCell=m.GridColumnMenuFilterCell;exports.GridColumnMenuCheckboxFilter=p.GridColumnMenuCheckboxFilter;exports.GridColumnMenuColumnsList=M.GridColumnMenuColumnsList;exports.GridColumnMenuColumnsChooser=g.GridColumnMenuColumnsChooser;exports.GridCell=T.GridCell;exports.GridEditCell=q.GridEditCell;exports.GridGroupCell=I.GridGroupCell;exports.GridHierarchyCell=b.GridHierarchyCell;exports.GridFilterCell=S.GridFilterCell;exports.GridHeaderCell=F.GridHeaderCell;exports.GridSelectionCell=E.GridSelectionCell;exports.GridDetailRow=P.GridDetailRow;exports.GridRow=h.GridRow;exports.GridToolbar=x.GridToolbar;exports.GridToolbarSpacer=D.GridToolbarSpacer;exports.GridToolbarSeparator=R.GridToolbarSeparator;exports.GridToolbarCheckboxFilter=_.GridToolbarCheckboxFilter;exports.GridToolbarColumnsChooser=B.GridToolbarColumnsChooser;exports.GridToolbarFilter=N.GridToolbarFilter;exports.GridToolbarSort=f.GridToolbarSort;exports.GridToolbarGroup=A.GridToolbarGroup;exports.GridToolbarAI=L.GridToolbarAI;exports.GridAIPrompt=O.GridAIPrompt;exports.GridNoRecords=y.GridNoRecords;exports.GridColumnMenuItem=w.GridColumnMenuItem;exports.GridColumnMenuItemContent=k.GridColumnMenuItemContent;exports.GridColumnMenuItemGroup=v.GridColumnMenuItemGroup;exports.GRID_COL_INDEX_ATTRIBUTE=i.GRID_COL_INDEX_ATTRIBUTE;exports.GRID_PREVENT_SELECTION_ELEMENT=i.GRID_PREVENT_SELECTION_ELEMENT;exports.GRID_ROW_INDEX_ATTRIBUTE=i.GRID_ROW_INDEX_ATTRIBUTE;Object.defineProperty(exports,"getSelectedState",{enumerable:!0,get:()=>t.getSelectedState});Object.defineProperty(exports,"getSelectedStateFromKeyDown",{enumerable:!0,get:()=>t.getSelectedStateFromKeyDown});Object.defineProperty(exports,"setSelectedState",{enumerable:!0,get:()=>t.setSelectedState});exports.GridCommonDragLogic=U.CommonDragLogic;exports.booleanFilterValues=r.booleanFilterValues;exports.cellBoolDropdownChange=r.cellBoolDropdownChange;exports.cellInputChange=r.cellInputChange;exports.cellOperatorChange=r.cellOperatorChange;exports.operators=r.operators;exports.gridMessages=e.messages;exports.pagerFirstPage=e.pagerFirstPage;exports.pagerInfo=e.pagerInfo;exports.pagerItemPerPage=e.pagerItemPerPage;exports.pagerLastPage=e.pagerLastPage;exports.pagerNextPage=e.pagerNextPage;exports.pagerPreviousPage=e.pagerPreviousPage;exports.StatusBar=l.StatusBar;exports.getStatusData=l.getStatusData;exports.leafColumns=l.leafColumns;exports.GridContextMenu=u.GridContextMenu;exports.contextMenuItemsMap=u.contextMenuItemsMap;exports.GridContextMenuAnchorPart=d.GridContextMenuAnchorPart;exports.GridContextMenuItemNames=d.GridContextMenuItemNames;exports.GridSearchBox=H.GridSearchBox;exports.GridPdfExportButton=W.GridPdfExportButton;
|
package/index.mjs
CHANGED
|
@@ -9,17 +9,17 @@ import { Grid as e } from "./Grid.mjs";
|
|
|
9
9
|
import { GridColumn as m } from "./GridColumn.mjs";
|
|
10
10
|
import { GridColumnMenuWrapper as i } from "./columnMenu/GridColumnMenuWrapper.mjs";
|
|
11
11
|
import { GridColumnMenuGroup as n } from "./columnMenu/GridColumnMenuGroup.mjs";
|
|
12
|
-
import { GridColumnMenuSort as x, isColumnMenuSortActive as
|
|
13
|
-
import { GridColumnMenuFilter as
|
|
12
|
+
import { GridColumnMenuSort as x, isColumnMenuSortActive as d } from "./columnMenu/GridColumnMenuSort.mjs";
|
|
13
|
+
import { GridColumnMenuFilter as u, filterGroupByField as G, isColumnMenuFilterActive as C, rootFilterOrDefault as s } from "./columnMenu/GridColumnMenuFilter.mjs";
|
|
14
14
|
import { GridColumnMenuFilterUI as M } from "./columnMenu/GridColumnMenuFilterUI.mjs";
|
|
15
15
|
import { GridColumnMenuFilterCell as I } from "./columnMenu/GridColumnMenuFilterCell.mjs";
|
|
16
16
|
import { GridColumnMenuCheckboxFilter as S } from "./columnMenu/GridColumnMenuCheckboxFilter.mjs";
|
|
17
17
|
import { GridColumnMenuColumnsList as F } from "./columnMenu/GridColumnMenuColumnsList.mjs";
|
|
18
|
-
import { GridColumnMenuColumnsChooser as
|
|
19
|
-
import { GridCell as
|
|
18
|
+
import { GridColumnMenuColumnsChooser as D } from "./columnMenu/GridColumnMenuColumnsChooser.mjs";
|
|
19
|
+
import { GridCell as h } from "./cells/datacell/GridCell.mjs";
|
|
20
20
|
import { GridEditCell as _ } from "./cells/editcell/GridEditCell.mjs";
|
|
21
|
-
import { GridGroupCell as
|
|
22
|
-
import { GridHierarchyCell as
|
|
21
|
+
import { GridGroupCell as A } from "./cells/groupcell/GridGroupCell.mjs";
|
|
22
|
+
import { GridHierarchyCell as L } from "./cells/hierarchycell/GridHierarchyCell.mjs";
|
|
23
23
|
import { GridFilterCell as w } from "./cells/GridFilterCell.mjs";
|
|
24
24
|
import { GridHeaderCell as y } from "./header/GridHeaderCell.mjs";
|
|
25
25
|
import { GridSelectionCell as k } from "./cells/selectioncell/GridSelectionCell.mjs";
|
|
@@ -33,55 +33,59 @@ import { GridToolbarColumnsChooser as rr } from "./toolbar-tools/GridToolbarColu
|
|
|
33
33
|
import { GridToolbarFilter as er } from "./toolbar-tools/GridToolbarFilter.mjs";
|
|
34
34
|
import { GridToolbarSort as mr } from "./toolbar-tools/GridToolbarSort.mjs";
|
|
35
35
|
import { GridToolbarGroup as ir } from "./toolbar-tools/GridToolbarGroup.mjs";
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
36
|
+
import { GridToolbarAI as nr } from "./toolbar-tools/GridToolbarAI.mjs";
|
|
37
|
+
import { GridAIPrompt as xr } from "./toolbar-tools/ai-tool/GridAIPrompt.mjs";
|
|
38
|
+
import { GridNoRecords as fr } from "./components/noRecords/GridNoRecords.mjs";
|
|
39
|
+
import { GridColumnMenuItem as Gr } from "./columnMenu/GridColumnMenuItem.mjs";
|
|
40
|
+
import { GridColumnMenuItemContent as sr } from "./columnMenu/GridColumnMenuItemContent.mjs";
|
|
41
|
+
import { GridColumnMenuItemGroup as Mr } from "./columnMenu/GridColumnMenuItemGroup.mjs";
|
|
42
|
+
import { GRID_COL_INDEX_ATTRIBUTE as Ir, GRID_PREVENT_SELECTION_ELEMENT as Tr, GRID_ROW_INDEX_ATTRIBUTE as Sr } from "./constants/index.mjs";
|
|
43
|
+
import { getSelectedState as Fr, getSelectedStateFromKeyDown as br, setSelectedState as Dr } from "@progress/kendo-react-data-tools";
|
|
44
|
+
import { CommonDragLogic as hr } from "./drag/CommonDragLogic.mjs";
|
|
45
|
+
import { booleanFilterValues as _r, cellBoolDropdownChange as Nr, cellInputChange as Ar, cellOperatorChange as Br, operators as Lr } from "./filterCommon.mjs";
|
|
46
|
+
import { messages as wr, pagerFirstPage as vr, pagerInfo as yr, pagerItemPerPage as Ur, pagerLastPage as kr, pagerNextPage as Hr, pagerPreviousPage as Vr } from "./messages/index.mjs";
|
|
47
|
+
import { StatusBar as Xr, getStatusData as Kr, leafColumns as jr } from "./StatusBar.mjs";
|
|
48
|
+
import { GridContextMenu as zr, contextMenuItemsMap as Jr } from "./contextMenu/GridContextMenu.mjs";
|
|
49
|
+
import { GridContextMenuAnchorPart as Yr, GridContextMenuItemNames as Zr } from "./contextMenu/enums.mjs";
|
|
50
|
+
import { GridSearchBox as ro } from "./GridSearchBox.mjs";
|
|
51
|
+
import { GridPdfExportButton as eo } from "./GridPdfExportButton.mjs";
|
|
50
52
|
export {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
53
|
+
Ir as GRID_COL_INDEX_ATTRIBUTE,
|
|
54
|
+
Tr as GRID_PREVENT_SELECTION_ELEMENT,
|
|
55
|
+
Sr as GRID_ROW_INDEX_ATTRIBUTE,
|
|
54
56
|
e as Grid,
|
|
55
|
-
|
|
57
|
+
xr as GridAIPrompt,
|
|
58
|
+
h as GridCell,
|
|
56
59
|
m as GridColumn,
|
|
57
60
|
S as GridColumnMenuCheckboxFilter,
|
|
58
|
-
|
|
61
|
+
D as GridColumnMenuColumnsChooser,
|
|
59
62
|
F as GridColumnMenuColumnsList,
|
|
60
|
-
|
|
63
|
+
u as GridColumnMenuFilter,
|
|
61
64
|
I as GridColumnMenuFilterCell,
|
|
62
65
|
M as GridColumnMenuFilterUI,
|
|
63
66
|
n as GridColumnMenuGroup,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
Gr as GridColumnMenuItem,
|
|
68
|
+
sr as GridColumnMenuItemContent,
|
|
69
|
+
Mr as GridColumnMenuItemGroup,
|
|
67
70
|
x as GridColumnMenuSort,
|
|
68
71
|
i as GridColumnMenuWrapper,
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
72
|
+
hr as GridCommonDragLogic,
|
|
73
|
+
zr as GridContextMenu,
|
|
74
|
+
Yr as GridContextMenuAnchorPart,
|
|
75
|
+
Zr as GridContextMenuItemNames,
|
|
73
76
|
V as GridDetailRow,
|
|
74
77
|
_ as GridEditCell,
|
|
75
78
|
w as GridFilterCell,
|
|
76
|
-
|
|
79
|
+
A as GridGroupCell,
|
|
77
80
|
y as GridHeaderCell,
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
+
L as GridHierarchyCell,
|
|
82
|
+
fr as GridNoRecords,
|
|
83
|
+
eo as GridPdfExportButton,
|
|
81
84
|
X as GridRow,
|
|
82
|
-
|
|
85
|
+
ro as GridSearchBox,
|
|
83
86
|
k as GridSelectionCell,
|
|
84
87
|
j as GridToolbar,
|
|
88
|
+
nr as GridToolbarAI,
|
|
85
89
|
Z as GridToolbarCheckboxFilter,
|
|
86
90
|
rr as GridToolbarColumnsChooser,
|
|
87
91
|
er as GridToolbarFilter,
|
|
@@ -89,27 +93,27 @@ export {
|
|
|
89
93
|
Q as GridToolbarSeparator,
|
|
90
94
|
mr as GridToolbarSort,
|
|
91
95
|
z as GridToolbarSpacer,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
Xr as StatusBar,
|
|
97
|
+
_r as booleanFilterValues,
|
|
98
|
+
Nr as cellBoolDropdownChange,
|
|
99
|
+
Ar as cellInputChange,
|
|
100
|
+
Br as cellOperatorChange,
|
|
101
|
+
Jr as contextMenuItemsMap,
|
|
98
102
|
G as filterGroupByField,
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
+
Fr as getSelectedState,
|
|
104
|
+
br as getSelectedStateFromKeyDown,
|
|
105
|
+
Kr as getStatusData,
|
|
106
|
+
wr as gridMessages,
|
|
103
107
|
C as isColumnMenuFilterActive,
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
108
|
+
d as isColumnMenuSortActive,
|
|
109
|
+
jr as leafColumns,
|
|
110
|
+
Lr as operators,
|
|
111
|
+
vr as pagerFirstPage,
|
|
112
|
+
yr as pagerInfo,
|
|
113
|
+
Ur as pagerItemPerPage,
|
|
114
|
+
kr as pagerLastPage,
|
|
115
|
+
Hr as pagerNextPage,
|
|
116
|
+
Vr as pagerPreviousPage,
|
|
113
117
|
s as rootFilterOrDefault,
|
|
114
|
-
|
|
118
|
+
Dr as setSelectedState
|
|
115
119
|
};
|
package/messages/index.js
CHANGED
|
@@ -5,4 +5,5 @@
|
|
|
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="grid.noRecords",t="grid.pagerInfo",r="grid.pagerFirstPage",o="grid.pagerPreviousPage",l="grid.pagerNextPage",
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="grid.noRecords",t="grid.pagerInfo",r="grid.pagerFirstPage",o="grid.pagerPreviousPage",l="grid.pagerNextPage",a="grid.pagerLastPage",i="grid.pagerItemsPerPage",n="grid.pagerPage",s="grid.pagerPageSizeAriaLabel",g="grid.pagerOf",p="grid.pagerTotalPages",d="grid.groupPanelEmpty",u="grid.groupColumn",c="grid.ungroupColumn",C="grid.columnMenu",f="grid.filterApplyButton",m="grid.filterClearButton",b="grid.filterClearAllButton",h="grid.filterResetButton",A="grid.filterSubmitButton",P="grid.filterTitle",I="grid.sortAscending",T="grid.sortDescending",S="grid.sortClearButton",B="grid.sortApplyButton",y="grid.searchPlaceholder",O="grid.searchboxPlaceholder",v="grid.exportPDF",D="grid.filterCheckAll",F="grid.filterChooseOperator",x="grid.filterSelectAll",L="grid.filterSelectedItems",R="grid.sortAriaLabel",M="grid.editDialogTitle",E="grid.editDialogSaveButtonTitle",G="grid.editDialogCancelButtonTitle",w="grid.filterAriaLabel",k="grid.groupPanelAriaLabel",q="grid.groupExpand",N="grid.groupCollapse",W="grid.groupClearButton",z="grid.groupApplyButton",j="grid.detailExpand",U="grid.detailCollapse",H="grid.selectRow",J="grid.gridAriaLabel",K="grid.gridRowReorderAriaLabel",Q="grid.gridAdaptiveColumnMenuFilterTitle",V="grid.columnMenuColumnChooserTitle",X="grid.columnMenuColumnChooserSelectedItems",Y="grid.adaptiveColumnMenuChooserTitle",Z="grid.adaptiveColumnMenuChooserSubTitle",_="grid.columnChooserApplyButton",$="grid.columnChooserResetButton",ee="grid.adaptiveColumnMenuCheckboxFilterTitle",te="grid.adaptiveToolbarSortTitle",re="grid.adaptiveToolbarGroupTitle",oe="grid.toolbarSort",le="grid.toolbarAI",ae="grid.aIResponseData",ie="grid.generatedWithAI",ne="grid.toolbarAIApply",se="grid.toolbarGroup",ge="grid.toolbarFilter",pe="grid.toolbarColumnsChooser",de="grid.toolbarCheckboxFilter",ue={[j]:"Expand detail row",[U]:"Collapse detail row",[q]:"Expand group",[N]:"Collapse Group",[W]:"Clear grouping",[z]:"Done",[e]:"No records available",[d]:"Drag a column header and drop it here to group by that column",[f]:"Apply",[m]:"Clear",[b]:"Clear all filters",[h]:"Reset",[A]:"Filter",[P]:"Filter",[I]:"Sort Ascending",[T]:"Sort Descending",[S]:"Clear sorting",[B]:"Done",[R]:"Sortable",[te]:"Sort by",[re]:"Group by",[oe]:"Sort",[le]:"AI Assistant",[ne]:"Apply",[ae]:`Operation is successful. Data is:
|
|
9
|
+
`,[ie]:"Generated with AI",[se]:"Group",[ge]:"Filter",[pe]:"Columns",[de]:"Filter",[u]:"Group Column",[c]:"Ungroup Column",[C]:"Column menu",[i]:"items per page",[t]:"{0} - {1} of {2} items",[r]:"Go to the first page",[o]:"Go to the previous page",[l]:"Go to the next page",[a]:"Go to the last page",[n]:"Page",[s]:"Page size",[g]:"of",[p]:"{0}",[y]:"Search",[O]:"Search...",[v]:"Export PDF",[D]:"Check All",[M]:"Edit Dialog",[E]:"Save",[G]:"Cancel",[F]:"Choose Operator",[L]:"selected items",[x]:"Select All",[w]:"Filter",[k]:"Group panel",[J]:"Table",[K]:"Drag row",[H]:"Select Row",[V]:"Columns Chooser",[Q]:"Filter by",[Y]:"Columns Chooser",[Z]:"Selected fields are visible",[ee]:"Filter by",[X]:"Selected items",[_]:"Apply",[$]:"Reset","grid.filterEqOperator":"Is equal to","grid.filterNotEqOperator":"Is not equal to","grid.filterIsNullOperator":"Is null","grid.filterIsNotNullOperator":"Is not null","grid.filterIsEmptyOperator":"Is empty","grid.filterIsNotEmptyOperator":"Is not empty","grid.filterStartsWithOperator":"Starts with","grid.filterContainsOperator":"Contains","grid.filterNotContainsOperator":"Does not contain","grid.filterEndsWithOperator":"Ends with","grid.filterGteOperator":"Is greater than or equal to","grid.filterGtOperator":"Is greater than","grid.filterLteOperator":"Is less than or equal to","grid.filterLtOperator":"Is less than","grid.filterIsTrue":"Is true","grid.filterIsFalse":"Is false","grid.filterBooleanAll":"(All)","grid.filterAfterOrEqualOperator":"Is after or equal to","grid.filterAfterOperator":"Is after","grid.filterBeforeOperator":"Is before","grid.filterBeforeOrEqualOperator":"Is before or equal to","grid.filterAndLogic":"And","grid.filterOrLogic":"Or"};exports.aIResponseData=ae;exports.adaptiveColumnMenuCheckboxFilterTitle=ee;exports.adaptiveColumnMenuChooserSubTitle=Z;exports.adaptiveColumnMenuChooserTitle=Y;exports.adaptiveColumnMenuFilterTitle=Q;exports.adaptiveToolbarGroupTitle=re;exports.adaptiveToolbarSortTitle=te;exports.columnChooserApplyButton=_;exports.columnChooserResetButton=$;exports.columnMenu=C;exports.columnMenuColumnChooserSelectedItems=X;exports.columnMenuColumnChooserTitle=V;exports.detailCollapse=U;exports.detailExpand=j;exports.editDialogCancelButtonTitle=G;exports.editDialogSaveButtonTitle=E;exports.editDialogTitle=M;exports.exportPDF=v;exports.filterApplyButton=f;exports.filterAriaLabel=w;exports.filterCheckAll=D;exports.filterChooseOperator=F;exports.filterClearAllButton=b;exports.filterClearButton=m;exports.filterResetButton=h;exports.filterSelectAll=x;exports.filterSelectedItems=L;exports.filterSubmitButton=A;exports.filterTitle=P;exports.generatedWithAI=ie;exports.gridAriaLabel=J;exports.gridRowReorderAriaLabel=K;exports.groupApplyButton=z;exports.groupClearButton=W;exports.groupCollapse=N;exports.groupColumn=u;exports.groupExpand=q;exports.groupPanelAriaLabel=k;exports.groupPanelEmpty=d;exports.messages=ue;exports.noRecords=e;exports.pagerFirstPage=r;exports.pagerInfo=t;exports.pagerItemPerPage=i;exports.pagerLastPage=a;exports.pagerNextPage=l;exports.pagerOf=g;exports.pagerPage=n;exports.pagerPageSizeAriaLabel=s;exports.pagerPreviousPage=o;exports.pagerTotalPages=p;exports.searchPlaceholder=y;exports.searchboxPlaceholder=O;exports.selectRow=H;exports.sortApplyButton=B;exports.sortAriaLabel=R;exports.sortAscending=I;exports.sortClearButton=S;exports.sortDescending=T;exports.toolbarAI=le;exports.toolbarAIApply=ne;exports.toolbarCheckboxFilter=de;exports.toolbarColumnsChooser=pe;exports.toolbarFilter=ge;exports.toolbarGroup=se;exports.toolbarSort=oe;exports.ungroupColumn=c;
|