slickgrid-react 3.0.2 → 3.1.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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/package.json +39 -45
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
# [3.1.0](https://github.com/ghiscoding/slickgrid-react/compare/v3.0.2...v3.1.0) (2023-07-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **common:** add optional `scrollIntoView` to GridService `addItems` ([#165](https://github.com/ghiscoding/slickgrid-react/issues/165)) ([2c4aa98](https://github.com/ghiscoding/slickgrid-react/commit/2c4aa98202fe037e07b2d1a52ef24a61e5e0af16))
|
|
11
|
+
|
|
5
12
|
## [3.0.2](https://github.com/ghiscoding/slickgrid-react/compare/v3.0.1...v3.0.2) (2023-07-01)
|
|
6
13
|
|
|
7
14
|
|
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
|
|
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 be browser native, which means that jQuery is no longer required 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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slickgrid-react",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Slickgrid components made available in React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -60,22 +60,21 @@
|
|
|
60
60
|
"delete:dist": "rimraf dist",
|
|
61
61
|
"lint": "eslint src/slickgrid-react --ext .ts",
|
|
62
62
|
"build:cjs": "tsc --project src/slickgrid-react/tsconfig.build.json --outDir dist/cjs --module commonjs --declaration false",
|
|
63
|
-
"postbuild:cjs": "
|
|
63
|
+
"postbuild:cjs": "copyfiles --up 2 src/slickgrid-react/**/*.html dist/cjs",
|
|
64
64
|
"build:esm": "tsc --project src/slickgrid-react/tsconfig.build.json --outDir dist/esm --module esnext --target es2018 --declaration false",
|
|
65
|
-
"postbuild:esm": "
|
|
65
|
+
"postbuild:esm": "copyfiles --up 2 src/slickgrid-react/**/*.html dist/esm",
|
|
66
66
|
"build:types": "tsc --project src/slickgrid-react/tsconfig.build.json --emitDeclarationOnly --declarationMap --outDir dist/types",
|
|
67
67
|
"prebuild": "npm-run-all delete:dist lint",
|
|
68
68
|
"build": "npm-run-all build:cjs build:esm build:types",
|
|
69
69
|
"postbuild": "npm-run-all copy-i18n:dist copy-asset-lib",
|
|
70
|
-
"copy-asset-lib": "
|
|
71
|
-
"copy-i18n:dist": "
|
|
70
|
+
"copy-asset-lib": "copyfiles --up 2 src/assets/lib/** dist",
|
|
71
|
+
"copy-i18n:dist": "copyfiles --up 3 src/assets/i18n/**/*.* dist/i18n",
|
|
72
72
|
"start:dev": "webpack serve --env development",
|
|
73
73
|
"cypress:open": "cypress open --config-file test/cypress.config.ts",
|
|
74
74
|
"cypress:ci": "cypress run --config-file test/cypress.config.ts",
|
|
75
75
|
"test:ci": "npx jest --runInBand --coverage=true --ci --config ./test/jest.config.js",
|
|
76
76
|
"test:jest": "npx jest --watch --detectOpenHandles --config test/jest.config.js",
|
|
77
77
|
"test:jest:coverage": "npx jest --detectOpenHandles --runInBand --coverage --config test/jest.config.js",
|
|
78
|
-
"update-npm-versions": "npm-check --skip-unused --update-all",
|
|
79
78
|
"preview:release": "release-it --dry-run",
|
|
80
79
|
"release": "release-it --only-version",
|
|
81
80
|
"serve:demo": "serve ./docs -l 8080"
|
|
@@ -92,13 +91,13 @@
|
|
|
92
91
|
]
|
|
93
92
|
},
|
|
94
93
|
"dependencies": {
|
|
95
|
-
"@slickgrid-universal/common": "3.0
|
|
96
|
-
"@slickgrid-universal/custom-footer-component": "3.0
|
|
97
|
-
"@slickgrid-universal/empty-warning-component": "3.0
|
|
98
|
-
"@slickgrid-universal/event-pub-sub": "3.0
|
|
99
|
-
"@slickgrid-universal/pagination-component": "3.0
|
|
94
|
+
"@slickgrid-universal/common": "3.1.0",
|
|
95
|
+
"@slickgrid-universal/custom-footer-component": "3.1.0",
|
|
96
|
+
"@slickgrid-universal/empty-warning-component": "3.1.0",
|
|
97
|
+
"@slickgrid-universal/event-pub-sub": "3.1.0",
|
|
98
|
+
"@slickgrid-universal/pagination-component": "3.1.0",
|
|
100
99
|
"dequal": "^2.0.3",
|
|
101
|
-
"dompurify": "^3.0.
|
|
100
|
+
"dompurify": "^3.0.5",
|
|
102
101
|
"font-awesome": "^4.7.0",
|
|
103
102
|
"i18next": ">=22.5.0",
|
|
104
103
|
"moment-mini": "^2.29.4",
|
|
@@ -110,15 +109,15 @@
|
|
|
110
109
|
"@faker-js/faker": "^8.0.2",
|
|
111
110
|
"@fnando/sparkline": "^0.3.10",
|
|
112
111
|
"@popperjs/core": "^2.11.8",
|
|
113
|
-
"@release-it/conventional-changelog": "^
|
|
114
|
-
"@slickgrid-universal/composite-editor-component": "3.0
|
|
115
|
-
"@slickgrid-universal/custom-tooltip-plugin": "3.0
|
|
116
|
-
"@slickgrid-universal/excel-export": "3.0
|
|
117
|
-
"@slickgrid-universal/graphql": "3.0
|
|
118
|
-
"@slickgrid-universal/odata": "3.0
|
|
119
|
-
"@slickgrid-universal/rxjs-observable": "3.0
|
|
120
|
-
"@slickgrid-universal/text-export": "3.0
|
|
121
|
-
"@testing-library/jest-dom": "^5.
|
|
112
|
+
"@release-it/conventional-changelog": "^7.0.0",
|
|
113
|
+
"@slickgrid-universal/composite-editor-component": "3.1.0",
|
|
114
|
+
"@slickgrid-universal/custom-tooltip-plugin": "3.1.0",
|
|
115
|
+
"@slickgrid-universal/excel-export": "3.1.0",
|
|
116
|
+
"@slickgrid-universal/graphql": "3.1.0",
|
|
117
|
+
"@slickgrid-universal/odata": "3.1.0",
|
|
118
|
+
"@slickgrid-universal/rxjs-observable": "3.1.0",
|
|
119
|
+
"@slickgrid-universal/text-export": "3.1.0",
|
|
120
|
+
"@testing-library/jest-dom": "^5.17.0",
|
|
122
121
|
"@testing-library/react": "^14.0.0",
|
|
123
122
|
"@testing-library/user-event": "^14.4.3",
|
|
124
123
|
"@types/bluebird": "^3.5.38",
|
|
@@ -126,63 +125,58 @@
|
|
|
126
125
|
"@types/flatpickr": "^3.1.2",
|
|
127
126
|
"@types/fnando__sparkline": "^0.3.4",
|
|
128
127
|
"@types/i18next-xhr-backend": "^1.4.2",
|
|
129
|
-
"@types/jest": "^29.5.
|
|
130
|
-
"@types/node": "^
|
|
131
|
-
"@types/react": "^18.2.
|
|
132
|
-
"@types/react-dom": "^18.2.
|
|
128
|
+
"@types/jest": "^29.5.3",
|
|
129
|
+
"@types/node": "^20.4.2",
|
|
130
|
+
"@types/react": "^18.2.15",
|
|
131
|
+
"@types/react-dom": "^18.2.7",
|
|
133
132
|
"@types/sortablejs": "^1.15.1",
|
|
134
133
|
"@types/text-encoding-utf-8": "^1.0.2",
|
|
135
134
|
"@types/webpack": "^5.28.1",
|
|
136
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
137
|
-
"@typescript-eslint/parser": "^
|
|
135
|
+
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
136
|
+
"@typescript-eslint/parser": "^6.1.0",
|
|
138
137
|
"@webpack-cli/serve": "^2.0.5",
|
|
139
138
|
"bootstrap": "^5.3.0",
|
|
140
139
|
"clean-webpack-plugin": "^4.0.0",
|
|
141
140
|
"concurrently": "^8.2.0",
|
|
142
141
|
"copy-webpack-plugin": "^11.0.0",
|
|
143
142
|
"copyfiles": "^2.4.1",
|
|
144
|
-
"cross-env": "^7.0.3",
|
|
145
143
|
"css-loader": "^6.8.1",
|
|
146
144
|
"custom-event-polyfill": "^1.0.7",
|
|
147
145
|
"esbuild-loader": "^3.0.1",
|
|
148
|
-
"cypress": "^12.
|
|
149
|
-
"eslint": "^8.
|
|
146
|
+
"cypress": "^12.17.2",
|
|
147
|
+
"eslint": "^8.45.0",
|
|
150
148
|
"eslint-plugin-import": "^2.27.5",
|
|
151
149
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
152
|
-
"fetch-jsonp": "^1.
|
|
153
|
-
"file-loader": "6.2.0",
|
|
150
|
+
"fetch-jsonp": "^1.3.0",
|
|
154
151
|
"font-awesome": "^4.7.0",
|
|
155
152
|
"html-loader": "4.2.0",
|
|
156
153
|
"html-webpack-plugin": "5.5.3",
|
|
157
154
|
"i18next-http-backend": "^2.2.1",
|
|
158
155
|
"isomorphic-fetch": "^3.0.0",
|
|
159
|
-
"
|
|
160
|
-
"jest": "^29.
|
|
161
|
-
"jest-
|
|
162
|
-
"jest-environment-jsdom": "^29.5.0",
|
|
156
|
+
"jest": "^29.6.1",
|
|
157
|
+
"jest-cli": "^29.6.1",
|
|
158
|
+
"jest-environment-jsdom": "^29.6.1",
|
|
163
159
|
"jest-extended": "^4.0.0",
|
|
164
160
|
"jsdom-global": "^3.0.2",
|
|
165
161
|
"mini-css-extract-plugin": "^2.7.6",
|
|
166
|
-
"minimatch": "^9.0.2",
|
|
167
162
|
"moment-mini": "^2.29.4",
|
|
168
|
-
"npm-
|
|
169
|
-
"npm-run-all": "^4.1.5",
|
|
163
|
+
"npm-run-all2": "^6.0.6",
|
|
170
164
|
"promise-polyfill": "^8.3.0",
|
|
171
165
|
"react": "^18.2.0",
|
|
172
166
|
"react-dom": "^18.2.0",
|
|
173
167
|
"react-i18next": "^12.3.1",
|
|
174
|
-
"react-router-dom": "^6.14.
|
|
175
|
-
"release-it": "^
|
|
168
|
+
"react-router-dom": "^6.14.2",
|
|
169
|
+
"release-it": "^16.1.3",
|
|
176
170
|
"rimraf": "^5.0.1",
|
|
177
171
|
"rxjs": "^7.8.1",
|
|
178
|
-
"sass": "^1.
|
|
172
|
+
"sass": "^1.64.0",
|
|
179
173
|
"sass-loader": "^13.3.2",
|
|
180
174
|
"serve": "^14.2.0",
|
|
181
175
|
"style-loader": "3.3.3",
|
|
182
176
|
"ts-jest": "^29.1.1",
|
|
183
177
|
"ts-loader": "^9.4.4",
|
|
184
|
-
"typescript": "^5.
|
|
185
|
-
"webpack": "^5.88.
|
|
178
|
+
"typescript": "^5.1.6",
|
|
179
|
+
"webpack": "^5.88.2",
|
|
186
180
|
"webpack-cli": "^5.1.4",
|
|
187
181
|
"webpack-dev-server": "^4.15.1"
|
|
188
182
|
},
|
|
@@ -191,6 +185,6 @@
|
|
|
191
185
|
"npm": ">=8.5.0"
|
|
192
186
|
},
|
|
193
187
|
"resolutions": {
|
|
194
|
-
"caniuse-lite": "1.0.
|
|
188
|
+
"caniuse-lite": "1.0.30001517"
|
|
195
189
|
}
|
|
196
190
|
}
|