Skip to content

Commit a8e2f47

Browse files
authored
Merge pull request microsoft#240 from Microsoft/dev/noanu/export_new_settings
update version and export new settings
2 parents 1928f05 + 730b2f9 commit a8e2f47

7 files changed

Lines changed: 12 additions & 10 deletions

File tree

dist/powerbi-client.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.3.4 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.3.5 | (c) 2016 Microsoft Corporation MIT */
22
declare module "config" {
33
const config: {
44
version: string;
@@ -1012,7 +1012,7 @@ declare module "powerbi-client" {
10121012
export { Report } from "report";
10131013
export { Dashboard } from "dashboard";
10141014
export { Tile } from "tile";
1015-
export { IEmbedConfiguration, Embed } from "embed";
1015+
export { IEmbedConfiguration, Embed, ILocaleSettings, IEmbedSettings } from "embed";
10161016
export { Page } from "page";
10171017
global {
10181018
interface Window {

dist/powerbi.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/powerbi.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/powerbi.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.4",
3+
"version": "2.3.5",
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,5 +1,5 @@
11
const config = {
2-
version: '2.3.4',
2+
version: '2.3.5',
33
type: 'js'
44
};
55

src/powerbi-client.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ export {
2020
} from './tile';
2121
export {
2222
IEmbedConfiguration,
23-
Embed
23+
Embed,
24+
ILocaleSettings,
25+
IEmbedSettings
2426
} from './embed';
2527
export {
2628
Page

0 commit comments

Comments
 (0)