Skip to content

Commit

Permalink
API 5.4.0 (#66)
Browse files Browse the repository at this point in the history
* feat(filter): added isDataFilterApplied in DataViewMetadata

* chore(version): updated package version

* Update CHANGELOG.md

---------

Co-authored-by: Asaf Mozes <37801424+AsafMozes@users.noreply.github.com>
  • Loading branch information
manikandanvengatesan and AsafMozes authored Apr 19, 2023
1 parent a953be6 commit 771a0ba
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log - Power BI Custom Visuals API

## 5.4.0
* Adds `isDataFilterApplied` into DataViewMetadata, to provide a boolean value of whether any applied filter affects the visual.

## 5.3.0
* SelectionId's update-fix for matrix dataView.
*Note: the selectionId's core data might change therefore a persisted selectionIds/identityIndex using an older API version might not be relevant in matrix dataView.*
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powerbi-visuals-api",
"version": "5.3.0",
"version": "5.4.0",
"description": "Power BI Custom Visuals API type definitions for typescript",
"types": "index",
"main": "index.js",
Expand Down
3 changes: 3 additions & 0 deletions src/visuals-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,9 @@ declare module powerbi {

/** Contains metadata about the dataRoles */
dataRoles?: DataRolesInfo;

/** Specifies if any filter applied affects the visual */
isDataFilterApplied?: boolean;
}

export interface DataRolesInfo {
Expand Down

0 comments on commit 771a0ba

Please sign in to comment.