@revolist/revogrid 4.8.0 → 4.8.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/package.json +1 -1
  2. package/readme.md +43 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolist/revogrid",
3
- "version": "4.8.0",
3
+ "version": "4.8.1",
4
4
  "type": "module",
5
5
  "description": "Virtual reactive data grid spreadsheet component - RevoGrid.",
6
6
  "license": "MIT",
package/readme.md CHANGED
@@ -157,11 +157,7 @@ In `<revo-grid />` we have developed a sophisticated Continuous Delivery (CD) sy
157
157
 
158
158
  RevoGrid functions as a web component. Simply place the component on your page and access its properties as you would with any other HTML element. It also offers multiple ways to integrate our grid into your project:
159
159
 
160
- - [Import the grid into your index.html file](./docs/indexhtml.md)
161
- - [Import as a module with lazy loading](./docs/indexmodule.md)
162
- - [Import using builders like Webpack with lazy loading](./docs/webpack.md)
163
- - [Import as an ESM module without lazy loading](./docs/custom.element.md)
164
-
160
+ - [Import the grid into your project](https://rv-grid.com/guide/installation)
165
161
 
166
162
  ### Vanilla JS Grid Usage
167
163
 
@@ -197,27 +193,58 @@ grid.columns = columns;
197
193
  grid.source = items;
198
194
  ```
199
195
 
200
- ## Versions
201
-
202
- - **2.0+**: Introduced the plugin system, grouping, sorting, and filtering.
203
- - **3.0+**: Breaking changes introduced. See the [migration guide](./docs/guide/migration.md).
204
- This version features new component loading, ESM modules, Bootstrap support, and much [more](./docs/guide/migration.md).
205
- - **4.0+**: Breaking changes introduced. See the [migration guide](./docs/guide/migration.md). In this version, we rethought our framework approach, updated typings, fixed major issues, updated core and significantly improved overall performance. The grid is now much faster, with better plugin support and full framework support for Angular, React, and Vue, along with partial support for Ember and Svelte. Redesigned the documentation, and added more examples.
206
196
 
197
+ [Example and guide](https://rv-grid.com/guide/)
207
198
 
208
199
 
209
- ## Sponsors
210
-
211
- We would like to extend our heartfelt gratitude to our sponsor for their generous support. Their contributions help us maintain and develop RevoGrid, ensuring continuous improvements and updates. If you are using RevoGrid in your project and would like to support its development, consider becoming a sponsor.
200
+ ## Versions
212
201
 
213
- ### Our Sponsors
202
+ - **2.0+**: Introduced the plugin system, grouping, sorting, and filtering.
203
+ - **3.0+**: Breaking changes introduced:
204
+ - Removed the redundant viewport component.
205
+ - Renamed classes to support Bootstrap and other libraries:
206
+ - `row` -> `rgRow`
207
+ - `col` -> `rgCol`
208
+ - `data-cell` -> `rgCell`
209
+ - `data-header-cell` -> `rgHeaderCell`
210
+ - Migrated all method names to lowercase to align with modern event naming conventions. For example, `afterEdit` is now `afteredit`. Check the API for details.
211
+ - Added support for pure ESM modules to enable the use of the grid in all modern frontend tooling like Vite, Parcel, etc. You can now import custom elements without lazy loading. Note that you are responsible for polyfills.
212
+
213
+
214
+ - **4.0+**: Breaking changes introduced. See the [migration guide](https://rv-grid.com/guide/migration).
215
+
216
+ - Redesigned type support:
217
+ - Removed deprecated namespaces:
218
+ - **Before**: `RevoGrid.ColumnDataSchemaRegular`
219
+ - **Now**: `ColumnDataSchemaRegular`;
220
+ - Improved type import:
221
+ - **Before**: `import { RevoGrid } from '@revolist/revogrid/dist/types/interfaces'`
222
+ - **Now**: `import { ColumnDataSchemaRegular } from '@revolist/revogrid'`.
223
+ - Changed viewport type names everywhere. For example, before: `rowDefinitions: [{ type: "row", index: 0, size: 145 }]`, after: `rowDefinitions: [{ type: "rgRow", index: 0, size: 145 }]`.
224
+ - Updated [event](https://rv-grid.com/guide/api/revoGrid.html#Events) naming convention. Review your [event](https://rv-grid.com/guide/api/revoGrid.html#Events) usage. [Event names](https://rv-grid.com/guide/api/revoGrid.html#Events) are all lowercase now and are aligned with modern event naming conventions. For example, `afterEdit` -> `afteredit`.
225
+
226
+ - **Major improvements**:
227
+ - Rethought the entire framework approach. Introduced Pro version with advance support and pro features.
228
+ - Introduced slot support.
229
+ - Updated scrolling system for better mobile support.
230
+ - Advance template support. Introduced `additionalData` for templates and editors. `Prop` gives access to parent/root app context.
231
+ - Redesigned the documentation.
232
+ - Fixed major issues and significantly improved overall performance, making the grid multiple time faster.
233
+ - Enhanced plugin support - now with full access to grid providers.
234
+ - Updated documentation.
235
+ - Provided full framework support and native render for Angular, React, Svelte and Vue.
236
+
237
+
238
+ ## Our Sponsors
239
+
240
+ We would like to extend our heartfelt gratitude to our sponsors for their generous support. Their contributions help us maintain and develop RevoGrid, ensuring continuous improvements and updates.
214
241
 
215
242
  [![Altruistiq](https://cdn.prod.website-files.com/62cd69e08130a1a33f5ef900/6310b4d500e971695db5e9c3_615b5db69ce8931a276e5ed2_Social_Icons_AQ_3_32x32.png)](https://altruistiq.com)
216
243
 
217
244
 
218
245
  ### Become a Sponsor
219
246
 
220
- If you or your company would like to support the ongoing development of RevoGrid, please consider becoming a sponsor. Your support will help us continue to improve the project and provide the best possible tool for the community.
247
+ If you or your company would like to support the ongoing development of RevoGrid, please consider becoming a sponsor or use or [Pro version](https://rv-grid.com/pro/). Your support will help us continue to improve the project and provide the best possible tool for the community.
221
248
 
222
249
  [![Sponsor Us](https://img.shields.io/badge/Sponsor%20Us-%F0%9F%92%96-brightgreen)](https://opencollective.com/revogrid)
223
250