@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.
Files changed (89) hide show
  1. package/BaseCSVExport.d.ts +31 -0
  2. package/BaseCSVExport.js +8 -0
  3. package/BaseCSVExport.mjs +82 -0
  4. package/Grid.d.ts +33 -0
  5. package/GridClientWrapper.js +1 -1
  6. package/GridClientWrapper.mjs +313 -289
  7. package/GridComponent.js +1 -1
  8. package/GridComponent.mjs +247 -252
  9. package/GridCsvExportButton.d.ts +13 -0
  10. package/GridCsvExportButton.js +8 -0
  11. package/GridCsvExportButton.mjs +35 -0
  12. package/columnMenu/GridColumnMenuFilter.mjs +2 -2
  13. package/columnMenu/adaptiveContent/GridAdaptiveColumnMenu.js +1 -1
  14. package/columnMenu/adaptiveContent/GridAdaptiveColumnMenu.mjs +4 -4
  15. package/components/noRecords/GridNoRecordsContainer.mjs +1 -1
  16. package/constants/index.mjs +2 -2
  17. package/dist/cdn/js/kendo-react-grid.js +1 -1
  18. package/hooks/index.d.ts +8 -0
  19. package/hooks/useGridAIRequest.d.ts +150 -0
  20. package/hooks/useGridAIRequest.js +8 -0
  21. package/hooks/useGridAIRequest.mjs +93 -0
  22. package/index.d.mts +5 -2
  23. package/index.d.ts +5 -2
  24. package/index.js +1 -1
  25. package/index.mjs +71 -63
  26. package/interfaces/GridProps.d.ts +81 -0
  27. package/messages/index.d.ts +80 -0
  28. package/messages/index.js +2 -2
  29. package/messages/index.mjs +126 -94
  30. package/package-metadata.js +1 -1
  31. package/package-metadata.mjs +1 -1
  32. package/package.json +19 -19
  33. package/toolbar-tools/GridToolbarAIAssistant.d.ts +2 -34
  34. package/toolbar-tools/GridToolbarAIAssistant.js +2 -2
  35. package/toolbar-tools/GridToolbarAIAssistant.mjs +167 -164
  36. package/toolbar-tools/GridToolbarFilter.mjs +5 -5
  37. package/toolbar-tools/smartbox/SegmentedControl.d.ts +13 -0
  38. package/toolbar-tools/smartbox/SegmentedControl.js +8 -0
  39. package/toolbar-tools/smartbox/SegmentedControl.mjs +109 -0
  40. package/toolbar-tools/smartbox/SmartBox.d.ts +20 -0
  41. package/toolbar-tools/smartbox/SmartBox.js +8 -0
  42. package/toolbar-tools/smartbox/SmartBox.mjs +380 -0
  43. package/toolbar-tools/smartbox/defaultConfigs.d.ts +30 -0
  44. package/toolbar-tools/smartbox/defaultConfigs.js +8 -0
  45. package/toolbar-tools/smartbox/defaultConfigs.mjs +36 -0
  46. package/toolbar-tools/smartbox/hooks/index.d.ts +17 -0
  47. package/toolbar-tools/smartbox/hooks/useDebounce.d.ts +11 -0
  48. package/toolbar-tools/smartbox/hooks/useDebounce.js +9 -0
  49. package/toolbar-tools/smartbox/hooks/useDebounce.mjs +21 -0
  50. package/toolbar-tools/smartbox/hooks/useSmartBoxGridState.d.ts +245 -0
  51. package/toolbar-tools/smartbox/hooks/useSmartBoxGridState.js +9 -0
  52. package/toolbar-tools/smartbox/hooks/useSmartBoxGridState.mjs +54 -0
  53. package/toolbar-tools/smartbox/hooks/useSmartBoxHistory.d.ts +80 -0
  54. package/toolbar-tools/smartbox/hooks/useSmartBoxHistory.js +9 -0
  55. package/toolbar-tools/smartbox/hooks/useSmartBoxHistory.mjs +66 -0
  56. package/toolbar-tools/smartbox/hooks/useSmartBoxInput.d.ts +96 -0
  57. package/toolbar-tools/smartbox/hooks/useSmartBoxLabels.d.ts +93 -0
  58. package/toolbar-tools/smartbox/hooks/useSmartBoxLabels.js +9 -0
  59. package/toolbar-tools/smartbox/hooks/useSmartBoxLabels.mjs +61 -0
  60. package/toolbar-tools/smartbox/hooks/useSmartBoxListData.d.ts +163 -0
  61. package/toolbar-tools/smartbox/hooks/useSmartBoxListData.js +9 -0
  62. package/toolbar-tools/smartbox/hooks/useSmartBoxListData.mjs +102 -0
  63. package/toolbar-tools/smartbox/hooks/useSmartBoxModes.d.ts +115 -0
  64. package/toolbar-tools/smartbox/hooks/useSmartBoxModes.js +9 -0
  65. package/toolbar-tools/smartbox/hooks/useSmartBoxModes.mjs +65 -0
  66. package/toolbar-tools/smartbox/hooks/useSmartBoxPopup.d.ts +56 -0
  67. package/toolbar-tools/smartbox/hooks/useSmartBoxPopup.js +9 -0
  68. package/toolbar-tools/smartbox/hooks/useSmartBoxPopup.mjs +25 -0
  69. package/toolbar-tools/smartbox/hooks/useSmartBoxSearch.d.ts +82 -0
  70. package/toolbar-tools/smartbox/hooks/useSmartBoxSearch.js +9 -0
  71. package/toolbar-tools/smartbox/hooks/useSmartBoxSearch.mjs +67 -0
  72. package/toolbar-tools/smartbox/hooks/useSmartBoxSegmentedControl.d.ts +70 -0
  73. package/toolbar-tools/smartbox/hooks/useSmartBoxSegmentedControl.js +9 -0
  74. package/toolbar-tools/smartbox/hooks/useSmartBoxSegmentedControl.mjs +57 -0
  75. package/toolbar-tools/smartbox/index.d.ts +10 -0
  76. package/toolbar-tools/smartbox/interfaces/SearchTypes.d.ts +45 -0
  77. package/toolbar-tools/smartbox/interfaces/SegmentedControlTypes.d.ts +66 -0
  78. package/toolbar-tools/smartbox/interfaces/SmartBoxTypes.d.ts +461 -0
  79. package/toolbar-tools/smartbox/interfaces/index.d.ts +11 -0
  80. package/toolbar-tools/smartbox/interfaces/utilTypes.d.ts +25 -0
  81. package/toolbar-tools/smartbox/listItemRenders.d.ts +165 -0
  82. package/toolbar-tools/smartbox/listItemRenders.js +8 -0
  83. package/toolbar-tools/smartbox/listItemRenders.mjs +68 -0
  84. package/toolbar-tools/smartbox/utils.d.ts +14 -0
  85. package/toolbar-tools/smartbox/utils.js +8 -0
  86. package/toolbar-tools/smartbox/utils.mjs +14 -0
  87. package/utils/dataProcessing.d.ts +67 -0
  88. package/utils/dataProcessing.js +8 -0
  89. 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
  *
