Skip to content

Commit 46df0b6

Browse files
committed
merge and build
2 parents 3002552 + 76bdf80 commit 46df0b6

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

dist/powerbi-client.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.4.0 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.4.1 | (c) 2016 Microsoft Corporation MIT */
22
declare module "config" {
33
const config: {
44
version: string;

dist/powerbi.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/powerbi.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powerbi-client",
3-
"version": "2.4.0",
3+
"version": "2.4.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const config = {
2-
version: '2.4.0',
2+
version: '2.4.1',
33
type: 'js'
44
};
55

src/report.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export interface IReportNode {
3030
* @implements {IFilterable}
3131
*/
3232
export class Report extends embed.Embed implements IReportNode, IFilterable {
33-
static allowedEvents = ["filtersApplied", "pageChanged"];
33+
static allowedEvents = ["filtersApplied", "pageChanged", "commandTriggered"];
3434
static reportIdAttribute = 'powerbi-report-id';
3535
static filterPaneEnabledAttribute = 'powerbi-settings-filter-pane-enabled';
3636
static navContentPaneEnabledAttribute = 'powerbi-settings-nav-content-pane-enabled';

0 commit comments

Comments
 (0)