@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.
- package/README.md +48 -13
- 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
|
|
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
|
|
168
|
-
|
|
169
|
-
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
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
|
[](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
|
[](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.
|
|
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.
|
|
65
|
+
"@revolist/revogrid": "4.8.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@vue/compiler-sfc": "^3.2.37",
|