@@ -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",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;
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;
@@ -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", l = "grid.pagerNextPage", i = "grid.pagerLastPage", a = "grid.pagerItemsPerPage", n = "grid.pagerPage", s = "grid.pagerPageSizeAriaLabel", g = "grid.pagerOf", d = "grid.pagerTotalPages", p = "grid.groupPanelEmpty", u = "grid.groupColumn", c = "grid.ungroupColumn", C = "grid.columnMenu", f = "grid.filterApplyButton", m = "grid.filterClearButton", h = "grid.filterClearAllButton", A = "grid.filterResetButton", b = "grid.filterSubmitButton", I = "grid.filterTitle", P = "grid.sortAscending", S = "grid.sortDescending", T = "grid.sortClearButton", B = "grid.sortApplyButton", O = "grid.searchPlaceholder", y = "grid.searchboxPlaceholder", D = "grid.exportPDF", F = "grid.filterCheckAll", v = "grid.filterChooseOperator", x = "grid.filterSelectAll", E = "grid.filterSelectedItems", L = "grid.sortAriaLabel", R = "grid.editDialogTitle", G = "grid.editDialogSaveButtonTitle", M = "grid.editDialogCancelButtonTitle", w = "grid.filterAriaLabel", q = "grid.groupPanelAriaLabel", N = "grid.groupExpand", k = "grid.groupCollapse", W = "grid.groupClearButton", z = "grid.groupApplyButton", U = "grid.detailExpand", j = "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", ie = "grid.aIResponseData", ae = "grid.generatedWithAI", ne = "grid.toolbarAIApply", se = "grid.toolbarGroup", ge = "grid.toolbarFilter", de = "grid.toolbarColumnsChooser", pe = "grid.toolbarCheckboxFilter", ue = {
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
- [N]: "Expand group",
12
- [k]: "Collapse Group",
13
- [W]: "Clear grouping",
14
- [z]: "Done",
11
+ [q]: "Expand group",
12
+ [W]: "Collapse Group",
13
+ [z]: "Clear grouping",
14
+ [V]: "Done",
15
15
  [e]: "No records available",
