react-kd-grid 5.0.2 → 5.0.3

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.
@@ -1,5 +1,5 @@
1
- import { ReactNode, ChangeEvent } from "react";
2
- import type { Density, BulkActionOption, SavedFilter, ExportFormat } from "../types";
1
+ import { ChangeEvent, ReactNode } from "react";
2
+ import type { BulkActionOption, Density, ExportFormat, SavedFilter } from "../types";
3
3
  interface ColumnVisibility {
4
4
  [columnKey: string]: boolean;
5
5
  }
@@ -59,6 +59,10 @@ interface SearchToolbarProps {
59
59
  customLeftContent?: ReactNode;
60
60
  customRightContent?: ReactNode;
61
61
  }
62
+ /**
63
+ * Optimized SearchToolbar using React.memo to prevent unnecessary re-renders
64
+ * as users type in the global search or modify filters.
65
+ */
62
66
  export declare const SearchToolbar: import("react").MemoExoticComponent<{
63
67
  ({ globalFilter, filteredDataLength, totalDataLength, selectedRowsCount, selectedRows, showExport, showColumnToggle, showBulkActions, columns, columnVisibility, columnFilters, bulkActions, exportOptions, onGlobalFilterChange, onClearFilters, onColumnVisibilityChange, onColumnFilter, onResetColumns, columnOrder, onColumnOrderChange, pinnedColumns, onScrollToColumn, density, onDensityChange, showDensityControl, customLeftContent, customRightContent, }: SearchToolbarProps): import("react/jsx-runtime").JSX.Element;
64
68
  displayName: string;
@@ -0,0 +1,17 @@
1
+ import { BulkActionOption } from "../../types";
2
+ interface BulkActionPopoverProps {
3
+ isOpen: boolean;
4
+ anchorEl: HTMLElement | null;
5
+ onClose: () => void;
6
+ bulkActions: BulkActionOption[];
7
+ selectedRowsCount: number;
8
+ onBulkAction: (action: BulkActionOption) => void;
9
+ }
10
+ /**
11
+ * BulkActionPopover
12
+ *
13
+ * Displays a menu of actions that can be globally applied to all currently selected grid rows.
14
+ * Features customizable icons and labels per action.
15
+ */
16
+ export declare const BulkActionPopover: ({ isOpen, anchorEl, onClose, bulkActions, selectedRowsCount, onBulkAction, }: BulkActionPopoverProps) => import("react/jsx-runtime").JSX.Element;
17
+ export {};
@@ -0,0 +1,35 @@
1
+ import React from "react";
2
+ interface ColumnDefinition {
3
+ key: string;
4
+ header: string;
5
+ }
6
+ interface ColumnVisibilityPopoverProps {
7
+ isOpen: boolean;
8
+ anchorEl: HTMLElement | null;
9
+ onClose: () => void;
10
+ filteredColumns: ColumnDefinition[];
11
+ columnVisibility: Record<string, boolean>;
12
+ onColumnToggle: (columnKey: string) => void;
13
+ columnSearch: string;
14
+ onColumnSearchChange: (value: string) => void;
15
+ onResetColumns: () => void;
16
+ onScrollToColumn?: (columnKey: string) => void;
17
+ onColumnVisibilityChange?: (columnKey: string, visible: boolean) => void;
18
+ draggingKey: string | null;
19
+ dragOver: {
20
+ key: string;
21
+ position: "before" | "after";
22
+ } | null;
23
+ handleDragStart: (columnKey: string, e: React.DragEvent) => void;
24
+ handleDragOver: (targetKey: string, e: React.DragEvent) => void;
25
+ handleDrop: (targetKey: string) => void;
26
+ handleDragEnd: () => void;
27
+ }
28
+ /**
29
+ * ColumnVisibilityPopover
30
+ *
31
+ * Provides the UI for toggling column visibility and reordering columns via drag-and-drop.
32
+ * Includes column search and reset functionality.
33
+ */
34
+ export declare const ColumnVisibilityPopover: ({ isOpen, anchorEl, onClose, filteredColumns, columnVisibility, onColumnToggle, columnSearch, onColumnSearchChange, onResetColumns, onScrollToColumn, onColumnVisibilityChange, draggingKey, dragOver, handleDragStart, handleDragOver, handleDrop, handleDragEnd, }: ColumnVisibilityPopoverProps) => import("react/jsx-runtime").JSX.Element;
35
+ export {};
@@ -0,0 +1,18 @@
1
+ import { ExportFormat } from "../../types";
2
+ interface ExportPopoverProps {
3
+ isOpen: boolean;
4
+ anchorEl: HTMLElement | null;
5
+ onClose: () => void;
6
+ exportFormats: ExportFormat[];
7
+ filteredDataLength: number;
8
+ selectedRowsCount: number;
9
+ onExport: (format: ExportFormat, exportSelected: boolean) => void;
10
+ }
11
+ /**
12
+ * ExportPopover
13
+ *
14
+ * Provides the UI for exporting grid data in various formats (CSV, JSON, Excel).
15
+ * Allows exporting either all filtered data or only the currently selected rows.
16
+ */
17
+ export declare const ExportPopover: ({ isOpen, anchorEl, onClose, exportFormats, filteredDataLength, selectedRowsCount, onExport, }: ExportPopoverProps) => import("react/jsx-runtime").JSX.Element;
18
+ export {};
@@ -0,0 +1,29 @@
1
+ interface ColumnDefinition {
2
+ key: string;
3
+ header: string;
4
+ visible?: boolean;
5
+ filterOptions?: Array<{
6
+ label: string;
7
+ value: string | number;
8
+ }>;
9
+ filterType?: "text" | "select" | "multiselect";
10
+ filterable?: any;
11
+ }
12
+ interface FilterPopoverProps {
13
+ isOpen: boolean;
14
+ anchorEl: HTMLElement | null;
15
+ onClose: () => void;
16
+ onClearFilters?: () => void;
17
+ columns: ColumnDefinition[];
18
+ columnFilters: Record<string, any>;
19
+ onColumnFilter?: (columnKey: string, filter: any) => void;
20
+ hasFilterableColumns: boolean;
21
+ }
22
+ /**
23
+ * FilterPopover
24
+ *
25
+ * Provides the UI for managing column-specific filters.
26
+ * Includes a search/select interface for each filterable column and a clear all action.
27
+ */
28
+ export declare const FilterPopover: ({ isOpen, anchorEl, onClose, onClearFilters, columns, columnFilters, onColumnFilter, hasFilterableColumns, }: FilterPopoverProps) => import("react/jsx-runtime").JSX.Element;
29
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Density } from "../../types";
2
+ interface SettingsPopoverProps {
3
+ isOpen: boolean;
4
+ anchorEl: HTMLElement | null;
5
+ onClose: () => void;
6
+ density: Density;
7
+ onDensityChange?: (density: Density) => void;
8
+ showDensityControl?: boolean;
9
+ }
10
+ /**
11
+ * SettingsPopover
12
+ *
13
+ * Provides a menu for general grid configurations.
14
+ * Currently supports Row Density selection and is easily extensible for future settings.
15
+ */
16
+ export declare const SettingsPopover: ({ isOpen, anchorEl, onClose, density, onDensityChange, showDensityControl, }: SettingsPopoverProps) => import("react/jsx-runtime").JSX.Element;
17
+ export {};
@@ -0,0 +1,11 @@
1
+ import { ButtonHTMLAttributes } from "react";
2
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "danger";
4
+ size?: "sm" | "md" | "lg";
5
+ isLoading?: boolean;
6
+ }
7
+ /**
8
+ * Enterprise-grade Button component with built-in loading states and variant styling.
9
+ */
10
+ export declare const Button: ({ children, variant, size, isLoading, className, disabled, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
11
+ export {};
@@ -0,0 +1,9 @@
1
+ import { InputHTMLAttributes } from "react";
2
+ interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
3
+ label?: string;
4
+ }
5
+ /**
6
+ * Enterprise-grade Checkbox component for consistent styling.
7
+ */
8
+ export declare const Checkbox: ({ label, className, id, ...props }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,12 @@
1
+ import React, { InputHTMLAttributes } from "react";
2
+ interface TextFieldProps extends InputHTMLAttributes<HTMLInputElement> {
3
+ label?: string;
4
+ error?: string;
5
+ helperText?: string;
6
+ icon?: React.ReactNode;
7
+ }
8
+ /**
9
+ * Enterprise-grade TextField component with support for labels, errors, and icons.
10
+ */
11
+ export declare const TextField: ({ label, error, helperText, icon, className, id, ...props }: TextFieldProps) => import("react/jsx-runtime").JSX.Element;
12
+ export {};
@@ -0,0 +1,17 @@
1
+ import { ExportFormat, Density } from "../types";
2
+ /**
3
+ * Mappings for Export formats to their respective icons.
4
+ */
5
+ export declare const getExportIcon: (format: ExportFormat) => import("react/jsx-runtime").JSX.Element;
6
+ /**
7
+ * Mappings for Bulk Action IDs to their respective icons.
8
+ */
9
+ export declare const getBulkActionIcon: (action: string) => import("react/jsx-runtime").JSX.Element;
10
+ /**
11
+ * Human-readable labels for export formats.
12
+ */
13
+ export declare const getFormatLabel: (format: ExportFormat) => "CSV" | "JSON" | "Excel";
14
+ /**
15
+ * Default density options for the grid.
16
+ */
17
+ export declare const DENSITY_OPTIONS: Density[];
@@ -0,0 +1,83 @@
1
+ import React, { RefObject } from "react";
2
+ import type { GridColumn, GridRow, SortConfig, ColumnFilterValue } from "../types";
3
+ interface GridBodyContainerProps {
4
+ scrollRef: RefObject<HTMLDivElement>;
5
+ flatRows: any[];
6
+ columnsWithWidths: any[];
7
+ visibleColumns: any[];
8
+ totalWidth: number;
9
+ selectable: boolean;
10
+ dataToDisplay: any[];
11
+ pinnedAll: any[];
12
+ effectivePinnedColumns: Set<string>;
13
+ hvPadLeftMemo: number;
14
+ hvPadRightMemo: number;
15
+ resolvedHeaderHeight: number;
16
+ sortConfig: SortConfig;
17
+ columnFilters: Record<string, ColumnFilterValue | null>;
18
+ selectedRows: Set<string | number>;
19
+ data: any[];
20
+ handleSort: (key: string) => void;
21
+ setColumnFilter: (key: string, filter: ColumnFilterValue | null) => void;
22
+ handleSelectAll: (checked: boolean) => void;
23
+ handleColumnResize: (columnKey: string, width: number) => void;
24
+ handleColumnPin: (columnKey: string, pinned: boolean) => void;
25
+ addGroupKey: (key: string) => void;
26
+ removeGroupKey: (key: string) => void;
27
+ handleGroupBy: (columnKey: string) => void;
28
+ autosizeColumn: (columnKey: string) => void;
29
+ autosizeAllColumns: () => void;
30
+ resetColumns: () => void;
31
+ columnOrder: string[];
32
+ setColumnOrder: React.Dispatch<React.SetStateAction<string[]>>;
33
+ pagination: any;
34
+ minResizeWidth?: number;
35
+ effectiveVirtualized: boolean;
36
+ virtualizedRange: {
37
+ offsetY: number;
38
+ startIndex: number;
39
+ endIndex: number;
40
+ };
41
+ resolvedRowHeight: number;
42
+ visibleData: any[];
43
+ isRowSelectable?: (row: GridRow) => boolean;
44
+ handleRowSelect: (rowId: string | number, isSelected: boolean) => void;
45
+ rowStyle?: any;
46
+ globalFilter: string;
47
+ onContextMenu?: any;
48
+ onRowDoubleClick?: any;
49
+ onRowClick?: any;
50
+ onCellClick?: any;
51
+ onCellContextMenu?: any;
52
+ isCellFocused: (rowId: string | number, columnKey: string) => boolean;
53
+ isCellSelected: (rowId: string | number, columnKey: string) => boolean;
54
+ handleCellMouseDown: any;
55
+ handleCellMouseEnter: any;
56
+ contextMenuItems?: any;
57
+ getRowId?: any;
58
+ isEditing: (rowId: string | number, columnKey: string) => boolean;
59
+ startEdit: any;
60
+ commitEdit: any;
61
+ cancelEdit: any;
62
+ editingCell: any;
63
+ safeGetRowId: (r: any) => string | number;
64
+ toggleGroupExpansion: (groupKey: string) => void;
65
+ containerWidth: number;
66
+ groupConfig: any;
67
+ columns: GridColumn[];
68
+ renderGroupActions?: any;
69
+ groupFooterVariant: "chips" | "columns";
70
+ isValidLicense: boolean;
71
+ infiniteScroll: any;
72
+ sentinelRef: RefObject<HTMLDivElement>;
73
+ loading: boolean;
74
+ showLoader: boolean;
75
+ finishingLoader: boolean;
76
+ loaderTop: number;
77
+ noDataMessage?: string;
78
+ noDataRenderer?: any;
79
+ handleScroll: (e: React.UIEvent<HTMLDivElement>) => void;
80
+ cellSelectionEnabled: boolean;
81
+ }
82
+ export declare const GridBodyContainer: React.FC<GridBodyContainerProps>;
83
+ export {};
@@ -0,0 +1,23 @@
1
+ import React, { RefObject } from "react";
2
+ interface GridFooterContainerProps {
3
+ hasFooterAggregate: boolean;
4
+ footerScrollRef: RefObject<HTMLDivElement>;
5
+ forwardWheelToBody: (e: React.WheelEvent) => void;
6
+ totalWidth: number;
7
+ selectable: boolean;
8
+ resolvedRowHeight: number;
9
+ columnsWithWidths: any[];
10
+ flatRows: any[];
11
+ effectivePinnedColumns: Set<string>;
12
+ infiniteScroll: any;
13
+ paginationConfig: any;
14
+ isServerLoading: boolean;
15
+ selectedRowsCount: number;
16
+ data: any[];
17
+ filteredData: any[];
18
+ pagination: any;
19
+ handlePageChange: (page: number) => void;
20
+ handlePageSizeChange: (pageSize: number) => void;
21
+ }
22
+ export declare const GridFooterContainer: React.FC<GridFooterContainerProps>;
23
+ export {};
@@ -0,0 +1,48 @@
1
+ import React, { ChangeEvent } from "react";
2
+ import type { GridColumn, ColumnFilterValue, Density } from "../types";
3
+ interface GridToolbarContainerProps {
4
+ showToolbar: boolean;
5
+ filterable: boolean;
6
+ globalFilter: string;
7
+ filteredDataLength: number;
8
+ totalDataLength: number;
9
+ paginationMode?: "client" | "server";
10
+ selectedRowsCount: number;
11
+ showExport: boolean;
12
+ columns: GridColumn[];
13
+ columnFilters: Record<string, ColumnFilterValue | null>;
14
+ columnVisibility: Record<string, boolean>;
15
+ onResetColumns: () => void;
16
+ exportOptions: {
17
+ enabled: boolean;
18
+ formats: any[];
19
+ filename: string;
20
+ onExport: (format: any, exportSelected: boolean) => void;
21
+ };
22
+ toolbarLeft?: React.ReactNode;
23
+ toolbarRight?: React.ReactNode;
24
+ onGlobalFilterChange: (e: ChangeEvent<HTMLInputElement>) => void;
25
+ onClearFilters: () => void;
26
+ onColumnFilter: (columnKey: string, filter: ColumnFilterValue | null) => void;
27
+ onColumnVisibilityChange: (columnKey: string, visible: boolean) => void;
28
+ columnOrder: string[];
29
+ onColumnOrderChange: (order: string[]) => void;
30
+ pinnedColumns: Set<string>;
31
+ onScrollToColumn: (columnKey: string) => void;
32
+ density: Density;
33
+ onDensityChange: (density: Density) => void;
34
+ showDensityControl: boolean;
35
+ groupable: boolean;
36
+ groupBarVisibility: "auto" | "visible" | "hidden";
37
+ groupConfig: {
38
+ columnKeys: string[];
39
+ expanded: Set<string>;
40
+ };
41
+ removeGroupKey: (key: string) => void;
42
+ setGroupKeys: (keys: string[]) => void;
43
+ addGroupKey: (key: string) => void;
44
+ collapseAllGroups: () => void;
45
+ expandAllGroups: () => void;
46
+ }
47
+ export declare const GridToolbarContainer: React.FC<GridToolbarContainerProps>;
48
+ export {};
@@ -0,0 +1,28 @@
1
+ interface Column {
2
+ key: string;
3
+ header: string;
4
+ }
5
+ interface UseColumnDnDProps {
6
+ columns: Column[];
7
+ columnOrder: string[];
8
+ pinnedColumns?: Set<string>;
9
+ onColumnOrderChange?: (order: string[]) => void;
10
+ }
11
+ /**
12
+ * useColumnDnD
13
+ *
14
+ * Encapsulates the drag-and-drop logic for reordering columns within the toolbar menu.
15
+ * Previously, this logic was mixed with the rendering and menu state in SearchToolbar.tsx.
16
+ */
17
+ export declare function useColumnDnD({ columns, columnOrder, pinnedColumns, onColumnOrderChange, }: UseColumnDnDProps): {
18
+ draggingKey: string;
19
+ dragOver: {
20
+ key: string;
21
+ position: "before" | "after";
22
+ };
23
+ handleDragStart: (columnKey: string, e: React.DragEvent) => void;
24
+ handleDragOver: (targetKey: string, e: React.DragEvent) => void;
25
+ handleDrop: (targetKey: string) => void;
26
+ handleDragEnd: () => void;
27
+ };
28
+ export {};
@@ -0,0 +1,29 @@
1
+ /**
2
+ * useToolbarMenus
3
+ *
4
+ * Manages the visibility of various popover menus in the grid toolbar.
5
+ * Includes logic to close menus when clicking outside and handle specific cases like MUI DatePickers.
6
+ */
7
+ export declare function useToolbarMenus(): {
8
+ showExportMenu: boolean;
9
+ setShowExportMenu: import("react").Dispatch<import("react").SetStateAction<boolean>>;
10
+ showFilters: boolean;
11
+ setShowFilters: import("react").Dispatch<import("react").SetStateAction<boolean>>;
12
+ showBulkActionsMenu: boolean;
13
+ setShowBulkActionsMenu: import("react").Dispatch<import("react").SetStateAction<boolean>>;
14
+ showColumnMenu: boolean;
15
+ setShowColumnMenu: import("react").Dispatch<import("react").SetStateAction<boolean>>;
16
+ showSettingsMenu: boolean;
17
+ setShowSettingsMenu: import("react").Dispatch<import("react").SetStateAction<boolean>>;
18
+ exportMenuRef: import("react").MutableRefObject<HTMLDivElement>;
19
+ bulkActionsRef: import("react").MutableRefObject<HTMLDivElement>;
20
+ columnMenuRef: import("react").MutableRefObject<HTMLDivElement>;
21
+ filtersMenuRef: import("react").MutableRefObject<HTMLDivElement>;
22
+ settingsMenuRef: import("react").MutableRefObject<HTMLDivElement>;
23
+ exportAnchorRef: import("react").MutableRefObject<HTMLButtonElement>;
24
+ bulkActionsAnchorRef: import("react").MutableRefObject<HTMLButtonElement>;
25
+ columnAnchorRef: import("react").MutableRefObject<HTMLButtonElement>;
26
+ filtersAnchorRef: import("react").MutableRefObject<HTMLButtonElement>;
27
+ settingsAnchorRef: import("react").MutableRefObject<HTMLButtonElement>;
28
+ closeAllMenus: () => void;
29
+ };
@@ -17,12 +17,18 @@ interface UseColumnStateProps {
17
17
  globalFilter: string;
18
18
  columnFilters: Record<string, ColumnFilterValue | null>;
19
19
  density: Density;
20
+ containerWidth: number;
21
+ selectable: boolean;
20
22
  }
21
23
  export interface UseColumnStateReturn {
22
24
  columnWidths: Record<string, number>;
23
25
  columnOrder: string[];
24
26
  pinnedColumns: Set<string>;
25
27
  columnVisibility: Record<string, boolean>;
28
+ columnsWithWidths: any[];
29
+ pinnedAll: any[];
30
+ unpinnedAll: any[];
31
+ effectivePinnedColumns: Set<string>;
26
32
  handleColumnResize: (columnKey: string, width: number) => void;
27
33
  handleColumnPin: (columnKey: string, pinned: boolean) => void;
28
34
  handleColumnVisibilityChange: (columnKey: string, visible: boolean) => void;
@@ -40,6 +46,7 @@ export interface UseColumnStateReturn {
40
46
  * - Autosize (canvas-based measureText, with heuristic fallback)
41
47
  * - Column config hydration from `initialColumnConfig` on mount
42
48
  * - Debounced `onColumnConfigChange` emission
49
+ * - Calculation of resolved columnsWithWidths including flex-grow
43
50
  */
44
- export declare const useColumnState: ({ columns, data, initialColumnConfig, onColumnConfigChange, setSortConfig, setGroupKeys, setDensity, setGlobalFilter, setColumnFilter, sortConfig, groupConfig, globalFilter, columnFilters, density, }: UseColumnStateProps) => UseColumnStateReturn;
51
+ export declare const useColumnState: ({ columns, data, initialColumnConfig, onColumnConfigChange, setSortConfig, setGroupKeys, setDensity, setGlobalFilter, setColumnFilter, sortConfig, groupConfig, globalFilter, columnFilters, density, containerWidth, selectable, }: UseColumnStateProps) => UseColumnStateReturn;
45
52
  export {};
@@ -0,0 +1,17 @@
1
+ import { GridRow } from "../types";
2
+ interface UseGridDataMapsProps {
3
+ dataToDisplay: any[];
4
+ columnsWithWidths: any[];
5
+ getRowId?: (row: GridRow) => string | number;
6
+ }
7
+ export declare const useGridDataMaps: ({ dataToDisplay, columnsWithWidths, getRowId, }: UseGridDataMapsProps) => {
8
+ colIndexByKey: Map<string, number>;
9
+ colByKey: Map<string, any>;
10
+ flatRows: any[];
11
+ rowIndexById: Map<string | number, number>;
12
+ rowById: Map<string | number, any>;
13
+ totalWidth: any;
14
+ columnKeys: any[];
15
+ hasFooterAggregate: boolean;
16
+ };
17
+ export {};
@@ -0,0 +1,20 @@
1
+ import { RefObject } from "react";
2
+ interface UseGridMethodsProps {
3
+ scrollRef: RefObject<HTMLDivElement>;
4
+ rowIndexById: Map<string | number, number>;
5
+ colIndexByKey: Map<string, number>;
6
+ columnsWithWidths: any[];
7
+ resolvedRowHeight: number;
8
+ selectable: boolean;
9
+ }
10
+ /**
11
+ * useGridMethods
12
+ *
13
+ * Centralizes imperative grid operations like scrolling to specific rows or columns.
14
+ * This logic was previously duplicated in DataGrid.tsx and its sub-components.
15
+ */
16
+ export declare function useGridMethods({ scrollRef, rowIndexById, colIndexByKey, columnsWithWidths, resolvedRowHeight, selectable, }: UseGridMethodsProps): {
17
+ scrollToRow: (rowId: string | number) => void;
18
+ scrollToColumn: (columnKey: string) => void;
19
+ };
20
+ export {};
@@ -0,0 +1,18 @@
1
+ interface UseHorizontalVirtualizationProps {
2
+ columnsWithWidths: any[];
3
+ pinnedAll: any[];
4
+ unpinnedAll: any[];
5
+ effectivePinnedColumns: Set<string>;
6
+ hScrollLeft: number;
7
+ viewportWidth: number;
8
+ selectable: boolean;
9
+ enableHorizontalVirtualization: boolean;
10
+ horizontalVirtualizationThreshold: number;
11
+ }
12
+ export declare const useHorizontalVirtualization: ({ columnsWithWidths, pinnedAll, unpinnedAll, effectivePinnedColumns, hScrollLeft, viewportWidth, selectable, enableHorizontalVirtualization, horizontalVirtualizationThreshold, }: UseHorizontalVirtualizationProps) => {
13
+ needsHorizontalVirtualization: boolean;
14
+ visibleColumns: any[];
15
+ hvPadLeftMemo: number;
16
+ hvPadRightMemo: number;
17
+ };
18
+ export {};
@@ -42,6 +42,7 @@ export declare const Search: (p: IconProps) => import("react/jsx-runtime").JSX.E
42
42
  export declare const Database: (p: IconProps) => import("react/jsx-runtime").JSX.Element;
43
43
  export declare const FileText: (p: IconProps) => import("react/jsx-runtime").JSX.Element;
44
44
  export declare const Table: (p: IconProps) => import("react/jsx-runtime").JSX.Element;
45
+ export declare const Columns: (p: IconProps) => import("react/jsx-runtime").JSX.Element;
45
46
  export declare const Users: (p: IconProps) => import("react/jsx-runtime").JSX.Element;
46
47
  export declare const LocateFixed: (p: IconProps) => import("react/jsx-runtime").JSX.Element;
47
48
  export declare const Loader2: (p: IconProps) => import("react/jsx-runtime").JSX.Element;