slickgrid-react 3.3.2 → 3.5.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.
- package/README.md +6 -6
- package/package.json +36 -36
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
### Brief introduction
|
|
11
|
-
One of the best JavasSript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid), which was originally developed by @mleibman, is now available to React. SlickGrid beats most other datagrids in terms of features, customizability and performance (it can easily deal with even a million row). Slickgrid-React is a wrapper on top of SlickGrid and we are using the [6pac/SlickGrid](https://github.com/6pac/SlickGrid/) fork which is the most active one since the original one was put on pause by its original author for personal reasons. Also worth to know, that I also contributed a lot to the 6pac/SlickGrid fork over the years for the benefit of all the SlickGrid libraries that I maintain including this one here... SlickGrid was recently refactored to
|
|
11
|
+
One of the best JavasSript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid), which was originally developed by @mleibman, is now available to React. SlickGrid beats most other datagrids in terms of features, customizability and performance (it can easily deal with even a million row). Slickgrid-React is a wrapper on top of SlickGrid and we are using the [6pac/SlickGrid](https://github.com/6pac/SlickGrid/) fork, which is the most active one since the original one was put on pause by its original author for personal reasons. Also worth to know, that I also contributed a lot to the 6pac/SlickGrid fork over the years for the benefit of all the SlickGrid libraries that I maintain including this one here... SlickGrid was also recently refactored to drop jQuery requirement and be browser native in Slickgrid-React [v3.0](https://github.com/ghiscoding/slickgrid-react/releases/tag/v3.0.1) and higher.
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
Refer to the **[Wiki - HOWTO Step by Step](https://github.com/ghiscoding/slickgrid-react/wiki/HOWTO--Step-by-Step)** and/or clone the [Slickgrid-React-Demos](https://github.com/ghiscoding/slickgrid-react-demos) repository. Please consult all Wikis before opening new issues, also consider asking installation and/or general questions on [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=slickgrid) unless you think there's a bug with the library.
|
|
@@ -34,8 +34,8 @@ You like **Slickgrid-React**? Be sure to upvote :star:, and perhaps support me w
|
|
|
34
34
|
## Latest News & Releases
|
|
35
35
|
Check out the [Releases](https://github.com/ghiscoding/slickgrid-react/releases) section for all latest News & Releases.
|
|
36
36
|
|
|
37
|
-
###
|
|
38
|
-
Slickgrid-
|
|
37
|
+
### Tested with [Jest](https://jestjs.io/) (Unit Tests) - [Cypress](https://www.cypress.io/) (E2E Tests)
|
|
38
|
+
Slickgrid-Universal has **100%** Unit Test Coverage, we are talking about +4,000 unit tests that are fully tested with [Jest](https://jestjs.io/). On the UI side, all Slickgrid-React Examples are tested with [Cypress](https://www.cypress.io/), there are over +600 Cypress E2E tests.
|
|
39
39
|
|
|
40
40
|
## Installation
|
|
41
41
|
Refer to the **[Wiki - HOWTO Step by Step](https://github.com/ghiscoding/slickgrid-react/wiki/HOWTO---Step-by-Step)**. Please don't open any issue unless you have followed these steps (from the Wiki), and if any of the steps are incorrect or confusing, then please let me know.
|
|
@@ -46,19 +46,19 @@ Refer to the **[Wiki - HOWTO Step by Step](https://github.com/ghiscoding/slickgr
|
|
|
46
46
|
The Wiki is where all the documentation and instructions will go, so please consult the [slickgrid-react - Wiki](https://github.com/ghiscoding/slickgrid-react/wiki) before opening any issues. The [Wiki - HOWTO](https://github.com/ghiscoding/slickgrid-react/wiki/HOWTO---Step-by-Step) is a great place to start with. You can also take a look at the [Demo page](https://ghiscoding.github.io/slickgrid-react), it includes sample for most of the features and it keeps growing (so you might want to consult it whenever a new version comes out).
|
|
47
47
|
|
|
48
48
|
## Main features
|
|
49
|
-
You can see some screenshots below and
|
|
49
|
+
You can see some screenshots below and if that is not enough for you to decide, head over to the [Wiki - Main Features](https://github.com/ghiscoding/slickgrid-react/wiki) for documentations and features.
|
|
50
50
|
|
|
51
51
|
## Missing features
|
|
52
52
|
What if `Slickgrid-React` is missing feature(s) compare to the original core library [6pac/SlickGrid](https://github.com/6pac/SlickGrid/)?
|
|
53
53
|
|
|
54
|
-
Fear not,
|
|
54
|
+
Fear not, you can always reference the `SlickGrid` and `DataView` instances, just like in the core lib, those are exposed through Events. For more info head over to the [Wiki - SlickGrid & DataView objects](/slickgrid-universal/slickgrid-react/wiki/SlickGrid-&-DataView-Objects) and [Wiki - Grid & DataView Events](https://github.com/ghiscoding/slickgrid-react/wiki/Grid-&-DataView-Events)
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
## Screenshots
|
|
58
58
|
|
|
59
59
|
Screenshots from the demo app with the `Bootstrap` theme.
|
|
60
60
|
|
|
61
|
-
_Note that the styling changed a
|
|
61
|
+
_Note that the styling might have changed a little, the best is to simply head over to the [Live Demo](https://ghiscoding.github.io/slickgrid-react) page._
|
|
62
62
|
|
|
63
63
|
### Slickgrid example with Formatters (last column shown is a custom Formatter)
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slickgrid-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Slickgrid components made available in React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"test:jest:coverage": "npx jest --detectOpenHandles --runInBand --coverage --config test/jest.config.js",
|
|
78
78
|
"preview:release": "release-it --dry-run",
|
|
79
79
|
"release": "release-it --only-version",
|
|
80
|
-
"serve:demo": "serve ./docs -l 8080"
|
|
80
|
+
"serve:demo": "serve ./docs -l 8080 --no-request-logging"
|
|
81
81
|
},
|
|
82
82
|
"browserslist": [
|
|
83
83
|
"last 2 version",
|
|
@@ -91,11 +91,11 @@
|
|
|
91
91
|
]
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
|
-
"@slickgrid-universal/common": "~3.
|
|
95
|
-
"@slickgrid-universal/custom-footer-component": "~3.
|
|
96
|
-
"@slickgrid-universal/empty-warning-component": "~3.
|
|
97
|
-
"@slickgrid-universal/event-pub-sub": "~3.
|
|
98
|
-
"@slickgrid-universal/pagination-component": "~3.
|
|
94
|
+
"@slickgrid-universal/common": "~3.5.0",
|
|
95
|
+
"@slickgrid-universal/custom-footer-component": "~3.5.0",
|
|
96
|
+
"@slickgrid-universal/empty-warning-component": "~3.5.0",
|
|
97
|
+
"@slickgrid-universal/event-pub-sub": "~3.4.0",
|
|
98
|
+
"@slickgrid-universal/pagination-component": "~3.5.0",
|
|
99
99
|
"dequal": "^2.0.3",
|
|
100
100
|
"dompurify": "^3.0.6",
|
|
101
101
|
"font-awesome": "^4.7.0",
|
|
@@ -106,52 +106,52 @@
|
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
108
|
"@4tw/cypress-drag-drop": "^2.2.5",
|
|
109
|
-
"@faker-js/faker": "^8.
|
|
109
|
+
"@faker-js/faker": "^8.2.0",
|
|
110
110
|
"@fnando/sparkline": "^0.3.10",
|
|
111
111
|
"@popperjs/core": "^2.11.8",
|
|
112
112
|
"@release-it/conventional-changelog": "^7.0.2",
|
|
113
|
-
"@slickgrid-universal/composite-editor-component": "~3.
|
|
114
|
-
"@slickgrid-universal/custom-tooltip-plugin": "~3.
|
|
115
|
-
"@slickgrid-universal/excel-export": "~3.
|
|
116
|
-
"@slickgrid-universal/graphql": "~3.
|
|
117
|
-
"@slickgrid-universal/odata": "~3.
|
|
118
|
-
"@slickgrid-universal/rxjs-observable": "~3.
|
|
119
|
-
"@slickgrid-universal/text-export": "~3.
|
|
113
|
+
"@slickgrid-universal/composite-editor-component": "~3.5.0",
|
|
114
|
+
"@slickgrid-universal/custom-tooltip-plugin": "~3.5.0",
|
|
115
|
+
"@slickgrid-universal/excel-export": "~3.5.0",
|
|
116
|
+
"@slickgrid-universal/graphql": "~3.5.0",
|
|
117
|
+
"@slickgrid-universal/odata": "~3.5.0",
|
|
118
|
+
"@slickgrid-universal/rxjs-observable": "~3.5.0",
|
|
119
|
+
"@slickgrid-universal/text-export": "~3.5.0",
|
|
120
120
|
"@testing-library/jest-dom": "^6.1.4",
|
|
121
|
-
"@testing-library/react": "^14.
|
|
121
|
+
"@testing-library/react": "^14.1.0",
|
|
122
122
|
"@testing-library/user-event": "^14.5.1",
|
|
123
|
-
"@types/bluebird": "^3.5.
|
|
124
|
-
"@types/dompurify": "^3.0.
|
|
123
|
+
"@types/bluebird": "^3.5.42",
|
|
124
|
+
"@types/dompurify": "^3.0.5",
|
|
125
125
|
"@types/flatpickr": "^3.1.2",
|
|
126
|
-
"@types/fnando__sparkline": "^0.3.
|
|
126
|
+
"@types/fnando__sparkline": "^0.3.7",
|
|
127
127
|
"@types/i18next-xhr-backend": "^1.4.2",
|
|
128
|
-
"@types/jest": "^29.5.
|
|
129
|
-
"@types/node": "^20.
|
|
130
|
-
"@types/react": "^18.2.
|
|
131
|
-
"@types/react-dom": "^18.2.
|
|
132
|
-
"@types/sortablejs": "^1.15.
|
|
133
|
-
"@types/text-encoding-utf-8": "^1.0.
|
|
134
|
-
"@types/webpack": "^5.28.
|
|
135
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
136
|
-
"@typescript-eslint/parser": "^6.
|
|
128
|
+
"@types/jest": "^29.5.8",
|
|
129
|
+
"@types/node": "^20.9.0",
|
|
130
|
+
"@types/react": "^18.2.37",
|
|
131
|
+
"@types/react-dom": "^18.2.15",
|
|
132
|
+
"@types/sortablejs": "^1.15.5",
|
|
133
|
+
"@types/text-encoding-utf-8": "^1.0.5",
|
|
134
|
+
"@types/webpack": "^5.28.5",
|
|
135
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
136
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
137
137
|
"@webpack-cli/serve": "^2.0.5",
|
|
138
138
|
"bootstrap": "^5.3.2",
|
|
139
139
|
"clean-webpack-plugin": "^4.0.0",
|
|
140
|
-
"concurrently": "^8.2.
|
|
140
|
+
"concurrently": "^8.2.2",
|
|
141
141
|
"copy-webpack-plugin": "^11.0.0",
|
|
142
142
|
"copyfiles": "^2.4.1",
|
|
143
143
|
"css-loader": "^6.8.1",
|
|
144
144
|
"custom-event-polyfill": "^1.0.7",
|
|
145
|
+
"cypress": "^13.5.0",
|
|
145
146
|
"esbuild-loader": "^4.0.2",
|
|
146
|
-
"
|
|
147
|
-
"eslint": "^
|
|
148
|
-
"eslint-plugin-import": "^2.28.1",
|
|
147
|
+
"eslint": "^8.53.0",
|
|
148
|
+
"eslint-plugin-import": "^2.29.0",
|
|
149
149
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
150
150
|
"fetch-jsonp": "^1.3.0",
|
|
151
151
|
"font-awesome": "^4.7.0",
|
|
152
152
|
"html-loader": "4.2.0",
|
|
153
153
|
"html-webpack-plugin": "5.5.3",
|
|
154
|
-
"i18next-http-backend": "^2.
|
|
154
|
+
"i18next-http-backend": "^2.4.1",
|
|
155
155
|
"isomorphic-fetch": "^3.0.0",
|
|
156
156
|
"jest": "^29.7.0",
|
|
157
157
|
"jest-cli": "^29.7.0",
|
|
@@ -165,11 +165,11 @@
|
|
|
165
165
|
"react": "^18.2.0",
|
|
166
166
|
"react-dom": "^18.2.0",
|
|
167
167
|
"react-i18next": "^12.3.1",
|
|
168
|
-
"react-router-dom": "^6.
|
|
168
|
+
"react-router-dom": "^6.18.0",
|
|
169
169
|
"release-it": "^16.2.1",
|
|
170
170
|
"rimraf": "^5.0.5",
|
|
171
171
|
"rxjs": "^7.8.1",
|
|
172
|
-
"sass": "^1.69.
|
|
172
|
+
"sass": "^1.69.5",
|
|
173
173
|
"sass-loader": "^13.3.2",
|
|
174
174
|
"serve": "^14.2.1",
|
|
175
175
|
"style-loader": "3.3.3",
|
|
@@ -185,6 +185,6 @@
|
|
|
185
185
|
"npm": ">=8.5.0"
|
|
186
186
|
},
|
|
187
187
|
"resolutions": {
|
|
188
|
-
"caniuse-lite": "1.0.
|
|
188
|
+
"caniuse-lite": "1.0.30001561"
|
|
189
189
|
}
|
|
190
190
|
}
|