Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## 2.2.0
### Visual changes
*Add rendering events.
* Add rendering events.
* Added hover descriptions for unclear settings
* Customize axis Title formatting
* Split "Properties" setting on groups

## 2.1.2
### Visual changes
Expand Down
4 changes: 3 additions & 1 deletion capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,5 +487,7 @@
"tooltips"
]
},
"privileges": []
"privileges": [],
"supportsKeyboardFocus": true,
"supportsMultiVisualSelection": true
}
18 changes: 15 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
import powerbiVisualsConfigs from "eslint-plugin-powerbi-visuals";
import tseslint from 'typescript-eslint';
import path from 'path';

// TEMP SOLUTION: Setting tsconfigRootDir for parserOptions to fix ESLint config resolution.
// TODO: Update this approach when upgrading to newer versions of eslint-plugin-powerbi-visuals or ESLint.
const recommended = {
...powerbiVisualsConfigs.configs.recommended,
languageOptions: {
...powerbiVisualsConfigs.configs.recommended.languageOptions,
parserOptions: {
...powerbiVisualsConfigs.configs.recommended.languageOptions?.parserOptions,
tsconfigRootDir: path.resolve(),
},
},
};

export default [
...tseslint.configs.recommended,
powerbiVisualsConfigs.configs.recommended,
recommended,
{
ignores: [
"node_modules/**",
Expand Down
Loading
Loading