From c089b74bf0bfcfb72ca66bcfce568a606f9bf881 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 28 Nov 2024 15:28:13 +0000 Subject: [PATCH] chore(release): update versions to 4.10.34 --- package.json | 4 ++-- projects/angular-datagrid/package.json | 4 ++-- projects/angular-datagrid/src/lib/components.ts | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 04f3aa0..1bf167b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@revolist/angular-datagrid-project", - "version": "4.10.33", + "version": "4.10.34", "scripts": { "ng": "ng", "dev": "ng serve demo", @@ -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": { diff --git a/projects/angular-datagrid/package.json b/projects/angular-datagrid/package.json index c7f2a89..fec61a7 100644 --- a/projects/angular-datagrid/package.json +++ b/projects/angular-datagrid/package.json @@ -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", @@ -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" }, diff --git a/projects/angular-datagrid/src/lib/components.ts b/projects/angular-datagrid/src/lib/components.ts index 0ff39fa..d4b3724 100644 --- a/projects/angular-datagrid/src/lib/components.ts +++ b/projects/angular-datagrid/src/lib/components.ts @@ -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'; @@ -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>; + beforefilterapply: EventEmitter }>>; /** * 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; }>>; + beforefiltertrimmed: EventEmitter; itemsToFilter: Record; }>>; /** * Emitted before trimming values. Use e.preventDefault() to prevent the default behavior of trimming values.