Merged PR 24472: add commandTriggered to allowed commands.
add commandTriggered to allowed commands.
This commit is contained in:
Родитель
f89d604859
Коммит
76bdf80d85
|
@ -1,4 +1,4 @@
|
|||
/*! powerbi-client v2.4.0 | (c) 2016 Microsoft Corporation MIT */
|
||||
/*! powerbi-client v2.4.1 | (c) 2016 Microsoft Corporation MIT */
|
||||
declare module "config" {
|
||||
const config: {
|
||||
version: string;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/*! powerbi-client v2.4.0 | (c) 2016 Microsoft Corporation MIT */
|
||||
/*! powerbi-client v2.4.1 | (c) 2016 Microsoft Corporation MIT */
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
|
@ -3386,7 +3386,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
throw response.body;
|
||||
});
|
||||
};
|
||||
Report.allowedEvents = ["filtersApplied", "pageChanged"];
|
||||
Report.allowedEvents = ["filtersApplied", "pageChanged", "commandTriggered"];
|
||||
Report.reportIdAttribute = 'powerbi-report-id';
|
||||
Report.filterPaneEnabledAttribute = 'powerbi-settings-filter-pane-enabled';
|
||||
Report.navContentPaneEnabledAttribute = 'powerbi-settings-nav-content-pane-enabled';
|
||||
|
@ -3944,7 +3944,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
/***/ (function(module, exports) {
|
||||
|
||||
var config = {
|
||||
version: '2.4.0',
|
||||
version: '2.4.1',
|
||||
type: 'js'
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "powerbi-client",
|
||||
"version": "2.4.0",
|
||||
"version": "2.4.1",
|
||||
"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.",
|
||||
"main": "dist/powerbi.js",
|
||||
"typings": "dist/powerbi-client.d.ts",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const config = {
|
||||
version: '2.4.0',
|
||||
version: '2.4.1',
|
||||
type: 'js'
|
||||
};
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ export interface IReportNode {
|
|||
* @implements {IFilterable}
|
||||
*/
|
||||
export class Report extends embed.Embed implements IReportNode, IFilterable {
|
||||
static allowedEvents = ["filtersApplied", "pageChanged"];
|
||||
static allowedEvents = ["filtersApplied", "pageChanged", "commandTriggered"];
|
||||
static reportIdAttribute = 'powerbi-report-id';
|
||||
static filterPaneEnabledAttribute = 'powerbi-settings-filter-pane-enabled';
|
||||
static navContentPaneEnabledAttribute = 'powerbi-settings-nav-content-pane-enabled';
|
||||
|
|
Загрузка…
Ссылка в новой задаче