Skip to content

Commit

Permalink
chore(release): update versions to 4.10.34
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 28, 2024
1 parent 88ebf94 commit c089b74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.33",
"version": "4.10.34",
"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.33",
"@revolist/revogrid": "4.10.34",
"@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.33",
"version": "4.10.34",
"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.33",
"@revolist/revogrid": "4.10.34",
"@stencil/core": "^4.19.2",
"tslib": "^2.6.3"
},
Expand Down
6 changes: 3 additions & 3 deletions projects/angular-datagrid/src/lib/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import type { DimensionRows as IRevoGridDimensionRows } from '@revolist/revogrid
import type { DataType as IRevoGridDataType } from '@revolist/revogrid/standalone';
import type { ColumnCollection as IRevoGridColumnCollection } from '@revolist/revogrid/standalone';
import type { ColumnProp as IRevoGridColumnProp } from '@revolist/revogrid/standalone';
import type { FilterCollection as IRevoGridFilterCollection } from '@revolist/revogrid/standalone';
import type { FilterCollectionItem as IRevoGridFilterCollectionItem } from '@revolist/revogrid/standalone';
import type { ViewPortScrollEvent as IRevoGridViewPortScrollEvent } from '@revolist/revogrid/standalone';
import type { DataInput as IRevoGridDataInput } from '@revolist/revogrid/standalone';
import type { SortingConfig as IRevoGridSortingConfig } from '@revolist/revogrid/standalone';
Expand Down Expand Up @@ -163,14 +163,14 @@ Useful for performing actions or modifications before the final application of t
Use e.preventDefault() to prevent cell focus change.
Modify if you need to change filters.
*/
beforefilterapply: EventEmitter<CustomEvent<{ collection: IRevoGridFilterCollection }>>;
beforefilterapply: EventEmitter<CustomEvent<{ collection: Record<IRevoGridColumnProp, IRevoGridFilterCollectionItem> }>>;
/**
* Emitted before applying a filter to the data source.
Use e.preventDefault() to prevent the default behavior of trimming values and applying the filter.
Modify the `collection` property if you want to change the filters.
Modify the `itemsToFilter` property if you want to filter the indexes for trimming.
*/
beforefiltertrimmed: EventEmitter<CustomEvent<{ collection: IRevoGridFilterCollection; itemsToFilter: Record<number, boolean>; }>>;
beforefiltertrimmed: EventEmitter<CustomEvent<{ collection: Record<IRevoGridColumnProp, IRevoGridFilterCollectionItem>; itemsToFilter: Record<number, boolean>; }>>;
/**
* Emitted before trimming values.
Use e.preventDefault() to prevent the default behavior of trimming values.
Expand Down

0 comments on commit c089b74

Please sign in to comment.