react-kd-grid 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +309 -0
- package/dist/components/CellEditor.d.ts +23 -0
- package/dist/components/ColumnFilterSelector.d.ts +18 -0
- package/dist/components/CustomSelect.d.ts +14 -0
- package/dist/components/FooterAggregate.d.ts +16 -0
- package/dist/components/GridHeader.d.ts +39 -0
- package/dist/components/GridRows.d.ts +53 -0
- package/dist/components/GroupBar.d.ts +12 -0
- package/dist/components/GroupHeader.d.ts +29 -0
- package/dist/components/LicenseError.d.ts +9 -0
- package/dist/components/NoDataMessage.d.ts +11 -0
- package/dist/components/PaginationControls.d.ts +18 -0
- package/dist/components/Popover.d.ts +17 -0
- package/dist/components/RowContextMenu.d.ts +18 -0
- package/dist/components/SearchToolbar.d.ts +66 -0
- package/dist/components/filters/BooleanFilter.d.ts +7 -0
- package/dist/components/filters/DateFilter.d.ts +9 -0
- package/dist/components/filters/FilterContent.d.ts +9 -0
- package/dist/components/filters/FilterPopup.d.ts +2 -0
- package/dist/components/filters/MultiselectFilter.d.ts +10 -0
- package/dist/components/filters/NumberFilter.d.ts +9 -0
- package/dist/components/filters/TextFilter.d.ts +8 -0
- package/dist/components/filters/index.d.ts +6 -0
- package/dist/components/ui/DatePicker.d.ts +10 -0
- package/dist/constants.d.ts +1 -0
- package/dist/core/DataGrid.d.ts +3 -0
- package/dist/hooks/useAdvancedFiltering.d.ts +18 -0
- package/dist/hooks/useCellSelection.d.ts +67 -0
- package/dist/hooks/useColumnState.d.ts +45 -0
- package/dist/hooks/useDataWorker.d.ts +11 -0
- package/dist/hooks/useEditingCell.d.ts +49 -0
- package/dist/hooks/useExport.d.ts +14 -0
- package/dist/hooks/useGrouping.d.ts +28 -0
- package/dist/hooks/useInfiniteScroll.d.ts +31 -0
- package/dist/hooks/useLoadingBar.d.ts +21 -0
- package/dist/hooks/usePagination.d.ts +28 -0
- package/dist/hooks/useScrollSync.d.ts +29 -0
- package/dist/hooks/useSelection.d.ts +13 -0
- package/dist/hooks/useVirtualization.d.ts +17 -0
- package/dist/icons/index.d.ts +54 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.esm.js +1 -0
- package/dist/index.js +1 -0
- package/dist/types.d.ts +592 -0
- package/dist/utils/dateUtils.d.ts +16 -0
- package/dist/utils/highlightText.d.ts +15 -0
- package/dist/utils/license.d.ts +3 -0
- package/package.json +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-kd-grid",
|
|
3
|
+
"version": "5.0.1",
|
|
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
|
+
"sideEffects": [
|
|
10
|
+
"*.css"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.esm.js",
|
|
16
|
+
"require": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc && rollup -c",
|
|
26
|
+
"dev": "tsc --watch",
|
|
27
|
+
"prepare": "npm run build",
|
|
28
|
+
"prepublishOnly": "npm run build",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
31
|
+
"format": "prettier --write src",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"clean": "rm -rf dist"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"react",
|
|
37
|
+
"grid",
|
|
38
|
+
"data-grid",
|
|
39
|
+
"table",
|
|
40
|
+
"virtualization",
|
|
41
|
+
"grouping",
|
|
42
|
+
"filtering",
|
|
43
|
+
"sorting",
|
|
44
|
+
"pagination",
|
|
45
|
+
"export",
|
|
46
|
+
"typescript"
|
|
47
|
+
],
|
|
48
|
+
"author": "Your Name <your.email@example.com>",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "git+https://github.com/yourusername/react-kd-grid.git"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/yourusername/react-kd-grid/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/yourusername/react-kd-grid#readme",
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@floating-ui/react": "^0.27.18",
|
|
60
|
+
"@rollup/plugin-commonjs": "^28.0.0",
|
|
61
|
+
"@rollup/plugin-node-resolve": "^15.2.0",
|
|
62
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
63
|
+
"@rollup/plugin-typescript": "^9.0.0",
|
|
64
|
+
"@types/node": "^20.0.0",
|
|
65
|
+
"@types/react": "^18.0.0",
|
|
66
|
+
"@types/react-dom": "^18.0.0",
|
|
67
|
+
"@types/file-saver": "^2.0.7",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
69
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
70
|
+
"eslint": "^8.0.0",
|
|
71
|
+
"eslint-plugin-react": "^7.32.0",
|
|
72
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
73
|
+
"prettier": "^3.0.0",
|
|
74
|
+
"rollup": "^3.0.0",
|
|
75
|
+
"tslib": "^2.6.0",
|
|
76
|
+
"typescript": "^5.0.0",
|
|
77
|
+
"vitest": "^1.0.0"
|
|
78
|
+
},
|
|
79
|
+
"dependencies": {},
|
|
80
|
+
"peerDependencies": {
|
|
81
|
+
"react": ">=18.0.0",
|
|
82
|
+
"react-dom": ">=18.0.0",
|
|
83
|
+
"exceljs": ">=4.0.0",
|
|
84
|
+
"file-saver": ">=2.0.0"
|
|
85
|
+
},
|
|
86
|
+
"peerDependenciesMeta": {
|
|
87
|
+
"exceljs": {
|
|
88
|
+
"optional": true
|
|
89
|
+
},
|
|
90
|
+
"file-saver": {
|
|
91
|
+
"optional": true
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"engines": {
|
|
95
|
+
"node": ">=16.0.0"
|
|
96
|
+
}
|
|
97
|
+
}
|