Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.0.0.0
* API 5.11.0
* Migrate to formatting model
* Add high contrast mode
* Add localization
* Update packages

## 2.3.1
* FIX (Regression): Hovering on sparklines did not cause changing of main grap for preview

Expand Down
60 changes: 60 additions & 0 deletions capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,21 @@
}
}
},
"bold": {
"type": {
"bool": true
}
},
"italic": {
"type": {
"bool": true
}
},
"underline": {
"type": {
"bool": true
}
},
"format": {
"type": {
"text": true
Expand Down Expand Up @@ -560,6 +575,21 @@
}
}
},
"bold": {
"type": {
"bool": true
}
},
"italic": {
"type": {
"bool": true
}
},
"underline": {
"type": {
"bool": true
}
},
"position": {
"type": {
"numeric": true
Expand Down Expand Up @@ -686,6 +716,21 @@
}
}
},
"bold": {
"type": {
"bool": true
}
},
"italic": {
"type": {
"bool": true
}
},
"underline": {
"type": {
"bool": true
}
},
"format": {
"type": {
"text": true
Expand Down Expand Up @@ -777,6 +822,21 @@
}
}
},
"bold": {
"type": {
"bool": true
}
},
"italic": {
"type": {
"bool": true
}
},
"underline": {
"type": {
"bool": true
}
},
"warningText": {
"type": {
"text": true
Expand Down
10 changes: 10 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import powerbiVisualsConfigs from "eslint-plugin-powerbi-visuals";
import tseslint from 'typescript-eslint';

export default [
...tseslint.configs.recommended,
powerbiVisualsConfigs.configs.recommended,
{
ignores: ["node_modules/**", "dist/**", ".vscode/**", ".tmp/**", "coverage/**", "specs/**", "test.webpack.config.js", "karma.conf.ts"],
},
];
Loading
Loading