slickgrid-react 4.3.1 → 4.4.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.
Files changed (2) hide show
  1. package/README.md +12 -56
  2. package/package.json +34 -34
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Actions Status](https://github.com/ghiscoding/slickgrid-react/workflows/CI%20Build/badge.svg)](https://github.com/ghiscoding/slickgrid-react/actions)
8
8
 
9
9
  ### Brief introduction
10
- 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 it requires [Slickgrid-Universal](https://github.com/ghiscoding/slickgrid-universal/) dependency, originally we used the `6pac/SlickGrid` fork but that was dropped in >=7.0, so we no longer need external SlickGrid dependencies anymore apart from Slickgrid-Universal since [v4.0](https://github.com/ghiscoding/slickgrid-react/releases/tag/v4.0.2). SlickGrid was also recently refactored to be browser native (no more jQuery).
10
+ 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 it requires [Slickgrid-Universal](https://github.com/ghiscoding/slickgrid-universal/) dependency, originally we used the `6pac/SlickGrid` fork but that was dropped in >=4.0, so we no longer need external SlickGrid dependencies anymore apart from Slickgrid-Universal since [v4.0](https://github.com/ghiscoding/slickgrid-react/releases/tag/v4.0.2). SlickGrid was also recently refactored to be browser native (no more jQuery).
11
11
 
12
12
  ## Documentation
13
13
  📘 [Documentation](https://ghiscoding.gitbook.io/slickgrid-react/getting-started/quick-start) website powered by GitBook.
@@ -28,66 +28,22 @@ For a complete set of working demos (over 30 examples), we strongly suggest you
28
28
  ## License
29
29
  [MIT License](LICENSE)
30
30
 
31
- ### Like it? ⭐ it
32
- You like **Slickgrid-React**? Be sure to upvote ⭐, and perhaps support me with cafeine [☕](https://ko-fi.com/ghiscoding) and feel free to contribute. 👷👷‍♀️
33
-
34
- <a href='https://ko-fi.com/ghiscoding' target='_blank'><img height='32' style='border:0px;height:32px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' />
35
-
36
31
  ## Latest News & Releases
37
32
  Check out the [Releases](https://github.com/ghiscoding/slickgrid-react/releases) section for all latest News & Releases.
38
33
 
39
34
  ### Tested with [Jest](https://jestjs.io/) (Unit Tests) - [Cypress](https://www.cypress.io/) (E2E Tests)
40
- 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.
41
-
42
- ## Installation
43
- Refer to the **[Docs - Quick Start](https://ghiscoding.gitbook.io/slickgrid-react/getting-started/quick-start)**. Please don't open any issue unless you have followed these steps (from the Docs), and if any of the steps are incorrect or confusing, then please let me know.
44
-
45
- **NOTE:** if you have any question, please consider asking installation and/or general questions on [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=slickgrid)
46
-
47
- ## Documentation
48
- The [Documentation](https://ghiscoding.gitbook.io/slickgrid-react/) is powered by GitBook and is where you'll find all the documentation and instructions for the lib, so please consult the documentation before opening any new issue. The [Docs - Quick Start](https://ghiscoding.gitbook.io/slickgrid-react/getting-started/quick-start) is a great place to start with.
49
-
50
- ## Main features
51
- You can see some screenshots below and visit the [Documentation](https://ghiscoding.gitbook.io/slickgrid-react/getting-started/quick-start) website.
52
-
53
- ## Missing features
54
- What if `Slickgrid-React` is missing feature(s) compare to the original core library [6pac/SlickGrid](https://github.com/6pac/SlickGrid/)?
55
-
56
- 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 [Docs - SlickGrid & DataView objects](https://ghiscoding.gitbook.io/slickgrid-react/slick-grid-dataview-objects/slickgrid-dataview-objects) and [Docs - Grid & DataView Events](https://ghiscoding.gitbook.io/slickgrid-react/events/grid-dataview-events)
57
-
58
-
59
- ## Screenshots
35
+ Slickgrid-Universal has **100%** Unit Test Coverage and all Slickgrid-React Examples are tested with [Cypress](https://www.cypress.io/) as E2E tests.
60
36
 
61
- Screenshots from the demo app with the `Bootstrap` theme.
62
-
63
- _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._
64
-
65
- ### Slickgrid example with Formatters (last column shown is a custom Formatter)
66
-
67
- #### _You can also see the Grid Menu opened (aka hambuger menu)_
68
-
69
- ![Default Slickgrid Example](/screenshots/formatters.png)
70
-
71
- ### Filters and Multi-Column Sort
72
-
73
- ![Filter and Sort](/screenshots/filter_and_sort.png)
74
-
75
- ### Inline Editing
76
-
77
- ![Editors](/screenshots/editors.png)
78
-
79
- ### Pinned (aka frozen) Columns/Rows
80
-
81
- ![Pinned Columns/Rows](/screenshots/frozen.png)
82
-
83
- ### Draggable Grouping & Aggregators
84
-
85
- ![Draggable Grouping](/screenshots/draggable-grouping.png)
37
+ ### Like it? it
38
+ You like **Slickgrid-React**? Be sure to upvote ⭐, and perhaps support me with cafeine [☕](https://ko-fi.com/ghiscoding) and feel free to contribute. 👷👷‍♀️
86
39
 
87
- ### Slickgrid Example with Server Side (Filter/Sort/Pagination)
88
- #### Comes with OData & GraphQL support (you can implement custom ones too)
40
+ <a href='https://ko-fi.com/ghiscoding' target='_blank'><img height='32' style='border:0px;height:32px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' />
89
41
 
90
- ![Slickgrid Server Side](/screenshots/pagination.png)
42
+ ## Sponsors
91
43
 
92
- ### Composite Editor Modal Windows
93
- ![Composite Editor Modal](/screenshots/composite-editor.png)
44
+ <div>
45
+ <img class="circle avatar-user" src="https://avatars.githubusercontent.com/u/48218815?s=52&amp;v=4" width="40" height="40" alt="@kevinburkett" />
46
+ <a href="/kevinburkett" class="Link">
47
+ <span class="wb-break-word ml-2">kevinburkett</span>
48
+ </a>
49
+ </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slickgrid-react",
3
- "version": "4.3.1",
3
+ "version": "4.4.1",
4
4
  "description": "Slickgrid components made available in React",
5
5
  "keywords": [
6
6
  "react",
@@ -96,58 +96,58 @@
96
96
  "/src/slickgrid-react"
97
97
  ],
98
98
  "dependencies": {
99
- "@slickgrid-universal/common": "~4.3.1",
100
- "@slickgrid-universal/custom-footer-component": "~4.3.1",
101
- "@slickgrid-universal/empty-warning-component": "~4.3.1",
102
- "@slickgrid-universal/event-pub-sub": "~4.3.0",
103
- "@slickgrid-universal/pagination-component": "~4.3.1",
99
+ "@slickgrid-universal/common": "~4.4.1",
100
+ "@slickgrid-universal/custom-footer-component": "~4.4.1",
101
+ "@slickgrid-universal/empty-warning-component": "~4.4.1",
102
+ "@slickgrid-universal/event-pub-sub": "~4.4.1",
103
+ "@slickgrid-universal/pagination-component": "~4.4.1",
104
104
  "dequal": "^2.0.3",
105
105
  "dompurify": "^3.0.8",
106
106
  "font-awesome": "^4.7.0",
107
- "i18next": "^23.7.20",
107
+ "i18next": "^23.8.2",
108
108
  "moment-mini": "^2.29.4",
109
109
  "regenerator-runtime": "^0.14.1",
110
110
  "sortablejs": "^1.15.2"
111
111
  },
112
112
  "devDependencies": {
113
113
  "@4tw/cypress-drag-drop": "^2.2.5",
114
- "@faker-js/faker": "^8.4.0",
114
+ "@faker-js/faker": "^8.4.1",
115
115
  "@fnando/sparkline": "^0.3.10",
116
116
  "@popperjs/core": "^2.11.8",
117
117
  "@release-it/conventional-changelog": "^8.0.1",
118
- "@slickgrid-universal/composite-editor-component": "~4.3.1",
119
- "@slickgrid-universal/custom-tooltip-plugin": "~4.3.1",
120
- "@slickgrid-universal/excel-export": "~4.3.1",
121
- "@slickgrid-universal/graphql": "~4.3.1",
122
- "@slickgrid-universal/odata": "~4.3.1",
123
- "@slickgrid-universal/rxjs-observable": "~4.3.1",
124
- "@slickgrid-universal/text-export": "~4.3.1",
125
- "@testing-library/jest-dom": "^6.3.0",
126
- "@testing-library/react": "^14.1.2",
118
+ "@slickgrid-universal/composite-editor-component": "~4.4.1",
119
+ "@slickgrid-universal/custom-tooltip-plugin": "~4.4.1",
120
+ "@slickgrid-universal/excel-export": "~4.4.1",
121
+ "@slickgrid-universal/graphql": "~4.4.1",
122
+ "@slickgrid-universal/odata": "~4.4.1",
123
+ "@slickgrid-universal/rxjs-observable": "~4.4.1",
124
+ "@slickgrid-universal/text-export": "~4.4.1",
125
+ "@testing-library/jest-dom": "^6.4.2",
126
+ "@testing-library/react": "^14.2.1",
127
127
  "@testing-library/user-event": "^14.5.2",
128
128
  "@types/bluebird": "^3.5.42",
129
129
  "@types/dompurify": "^3.0.5",
130
130
  "@types/flatpickr": "^3.1.2",
131
131
  "@types/fnando__sparkline": "^0.3.7",
132
132
  "@types/i18next-xhr-backend": "^1.4.2",
133
- "@types/jest": "^29.5.11",
134
- "@types/node": "^20.11.8",
135
- "@types/react": "^18.2.48",
136
- "@types/react-dom": "^18.2.18",
133
+ "@types/jest": "^29.5.12",
134
+ "@types/node": "^20.11.17",
135
+ "@types/react": "^18.2.55",
136
+ "@types/react-dom": "^18.2.19",
137
137
  "@types/sortablejs": "^1.15.7",
138
138
  "@types/text-encoding-utf-8": "^1.0.5",
139
139
  "@types/webpack": "^5.28.5",
140
- "@typescript-eslint/eslint-plugin": "^6.19.1",
141
- "@typescript-eslint/parser": "^6.19.1",
140
+ "@typescript-eslint/eslint-plugin": "^7.0.1",
141
+ "@typescript-eslint/parser": "^7.0.1",
142
142
  "@webpack-cli/serve": "^2.0.5",
143
143
  "bootstrap": "^5.3.2",
144
144
  "clean-webpack-plugin": "^4.0.0",
145
145
  "concurrently": "^8.2.2",
146
146
  "copy-webpack-plugin": "^12.0.2",
147
147
  "copyfiles": "^2.4.1",
148
- "css-loader": "^6.9.1",
148
+ "css-loader": "^6.10.0",
149
149
  "custom-event-polyfill": "^1.0.7",
150
- "cypress": "^13.6.3",
150
+ "cypress": "^13.6.4",
151
151
  "esbuild-loader": "^4.0.3",
152
152
  "eslint": "^8.56.0",
153
153
  "eslint-plugin-import": "^2.29.1",
@@ -156,40 +156,40 @@
156
156
  "font-awesome": "^4.7.0",
157
157
  "html-loader": "5.0.0",
158
158
  "html-webpack-plugin": "5.6.0",
159
- "i18next-http-backend": "^2.4.2",
159
+ "i18next-http-backend": "^2.4.3",
160
160
  "isomorphic-fetch": "^3.0.0",
161
161
  "jest": "^29.7.0",
162
162
  "jest-cli": "^29.7.0",
163
163
  "jest-environment-jsdom": "^29.7.0",
164
164
  "jest-extended": "^4.0.2",
165
165
  "jsdom-global": "^3.0.2",
166
- "mini-css-extract-plugin": "^2.7.7",
166
+ "mini-css-extract-plugin": "^2.8.0",
167
167
  "moment-mini": "^2.29.4",
168
- "npm-run-all2": "^6.1.1",
168
+ "npm-run-all2": "^6.1.2",
169
169
  "promise-polyfill": "^8.3.0",
170
170
  "react": "^18.2.0",
171
171
  "react-dom": "^18.2.0",
172
- "react-i18next": "^14.0.1",
173
- "react-router-dom": "^6.21.3",
172
+ "react-i18next": "^14.0.5",
173
+ "react-router-dom": "^6.22.0",
174
174
  "release-it": "^17.0.3",
175
175
  "rimraf": "^5.0.5",
176
176
  "rxjs": "^7.8.1",
177
177
  "sass": "^1.70.0",
178
- "sass-loader": "^14.0.0",
178
+ "sass-loader": "^14.1.0",
179
179
  "serve": "^14.2.1",
180
180
  "style-loader": "3.3.4",
181
181
  "ts-jest": "^29.1.2",
182
182
  "ts-loader": "^9.5.1",
183
183
  "typescript": "^5.3.3",
184
- "webpack": "^5.90.0",
184
+ "webpack": "^5.90.1",
185
185
  "webpack-cli": "^5.1.4",
186
- "webpack-dev-server": "^4.15.1"
186
+ "webpack-dev-server": "^5.0.0"
187
187
  },
188
188
  "engines": {
189
189
  "node": ">=16.15.0",
190
190
  "npm": ">=8.5.0"
191
191
  },
192
192
  "resolutions": {
193
- "caniuse-lite": "1.0.30001579"
193
+ "caniuse-lite": "1.0.30001584"
194
194
  }
195
195
  }