This commit is contained in:
Eugene Elkin 2018-03-21 16:44:08 +03:00 коммит произвёл Ignat Vilesov
Родитель b8b7b12f2b
Коммит 85c83442bb
5 изменённых файлов: 19 добавлений и 10 удалений

Просмотреть файл

@ -1,3 +1,9 @@
## 1.10.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.9.4
* Fixed issue with tooltip duration
* Fixed issue with invisible task line when duration is 1

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "powerbi-visuals-gantt",
"version": "1.9.4",
"version": "1.10.0",
"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.",
"repository": {
"type": "git",
@ -10,13 +10,14 @@
"powerbi-visuals"
],
"scripts": {
"postinstall": "pbiviz update 1.8.0",
"postinstall": "pbiviz update 1.11.0",
"pbiviz": "pbiviz",
"start": "pbiviz start",
"package": "pbiviz package",
"lint": "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"
},
"author": {
"name": "Microsoft",
@ -36,7 +37,7 @@
"powerbi-visuals-utils-colorutils": "1.0.0",
"powerbi-visuals-utils-dataviewutils": "1.1.1",
"powerbi-visuals-utils-formattingutils": "2.1.0",
"powerbi-visuals-utils-interactivityutils": "0.3.1",
"powerbi-visuals-utils-interactivityutils": "3.1.0",
"powerbi-visuals-utils-svgutils": "0.2.1",
"powerbi-visuals-utils-tooltiputils": "0.3.2",
"powerbi-visuals-utils-typeutils": "1.0.0"
@ -57,8 +58,9 @@
"karma-remap-istanbul": "0.6.0",
"karma-sourcemap-loader": "0.3.7",
"karma-typescript-preprocessor": "0.3.1",
"powerbi-visuals-tools": "^1.8.1",
"powerbi-visuals-utils-testutils": "1.0.2",
"powerbi-models": "^1.0.2",
"powerbi-visuals-tools": "1.11.0",
"powerbi-visuals-utils-testutils": "1.2.0",
"tslint": "4.5.1",
"tslint-microsoft-contrib": "4.0.1",
"typescript": "2.1.4"

Просмотреть файл

@ -4,12 +4,12 @@
"displayName": "Gantt",
"guid": "Gantt1448688115699",
"visualClassName": "Gantt",
"version": "1.9.4",
"version": "1.10.0",
"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.",
"supportUrl": "http://community.powerbi.com",
"gitHubUrl": "https://github.com/Microsoft/powerbi-visuals-gantt"
},
"apiVersion": "1.8.0",
"apiVersion": "1.11.0",
"author": {
"name": "Microsoft",
"email": "pbicvsupport@microsoft.com"

Просмотреть файл

@ -29,7 +29,7 @@
/// <reference path="../node_modules/@types/jasmine-jquery/index.d.ts" />
// Power BI API
/// <reference path="../.api/v1.7.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" />

Просмотреть файл

@ -10,7 +10,7 @@
"declaration": true
},
"files": [
".api/v1.8.0/PowerBI-visuals.d.ts",
".api/v1.11.0/PowerBI-visuals.d.ts",
"node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-typeutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-svgutils/lib/index.d.ts",
@ -21,6 +21,7 @@
"node_modules/powerbi-visuals-utils-tooltiputils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-colorutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-chartutils/lib/index.d.ts",
"node_modules/powerbi-models/dist/models-noexports.d.ts",
"src/behavior.ts",
"src/columns.ts",
"src/settings.ts",