16
- [p]: "Drag a column header and drop it here to group by that column",
17
- [f]: "Apply",
18
- [m]: "Clear",
19
- [h]: "Clear all filters",
20
- [A]: "Reset",
21
- [b]: "Filter",
22
- [I]: "Filter",
23
- [P]: "Sort Ascending",
24
- [S]: "Sort Descending",
25
- [T]: "Clear sorting",
26
- [B]: "Done",
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
- [te]: "Sort by",
29
- [re]: "Group by",
30
- [oe]: "Sort",
31
- [le]: "AI Assistant",
28
+ [re]: "Sort by",
29
+ [oe]: "Group by",
30
+ [ae]: "Sort",
31
+ [ie]: "AI Assistant",
32
32
  [ne]: "Apply",
33
- [ie]: `Operation is successful. Data is:
33
+ [le]: `Operation is successful. Data is:
34
34
  `,
35
- [ae]: "Generated with AI",
36
- [se]: "Group",
37
- [ge]: "Filter",
38
- [de]: "Columns",
35
+ [se]: "Generated with AI",
36
+ [ge]: "Group",
37
+ [de]: "Filter",
38
+ [ce]: "Columns",
39
39
  [pe]: "Filter",
40
- [u]: "Group Column",
41
- [c]: "Ungroup Column",
42
- [C]: "Column menu",
43
- [a]: "items per page",
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
- [l]: "Go to the next page",
47
+ [a]: "Go to the next page",
48
48
  [i]: "Go to the last page",
49
- [n]: "Page",
50
- [s]: "Page size",
49
+ [s]: "Page",
50
+ [n]: "Page size",
51
51
  [g]: "of",
52
52
  [d]: "{0}",
53
- [O]: "Search",
54
- [y]: "Search...",
55
- [D]: "Export PDF",
56
- [F]: "Check All",
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
- [M]: "Cancel",
60
- [v]: "Choose Operator",
60
+ [N]: "Cancel",
61
+ [M]: "Choose Operator",
61
62
  [E]: "selected items",
62
- [x]: "Select All",
63
+ [F]: "Select All",
63
64
  [w]: "Filter",
64
- [q]: "Group panel",
65
+ [k]: "Group panel",
65
66
  [J]: "Table",
66
67
  [K]: "Drag row",
67
68
  [H]: "Select Row",
68
- [V]: "Columns Chooser",
69
+ [X]: "Columns Chooser",
69
70
  [Q]: "Filter by",
70
- [Y]: "Columns Chooser",
71
- [Z]: "Selected fields are visible",
72
- [ee]: "Filter by",
73
- [X]: "Selected items",
74
- [_]: "Apply",
75
- [$]: "Reset",
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
- ie as aIResponseData,
102
- ee as adaptiveColumnMenuCheckboxFilterTitle,
103
- Z as adaptiveColumnMenuChooserSubTitle,
104
- Y as adaptiveColumnMenuChooserTitle,
117
+ le as aIResponseData,
118
+ te as adaptiveColumnMenuCheckboxFilterTitle,
119
+ _ as adaptiveColumnMenuChooserSubTitle,
120
+ Z as adaptiveColumnMenuChooserTitle,
105
121
  Q as adaptiveColumnMenuFilterTitle,
106
- re as adaptiveToolbarGroupTitle,
107
- te as adaptiveToolbarSortTitle,
108
- _ as columnChooserApplyButton,
109
- $ as columnChooserResetButton,
110
- C as columnMenu,
111
- X as columnMenuColumnChooserSelectedItems,
112
- V as columnMenuColumnChooserTitle,
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
- M as editDialogCancelButtonTitle,
131
+ N as editDialogCancelButtonTitle,
116
132
  G as editDialogSaveButtonTitle,
117
133
  R as editDialogTitle,
118
- D as exportPDF,
119
- f as filterApplyButton,
134
+ O as exportCSV,
135
+ y as exportPDF,
136
+ h as filterApplyButton,
120
137
  w as filterAriaLabel,
121
- F as filterCheckAll,
122
- v as filterChooseOperator,
123
- h as filterClearAllButton,
124
- m as filterClearButton,
125
- A as filterResetButton,
126
- x as filterSelectAll,
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
- b as filterSubmitButton,
129
- I as filterTitle,
130
- ae as generatedWithAI,
145
+ B as filterSubmitButton,
146
+ x as filterTitle,
147
+ se as generatedWithAI,
131
148
  J as gridAriaLabel,
132
149
  K as gridRowReorderAriaLabel,
133
- z as groupApplyButton,
134
- W as groupClearButton,
135
- k as groupCollapse,
136
- u as groupColumn,
137
- N as groupExpand,
138
- q as groupPanelAriaLabel,
139
- p as groupPanelEmpty,
140
- ue as messages,
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
- a as pagerItemPerPage,
161
+ l as pagerItemPerPage,
145
162
  i as pagerLastPage,
146
- l as pagerNextPage,
163
+ a as pagerNextPage,
147
164
  g as pagerOf,
148
- n as pagerPage,
149
- s as pagerPageSizeAriaLabel,
165
+ s as pagerPage,
166
+ n as pagerPageSizeAriaLabel,
150
167
  o as pagerPreviousPage,
151
168
  d as pagerTotalPages,
152
- O as searchPlaceholder,
153
- y as searchboxPlaceholder,
169
+ T as searchPlaceholder,
170
+ v as searchboxPlaceholder,
154
171
  H as selectRow,
155
- B as sortApplyButton,
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
- P as sortAscending,
158
- T as sortClearButton,
159
- S as sortDescending,
160
- le as toolbarAI,
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
- de as toolbarColumnsChooser,
164
- ge as toolbarFilter,
165
- se as toolbarGroup,
166
- oe as toolbarSort,
167
- c as ungroupColumn
195
+ ce as toolbarColumnsChooser,
196
+ de as toolbarFilter,
197
+ ge as toolbarGroup,
198
+ ae as toolbarSort,
199
+ u as ungroupColumn
168
200
  };
@@ -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: 1770378021,version:"13.4.0-develop.5",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
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;
@@ -8,6 +8,6 @@ export const packageMetadata = Object.freeze({
8
8
  productCode: 'KENDOUIREACT',
9
9
  productCodes: ['KENDOUIREACT'],
10
10
  publishDate: 0,
11
- version: '13.4.0-develop.5',
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": "13.4.0-develop.5",
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": "13.4.0-develop.5",
32
- "@progress/kendo-react-buttons": "13.4.0-develop.5",
33
- "@progress/kendo-react-common": "13.4.0-develop.5",
34
- "@progress/kendo-react-data-tools": "13.4.0-develop.5",
35
- "@progress/kendo-react-dateinputs": "13.4.0-develop.5",
36
- "@progress/kendo-react-indicators": "13.4.0-develop.5",
37
- "@progress/kendo-react-form": "13.4.0-develop.5",
38
- "@progress/kendo-react-labels": "13.4.0-develop.5",
39
- "@progress/kendo-react-dialogs": "13.4.0-develop.5",
40
- "@progress/kendo-react-dropdowns": "13.4.0-develop.5",
41
- "@progress/kendo-react-inputs": "13.4.0-develop.5",
42
- "@progress/kendo-react-intl": "13.4.0-develop.5",
43
- "@progress/kendo-react-popup": "13.4.0-develop.5",
44
- "@progress/kendo-react-layout": "13.4.0-develop.5",
45
- "@progress/kendo-react-conversational-ui": "13.4.0-develop.5",
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": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
48
- "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
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": 1770378021,
150
+ "publishDate": 1770670114,
151
151
  "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
152
152
  }
153
153
  },