react-kd-grid 1.0.0

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 (41) hide show
  1. package/README.md +270 -0
  2. package/dist/CustomGrid.d.ts +3 -0
  3. package/dist/components/ColumnFilterSelector.d.ts +18 -0
  4. package/dist/components/CustomSelect.d.ts +14 -0
  5. package/dist/components/FooterAggregate.d.ts +16 -0
  6. package/dist/components/GridHeader.d.ts +33 -0
  7. package/dist/components/GridRows.d.ts +49 -0
  8. package/dist/components/GroupBar.d.ts +12 -0
  9. package/dist/components/GroupHeader.d.ts +29 -0
  10. package/dist/components/NoDataMessage.d.ts +7 -0
  11. package/dist/components/PaginationControls.d.ts +15 -0
  12. package/dist/components/Popover.d.ts +17 -0
  13. package/dist/components/RowContextMenu.d.ts +22 -0
  14. package/dist/components/SearchToolbar.d.ts +79 -0
  15. package/dist/components/filters/BooleanFilter.d.ts +7 -0
  16. package/dist/components/filters/DateFilter.d.ts +9 -0
  17. package/dist/components/filters/FilterContent.d.ts +9 -0
  18. package/dist/components/filters/FilterPopup.d.ts +2 -0
  19. package/dist/components/filters/MultiselectFilter.d.ts +10 -0
  20. package/dist/components/filters/NumberFilter.d.ts +9 -0
  21. package/dist/components/filters/TextFilter.d.ts +8 -0
  22. package/dist/components/filters/index.d.ts +6 -0
  23. package/dist/components/ui/DatePicker.d.ts +10 -0
  24. package/dist/constants.d.ts +1 -0
  25. package/dist/hooks/useAdvancedFiltering.d.ts +16 -0
  26. package/dist/hooks/useDataWorker.d.ts +10 -0
  27. package/dist/hooks/useExport.d.ts +15 -0
  28. package/dist/hooks/useFilteringAndSorting.d.ts +16 -0
  29. package/dist/hooks/useGrouping.d.ts +28 -0
  30. package/dist/hooks/usePagination.d.ts +28 -0
  31. package/dist/hooks/useSelection.d.ts +13 -0
  32. package/dist/hooks/useVirtualization.d.ts +17 -0
  33. package/dist/index.d.ts +11 -0
  34. package/dist/index.esm.js +10776 -0
  35. package/dist/index.esm.js.map +1 -0
  36. package/dist/index.js +10776 -0
  37. package/dist/index.js.map +1 -0
  38. package/dist/types.d.ts +421 -0
  39. package/dist/utils/highlightText.d.ts +15 -0
  40. package/dist/workers/dataWorker.d.ts +16 -0
  41. package/package.json +90 -0
