Skip to content

Commit

Permalink
chore(release): update versions to 4.10.30
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 18, 2024
1 parent 57549cd commit 8069ca8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@revolist/angular-datagrid-project",
"version": "4.10.29",
"version": "4.10.30",
"scripts": {
"ng": "ng",
"dev": "ng serve demo",
Expand All @@ -10,7 +10,7 @@
"release": "npm run build && cd ./dist/angular-datagrid && npm publish --public --tag pre-release"
},
"dependencies": {
"@revolist/revogrid": "4.10.29",
"@revolist/revogrid": "4.10.30",
"@stencil/core": "^4.19.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions projects/angular-datagrid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@revolist/angular-datagrid",
"version": "4.10.29",
"version": "4.10.30",
"description": "Angular DataGrid Spreadsheet component with native cell render support",
"keywords": [
"revo-grid",
Expand Down Expand Up @@ -43,7 +43,7 @@
"homepage": "https://github.com/revolist/revogrid#readme",
"license": "MIT",
"dependencies": {
"@revolist/revogrid": "4.10.29",
"@revolist/revogrid": "4.10.30",
"@stencil/core": "^4.19.2",
"tslib": "^2.6.3"
},
Expand Down
4 changes: 2 additions & 2 deletions projects/angular-datagrid/src/lib/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import type { AfterEditEvent as IRevoGridAfterEditEvent } from '@revolist/revogr
import type { ChangedRange as IRevoGridChangedRange } from '@revolist/revogrid/standalone';
import type { FocusAfterRenderEvent as IRevoGridFocusAfterRenderEvent } from '@revolist/revogrid/standalone';
import type { ColumnRegular as IRevoGridColumnRegular } from '@revolist/revogrid/standalone';
import type { PositionItem as IRevoGridPositionItem } from '@revolist/revogrid/standalone';
import type { RowDragStartDetails as IRevoGridRowDragStartDetails } from '@revolist/revogrid/standalone';
import type { FocusedData as IRevoGridFocusedData } from '@revolist/revogrid/standalone';
import type { DimensionRows as IRevoGridDimensionRows } from '@revolist/revogrid/standalone';
import type { DataType as IRevoGridDataType } from '@revolist/revogrid/standalone';
Expand Down Expand Up @@ -109,7 +109,7 @@ Use e.preventDefault() to prevent sorting.
To prevent the default behavior of changing the row order, you can call `e.preventDefault()`.
To change the item name at the start of the row order change, you can set `e.text` to the desired new name.
*/
rowdragstart: EventEmitter<CustomEvent<{ pos: IRevoGridPositionItem; text: string; }>>;
rowdragstart: EventEmitter<CustomEvent<IRevoGridRowDragStartDetails>>;
/**
* On header click.
*/
Expand Down

0 comments on commit 8069ca8

Please sign in to comment.