Releases: revolist/vue-datagrid
Releases · revolist/vue-datagrid
Release 4.8.10
Full Changelog: revolist/revogrid@v4.8.9...v4.8.10
Release 4.8.9
Full Changelog: revolist/revogrid@v4.8.8...v4.8.9
Release 4.8.8
Full Changelog: revolist/revogrid@v4.8.7...v4.8.8
Release 4.8.7
What's Changed
Breaking change
- fix: #345 incorrect event name by @revolist in revolist/revogrid#473
Full Changelog: revolist/revogrid@v4.8.6...v4.8.7
Release 4.8.6
What's Changed
- build(deps-dev): bump @babel/traverse from 7.20.13 to 7.24.8 in the npm_and_yarn group by @dependabot in revolist/revogrid#470
- fix: #471 by @revolist in revolist/revogrid#472
Full Changelog: revolist/revogrid@v4.8.5...v4.8.6
Release 4.8.5
- Package update and improvements
Release 4.8.2
Full Changelog: revolist/revogrid@v4.8.1...v4.8.2
Release 4.8.1
Full Changelog: revolist/revogrid@v4.8.0...v4.8.1
Release 4.8.0
-
Breaking Changes:
- Redesigned type support:
- Removed deprecated namespaces:
- Before:
RevoGrid.ColumnDataSchemaRegular
- Now:
ColumnDataSchemaRegular
;
- Before:
- Improved type import:
- Before:
import { RevoGrid } from '@revolist/revogrid/dist/types/interfaces'
- Now:
import { ColumnDataSchemaRegular } from '@revolist/revogrid'
.
- Before:
- Changed viewport type names everywhere. For example, before:
rowDefinitions: [{ type: "row", index: 0, size: 145 }]
, after:rowDefinitions: [{ type: "rgRow", index: 0, size: 145 }]
.
- Removed deprecated namespaces:
- Updated event naming convention. Review your event usage. Event names are all lowercase now and are aligned with modern event naming conventions. For example,
afterEdit
->afteredit
.
- Redesigned type support:
-
Major improvements:
- Rethought the entire framework approach. Introduced Pro version with advance support and pro features.
- Introduced slot support.
- Updated scrolling system for better mobile support.
- Advance template support. Introduced
additionalData
for templates and editors.Prop
gives access to parent/root app context. - Redesigned the documentation.
- Fixed major issues and significantly improved overall performance, making the grid multiple time faster.
- Enhanced plugin support - now with full access to grid providers.
- Updated documentation.
- Provided full framework support and native render for Angular, React, and Vue, with partial support for Ember and Svelte.
Release 4.0.51
fix: type compilation vue2