@revolist/vue-datagrid 4.8.0 → 4.8.2

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 +48 -13
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 🚨 Repository Notice 🚨
2
+
3
+ This repo is read-only and will be **deprecated** in v5+ in favor of monorepos. Post issues [here](https://github.com/revolist/revogrid). Happy coding! 🖥️💻
4
+
5
+ ---
6
+
1
7
  <p align="center">
2
8
  <a href="https://rv-grid.com">
3
9
  <img src="./assets/logo.svg" alt="RevoGrid" height="150" />
@@ -104,7 +110,7 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
104
110
 
105
111
 
106
112
 
107
- ### Usage Vue 2 [Example](https://codesandbox.io/s/data-vue-test-3wkzi?file=/src/App.vue)
113
+ ### Usage Vue 2
108
114
 
109
115
  With NPM:
110
116
 
@@ -161,27 +167,56 @@ export default {
161
167
  ```
162
168
 
163
169
 
170
+ [Example and guide](https://rv-grid.com/guide/vue2/)
171
+
164
172
  ## Versions
165
173
 
166
174
  - **2.0+**: Introduced the plugin system, grouping, sorting, and filtering.
167
- - **3.0+**: Breaking changes introduced. See the [migration guide](./docs/guide/migration.md).
168
- This version features new component loading, ESM modules, Bootstrap support, and much [more](./docs/guide/migration.md).
169
- - **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.
170
-
171
-
172
-
173
- ## Sponsors
174
-
175
- 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.
176
-
177
- ### Our Sponsors
175
+ - **3.0+**: Breaking changes introduced:
176
+ - Removed the redundant viewport component.
177
+ - Renamed classes to support Bootstrap and other libraries:
178
+ - `row` -> `rgRow`
179
+ - `col` -> `rgCol`
180
+ - `data-cell` -> `rgCell`
181
+ - `data-header-cell` -> `rgHeaderCell`
182
+ - Migrated all method names to lowercase to align with modern event naming conventions. For example, `afterEdit` is now `afteredit`. Check the API for details.
183
+ - 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.
184
+
185
+
186
+ - **4.0+**: Breaking changes introduced. See the [migration guide](https://rv-grid.com/guide/migration).
187
+
188
+ - Redesigned type support:
189
+ - Removed deprecated namespaces:
190
+ - **Before**: `RevoGrid.ColumnDataSchemaRegular`
191
+ - **Now**: `ColumnDataSchemaRegular`;
192
+ - Improved type import:
193
+ - **Before**: `import { RevoGrid } from '@revolist/revogrid/dist/types/interfaces'`
194
+ - **Now**: `import { ColumnDataSchemaRegular } from '@revolist/revogrid'`.
195
+ - Changed viewport type names everywhere. For example, before: `rowDefinitions: [{ type: "row", index: 0, size: 145 }]`, after: `rowDefinitions: [{ type: "rgRow", index: 0, size: 145 }]`.
196
+ - 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`.
197
+
198
+ - **Major improvements**:
199
+ - Rethought the entire framework approach. Introduced Pro version with advance support and pro features.
200
+ - Introduced slot support.
201
+ - Updated scrolling system for better mobile support.
202
+ - Advance template support. Introduced `additionalData` for templates and editors. `Prop` gives access to parent/root app context.
203
+ - Redesigned the documentation.
204
+ - Fixed major issues and significantly improved overall performance, making the grid multiple time faster.
205
+ - Enhanced plugin support - now with full access to grid providers.
206
+ - Updated documentation.
207
+ - Provided full framework support and native render for Angular, React, Svelte and Vue.
208
+
209
+
210
+ ## Our Sponsors
211
+
212
+ 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.
178
213
 
179
214
  [![Altruistiq](https://cdn.prod.website-files.com/62cd69e08130a1a33f5ef900/6310b4d500e971695db5e9c3_615b5db69ce8931a276e5ed2_Social_Icons_AQ_3_32x32.png)](https://altruistiq.com)
180
215
 
181
216
 
182
217
  ### Become a Sponsor
183
218
 
184
- 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.
219
+ 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.
185
220
 
186
221
  [![Sponsor Us](https://img.shields.io/badge/Sponsor%20Us-%F0%9F%92%96-brightgreen)](https://opencollective.com/revogrid)
187
222
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolist/vue-datagrid",
3
- "version": "4.8.0",
3
+ "version": "4.8.2",
4
4
  "description": "Vue 2 DataGrid Spreadsheet component with native Vue 2 render support",
5
5
  "main": "./dist/vue2-datagrid.umd.cjs",
6
6
  "module": "./dist/vue2-datagrid.mjs",
@@ -62,7 +62,7 @@
62
62
  "homepage": "https://github.com/revolist/revogrid#readme",
63
63
  "license": "MIT",
64
64
  "dependencies": {
65
- "@revolist/revogrid": "4.8.0"
65
+ "@revolist/revogrid": "4.8.2"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@vue/compiler-sfc": "^3.2.37",