@@ -0,0 +1,421 @@
1
+ import { CSSProperties, MouseEvent, ReactNode } from "react";
2
+ export type FilterType = "text" | "multiselect" | "number" | "date" | "boolean";
3
+ export type Density = "sm" | "md" | "lg";
4
+ export interface FilterOption {
5
+ label: string;
6
+ value: any;
7
+ }
8
+ export interface ColumnFilter {
9
+ type: FilterType;
10
+ options?: FilterOption[];
11
+ placeholder?: string;
12
+ min?: number;
13
+ max?: number;
14
+ }
15
+ export interface GridColumn {
16
+ key: string;
17
+ header: string;
18
+ width?: number;
19
+ /**
20
+ * Flexible sizing. When true or a positive number, the column can expand to fill
21
+ * available horizontal space. If a number is provided, it represents the flex grow weight.
22
+ * Note: runtime support may require renderer updates; currently a type hint.
23
+ */
24
+ flex?: boolean | number;
25
+ /** Minimum width in pixels for this column */
26
+ minWidth?: number;
27
+ /** Maximum width in pixels for this column */
28
+ maxWidth?: number;
29
+ /** Allows column to be resizable via UI (if the header implements it) */
30
+ resizable?: boolean;
31
+ /**
32
+ * Whether the column is sortable. Defaults to true; set explicitly to false to disable.
33
+ */
34
+ sortable?: boolean;
35
+ filterable?: boolean | ColumnFilter;
36
+ formatter?: (value: any) => string;
37
+ cellRenderer?: (value: any, row: GridRow) => ReactNode;
38
+ visible?: boolean;
39
+ /**
40
+ * Group aggregate to compute for this column when grouping is enabled.
41
+ * If a function is provided, it will receive the array of raw cell values and should return the aggregate value.
42
+ */
43
+ aggregate?: "sum" | "avg" | "min" | "max" | ((values: any[]) => any);
44
+ /**
45
+ * Optional formatter for the aggregate value displayed in group footers.
46
+ * Falls back to the column's formatter if not provided.
47
+ */
48
+ aggregateFormatter?: (value: any) => string;
49
+ /**
50
+ * Footer aggregate to compute for this column and display at the bottom of all rows.
51
+ * If a function is provided, it will receive the array of raw cell values and should return the aggregate value.
52
+ */
53
+ footer_aggregate?: "count" | "sum" | "avg" | "min" | "max" | ((values: any[]) => any);
54
+ /**
55
+ * Optional formatter for the footer aggregate value.
56
+ * Falls back to the column's formatter if not provided.
57
+ */
58
+ footerAggregateFormatter?: (value: any) => string;
59
+ /**
60
+ * Horizontal alignment for cell content: left | center | right
61
+ */
62
+ align?: "left" | "center" | "right";
63
+ /**
64
+ * Horizontal alignment for header content: left | center | right
65
+ */
66
+ headerAlign?: "left" | "center" | "right";
67
+ /** Optional CSS class for body cells of this column */
68
+ className?: string | ((value: any, row: GridRow) => string);
69
+ /** Optional inline style for body cells of this column */
70
+ cellStyle?: CSSProperties | ((value: any, row: GridRow) => CSSProperties);
71
+ /** Optional CSS class for the header cell of this column */
72
+ headerClassName?: string;
73
+ /** If true, removes default padding from the cell container for this column */
74
+ noPadding?: boolean;
75
+ /** If false, do not wrap renderer output with the default truncation div */
76
+ wrapCellContent?: boolean;
77
+ }
78
+ export interface GridRow {
79
+ id?: string | number;
80
+ [key: string]: any;
81
+ }
82
+ export interface GroupConfig {
83
+ /** Ordered list of column keys to group by (multi-level). */
84
+ columnKeys: string[];
85
+ /**
86
+ * Expanded group paths. Each path is a stable string key built from the sequence of
87
+ * grouping values, e.g. "City=SF|Status=Open". Root groups are single segment.
88
+ */
89
+ expanded: Set<string>;
90
+ }
91
+ export interface GroupedData {
92
+ [groupValue: string]: {
93
+ rows: GridRow[];
94
+ count: number;
95
+ };
96
+ }
97
+ export type SearchMode = "contains" | "exact" | "startsWith" | "endsWith" | "regex";
98
+ export type BulkAction = "delete" | "archive" | "copy" | "edit" | "export";
99
+ export interface SavedFilter {
100
+ id: string;
101
+ name: string;
102
+ globalFilter: string;
103
+ columnFilters: Record<string, any>;
104
+ searchMode: SearchMode;
105
+ }
106
+ export interface BulkActionOption {
107
+ id: BulkAction;
108
+ label: string;
109
+ icon: ReactNode;
110
+ onClick: (selectedRows: Set<string | number>) => void;
111
+ disabled?: boolean;
112
+ destructive?: boolean;
113
+ }
114
+ export interface CustomDataGridProps {
115
+ data: GridRow[];
116
+ columns: GridColumn[];
117
+ /**
118
+ * Optional function to derive unique row identifier from a row object.
119
+ * Priority order:
120
+ * 1. If getRowId is provided, use it to extract the ID from the row
121
+ * 2. Else if row.id exists, use it
122
+ * 3. Else use the row's index as fallback (may cause issues with pagination/filtering)
123
+ *
124
+ * Examples:
125
+ * - (row) => row.employeeId
126
+ * - (row) => `${row.dept}_${row.name}` (composite key)
127
+ * - (row) => row.uuid
128
+ *
129
+ * Recommendation: Always provide either row.id or getRowId prop for best results.
130
+ */
131
+ getRowId?: (row: GridRow) => string | number;
132
+ height?: number;
133
+ density?: Density;
134
+ onDensityChange?: (density: Density) => void;
135
+ /**
136
+ * Optional header size controls (independent of row density).
137
+ * - If headerHeight is provided, it takes precedence (fixed pixel height).
138
+ * - Else if headerDensity is provided, it maps to the density sizing (sm|md|lg).
139
+ * - Else defaults to medium (md).
140
+ */
141
+ headerDensity?: Density;
142
+ headerHeight?: number;
143
+ showDensityControl?: boolean;
144
+ onRowSelect?: (row: GridRow) => void;
145
+ onSelectedRowsChange?: (selectedRows: Set<string | number>) => void;
146
+ selectable?: boolean;
147
+ isRowSelectable?: (row: GridRow) => boolean;
148
+ showToolbar?: boolean;
149
+ showExport?: boolean;
150
+ /**
151
+ * Optional export options to control which formats are allowed and default filename.
152
+ * If not provided, only Excel ("xlsx") will be allowed by default.
153
+ */
154
+ exportOptions?: {
155
+ /** Allowed export formats (defaults to ["xlsx"]) */
156
+ formats?: Array<"csv" | "json" | "xlsx">;
157
+ /** Default exported filename without extension (defaults to "grid-data") */
158
+ filename?: string;
159
+ /** Enable/disable export action (defaults to true; combined with showExport) */
160
+ enabled?: boolean;
161
+ /** Export execution mode. Default: 'client'. */
162
+ exportMode?: "client" | "server";
163
+ /**
164
+ * Optional handler to perform server-side export when exportMode === 'server'.
165
+ * If exportSelected is true, selectedRowIds will contain the ids that are currently selected in the grid.
166
+ */
167
+ onServerExport?: (format: "csv" | "json" | "xlsx", exportSelected: boolean, selectedRowIds?: Array<string | number>) => void;
168
+ };
169
+ sortable?: boolean;
170
+ filterable?: boolean;
171
+ groupable?: boolean;
172
+ virtualized?: boolean;
173
+ rowHeight?: number;
174
+ overscan?: number;
175
+ rowStyle?: (row: GridRow) => CSSProperties | undefined;
176
+ onContextMenu?: (row: GridRow, event: MouseEvent) => void;
177
+ onRowDoubleClick?: (row: GridRow, event: MouseEvent) => void;
178
+ onRowClick?: (row: GridRow, event: MouseEvent) => void;
179
+ onCellClick?: (args: {
180
+ row: GridRow;
181
+ column: GridColumn;
182
+ value: any;
183
+ event: MouseEvent;
184
+ }) => void;
185
+ onCellContextMenu?: (args: {
186
+ row: GridRow;
187
+ column: GridColumn;
188
+ value: any;
189
+ displayValue: string;
190
+ event: MouseEvent;
191
+ }) => void;
192
+ cellFocusEnabled?: boolean;
193
+ onCellFocusChange?: (args: {
194
+ row: GridRow;
195
+ column: GridColumn;
196
+ value: any;
197
+ rowIndex: number;
198
+ colIndex: number;
199
+ }) => void;
200
+ cellSelectionEnabled?: boolean;
201
+ canSelectCell?: (row: GridRow, column: GridColumn) => boolean;
202
+ onCellSelectionChange?: (payload: {
203
+ bounds: {
204
+ rowStart: number;
205
+ rowEnd: number;
206
+ colStart: number;
207
+ colEnd: number;
208
+ } | null;
209
+ cells: Array<{
210
+ row: GridRow;
211
+ column: GridColumn;
212
+ value: any;
213
+ rowIndex: number;
214
+ colIndex: number;
215
+ }>;
216
+ }) => void;
217
+ onAutosizeColumn?: (columnKey: string) => void;
218
+ onAutosizeAllColumns?: () => void;
219
+ onResetColumns?: () => void;
220
+ pagination?: {
221
+ enabled?: boolean;
222
+ mode?: PaginationMode;
223
+ pageSize?: number;
224
+ showPageSizeSelector?: boolean;
225
+ pageSizeOptions?: number[];
226
+ serverConfig?: ServerPaginationConfig;
227
+ };
228
+ /** If provided, when total (post-filter) rows <= threshold virtualization is auto-disabled for simpler DOM (default: 300). */
229
+ virtualizationThreshold?: number;
230
+ onRefresh?: () => void;
231
+ isLoading?: boolean;
232
+ bulkActions?: BulkActionOption[];
233
+ savedFilters?: SavedFilter[];
234
+ onSaveFilter?: (filter: Omit<SavedFilter, "id">) => void;
235
+ onLoadFilter?: (filter: SavedFilter) => void;
236
+ onDeleteFilter?: (filterId: string) => void;
237
+ onFilterChange?: (payload: ServerFilterChangePayload) => void;
238
+ onSort?: (columnKey: string, direction: "asc" | "desc") => void;
239
+ onColumnConfigChange?: (config: ColumnConfig) => void;
240
+ initialColumnConfig?: Partial<ColumnConfig>;
241
+ toolbarLeft?: ReactNode;
242
+ toolbarRight?: ReactNode;
243
+ /**
244
+ * Controls the visibility of the Group Bar (the area where you can drop headers to group).
245
+ * - 'hidden': never show the bar
246
+ * - 'auto': show only when there are active grouped columns
247
+ * - 'visible': always show when groupable is true
248
+ */
249
+ groupBarVisibility?: "hidden" | "auto" | "visible";
250
+ /**
251
+ * How to render group aggregation footer rows when grouping is enabled.
252
+ * - 'chips': render a colored summary bar with chips (default)
253
+ * - 'columns': render a full-width colored row placing aggregate values under their respective columns
254
+ */
255
+ groupFooterVariant?: "chips" | "columns";
256
+ /**
257
+ * Optional custom renderer for actions on grouped rows.
258
+ * Receives information about the group and its rows.
259
+ */
260
+ renderGroupActions?: (groupInfo: {
261
+ groupKey: string;
262
+ columnKey: string;
263
+ groupValue: any;
264
+ rows: GridRow[];
265
+ count: number;
266
+ level: number;
267
+ }) => ReactNode;
268
+ /**
269
+ * Show expand/collapse all group buttons in the toolbar when grouping is enabled.
270
+ * Defaults to true.
271
+ */
272
+ showGroupExpandControls?: boolean;
273
+ /**
274
+ * Callback invoked when user copies cells (Ctrl/Cmd + C) while cell focus or rectangular selection is active.
275
+ * Provides the plain text that was written to the clipboard (tab/newline delimited) and metadata.
276
+ */
277
+ onCopyCells?: (payload: {
278
+ text: string;
279
+ /** Present only for rectangular selections */
280
+ bounds?: {
281
+ rowStart: number;
282
+ rowEnd: number;
283
+ colStart: number;
284
+ colEnd: number;
285
+ } | null;
286
+ cells: Array<{
287
+ row: GridRow;
288
+ column: GridColumn;
289
+ value: any;
290
+ rowIndex: number;
291
+ colIndex: number;
292
+ }>;
293
+ isRectangular: boolean;
294
+ isFocusedCell: boolean;
295
+ }) => void;
296
+ /** Optional controlled selection ids */
297
+ selectedRowIds?: Iterable<string | number> | null;
298
+ /** Performance optimization settings for large datasets */
299
+ performanceConfig?: {
300
+ /** Enable horizontal virtualization for large column sets (default: true) */
301
+ enableHorizontalVirtualization?: boolean;
302
+ /** Column count threshold to enable horizontal virtualization (default: 50) */
303
+ horizontalVirtualizationThreshold?: number;
304
+ /** Row count threshold to offload sorting to a Web Worker (default: 5000). Set to 0 to always sort inline. */
305
+ sortWorkerThreshold?: number;
306
+ /** Maximum cache size for filtering operations (default: 5000) */
307
+ maxFilterCacheSize?: number;
308
+ /** Enable aggressive memoization for large datasets (default: true) */
309
+ enableAggressiveMemoization?: boolean;
310
+ };
311
+ }
312
+ export interface ContextMenuItem {
313
+ id: string;
314
+ label: string;
315
+ icon?: ReactNode;
316
+ onClick: (row: GridRow) => void;
317
+ disabled?: boolean;
318
+ separator?: boolean;
319
+ }
320
+ export type SortDirection = "asc" | "desc" | null;
321
+ export interface SortConfig {
322
+ key: string | null;
323
+ direction: SortDirection;
324
+ }
325
+ export interface VirtualizedRange {
326
+ startIndex: number;
327
+ endIndex: number;
328
+ offsetY: number;
329
+ }
330
+ export interface ColumnFilterValue {
331
+ type: FilterType;
332
+ value: any;
333
+ operator?: "equals" | "contains" | "startsWith" | "endsWith" | "gt" | "lt" | "gte" | "lte" | "between";
334
+ secondValue?: any;
335
+ }
336
+ export interface ActiveFilters {
337
+ [columnKey: string]: ColumnFilterValue;
338
+ }
339
+ export interface ColumnConfig {
340
+ columnWidths: Record<string, number>;
341
+ columnVisibility: Record<string, boolean>;
342
+ pinnedColumns: string[];
343
+ sortConfig: SortConfig;
344
+ /**
345
+ * Persisted grouping configuration. New multi-level shape uses columnKeys.
346
+ * The legacy single-key field (columnKey) is retained for backward compatibility.
347
+ */
348
+ groupConfig?: {
349
+ columnKeys?: string[];
350
+ columnKey?: string | null;
351
+ };
352
+ filters: {
353
+ globalFilter: string;
354
+ columnFilters: ActiveFilters;
355
+ };
356
+ columnOrder?: string[];
357
+ density?: Density;
358
+ }
359
+ export interface PaginationConfig {
360
+ enabled: boolean;
361
+ pageSize: number;
362
+ currentPage: number;
363
+ totalPages: number;
364
+ totalRows: number;
365
+ showPageSizeSelector?: boolean;
366
+ pageSizeOptions?: number[];
367
+ }
368
+ export interface ServerPaginationConfig {
369
+ enabled: boolean;
370
+ onPageChange: (page: number, pageSize: number) => Promise<void> | void;
371
+ onPageSizeChange?: (pageSize: number) => Promise<void> | void;
372
+ loading?: boolean;
373
+ totalRows: number;
374
+ }
375
+ export type PaginationMode = "client" | "server";
376
+ export interface FilterPopupProps {
377
+ column: GridColumn;
378
+ data: GridRow[];
379
+ currentFilter?: ColumnFilterValue;
380
+ onApplyFilter: (filter: ColumnFilterValue | null) => void;
381
+ onClose: () => void;
382
+ position: {
383
+ top: number;
384
+ left: number;
385
+ };
386
+ autoApply?: boolean;
387
+ }
388
+ export interface ServerFilterChangePayload {
389
+ globalFilter: string;
390
+ columnFilters: ActiveFilters;
391
+ filterableKeys: string[];
392
+ searchMode?: SearchMode;
393
+ }
394
+ /**
395
+ * Imperative handle for CustomDataGrid to allow external control of grouping.
396
+ * Use with React.forwardRef and useImperativeHandle in the grid component.
397
+ */
398
+ export interface CustomDataGridRef {
399
+ /** Replace the entire ordered grouping keys */
400
+ setGroupKeys: (keys: string[]) => void;
401
+ /** Add a grouping key at the end if not already present */
402
+ addGroupKey: (key: string) => void;
403
+ /** Remove a specific grouping key */
404
+ removeGroupKey: (key: string) => void;
405
+ /** Expand all group paths for the current grouping keys */
406
+ expandAllGroups: () => void;
407
+ /** Collapse all group paths */
408
+ collapseAllGroups: () => void;
409
+ /** Toggle a specific group path, e.g. "City=SF|Status=Open" */
410
+ toggleGroupExpansion: (groupPath: string) => void;
411
+ /** Read the current in-grid grouping configuration */
412
+ getGroupConfig: () => GroupConfig;
413
+ /** Set a column filter programmatically */
414
+ setColumnFilter: (columnKey: string, filter: any) => void;
415
+ /** Clear a specific column filter */
416
+ clearColumnFilter: (columnKey: string) => void;
417
+ /** Clear all column filters */
418
+ clearAllFilters: () => void;
419
+ /** Set global filter */
420
+ setGlobalFilter: (value: string) => void;
421
+ }
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ /**
3
+ * Highlights matching text within a string based on a search query
4
+ * @param text - The text to highlight
5
+ * @param searchQuery - The search query to match against
6
+ * @returns JSX element with highlighted matches
7
+ */
8
+ export declare const highlightText: (text: string, searchQuery: string) => React.ReactNode;
9
+ /**
10
+ * Checks if a value contains the search query (case-insensitive)
11
+ * @param value - The value to check
12
+ * @param searchQuery - The search query
13
+ * @returns true if the value contains the search query
14
+ */
15
+ export declare const containsSearchQuery: (value: any, searchQuery: string) => boolean;
@@ -0,0 +1,16 @@
1
+ export interface WorkerProcessMessage {
2
+ type: "process";
3
+ payload: {
4
+ rows: any[];
5
+ sort?: {
6
+ key: string;
7
+ direction: "asc" | "desc";
8
+ } | null;
9
+ };
10
+ }
11
+ export interface WorkerResultMessage {
12
+ type: "result";
13
+ payload: {
14
+ rows: any[];
15
+ };
16
+ }
package/package.json ADDED
@@ -0,0 +1,90 @@
1
+ {
2
+ "name": "react-kd-grid",
3
+ "version": "1.0.0",
4
+ "description": "A feature-rich, performant React data grid component with virtualization, grouping, filtering, and export capabilities",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.esm.js",
12
+ "require": "./dist/index.js",
13
+ "types": "./dist/index.d.ts"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsc && rollup -c",
23
+ "dev": "tsc --watch",
24
+ "prepare": "npm run build",
25
+ "prepublishOnly": "npm run build",
26
+ "typecheck": "tsc --noEmit",
27
+ "lint": "eslint src --ext .ts,.tsx",
28
+ "format": "prettier --write src",
29
+ "test": "vitest run",
30
+ "clean": "rm -rf dist"
31
+ },
32
+ "keywords": [
33
+ "react",
34
+ "grid",
35
+ "data-grid",
36
+ "table",
37
+ "virtualization",
38
+ "grouping",
39
+ "filtering",
40
+ "sorting",
41
+ "pagination",
42
+ "export",
43
+ "typescript"
44
+ ],
45
+ "author": "Your Name <your.email@example.com>",
46
+ "license": "MIT",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/yourusername/react-kd-grid.git"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/yourusername/react-kd-grid/issues"
53
+ },
54
+ "homepage": "https://github.com/yourusername/react-kd-grid#readme",
55
+ "peerDependencies": {
56
+ "react": ">=16.8.0",
57
+ "react-dom": ">=16.8.0"
58
+ },
59
+ "devDependencies": {
60
+ "@floating-ui/react": "^0.27.18",
61
+ "@rollup/plugin-commonjs": "^28.0.0",
62
+ "@rollup/plugin-node-resolve": "^15.2.0",
63
+ "@rollup/plugin-terser": "^0.4.4",
64
+ "@rollup/plugin-typescript": "^9.0.0",
65
+ "@types/node": "^20.0.0",
66
+ "@types/react": "^18.0.0",
67
+ "@types/react-dom": "^18.0.0",
68
+ "@types/file-saver": "^2.0.7",
69
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
70
+ "@typescript-eslint/parser": "^6.0.0",
71
+ "date-fns": "^3.6.0",
72
+ "eslint": "^8.0.0",
73
+ "eslint-plugin-react": "^7.32.0",
74
+ "eslint-plugin-react-hooks": "^4.6.0",
75
+ "lucide-react": "^0.454.0",
76
+ "prettier": "^3.0.0",
77
+ "rollup": "^3.0.0",
78
+ "tslib": "^2.6.0",
79
+ "typescript": "^5.0.0",
80
+ "vitest": "^1.0.0"
81
+ },
82
+ "dependencies": {
83
+ "exceljs": "^4.3.0",
84
+ "file-saver": "^2.0.5",
85
+ "lucide-react": "^0.454.0"
86
+ },
87
+ "engines": {
88
+ "node": ">=16.0.0"
89
+ }
90
+ }