Skip to content

Commit

Permalink
v3.0.5.0 (#75)
Browse files Browse the repository at this point in the history
* Update build.yml (#69)

* New translations

* Add keyboard navigation and custom styles for focused elements (#70)

* Add keyboard navigation and custom styles for focused elements

* Add keyboard navigation tests

* Refactor test and remove unnecessary import

* Reverse the order of the series so that the focus goes from up to down.

* Remove unused dependencies, update Node version to 20.x

* Update .build.yml

* Resolve conflict errors

* Remove outline on non-keyboard focus. Fix stream focus order. (#72)

* Remove outline on non-keyboard focus. Fix focus order

* Remove tslint.json and specify Chromium path for karma tests

* Fix focus order: goes from down to up

* Fix version to use 4 digits

* Update version to 3.0.5.0 (#73)

* New translations (#64)

merging localizations

* Revert "New translations (2023-09-07 13:06:52 UTC)" (#76)

---------

Co-authored-by: pbicvloc <[email protected]>
Co-authored-by: adiletelf <[email protected]>
  • Loading branch information
3 people authored Jan 12, 2024
1 parent 8115b4e commit 3272e0d
Show file tree
Hide file tree
Showing 59 changed files with 2,759 additions and 2,347 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: build

on:
push:
branches: [ master ]
branches: [ main, dev, certification ]
pull_request:
branches: [ master ]
branches: [ main, dev, certification ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -20,6 +20,8 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm audit
continue-on-error: true
- run: npm outdated
continue-on-error: true
- run: npm ci
- run: npm run eslint --if-present
- run: npm run lint --if-present
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ typings
*.log
/coverage
webpack.statistics.html
webpack.statistics.dev.html
webpack.statistics.prod.html

# JetBrains
.idea
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 3.0.5.0
* Remove outline on non-keyboard focus. Fix stream focus order.

# 3.0.4.0
* Add keyboard navigation
* UPD: powerbi-visuals-tools has been updated to 5.2.1

## 2.0.2
* UPD: powerbi-visuals-tools has been updated to 3.0.9 to add IE11 support
* UPD: API has been updated to 2.3.0 to add IE11 support
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

> A stacked area chart with smooth interpolation. Often used to display values over time.
![stacked area chart screenshot](https://github.com/microsoft/powerbi-visuals-streamgraph/blob/master/assets/screenshot.png)
![stacked area chart screenshot](assets/screenshot.png)

# Overview
A stream graph, is a type of stacked area graph which is displaced around a central axis, resulting in a flowing, organic shape.

Expand Down
33 changes: 0 additions & 33 deletions azure-pipelines.yml

This file was deleted.

2 changes: 1 addition & 1 deletion karma.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const testRecursivePath = "test/visualTest.ts";
const srcOriginalRecursivePath = "src/**/*.ts";
const coverageFolder = "coverage";

require("playwright").chromium.executablePath();
process.env.CHROME_BIN = require("playwright").chromium.executablePath();

module.exports = (config) => {
config.set({
Expand Down
Loading

0 comments on commit 3272e0d

Please sign in to comment.