powerbi-visuals-api
Advanced tools
Comparing version 2.6.2 to 3.2.0
@@ -10,2 +10,5 @@ # Change Log - Power BI Custom Visuals API | ||
## 3.2.0 | ||
* `supportsMultiVisualSelection` multi selection capabilities for custom visuals | ||
## 2.6.0 | ||
@@ -12,0 +15,0 @@ * `subtotals` property specifies subtotal customizations applied in customizeQuery method |
@@ -1423,2 +1423,14 @@ declare namespace powerbi { | ||
declare namespace powerbi.common { | ||
export const enum CustomVisualHostEnv { | ||
Web = 1 << 0, | ||
PublishToWeb = 1 << 1, | ||
Desktop = 1 << 2, | ||
Embed = 1 << 3, | ||
ReportServer = 1 << 4, | ||
ExportReportHost = 1 << 5, | ||
Mobile = 1 << 6 | ||
} | ||
} | ||
declare module powerbi { | ||
@@ -1469,2 +1481,3 @@ export interface IFilter { } | ||
switchFocusModeState: (on: boolean) => void; | ||
hostEnv: powerbi.common.CustomVisualHostEnv; | ||
} | ||
@@ -1471,0 +1484,0 @@ |
{ | ||
"name": "powerbi-visuals-api", | ||
"version": "2.6.2", | ||
"version": "3.2.0", | ||
"description": "Power BI Custom Visuals API type definitions for typescript", | ||
@@ -20,3 +20,3 @@ "types": "index", | ||
"dependencies": { | ||
"semver": "^7.1.2" | ||
"semver": "^7.3.2" | ||
}, | ||
@@ -23,0 +23,0 @@ "devDependencies": { |
@@ -61,2 +61,6 @@ { | ||
"$ref": "#/definitions/subtotals" | ||
}, | ||
"supportsMultiVisualSelection": { | ||
"type": "boolean", | ||
"description": "Indicates whether the visual supports multi selection" | ||
} | ||
@@ -63,0 +67,0 @@ }, |
119283
2796
Updatedsemver@^7.3.2