@progress/kendo-react-grid 13.4.0-develop.5 → 14.0.0-develop.2
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/BaseCSVExport.d.ts +31 -0
- package/BaseCSVExport.js +8 -0
- package/BaseCSVExport.mjs +82 -0
- package/Grid.d.ts +33 -0
- package/GridClientWrapper.js +1 -1
- package/GridClientWrapper.mjs +313 -289
- package/GridComponent.js +1 -1
- package/GridComponent.mjs +247 -252
- package/GridCsvExportButton.d.ts +13 -0
- package/GridCsvExportButton.js +8 -0
- package/GridCsvExportButton.mjs +35 -0
- package/columnMenu/GridColumnMenuFilter.mjs +2 -2
- package/columnMenu/adaptiveContent/GridAdaptiveColumnMenu.js +1 -1
- package/columnMenu/adaptiveContent/GridAdaptiveColumnMenu.mjs +4 -4
- package/components/noRecords/GridNoRecordsContainer.mjs +1 -1
- package/constants/index.mjs +2 -2
- package/dist/cdn/js/kendo-react-grid.js +1 -1
- package/hooks/index.d.ts +8 -0
- package/hooks/useGridAIRequest.d.ts +150 -0
- package/hooks/useGridAIRequest.js +8 -0
- package/hooks/useGridAIRequest.mjs +93 -0
- package/index.d.mts +5 -2
- package/index.d.ts +5 -2
- package/index.js +1 -1
- package/index.mjs +71 -63
- package/interfaces/GridProps.d.ts +81 -0
- package/messages/index.d.ts +80 -0
- package/messages/index.js +2 -2
- package/messages/index.mjs +126 -94
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +1 -1
- package/package.json +19 -19
- package/toolbar-tools/GridToolbarAIAssistant.d.ts +2 -34
- package/toolbar-tools/GridToolbarAIAssistant.js +2 -2
- package/toolbar-tools/GridToolbarAIAssistant.mjs +167 -164
- package/toolbar-tools/GridToolbarFilter.mjs +5 -5
- package/toolbar-tools/smartbox/SegmentedControl.d.ts +13 -0
- package/toolbar-tools/smartbox/SegmentedControl.js +8 -0
- package/toolbar-tools/smartbox/SegmentedControl.mjs +109 -0
- package/toolbar-tools/smartbox/SmartBox.d.ts +20 -0
- package/toolbar-tools/smartbox/SmartBox.js +8 -0
- package/toolbar-tools/smartbox/SmartBox.mjs +380 -0
- package/toolbar-tools/smartbox/defaultConfigs.d.ts +30 -0
- package/toolbar-tools/smartbox/defaultConfigs.js +8 -0
- package/toolbar-tools/smartbox/defaultConfigs.mjs +36 -0
- package/toolbar-tools/smartbox/hooks/index.d.ts +17 -0
- package/toolbar-tools/smartbox/hooks/useDebounce.d.ts +11 -0
- package/toolbar-tools/smartbox/hooks/useDebounce.js +9 -0
- package/toolbar-tools/smartbox/hooks/useDebounce.mjs +21 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxGridState.d.ts +245 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxGridState.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxGridState.mjs +54 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxHistory.d.ts +80 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxHistory.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxHistory.mjs +66 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxInput.d.ts +96 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxLabels.d.ts +93 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxLabels.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxLabels.mjs +61 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxListData.d.ts +163 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxListData.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxListData.mjs +102 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxModes.d.ts +115 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxModes.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxModes.mjs +65 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxPopup.d.ts +56 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxPopup.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxPopup.mjs +25 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxSearch.d.ts +82 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxSearch.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxSearch.mjs +67 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxSegmentedControl.d.ts +70 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxSegmentedControl.js +9 -0
- package/toolbar-tools/smartbox/hooks/useSmartBoxSegmentedControl.mjs +57 -0
- package/toolbar-tools/smartbox/index.d.ts +10 -0
- package/toolbar-tools/smartbox/interfaces/SearchTypes.d.ts +45 -0
- package/toolbar-tools/smartbox/interfaces/SegmentedControlTypes.d.ts +66 -0
- package/toolbar-tools/smartbox/interfaces/SmartBoxTypes.d.ts +461 -0
- package/toolbar-tools/smartbox/interfaces/index.d.ts +11 -0
- package/toolbar-tools/smartbox/interfaces/utilTypes.d.ts +25 -0
- package/toolbar-tools/smartbox/listItemRenders.d.ts +165 -0
- package/toolbar-tools/smartbox/listItemRenders.js +8 -0
- package/toolbar-tools/smartbox/listItemRenders.mjs +68 -0
- package/toolbar-tools/smartbox/utils.d.ts +14 -0
- package/toolbar-tools/smartbox/utils.js +8 -0
- package/toolbar-tools/smartbox/utils.mjs +14 -0
- package/utils/dataProcessing.d.ts +67 -0
- package/utils/dataProcessing.js +8 -0
- package/utils/dataProcessing.mjs +49 -0
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { ComponentType } from 'react';
|
|
9
9
|
import { DataResult, SortDescriptor, CompositeFilterDescriptor, GroupDescriptor } from '@progress/kendo-data-query';
|
|
10
|
+
import { CSVExportOptions } from '@progress/kendo-csv';
|
|
10
11
|
import { GridGroupableSettings } from './GridGroupableSettings.js';
|
|
11
12
|
import { GridSortChangeEvent, GridFilterChangeEvent, GridPageChangeEvent, GridSelectionChangeEvent, GridHeaderSelectionChangeEvent, GridRowClickEvent, GridItemChangeEvent, GridDataStateChangeEvent, GridColumnResizeEvent, GridColumnReorderEvent, GridGroupChangeEvent, GridEvent, GridRowDoubleClickEvent, GridNavigationActionEvent, GridKeyDownEvent, GridContextMenuEvent, GridContextMenuItemClickEvent, GridEditChangeEvent, GridDetailExpandChangeEvent, GridGroupExpandChangeEvent, GridRowReorderEvent, GridSearchChangeEvent, GridColumnsStateChangeEvent, GridHighlightChangeEvent } from './events.js';
|
|
12
13
|
import { ScrollMode } from '../ScrollMode.js';
|
|
@@ -30,6 +31,60 @@ import { GridColumnState } from './GridColumnState.js';
|
|
|
30
31
|
import { GridEditDialogProps } from './GridEditDialogProps.js';
|
|
31
32
|
import { GridHighlightDescriptor } from './GridHighlightDescriptor.js';
|
|
32
33
|
import { GridDataLayoutMode, GridStackedLayoutSettings } from './GridStackedLayoutSettings.js';
|
|
34
|
+
/**
|
|
35
|
+
* Represents the CSV export options for the Grid component.
|
|
36
|
+
* Extends CSVExportOptions from @progress/kendo-csv with all properties optional.
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```tsx
|
|
40
|
+
* <Grid csv={{
|
|
41
|
+
* fileName: 'export.csv',
|
|
42
|
+
* preventFormulaInjection: true,
|
|
43
|
+
* keys: ['ProductID', 'ProductName'],
|
|
44
|
+
* names: ['ID', 'Name']
|
|
45
|
+
* }} />
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
export interface GridCSVExportOptions extends Omit<Partial<CSVExportOptions>, 'data'> {
|
|
49
|
+
/**
|
|
50
|
+
* Specifies the name of the exported CSV file.
|
|
51
|
+
*
|
|
52
|
+
* @default "grid-export.csv"
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* ```tsx
|
|
56
|
+
* <Grid csv={{ fileName: 'my-data.csv' }} />
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
fileName?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Optional data to export to CSV instead of using the Grid's data prop.
|
|
62
|
+
* Useful when you want to export different data than what's displayed in the Grid.
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* ```tsx
|
|
66
|
+
* <Grid csv={{ data: customExportData, fileName: 'export.csv' }} />
|
|
67
|
+
* ```
|
|
68
|
+
*/
|
|
69
|
+
data?: any[] | DataResult | null;
|
|
70
|
+
/**
|
|
71
|
+
* Specifies whether to export all pages or only the current page when paging is enabled.
|
|
72
|
+
* When `true`, exports all data ignoring pagination.
|
|
73
|
+
* When `false`, exports only the current page of data.
|
|
74
|
+
*
|
|
75
|
+
* @default true
|
|
76
|
+
*
|
|
77
|
+
* @example
|
|
78
|
+
* ```tsx
|
|
79
|
+
* // Export only the current page
|
|
80
|
+
* <Grid csv={{ allPages: false }} />
|
|
81
|
+
*
|
|
82
|
+
* // Export all pages (default behavior)
|
|
83
|
+
* <Grid csv={{ allPages: true }} />
|
|
84
|
+
* ```
|
|
85
|
+
*/
|
|
86
|
+
allPages?: boolean;
|
|
87
|
+
}
|
|
33
88
|
/**
|
|
34
89
|
* Represents the props of the [KendoReact Grid component](https://www.telerik.com/kendo-react-ui/components/grid).
|
|
35
90
|
*/
|
|
@@ -410,6 +465,32 @@ export interface GridProps extends KendoReactComponentBaseProps {
|
|
|
410
465
|
onPdfExport?: (event: {
|
|
411
466
|
target: HTMLDivElement;
|
|
412
467
|
}) => Promise<void>;
|
|
468
|
+
/**
|
|
469
|
+
* Enables CSV export functionality when set to `true` or provides CSV export configuration options.
|
|
470
|
+
*
|
|
471
|
+
* @example
|
|
472
|
+
* ```jsx
|
|
473
|
+
* <Grid csv={true} />
|
|
474
|
+
* ```
|
|
475
|
+
*
|
|
476
|
+
* @example
|
|
477
|
+
* ```jsx
|
|
478
|
+
* <Grid csv={{ delimiter: ';', includeUTF8BOM: true, preventFormulaInjection: true }} />
|
|
479
|
+
* ```
|
|
480
|
+
*/
|
|
481
|
+
csv?: boolean | GridCSVExportOptions;
|
|
482
|
+
/**
|
|
483
|
+
* Fires when the user clicks the CSV export button.
|
|
484
|
+
* Allows custom data transformation before export.
|
|
485
|
+
*
|
|
486
|
+
* @example
|
|
487
|
+
* ```jsx
|
|
488
|
+
* <Grid onCsvExport={(data) => {
|
|
489
|
+
* return data.filter(item => item.active);
|
|
490
|
+
* }} />
|
|
491
|
+
* ```
|
|
492
|
+
*/
|
|
493
|
+
onCsvExport?: (data: any[]) => any[];
|
|
413
494
|
/**
|
|
414
495
|
* Alias for the `pageSize` property. If `take` is set, `pageSize` will be ignored.
|
|
415
496
|
*
|
package/messages/index.d.ts
CHANGED
|
@@ -117,6 +117,10 @@ export declare const searchboxPlaceholder = "grid.searchboxPlaceholder";
|
|
|
117
117
|
* @hidden
|
|
118
118
|
*/
|
|
119
119
|
export declare const exportPDF = "grid.exportPDF";
|
|
120
|
+
/**
|
|
121
|
+
* @hidden
|
|
122
|
+
*/
|
|
123
|
+
export declare const exportCSV = "grid.exportCSV";
|
|
120
124
|
/**
|
|
121
125
|
* @hidden
|
|
122
126
|
*/
|
|
@@ -269,6 +273,66 @@ export declare const toolbarColumnsChooser = "grid.toolbarColumnsChooser";
|
|
|
269
273
|
* @hidden
|
|
270
274
|
*/
|
|
271
275
|
export declare const toolbarCheckboxFilter = "grid.toolbarCheckboxFilter";
|
|
276
|
+
/**
|
|
277
|
+
* @hidden
|
|
278
|
+
*/
|
|
279
|
+
export declare const smartBoxSearchPlaceholder = "grid.smartBoxSearchPlaceholder";
|
|
280
|
+
/**
|
|
281
|
+
* @hidden
|
|
282
|
+
*/
|
|
283
|
+
export declare const smartBoxSemanticSearchPlaceholder = "grid.smartBoxSemanticSearchPlaceholder";
|
|
284
|
+
/**
|
|
285
|
+
* @hidden
|
|
286
|
+
*/
|
|
287
|
+
export declare const smartBoxAIAssistantPlaceholder = "grid.smartBoxAIAssistantPlaceholder";
|
|
288
|
+
/**
|
|
289
|
+
* @hidden
|
|
290
|
+
*/
|
|
291
|
+
export declare const smartBoxSuggestedPrompts = "grid.smartBoxSuggestedPrompts";
|
|
292
|
+
/**
|
|
293
|
+
* @hidden
|
|
294
|
+
*/
|
|
295
|
+
export declare const smartBoxPreviouslySearched = "grid.smartBoxPreviouslySearched";
|
|
296
|
+
/**
|
|
297
|
+
* @hidden
|
|
298
|
+
*/
|
|
299
|
+
export declare const smartBoxPreviouslyAsked = "grid.smartBoxPreviouslyAsked";
|
|
300
|
+
/**
|
|
301
|
+
* @hidden
|
|
302
|
+
*/
|
|
303
|
+
export declare const smartBoxNoPreviousSearches = "grid.smartBoxNoPreviousSearches";
|
|
304
|
+
/**
|
|
305
|
+
* @hidden
|
|
306
|
+
*/
|
|
307
|
+
export declare const smartBoxNoPreviousPrompts = "grid.smartBoxNoPreviousPrompts";
|
|
308
|
+
/**
|
|
309
|
+
* @hidden
|
|
310
|
+
*/
|
|
311
|
+
export declare const smartBoxClearTitle = "grid.smartBoxClearTitle";
|
|
312
|
+
/**
|
|
313
|
+
* @hidden
|
|
314
|
+
*/
|
|
315
|
+
export declare const smartBoxSubmitPromptButton = "grid.smartBoxSubmitPromptButton";
|
|
316
|
+
/**
|
|
317
|
+
* @hidden
|
|
318
|
+
*/
|
|
319
|
+
export declare const smartBoxSpeechToTextButton = "grid.smartBoxSpeechToTextButton";
|
|
320
|
+
/**
|
|
321
|
+
* @hidden
|
|
322
|
+
*/
|
|
323
|
+
export declare const smartBoxSearchModeText = "grid.smartBoxSearchModeText";
|
|
324
|
+
/**
|
|
325
|
+
* @hidden
|
|
326
|
+
*/
|
|
327
|
+
export declare const smartBoxSearchModeDescription = "grid.smartBoxSearchModeDescription";
|
|
328
|
+
/**
|
|
329
|
+
* @hidden
|
|
330
|
+
*/
|
|
331
|
+
export declare const smartBoxSemanticSearchModeText = "grid.smartBoxSemanticSearchModeText";
|
|
332
|
+
/**
|
|
333
|
+
* @hidden
|
|
334
|
+
*/
|
|
335
|
+
export declare const smartBoxSemanticSearchModeDescription = "grid.smartBoxSemanticSearchModeDescription";
|
|
272
336
|
/**
|
|
273
337
|
* @hidden
|
|
274
338
|
*/
|
|
@@ -319,6 +383,7 @@ export declare const messages: {
|
|
|
319
383
|
"grid.searchPlaceholder": string;
|
|
320
384
|
"grid.searchboxPlaceholder": string;
|
|
321
385
|
"grid.exportPDF": string;
|
|
386
|
+
"grid.exportCSV": string;
|
|
322
387
|
"grid.filterCheckAll": string;
|
|
323
388
|
"grid.editDialogTitle": string;
|
|
324
389
|
"grid.editDialogSaveButtonTitle": string;
|
|
@@ -339,6 +404,21 @@ export declare const messages: {
|
|
|
339
404
|
"grid.columnMenuColumnChooserSelectedItems": string;
|
|
340
405
|
"grid.columnChooserApplyButton": string;
|
|
341
406
|
"grid.columnChooserResetButton": string;
|
|
407
|
+
"grid.smartBoxSearchPlaceholder": string;
|
|
408
|
+
"grid.smartBoxSemanticSearchPlaceholder": string;
|
|
409
|
+
"grid.smartBoxAIAssistantPlaceholder": string;
|
|
410
|
+
"grid.smartBoxSuggestedPrompts": string;
|
|
411
|
+
"grid.smartBoxPreviouslySearched": string;
|
|
412
|
+
"grid.smartBoxPreviouslyAsked": string;
|
|
413
|
+
"grid.smartBoxNoPreviousSearches": string;
|
|
414
|
+
"grid.smartBoxNoPreviousPrompts": string;
|
|
415
|
+
"grid.smartBoxClearTitle": string;
|
|
416
|
+
"grid.smartBoxSubmitPromptButton": string;
|
|
417
|
+
"grid.smartBoxSpeechToTextButton": string;
|
|
418
|
+
"grid.smartBoxSearchModeText": string;
|
|
419
|
+
"grid.smartBoxSearchModeDescription": string;
|
|
420
|
+
"grid.smartBoxSemanticSearchModeText": string;
|
|
421
|
+
"grid.smartBoxSemanticSearchModeDescription": string;
|
|
342
422
|
'grid.filterEqOperator': string;
|
|
343
423
|
'grid.filterNotEqOperator': string;
|
|
344
424
|
'grid.filterIsNullOperator': string;
|
package/messages/index.js
CHANGED
|
@@ -5,5 +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",
|
|
9
|
-
`,[
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="grid.noRecords",t="grid.pagerInfo",r="grid.pagerFirstPage",o="grid.pagerPreviousPage",a="grid.pagerNextPage",l="grid.pagerLastPage",i="grid.pagerItemsPerPage",s="grid.pagerPage",n="grid.pagerPageSizeAriaLabel",g="grid.pagerOf",d="grid.pagerTotalPages",c="grid.groupPanelEmpty",p="grid.groupColumn",u="grid.ungroupColumn",m="grid.columnMenu",h="grid.filterApplyButton",C="grid.filterClearButton",S="grid.filterClearAllButton",B="grid.filterResetButton",x="grid.filterSubmitButton",f="grid.filterTitle",P="grid.sortAscending",A="grid.sortDescending",b="grid.sortClearButton",T="grid.sortApplyButton",I="grid.searchPlaceholder",v="grid.searchboxPlaceholder",y="grid.exportPDF",M="grid.exportCSV",D="grid.filterCheckAll",O="grid.filterChooseOperator",F="grid.filterSelectAll",L="grid.filterSelectedItems",R="grid.sortAriaLabel",E="grid.editDialogTitle",G="grid.editDialogSaveButtonTitle",N="grid.editDialogCancelButtonTitle",k="grid.filterAriaLabel",w="grid.groupPanelAriaLabel",q="grid.groupExpand",W="grid.groupCollapse",z="grid.groupClearButton",V="grid.groupApplyButton",U="grid.detailExpand",j="grid.detailCollapse",H="grid.selectRow",J="grid.gridAriaLabel",K="grid.gridRowReorderAriaLabel",Q="grid.gridAdaptiveColumnMenuFilterTitle",X="grid.columnMenuColumnChooserTitle",Y="grid.columnMenuColumnChooserSelectedItems",Z="grid.adaptiveColumnMenuChooserTitle",_="grid.adaptiveColumnMenuChooserSubTitle",$="grid.columnChooserApplyButton",ee="grid.columnChooserResetButton",te="grid.adaptiveColumnMenuCheckboxFilterTitle",re="grid.adaptiveToolbarSortTitle",oe="grid.adaptiveToolbarGroupTitle",ae="grid.toolbarSort",le="grid.toolbarAI",ie="grid.aIResponseData",se="grid.generatedWithAI",ne="grid.toolbarAIApply",ge="grid.toolbarGroup",de="grid.toolbarFilter",ce="grid.toolbarColumnsChooser",pe="grid.toolbarCheckboxFilter",ue="grid.smartBoxSearchPlaceholder",me="grid.smartBoxSemanticSearchPlaceholder",he="grid.smartBoxAIAssistantPlaceholder",Ce="grid.smartBoxSuggestedPrompts",Se="grid.smartBoxPreviouslySearched",Be="grid.smartBoxPreviouslyAsked",xe="grid.smartBoxNoPreviousSearches",fe="grid.smartBoxNoPreviousPrompts",Pe="grid.smartBoxClearTitle",Ae="grid.smartBoxSubmitPromptButton",be="grid.smartBoxSpeechToTextButton",Te="grid.smartBoxSearchModeText",Ie="grid.smartBoxSearchModeDescription",ve="grid.smartBoxSemanticSearchModeText",ye="grid.smartBoxSemanticSearchModeDescription",Me={[U]:"Expand detail row",[j]:"Collapse detail row",[q]:"Expand group",[W]:"Collapse Group",[z]:"Clear grouping",[V]:"Done",[e]:"No records available",[c]:"Drag a column header and drop it here to group by that column",[h]:"Apply",[C]:"Clear",[S]:"Clear all filters",[B]:"Reset",[x]:"Filter",[f]:"Filter",[P]:"Sort Ascending",[A]:"Sort Descending",[b]:"Clear sorting",[T]:"Done",[R]:"Sortable",[re]:"Sort by",[oe]:"Group by",[ae]:"Sort",[le]:"AI Assistant",[ne]:"Apply",[ie]:`Operation is successful. Data is:
|
|
9
|
+
`,[se]:"Generated with AI",[ge]:"Group",[de]:"Filter",[ce]:"Columns",[pe]:"Filter",[p]:"Group Column",[u]:"Ungroup Column",[m]:"Column menu",[i]:"items per page",[t]:"{0} - {1} of {2} items",[r]:"Go to the first page",[o]:"Go to the previous page",[a]:"Go to the next page",[l]:"Go to the last page",[s]:"Page",[n]:"Page size",[g]:"of",[d]:"{0}",[I]:"Search",[v]:"Search...",[y]:"Export PDF",[M]:"Export CSV",[D]:"Check All",[E]:"Edit Dialog",[G]:"Save",[N]:"Cancel",[O]:"Choose Operator",[L]:"selected items",[F]:"Select All",[k]:"Filter",[w]:"Group panel",[J]:"Table",[K]:"Drag row",[H]:"Select Row",[X]:"Columns Chooser",[Q]:"Filter by",[Z]:"Columns Chooser",[_]:"Selected fields are visible",[te]:"Filter by",[Y]:"Selected items",[$]:"Apply",[ee]:"Reset",[ue]:"Search",[me]:"Semantic Search",[he]:"Sort, filter, or group with AI",[Ce]:"Suggested prompts",[Se]:"Previously searched",[Be]:"Previously asked",[xe]:"No previous searches",[fe]:"No previous prompts",[Pe]:"Clear",[Ae]:"Submit prompt",[be]:"Speech to text",[Te]:"Search",[Ie]:"Looks for exact word matches across your data.",[ve]:"Semantic Search",[ye]:"Understands context to surface the most relevant results.","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=ie;exports.adaptiveColumnMenuCheckboxFilterTitle=te;exports.adaptiveColumnMenuChooserSubTitle=_;exports.adaptiveColumnMenuChooserTitle=Z;exports.adaptiveColumnMenuFilterTitle=Q;exports.adaptiveToolbarGroupTitle=oe;exports.adaptiveToolbarSortTitle=re;exports.columnChooserApplyButton=$;exports.columnChooserResetButton=ee;exports.columnMenu=m;exports.columnMenuColumnChooserSelectedItems=Y;exports.columnMenuColumnChooserTitle=X;exports.detailCollapse=j;exports.detailExpand=U;exports.editDialogCancelButtonTitle=N;exports.editDialogSaveButtonTitle=G;exports.editDialogTitle=E;exports.exportCSV=M;exports.exportPDF=y;exports.filterApplyButton=h;exports.filterAriaLabel=k;exports.filterCheckAll=D;exports.filterChooseOperator=O;exports.filterClearAllButton=S;exports.filterClearButton=C;exports.filterResetButton=B;exports.filterSelectAll=F;exports.filterSelectedItems=L;exports.filterSubmitButton=x;exports.filterTitle=f;exports.generatedWithAI=se;exports.gridAriaLabel=J;exports.gridRowReorderAriaLabel=K;exports.groupApplyButton=V;exports.groupClearButton=z;exports.groupCollapse=W;exports.groupColumn=p;exports.groupExpand=q;exports.groupPanelAriaLabel=w;exports.groupPanelEmpty=c;exports.messages=Me;exports.noRecords=e;exports.pagerFirstPage=r;exports.pagerInfo=t;exports.pagerItemPerPage=i;exports.pagerLastPage=l;exports.pagerNextPage=a;exports.pagerOf=g;exports.pagerPage=s;exports.pagerPageSizeAriaLabel=n;exports.pagerPreviousPage=o;exports.pagerTotalPages=d;exports.searchPlaceholder=I;exports.searchboxPlaceholder=v;exports.selectRow=H;exports.smartBoxAIAssistantPlaceholder=he;exports.smartBoxClearTitle=Pe;exports.smartBoxNoPreviousPrompts=fe;exports.smartBoxNoPreviousSearches=xe;exports.smartBoxPreviouslyAsked=Be;exports.smartBoxPreviouslySearched=Se;exports.smartBoxSearchModeDescription=Ie;exports.smartBoxSearchModeText=Te;exports.smartBoxSearchPlaceholder=ue;exports.smartBoxSemanticSearchModeDescription=ye;exports.smartBoxSemanticSearchModeText=ve;exports.smartBoxSemanticSearchPlaceholder=me;exports.smartBoxSpeechToTextButton=be;exports.smartBoxSubmitPromptButton=Ae;exports.smartBoxSuggestedPrompts=Ce;exports.sortApplyButton=T;exports.sortAriaLabel=R;exports.sortAscending=P;exports.sortClearButton=b;exports.sortDescending=A;exports.toolbarAI=le;exports.toolbarAIApply=ne;exports.toolbarCheckboxFilter=pe;exports.toolbarColumnsChooser=ce;exports.toolbarFilter=de;exports.toolbarGroup=ge;exports.toolbarSort=ae;exports.ungroupColumn=u;
|
package/messages/index.mjs
CHANGED
|
@@ -5,74 +5,90 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
const e = "grid.noRecords", t = "grid.pagerInfo", r = "grid.pagerFirstPage", o = "grid.pagerPreviousPage",
|
|
8
|
+
const e = "grid.noRecords", t = "grid.pagerInfo", r = "grid.pagerFirstPage", o = "grid.pagerPreviousPage", a = "grid.pagerNextPage", i = "grid.pagerLastPage", l = "grid.pagerItemsPerPage", s = "grid.pagerPage", n = "grid.pagerPageSizeAriaLabel", g = "grid.pagerOf", d = "grid.pagerTotalPages", c = "grid.groupPanelEmpty", p = "grid.groupColumn", u = "grid.ungroupColumn", m = "grid.columnMenu", h = "grid.filterApplyButton", C = "grid.filterClearButton", S = "grid.filterClearAllButton", f = "grid.filterResetButton", B = "grid.filterSubmitButton", x = "grid.filterTitle", A = "grid.sortAscending", P = "grid.sortDescending", b = "grid.sortClearButton", I = "grid.sortApplyButton", T = "grid.searchPlaceholder", v = "grid.searchboxPlaceholder", y = "grid.exportPDF", O = "grid.exportCSV", D = "grid.filterCheckAll", M = "grid.filterChooseOperator", F = "grid.filterSelectAll", E = "grid.filterSelectedItems", L = "grid.sortAriaLabel", R = "grid.editDialogTitle", G = "grid.editDialogSaveButtonTitle", N = "grid.editDialogCancelButtonTitle", w = "grid.filterAriaLabel", k = "grid.groupPanelAriaLabel", q = "grid.groupExpand", W = "grid.groupCollapse", z = "grid.groupClearButton", V = "grid.groupApplyButton", U = "grid.detailExpand", j = "grid.detailCollapse", H = "grid.selectRow", J = "grid.gridAriaLabel", K = "grid.gridRowReorderAriaLabel", Q = "grid.gridAdaptiveColumnMenuFilterTitle", X = "grid.columnMenuColumnChooserTitle", Y = "grid.columnMenuColumnChooserSelectedItems", Z = "grid.adaptiveColumnMenuChooserTitle", _ = "grid.adaptiveColumnMenuChooserSubTitle", $ = "grid.columnChooserApplyButton", ee = "grid.columnChooserResetButton", te = "grid.adaptiveColumnMenuCheckboxFilterTitle", re = "grid.adaptiveToolbarSortTitle", oe = "grid.adaptiveToolbarGroupTitle", ae = "grid.toolbarSort", ie = "grid.toolbarAI", le = "grid.aIResponseData", se = "grid.generatedWithAI", ne = "grid.toolbarAIApply", ge = "grid.toolbarGroup", de = "grid.toolbarFilter", ce = "grid.toolbarColumnsChooser", pe = "grid.toolbarCheckboxFilter", ue = "grid.smartBoxSearchPlaceholder", me = "grid.smartBoxSemanticSearchPlaceholder", he = "grid.smartBoxAIAssistantPlaceholder", Ce = "grid.smartBoxSuggestedPrompts", Se = "grid.smartBoxPreviouslySearched", fe = "grid.smartBoxPreviouslyAsked", Be = "grid.smartBoxNoPreviousSearches", xe = "grid.smartBoxNoPreviousPrompts", Ae = "grid.smartBoxClearTitle", Pe = "grid.smartBoxSubmitPromptButton", be = "grid.smartBoxSpeechToTextButton", Ie = "grid.smartBoxSearchModeText", Te = "grid.smartBoxSearchModeDescription", ve = "grid.smartBoxSemanticSearchModeText", ye = "grid.smartBoxSemanticSearchModeDescription", Oe = {
|
|
9
9
|
[U]: "Expand detail row",
|
|
10
10
|
[j]: "Collapse detail row",
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
11
|
+
[q]: "Expand group",
|
|
12
|
+
[W]: "Collapse Group",
|
|
13
|
+
[z]: "Clear grouping",
|
|
14
|
+
[V]: "Done",
|
|
15
15
|
[e]: "No records available",
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
24
|
-
[
|
|
25
|
-
[
|
|
26
|
-
[
|
|
16
|
+
[c]: "Drag a column header and drop it here to group by that column",
|
|
17
|
+
[h]: "Apply",
|
|
18
|
+
[C]: "Clear",
|
|
19
|
+
[S]: "Clear all filters",
|
|
20
|
+
[f]: "Reset",
|
|
21
|
+
[B]: "Filter",
|
|
22
|
+
[x]: "Filter",
|
|
23
|
+
[A]: "Sort Ascending",
|
|
24
|
+
[P]: "Sort Descending",
|
|
25
|
+
[b]: "Clear sorting",
|
|
26
|
+
[I]: "Done",
|
|
27
27
|
[L]: "Sortable",
|
|
28
|
-
[
|
|
29
|
-
[
|
|
30
|
-
[
|
|
31
|
-
[
|
|
28
|
+
[re]: "Sort by",
|
|
29
|
+
[oe]: "Group by",
|
|
30
|
+
[ae]: "Sort",
|
|
31
|
+
[ie]: "AI Assistant",
|
|
32
32
|
[ne]: "Apply",
|
|
33
|
-
[
|
|
33
|
+
[le]: `Operation is successful. Data is:
|
|
34
34
|
`,
|
|
35
|
-
[
|
|
36
|
-
[
|
|
37
|
-
[
|
|
38
|
-
[
|
|
35
|
+
[se]: "Generated with AI",
|
|
36
|
+
[ge]: "Group",
|
|
37
|
+
[de]: "Filter",
|
|
38
|
+
[ce]: "Columns",
|
|
39
39
|
[pe]: "Filter",
|
|
40
|
-
[
|
|
41
|
-
[
|
|
42
|
-
[
|
|
43
|
-
[
|
|
40
|
+
[p]: "Group Column",
|
|
41
|
+
[u]: "Ungroup Column",
|
|
42
|
+
[m]: "Column menu",
|
|
43
|
+
[l]: "items per page",
|
|
44
44
|
[t]: "{0} - {1} of {2} items",
|
|
45
45
|
[r]: "Go to the first page",
|
|
46
46
|
[o]: "Go to the previous page",
|
|
47
|
-
[
|
|
47
|
+
[a]: "Go to the next page",
|
|
48
48
|
[i]: "Go to the last page",
|
|
49
|
-
[
|
|
50
|
-
[
|
|
49
|
+
[s]: "Page",
|
|
50
|
+
[n]: "Page size",
|
|
51
51
|
[g]: "of",
|
|
52
52
|
[d]: "{0}",
|
|
53
|
-
[
|
|
54
|
-
[
|
|
55
|
-
[
|
|
56
|
-
[
|
|
53
|
+
[T]: "Search",
|
|
54
|
+
[v]: "Search...",
|
|
55
|
+
[y]: "Export PDF",
|
|
56
|
+
[O]: "Export CSV",
|
|
57
|
+
[D]: "Check All",
|
|
57
58
|
[R]: "Edit Dialog",
|
|
58
59
|
[G]: "Save",
|
|
59
|
-
[
|
|
60
|
-
[
|
|
60
|
+
[N]: "Cancel",
|
|
61
|
+
[M]: "Choose Operator",
|
|
61
62
|
[E]: "selected items",
|
|
62
|
-
[
|
|
63
|
+
[F]: "Select All",
|
|
63
64
|
[w]: "Filter",
|
|
64
|
-
[
|
|
65
|
+
[k]: "Group panel",
|
|
65
66
|
[J]: "Table",
|
|
66
67
|
[K]: "Drag row",
|
|
67
68
|
[H]: "Select Row",
|
|
68
|
-
[
|
|
69
|
+
[X]: "Columns Chooser",
|
|
69
70
|
[Q]: "Filter by",
|
|
70
|
-
[
|
|
71
|
-
[
|
|
72
|
-
[
|
|
73
|
-
[
|
|
74
|
-
[
|
|
75
|
-
[
|
|
71
|
+
[Z]: "Columns Chooser",
|
|
72
|
+
[_]: "Selected fields are visible",
|
|
73
|
+
[te]: "Filter by",
|
|
74
|
+
[Y]: "Selected items",
|
|
75
|
+
[$]: "Apply",
|
|
76
|
+
[ee]: "Reset",
|
|
77
|
+
[ue]: "Search",
|
|
78
|
+
[me]: "Semantic Search",
|
|
79
|
+
[he]: "Sort, filter, or group with AI",
|
|
80
|
+
[Ce]: "Suggested prompts",
|
|
81
|
+
[Se]: "Previously searched",
|
|
82
|
+
[fe]: "Previously asked",
|
|
83
|
+
[Be]: "No previous searches",
|
|
84
|
+
[xe]: "No previous prompts",
|
|
85
|
+
[Ae]: "Clear",
|
|
86
|
+
[Pe]: "Submit prompt",
|
|
87
|
+
[be]: "Speech to text",
|
|
88
|
+
[Ie]: "Search",
|
|
89
|
+
[Te]: "Looks for exact word matches across your data.",
|
|
90
|
+
[ve]: "Semantic Search",
|
|
91
|
+
[ye]: "Understands context to surface the most relevant results.",
|
|
76
92
|
"grid.filterEqOperator": "Is equal to",
|
|
77
93
|
"grid.filterNotEqOperator": "Is not equal to",
|
|
78
94
|
"grid.filterIsNullOperator": "Is null",
|
|
@@ -98,71 +114,87 @@ const e = "grid.noRecords", t = "grid.pagerInfo", r = "grid.pagerFirstPage", o =
|
|
|
98
114
|
"grid.filterOrLogic": "Or"
|
|
99
115
|
};
|
|
100
116
|
export {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
117
|
+
le as aIResponseData,
|
|
118
|
+
te as adaptiveColumnMenuCheckboxFilterTitle,
|
|
119
|
+
_ as adaptiveColumnMenuChooserSubTitle,
|
|
120
|
+
Z as adaptiveColumnMenuChooserTitle,
|
|
105
121
|
Q as adaptiveColumnMenuFilterTitle,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
122
|
+
oe as adaptiveToolbarGroupTitle,
|
|
123
|
+
re as adaptiveToolbarSortTitle,
|
|
124
|
+
$ as columnChooserApplyButton,
|
|
125
|
+
ee as columnChooserResetButton,
|
|
126
|
+
m as columnMenu,
|
|
127
|
+
Y as columnMenuColumnChooserSelectedItems,
|
|
128
|
+
X as columnMenuColumnChooserTitle,
|
|
113
129
|
j as detailCollapse,
|
|
114
130
|
U as detailExpand,
|
|
115
|
-
|
|
131
|
+
N as editDialogCancelButtonTitle,
|
|
116
132
|
G as editDialogSaveButtonTitle,
|
|
117
133
|
R as editDialogTitle,
|
|
118
|
-
|
|
119
|
-
|
|
134
|
+
O as exportCSV,
|
|
135
|
+
y as exportPDF,
|
|
136
|
+
h as filterApplyButton,
|
|
120
137
|
w as filterAriaLabel,
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
138
|
+
D as filterCheckAll,
|
|
139
|
+
M as filterChooseOperator,
|
|
140
|
+
S as filterClearAllButton,
|
|
141
|
+
C as filterClearButton,
|
|
142
|
+
f as filterResetButton,
|
|
143
|
+
F as filterSelectAll,
|
|
127
144
|
E as filterSelectedItems,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
145
|
+
B as filterSubmitButton,
|
|
146
|
+
x as filterTitle,
|
|
147
|
+
se as generatedWithAI,
|
|
131
148
|
J as gridAriaLabel,
|
|
132
149
|
K as gridRowReorderAriaLabel,
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
150
|
+
V as groupApplyButton,
|
|
151
|
+
z as groupClearButton,
|
|
152
|
+
W as groupCollapse,
|
|
153
|
+
p as groupColumn,
|
|
154
|
+
q as groupExpand,
|
|
155
|
+
k as groupPanelAriaLabel,
|
|
156
|
+
c as groupPanelEmpty,
|
|
157
|
+
Oe as messages,
|
|
141
158
|
e as noRecords,
|
|
142
159
|
r as pagerFirstPage,
|
|
143
160
|
t as pagerInfo,
|
|
144
|
-
|
|
161
|
+
l as pagerItemPerPage,
|
|
145
162
|
i as pagerLastPage,
|
|
146
|
-
|
|
163
|
+
a as pagerNextPage,
|
|
147
164
|
g as pagerOf,
|
|
148
|
-
|
|
149
|
-
|
|
165
|
+
s as pagerPage,
|
|
166
|
+
n as pagerPageSizeAriaLabel,
|
|
150
167
|
o as pagerPreviousPage,
|
|
151
168
|
d as pagerTotalPages,
|
|
152
|
-
|
|
153
|
-
|
|
169
|
+
T as searchPlaceholder,
|
|
170
|
+
v as searchboxPlaceholder,
|
|
154
171
|
H as selectRow,
|
|
155
|
-
|
|
172
|
+
he as smartBoxAIAssistantPlaceholder,
|
|
173
|
+
Ae as smartBoxClearTitle,
|
|
174
|
+
xe as smartBoxNoPreviousPrompts,
|
|
175
|
+
Be as smartBoxNoPreviousSearches,
|
|
176
|
+
fe as smartBoxPreviouslyAsked,
|
|
177
|
+
Se as smartBoxPreviouslySearched,
|
|
178
|
+
Te as smartBoxSearchModeDescription,
|
|
179
|
+
Ie as smartBoxSearchModeText,
|
|
180
|
+
ue as smartBoxSearchPlaceholder,
|
|
181
|
+
ye as smartBoxSemanticSearchModeDescription,
|
|
182
|
+
ve as smartBoxSemanticSearchModeText,
|
|
183
|
+
me as smartBoxSemanticSearchPlaceholder,
|
|
184
|
+
be as smartBoxSpeechToTextButton,
|
|
185
|
+
Pe as smartBoxSubmitPromptButton,
|
|
186
|
+
Ce as smartBoxSuggestedPrompts,
|
|
187
|
+
I as sortApplyButton,
|
|
156
188
|
L as sortAriaLabel,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
189
|
+
A as sortAscending,
|
|
190
|
+
b as sortClearButton,
|
|
191
|
+
P as sortDescending,
|
|
192
|
+
ie as toolbarAI,
|
|
161
193
|
ne as toolbarAIApply,
|
|
162
194
|
pe as toolbarCheckboxFilter,
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
195
|
+
ce as toolbarColumnsChooser,
|
|
196
|
+
de as toolbarFilter,
|
|
197
|
+
ge as toolbarGroup,
|
|
198
|
+
ae as toolbarSort,
|
|
199
|
+
u as ungroupColumn
|
|
168
200
|
};
|
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=Object.freeze({name:"@progress/kendo-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1770670114,version:"14.0.0-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -8,6 +8,6 @@ export const packageMetadata = Object.freeze({
|
|
|
8
8
|
productCode: 'KENDOUIREACT',
|
|
9
9
|
productCodes: ['KENDOUIREACT'],
|
|
10
10
|
publishDate: 0,
|
|
11
|
-
version: '
|
|
11
|
+
version: '14.0.0-develop.2',
|
|
12
12
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
|
|
13
13
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-grid",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-develop.2",
|
|
4
4
|
"description": "React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -28,24 +28,24 @@
|
|
|
28
28
|
"@progress/kendo-data-query": "^1.7.2",
|
|
29
29
|
"@progress/kendo-drawing": "^1.21.2",
|
|
30
30
|
"@progress/kendo-licensing": "^1.7.2",
|
|
31
|
-
"@progress/kendo-react-animation": "
|
|
32
|
-
"@progress/kendo-react-buttons": "
|
|
33
|
-
"@progress/kendo-react-common": "
|
|
34
|
-
"@progress/kendo-react-data-tools": "
|
|
35
|
-
"@progress/kendo-react-dateinputs": "
|
|
36
|
-
"@progress/kendo-react-indicators": "
|
|
37
|
-
"@progress/kendo-react-form": "
|
|
38
|
-
"@progress/kendo-react-labels": "
|
|
39
|
-
"@progress/kendo-react-dialogs": "
|
|
40
|
-
"@progress/kendo-react-dropdowns": "
|
|
41
|
-
"@progress/kendo-react-inputs": "
|
|
42
|
-
"@progress/kendo-react-intl": "
|
|
43
|
-
"@progress/kendo-react-popup": "
|
|
44
|
-
"@progress/kendo-react-layout": "
|
|
45
|
-
"@progress/kendo-react-conversational-ui": "
|
|
31
|
+
"@progress/kendo-react-animation": "14.0.0-develop.2",
|
|
32
|
+
"@progress/kendo-react-buttons": "14.0.0-develop.2",
|
|
33
|
+
"@progress/kendo-react-common": "14.0.0-develop.2",
|
|
34
|
+
"@progress/kendo-react-data-tools": "14.0.0-develop.2",
|
|
35
|
+
"@progress/kendo-react-dateinputs": "14.0.0-develop.2",
|
|
36
|
+
"@progress/kendo-react-indicators": "14.0.0-develop.2",
|
|
37
|
+
"@progress/kendo-react-form": "14.0.0-develop.2",
|
|
38
|
+
"@progress/kendo-react-labels": "14.0.0-develop.2",
|
|
39
|
+
"@progress/kendo-react-dialogs": "14.0.0-develop.2",
|
|
40
|
+
"@progress/kendo-react-dropdowns": "14.0.0-develop.2",
|
|
41
|
+
"@progress/kendo-react-inputs": "14.0.0-develop.2",
|
|
42
|
+
"@progress/kendo-react-intl": "14.0.0-develop.2",
|
|
43
|
+
"@progress/kendo-react-popup": "14.0.0-develop.2",
|
|
44
|
+
"@progress/kendo-react-layout": "14.0.0-develop.2",
|
|
45
|
+
"@progress/kendo-react-conversational-ui": "14.0.0-develop.2",
|
|
46
46
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
47
|
-
"react": "^
|
|
48
|
-
"react-dom": "^
|
|
47
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
48
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
49
49
|
"axios": "^1.13.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"package": {
|
|
148
148
|
"productName": "KendoReact",
|
|
149
149
|
"productCode": "KENDOUIREACT",
|
|
150
|
-
"publishDate":
|
|
150
|
+
"publishDate": 1770670114,
|
|
151
151
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
152
152
|
}
|
|
153
153
|
},
|