Skip to content

Commit 85c8344

Browse files
EugeneElkinignatvilesov
authored andcommitted
Bookmarks support (#104)
1 parent b8b7b12 commit 85c8344

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.10.0
2+
* UPD: powerbi-visuals-tools has been updated to 1.11.0 to support Bookmarks
3+
* UPD: API has been updated to 1.11.0 to support Bookmarks
4+
* UPD: powerbi-visuals-utils-interactivityutils has been updated to 3.1.0 to support Bookmarks
5+
* UPD: powerbi-visuals-utils-testutils has been updated to "1.2.0" to support Bookmarks
6+
17
## 1.9.4
28
* Fixed issue with tooltip duration
39
* Fixed issue with invisible task line when duration is 1

package.json

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powerbi-visuals-gantt",
3-
"version": "1.9.4",
3+
"version": "1.10.0",
44
"description": "A Gantt chart is a type of bar chart which illustrates a project timeline or schedule. The Gantt Chart visual shows the Tasks, Start Dates, Durations, % Complete, and Resources for a project. The Gantt Chart visual can be used to show current schedule status using percent-complete shadings and a vertical \"TODAY\" line. The Legend may be used to group or filter tasks based upon data values.",
55
"repository": {
66
"type": "git",
@@ -10,13 +10,14 @@
1010
"powerbi-visuals"
1111
],
1212
"scripts": {
13-
"postinstall": "pbiviz update 1.8.0",
13+
"postinstall": "pbiviz update 1.11.0",
1414
"pbiviz": "pbiviz",
1515
"start": "pbiviz start",
1616
"package": "pbiviz package",
1717
"lint": "tslint -r \"node_modules/tslint-microsoft-contrib\" \"+(src|test)/**/*.ts\"",
1818
"pretest": "pbiviz package --resources --no-minify --no-pbiviz --no-plugin",
19-
"test": "karma start"
19+
"test": "karma start",
20+
"cert": "pbiviz --create-cert"
2021
},
2122
"author": {
2223
"name": "Microsoft",
@@ -36,7 +37,7 @@
3637
"powerbi-visuals-utils-colorutils": "1.0.0",
3738
"powerbi-visuals-utils-dataviewutils": "1.1.1",
3839
"powerbi-visuals-utils-formattingutils": "2.1.0",
39-
"powerbi-visuals-utils-interactivityutils": "0.3.1",
40+
"powerbi-visuals-utils-interactivityutils": "3.1.0",
4041
"powerbi-visuals-utils-svgutils": "0.2.1",
4142
"powerbi-visuals-utils-tooltiputils": "0.3.2",
4243
"powerbi-visuals-utils-typeutils": "1.0.0"
@@ -57,8 +58,9 @@
5758
"karma-remap-istanbul": "0.6.0",
5859
"karma-sourcemap-loader": "0.3.7",
5960
"karma-typescript-preprocessor": "0.3.1",
60-
"powerbi-visuals-tools": "^1.8.1",
61-
"powerbi-visuals-utils-testutils": "1.0.2",
61+
"powerbi-models": "^1.0.2",
62+
"powerbi-visuals-tools": "1.11.0",
63+
"powerbi-visuals-utils-testutils": "1.2.0",
6264
"tslint": "4.5.1",
6365
"tslint-microsoft-contrib": "4.0.1",
6466
"typescript": "2.1.4"

pbiviz.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"displayName": "Gantt",
55
"guid": "Gantt1448688115699",
66
"visualClassName": "Gantt",
7-
"version": "1.9.4",
7+
"version": "1.10.0",
88
"description": "A Gantt chart is a type of bar chart which illustrates a project timeline or schedule. The Gantt Chart visual shows the Tasks, Start Dates, Durations, % Complete, and Resources for a project. The Gantt Chart visual can be used to show current schedule status using percent-complete shadings and a vertical \"TODAY\" line. The Legend may be used to group or filter tasks based upon data values.",
99
"supportUrl": "http://community.powerbi.com",
1010
"gitHubUrl": "https://github.com/Microsoft/powerbi-visuals-gantt"
1111
},
12-
"apiVersion": "1.8.0",
12+
"apiVersion": "1.11.0",
1313
"author": {
1414
"name": "Microsoft",
1515
"email": "[email protected]"

test/_references.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/// <reference path="../node_modules/@types/jasmine-jquery/index.d.ts" />
3030

3131
// Power BI API
32-
/// <reference path="../.api/v1.7.0/PowerBI-visuals.d.ts" />
32+
/// <reference path="../.api/v1.11.0/PowerBI-visuals.d.ts" />
3333

3434
// Power BI Extensibility
3535
/// <reference path="../node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts" />

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"declaration": true
1111
},
1212
"files": [
13-
".api/v1.8.0/PowerBI-visuals.d.ts",
13+
".api/v1.11.0/PowerBI-visuals.d.ts",
1414
"node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts",
1515
"node_modules/powerbi-visuals-utils-typeutils/lib/index.d.ts",
1616
"node_modules/powerbi-visuals-utils-svgutils/lib/index.d.ts",
@@ -21,6 +21,7 @@
2121
"node_modules/powerbi-visuals-utils-tooltiputils/lib/index.d.ts",
2222
"node_modules/powerbi-visuals-utils-colorutils/lib/index.d.ts",
2323
"node_modules/powerbi-visuals-utils-chartutils/lib/index.d.ts",
24+
"node_modules/powerbi-models/dist/models-noexports.d.ts",
2425
"src/behavior.ts",
2526
"src/columns.ts",
2627
"src/settings.ts",

0 commit comments

Comments
 (0)