Skip to content

Commit

Permalink
Bookmarks support (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneElkin authored and ignatvilesov committed Mar 20, 2018
1 parent a44042c commit 8465e7a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.6.0
* UPD: powerbi-visuals-tools has been updated to 1.11.0 to support Bookmarks
* UPD: API has been updated to 1.11.0 to support Bookmarks
* UPD: powerbi-visuals-utils-interactivityutils has been updated to 3.1.0 to support Bookmarks
* UPD: powerbi-visuals-utils-testutils has been updated to "1.2.0" to support Bookmarks

## 1.5.2
* Fixed bug when not 0 minimum value calculated as 0

Expand Down
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
{
"name": "powerbi-visuals-bulletchart",
"description": "Bullet chart",
"version": "1.5.2",
"version": "1.6.0",
"author": {
"name": "Microsoft",
"email": "[email protected]"
},
"scripts": {
"postinstall": "pbiviz update 1.7.0",
"postinstall": "pbiviz update 1.11.0",
"pbiviz": "pbiviz",
"start": "pbiviz start",
"package": "pbiviz package",
"lint": "node node_modules/tslint/bin/tslint -r \"node_modules/tslint-microsoft-contrib\" \"+(src|test)/**/*.ts\"",
"pretest": "pbiviz package --resources --no-minify --no-pbiviz --no-plugin",
"test": "karma start"
"test": "karma start",
"cert": "pbiviz --create-cert"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/PowerBI-visuals-bulletchart.git"
},
"devDependencies": {
"devDependencies": {
"@types/d3": "3.5.36",
"@types/jasmine": "^2.5.37",
"@types/jasmine-jquery": "^1.5.28",
Expand All @@ -41,12 +42,14 @@
"karma-typescript-preprocessor": "0.3.0",
"lodash": "4.16.2",
"moment": "2.15.1",
"powerbi-models": "^1.0.2",
"powerbi-visuals-utils-chartutils": "^1.2.0",
"powerbi-visuals-utils-dataviewutils": "^1.2.0",
"powerbi-visuals-tools": "1.7.0",
"powerbi-visuals-utils-testutils": "^0.2.2",
"powerbi-visuals-tools": "1.11.0",
"powerbi-visuals-utils-testutils": "1.2.0",
"powerbi-visuals-utils-tooltiputils": "^1.0.0",
"powerbi-visuals-utils-formattingutils": "^2.1.0",
"powerbi-visuals-utils-interactivityutils": "3.1.0",
"tslint": "^5.1.2",
"tslint-microsoft-contrib": "^5.0.0",
"typescript": "2.1.4"
Expand Down
4 changes: 2 additions & 2 deletions pbiviz.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"displayName": "Bullet Chart",
"guid": "BulletChart1443347686880",
"visualClassName": "BulletChart",
"version": "1.5.2",
"version": "1.6.0",
"description": "A bullet chart that includes four orientations and a few customization options. Use to feature a single measure against a qualitative range.",
"supportUrl": "http://community.powerbi.com",
"gitHubUrl": "https://github.com/Microsoft/powerbi-visuals-bulletchart"
},
"apiVersion": "1.7.0",
"apiVersion": "1.11.0",
"author": {
"name": "Microsoft",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion test/_references.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/// <reference path="../node_modules/@types/jasmine-jquery/index.d.ts" />

// Power BI API
/// <reference path="../.api/v1.6.0/PowerBI-visuals.d.ts" />
/// <reference path="../.api/v1.11.0/PowerBI-visuals.d.ts" />

// Power BI Extensibility
/// <reference path="../node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts" />
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@
"declaration": true
},
"files": [
".api/v1.7.0/PowerBI-visuals.d.ts",
".api/v1.11.0/PowerBI-visuals.d.ts",
"node_modules/powerbi-visuals-utils-formattingutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-interactivityutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-typeutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-svgutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-chartutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-tooltiputils/lib/index.d.ts",
"node_modules/powerbi-models/dist/models-noexports.d.ts",
"src/dataInterfaces.ts",
"src/settings.ts",
"src/columns.ts",
Expand Down

0 comments on commit 8465e7a

Please sign in to comment.