Skip to content

Commit b1682e9

Browse files
author
Shahak Yosef
committed
Merged PR 100110: Fix visual rendered event
Fix visual rendered event
1 parent dbf7250 commit b1682e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powerbi-client",
3-
"version": "2.13.0",
3+
"version": "2.13.1",
44
"description": "JavaScript library for embedding Power BI into your apps. Provides service which makes it easy to embed different types of components and an object model which allows easy interaction with these components such as changing pages, applying filters, and responding to data selection.",
55
"main": "dist/powerbi.js",
66
"typings": "dist/powerbi-client.d.ts",

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @ignore *//** */
22
const config = {
3-
version: '2.13.0',
3+
version: '2.13.1',
44
type: 'js'
55
};
66

src/report.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface IReportNode {
3232
*/
3333
export class Report extends embed.Embed implements IReportNode, IFilterable {
3434
/** @hidden */
35-
static allowedEvents = ["filtersApplied", "pageChanged", "commandTriggered", "swipeStart", "swipeEnd", "bookmarkApplied", "dataHyperlinkClicked"];
35+
static allowedEvents = ["filtersApplied", "pageChanged", "commandTriggered", "swipeStart", "swipeEnd", "bookmarkApplied", "dataHyperlinkClicked", "visualRendered"];
3636
/** @hidden */
3737
static reportIdAttribute = 'powerbi-report-id';
3838
/** @hidden */

0 commit comments

Comments
 (0)