diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
new file mode 100644
index 0000000..faf5a55
--- /dev/null
+++ b/.github/workflows/deployment.yml
@@ -0,0 +1,96 @@
+name: Tests and publishing
+env:
+ FORCE_COLOR: 1
+on:
+ push:
+ branches:
+ - master
+ - main
+ - develop
+ pull_request:
+ branches:
+ - master
+ - main
+jobs:
+ test_linux:
+ name: Ubuntu
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
+ with:
+ node-version: 14
+ - uses: microsoft/playwright-github-action@v1
+ - uses: actions/cache@v1
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+ - name: Install dependencies
+ run: npm ci
+ - name: Run tests
+ run: npm test
+ test_win:
+ name: "Windows"
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
+ with:
+ node-version: 14
+ - uses: microsoft/playwright-github-action@v1
+ - uses: actions/cache@v1
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+ - name: Install dependencies
+ run: npm ci
+ - name: Run tests
+ run: npm test
+ tag:
+ name: "Publishing release"
+ if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
+ needs:
+ - test_linux
+ - test_win
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14.x'
+ registry-url: 'https://registry.npmjs.org'
+ - uses: actions/cache@v1
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+ - run: npm install
+ - name: Read version from package.json
+ uses: culshaw/read-package-node-version-actions@v1
+ id: package-node-version
+ - name: Changelog
+ uses: scottbrenner/generate-changelog-action@master
+ id: Changelog
+ - name: Github Release
+ id: create_release
+ uses: actions/create-release@latest
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ tag_name: v${{ steps.package-node-version.outputs.version }}
+ release_name: v${{ steps.package-node-version.outputs.version }}
+ body: |
+ ${{ steps.Changelog.outputs.changelog }}
+ draft: false
+ prerelease: false
+ - run: npm publish --access public
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
deleted file mode 100644
index 5ae8523..0000000
--- a/.github/workflows/tests.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: tests
-
-env:
- FORCE_COLOR: 1
-
-on:
- push:
- pull_request:
- branches:
- - stage
- - master
-jobs:
- test_linux:
- name: ${{ matrix.os }} (${{ matrix.browser }})
- strategy:
- fail-fast: false
- matrix:
- os: [ubuntu-18.04, ubuntu-20.04]
- runs-on: ${{ matrix.os }}
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v1
- with:
- node-version: 14
- - uses: microsoft/playwright-github-action@v1
- - name: Install dependencies
- run: npm ci
- - name: Run tests
- run: npm test
- # test_win:
- # name: "Windows"
- # strategy:
- # fail-fast: false
- # runs-on: windows-latest
- # steps:
- # - uses: actions/checkout@v2
- # - uses: actions/setup-node@v1
- # with:
- # node-version: 14
- # - uses: microsoft/playwright-github-action@v1
- # - name: Install dependencies
- # run: npm ci
- # - name: Run tests
- # run: npm test
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index dd758a3..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,1139 +0,0 @@
-
-## 0.1.0-rc.1 (2019-12-06)
-
-### Build
-
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## 0.1.0-rc.1 (2019-12-06)
-
-### Build
-
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## 0.1.0-rc.1 (2019-12-06)
-
-### Build
-
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## 0.1.0 (2019-12-06)
-
-### Build
-
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.1](https://github.com/advanced-rest-client/authorization-method/compare/0.1.0...0.1.1) (2019-12-10)
-
-### Build
-
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.2](https://github.com/advanced-rest-client/authorization-method/compare/0.1.0-rc.1...0.1.2) (2019-12-10)
-
-### Build
-
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-
-
-### Update
-
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-
-
-### Refactor
-
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-
-## [0.1.3](https://github.com/advanced-rest-client/authorization-method/compare/0.1.1...0.1.3) (2019-12-11)
-
-### Build
-
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.4](https://github.com/advanced-rest-client/authorization-method/compare/0.1.2...0.1.4) (2019-12-17)
-
-### Build
-
-* bumping version [ac1fc08](https://github.com/advanced-rest-client/authorization-method/commit/ac1fc0884624af82790fad34dcb2ee4812403f2e) by Pawel Psztyc
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* updating travis config [a90deb8](https://github.com/advanced-rest-client/authorization-method/commit/a90deb8a210b726f0c796693751d75b2c87e73d9) by Pawel Psztyc
-* updating dependencies [a9b96d9](https://github.com/advanced-rest-client/authorization-method/commit/a9b96d9a0401058f9067454456dc4e3b3fda4560) by Pawel Psztyc
-* adding missing types to OAth2 mixin [f1cd552](https://github.com/advanced-rest-client/authorization-method/commit/f1cd5525586967c8dc773063265545edda053a69) by Pawel Psztyc
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.5](https://github.com/advanced-rest-client/authorization-method/compare/0.1.3...0.1.5) (2019-12-19)
-
-### Build
-
-* bumping version [9c7c651](https://github.com/advanced-rest-client/authorization-method/commit/9c7c6513853151d46c68f05b135c15c69bbf88cb) by Pawel
-* bumping version [ac1fc08](https://github.com/advanced-rest-client/authorization-method/commit/ac1fc0884624af82790fad34dcb2ee4812403f2e) by Pawel Psztyc
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* upgrading dependencies [b11b2df](https://github.com/advanced-rest-client/authorization-method/commit/b11b2df79dd6f9410a4c941bcbf6c1c2e034da9d) by Pawel
-* adding default state for dark mode in demo page [d6465cc](https://github.com/advanced-rest-client/authorization-method/commit/d6465ccef49ab14709814ebb6b334c420b16ccdd) by Pawel
-* updating travis config [a90deb8](https://github.com/advanced-rest-client/authorization-method/commit/a90deb8a210b726f0c796693751d75b2c87e73d9) by Pawel Psztyc
-* updating dependencies [a9b96d9](https://github.com/advanced-rest-client/authorization-method/commit/a9b96d9a0401058f9067454456dc4e3b3fda4560) by Pawel Psztyc
-* adding missing types to OAth2 mixin [f1cd552](https://github.com/advanced-rest-client/authorization-method/commit/f1cd5525586967c8dc773063265545edda053a69) by Pawel Psztyc
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing support for session storage for oauth2 (non-breaking) [f607084](https://github.com/advanced-rest-client/authorization-method/commit/f6070844ae0290df03cdf10e0bc0de54c37679a3) by Pawel
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.5](https://github.com/advanced-rest-client/authorization-method/compare/0.1.4...0.1.5) (2019-12-19)
-
-### Build
-
-* bumping version [9c7c651](https://github.com/advanced-rest-client/authorization-method/commit/9c7c6513853151d46c68f05b135c15c69bbf88cb) by Pawel
-* bumping version [ac1fc08](https://github.com/advanced-rest-client/authorization-method/commit/ac1fc0884624af82790fad34dcb2ee4812403f2e) by Pawel Psztyc
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* upgrading dependencies [b11b2df](https://github.com/advanced-rest-client/authorization-method/commit/b11b2df79dd6f9410a4c941bcbf6c1c2e034da9d) by Pawel
-* adding default state for dark mode in demo page [d6465cc](https://github.com/advanced-rest-client/authorization-method/commit/d6465ccef49ab14709814ebb6b334c420b16ccdd) by Pawel
-* updating travis config [a90deb8](https://github.com/advanced-rest-client/authorization-method/commit/a90deb8a210b726f0c796693751d75b2c87e73d9) by Pawel Psztyc
-* updating dependencies [a9b96d9](https://github.com/advanced-rest-client/authorization-method/commit/a9b96d9a0401058f9067454456dc4e3b3fda4560) by Pawel Psztyc
-* adding missing types to OAth2 mixin [f1cd552](https://github.com/advanced-rest-client/authorization-method/commit/f1cd5525586967c8dc773063265545edda053a69) by Pawel Psztyc
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing support for session storage for oauth2 (non-breaking) [f607084](https://github.com/advanced-rest-client/authorization-method/commit/f6070844ae0290df03cdf10e0bc0de54c37679a3) by Pawel
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.6](https://github.com/advanced-rest-client/authorization-method/compare/0.1.4...0.1.6) (2019-12-20)
-
-### Build
-
-* bumping version [7ee9a48](https://github.com/advanced-rest-client/authorization-method/commit/7ee9a48206d708337cfbf922dcdcefef9992bde3) by Pawel
-* bumping version [9c7c651](https://github.com/advanced-rest-client/authorization-method/commit/9c7c6513853151d46c68f05b135c15c69bbf88cb) by Pawel
-* bumping version [ac1fc08](https://github.com/advanced-rest-client/authorization-method/commit/ac1fc0884624af82790fad34dcb2ee4812403f2e) by Pawel Psztyc
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* adding `:host` style [d2b0ada](https://github.com/advanced-rest-client/authorization-method/commit/d2b0ada317becb140ea11ae8b71a958b6a6705a4) by Pawel
-* updating dependencies [ff43686](https://github.com/advanced-rest-client/authorization-method/commit/ff436860b7b9f836f87aac7e4bb07851a325567f) by Pawel
-* upgrading dependencies [b11b2df](https://github.com/advanced-rest-client/authorization-method/commit/b11b2df79dd6f9410a4c941bcbf6c1c2e034da9d) by Pawel
-* adding default state for dark mode in demo page [d6465cc](https://github.com/advanced-rest-client/authorization-method/commit/d6465ccef49ab14709814ebb6b334c420b16ccdd) by Pawel
-* updating travis config [a90deb8](https://github.com/advanced-rest-client/authorization-method/commit/a90deb8a210b726f0c796693751d75b2c87e73d9) by Pawel Psztyc
-* updating dependencies [a9b96d9](https://github.com/advanced-rest-client/authorization-method/commit/a9b96d9a0401058f9067454456dc4e3b3fda4560) by Pawel Psztyc
-* adding missing types to OAth2 mixin [f1cd552](https://github.com/advanced-rest-client/authorization-method/commit/f1cd5525586967c8dc773063265545edda053a69) by Pawel Psztyc
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing support for session storage for oauth2 (non-breaking) [f607084](https://github.com/advanced-rest-client/authorization-method/commit/f6070844ae0290df03cdf10e0bc0de54c37679a3) by Pawel
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.7](https://github.com/advanced-rest-client/authorization-method/compare/0.1.5...0.1.7) (2019-12-21)
-
-### Build
-
-* bumping version [29e3e15](https://github.com/advanced-rest-client/authorization-method/commit/29e3e155014c0f7cb1e237220e9e9d9c5b729c7f) by Pawel
-* bumping version [7ee9a48](https://github.com/advanced-rest-client/authorization-method/commit/7ee9a48206d708337cfbf922dcdcefef9992bde3) by Pawel
-* bumping version [9c7c651](https://github.com/advanced-rest-client/authorization-method/commit/9c7c6513853151d46c68f05b135c15c69bbf88cb) by Pawel
-* bumping version [ac1fc08](https://github.com/advanced-rest-client/authorization-method/commit/ac1fc0884624af82790fad34dcb2ee4812403f2e) by Pawel Psztyc
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* updating dependencies [24b2d84](https://github.com/advanced-rest-client/authorization-method/commit/24b2d84adb4c1be34c85e65453a77d0f11e72e68) by Pawel
-* updating types [b7139ed](https://github.com/advanced-rest-client/authorization-method/commit/b7139ed6184ae92f0919b7a0a2f95e3f3b9d5d71) by Pawel
-* adding `change` event for token value change [27d3c37](https://github.com/advanced-rest-client/authorization-method/commit/27d3c37c4edf3d9e5881e61f8d79c786e0c92da0) by Pawel
-* removing unused variables [a9e6001](https://github.com/advanced-rest-client/authorization-method/commit/a9e6001fb7917ae0a0dcc201c33695c8d5c60d30) by Pawel
-* adding `:host` style [d2b0ada](https://github.com/advanced-rest-client/authorization-method/commit/d2b0ada317becb140ea11ae8b71a958b6a6705a4) by Pawel
-* updating dependencies [ff43686](https://github.com/advanced-rest-client/authorization-method/commit/ff436860b7b9f836f87aac7e4bb07851a325567f) by Pawel
-* upgrading dependencies [b11b2df](https://github.com/advanced-rest-client/authorization-method/commit/b11b2df79dd6f9410a4c941bcbf6c1c2e034da9d) by Pawel
-* adding default state for dark mode in demo page [d6465cc](https://github.com/advanced-rest-client/authorization-method/commit/d6465ccef49ab14709814ebb6b334c420b16ccdd) by Pawel
-* updating travis config [a90deb8](https://github.com/advanced-rest-client/authorization-method/commit/a90deb8a210b726f0c796693751d75b2c87e73d9) by Pawel Psztyc
-* updating dependencies [a9b96d9](https://github.com/advanced-rest-client/authorization-method/commit/a9b96d9a0401058f9067454456dc4e3b3fda4560) by Pawel Psztyc
-* adding missing types to OAth2 mixin [f1cd552](https://github.com/advanced-rest-client/authorization-method/commit/f1cd5525586967c8dc773063265545edda053a69) by Pawel Psztyc
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing support for session storage for oauth2 (non-breaking) [f607084](https://github.com/advanced-rest-client/authorization-method/commit/f6070844ae0290df03cdf10e0bc0de54c37679a3) by Pawel
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.8](https://github.com/advanced-rest-client/authorization-method/compare/0.1.6...0.1.8) (2020-02-12)
-
-### Build
-
-* bumping version [2ffbf33](https://github.com/advanced-rest-client/authorization-method/commit/2ffbf33757283f193104f99bd2847f7cb632efa1) by Pawel Psztyc
-* bumping version [29e3e15](https://github.com/advanced-rest-client/authorization-method/commit/29e3e155014c0f7cb1e237220e9e9d9c5b729c7f) by Pawel
-* bumping version [7ee9a48](https://github.com/advanced-rest-client/authorization-method/commit/7ee9a48206d708337cfbf922dcdcefef9992bde3) by Pawel
-* bumping version [9c7c651](https://github.com/advanced-rest-client/authorization-method/commit/9c7c6513853151d46c68f05b135c15c69bbf88cb) by Pawel
-* bumping version [ac1fc08](https://github.com/advanced-rest-client/authorization-method/commit/ac1fc0884624af82790fad34dcb2ee4812403f2e) by Pawel Psztyc
-* bumping version [55bbc74](https://github.com/advanced-rest-client/authorization-method/commit/55bbc7435bccd390aeb2a2d52b245ae0cf54c5cf) by Pawel Psztyc
-* bumping version [d393aec](https://github.com/advanced-rest-client/authorization-method/commit/d393aec16b304d529bde49595ff8b8118112f727) by Pawel Psztyc
-* bumping stable version [e668f96](https://github.com/advanced-rest-client/authorization-method/commit/e668f964931018e01e461cffae93927c4ebcf2ed) by Pawel
-* bumping version [e22afbe](https://github.com/advanced-rest-client/authorization-method/commit/e22afbe64ef66c3ffb776c72d3e8670270d7112b) by Pawel Psztyc
-
-
-### Update
-
-* adding `baseUri` proeprty to OAuth 2 [2152e7b](https://github.com/advanced-rest-client/authorization-method/commit/2152e7b63100b52bf8f962110f9faab9e025a5ff) by Pawel Psztyc
-* updating dependencies [b633fec](https://github.com/advanced-rest-client/authorization-method/commit/b633fecd2ede7ef2b53eb35be082c17fbe5ca910) by Pawel Psztyc
-* updating dependencies [24b2d84](https://github.com/advanced-rest-client/authorization-method/commit/24b2d84adb4c1be34c85e65453a77d0f11e72e68) by Pawel
-* updating types [b7139ed](https://github.com/advanced-rest-client/authorization-method/commit/b7139ed6184ae92f0919b7a0a2f95e3f3b9d5d71) by Pawel
-* adding `change` event for token value change [27d3c37](https://github.com/advanced-rest-client/authorization-method/commit/27d3c37c4edf3d9e5881e61f8d79c786e0c92da0) by Pawel
-* removing unused variables [a9e6001](https://github.com/advanced-rest-client/authorization-method/commit/a9e6001fb7917ae0a0dcc201c33695c8d5c60d30) by Pawel
-* adding `:host` style [d2b0ada](https://github.com/advanced-rest-client/authorization-method/commit/d2b0ada317becb140ea11ae8b71a958b6a6705a4) by Pawel
-* updating dependencies [ff43686](https://github.com/advanced-rest-client/authorization-method/commit/ff436860b7b9f836f87aac7e4bb07851a325567f) by Pawel
-* upgrading dependencies [b11b2df](https://github.com/advanced-rest-client/authorization-method/commit/b11b2df79dd6f9410a4c941bcbf6c1c2e034da9d) by Pawel
-* adding default state for dark mode in demo page [d6465cc](https://github.com/advanced-rest-client/authorization-method/commit/d6465ccef49ab14709814ebb6b334c420b16ccdd) by Pawel
-* updating travis config [a90deb8](https://github.com/advanced-rest-client/authorization-method/commit/a90deb8a210b726f0c796693751d75b2c87e73d9) by Pawel Psztyc
-* updating dependencies [a9b96d9](https://github.com/advanced-rest-client/authorization-method/commit/a9b96d9a0401058f9067454456dc4e3b3fda4560) by Pawel Psztyc
-* adding missing types to OAth2 mixin [f1cd552](https://github.com/advanced-rest-client/authorization-method/commit/f1cd5525586967c8dc773063265545edda053a69) by Pawel Psztyc
-* bumping version [10e9a88](https://github.com/advanced-rest-client/authorization-method/commit/10e9a88e3bc7e7e100aa614f01c7c30dd83d74ae) by Pawel
-* removing auto generated types [f7d581f](https://github.com/advanced-rest-client/authorization-method/commit/f7d581f6748c06abb25e52d3773f618fa282d686) by Pawel Psztyc
-* adding `autoHide` function symbol export for child classes [3511428](https://github.com/advanced-rest-client/authorization-method/commit/35114283656219573b671d8c12a57a256da921f6) by Pawel Psztyc
-* upgrading dependencies [17de7ac](https://github.com/advanced-rest-client/authorization-method/commit/17de7ac2a23c360010eeb8a68a6e5266f2b4f33b) by Pawel Psztyc
-* updating dependencies [3cc23b9](https://github.com/advanced-rest-client/authorization-method/commit/3cc23b97b58d1782bc0f7978cd06c7c20aacf441) by Pawel
-* adding Safari to the tests [09aee75](https://github.com/advanced-rest-client/authorization-method/commit/09aee75e107028872cfe22c9220c28315834952a) by Pawel Psztyc
-* cleaning up dependencies [de62275](https://github.com/advanced-rest-client/authorization-method/commit/de622750d282ea94af80d7b13ec24abcbbdd7bfe) by Pawel Psztyc
-* adding types [03ebc0c](https://github.com/advanced-rest-client/authorization-method/commit/03ebc0c115c857d3723790e27c431520bfa223a9) by Pawel Psztyc
-* finishing OAuth 2 tests [2d72d55](https://github.com/advanced-rest-client/authorization-method/commit/2d72d55ff0d98ea3d9d32f98bc5ed7b6b8130407) by Pawel
-* moving grantTypes array to outside the component prototype [e622d9b](https://github.com/advanced-rest-client/authorization-method/commit/e622d9bae129f3d7c8be2bf4f54b6e3b07f34f99) by Pawel Psztyc
-* adding basic tests [6724b3e](https://github.com/advanced-rest-client/authorization-method/commit/6724b3e51f8c58c60f4ad745a811298b6d0b40f1) by Pawel
-* adding type check when validating inputs [6c2ac8d](https://github.com/advanced-rest-client/authorization-method/commit/6c2ac8d2a5f3fcf238cfb3e22958ac74e67a576e) by Pawel
-* moving baic methods to basic class instead basic method [9af1559](https://github.com/advanced-rest-client/authorization-method/commit/9af15591ac1ffb49ff601a5e66fc0d4a9a46a8b3) by Pawel
-* moving definition to separate packages [478aa02](https://github.com/advanced-rest-client/authorization-method/commit/478aa02dd09a144bdfa651464ca810bb6c03cad9) by Pawel
-
-
-### Documentation
-
-* updating function description [b8d0c55](https://github.com/advanced-rest-client/authorization-method/commit/b8d0c55fb16a3d41e83cf4d91ecb7780edfc36f9) by Pawel Psztyc
-* creating README file [93c6ba7](https://github.com/advanced-rest-client/authorization-method/commit/93c6ba7aac6970f8d13fe06051f3abf8bfed5bf9) by Pawel Psztyc
-
-
-### Refactor
-
-* removing support for session storage for oauth2 (non-breaking) [f607084](https://github.com/advanced-rest-client/authorization-method/commit/f6070844ae0290df03cdf10e0bc0de54c37679a3) by Pawel
-* removing EventsTargetMixin and support for ARC events [4b904e9](https://github.com/advanced-rest-client/authorization-method/commit/4b904e9882dc891f585822d5720a934287833087) by Pawel
-* making base function symbols "public" for child classes [cb32393](https://github.com/advanced-rest-client/authorization-method/commit/cb323933e608d288ad7b9aa66b61f687176717ec) by Pawel Psztyc
-
-
-### Testing
-
-* updated Travis configuration to connect to Sauce Labs [f114f3f](https://github.com/advanced-rest-client/authorization-method/commit/f114f3f960d786c3ac374bca7d5996a054aea4f1) by Pawel
-* updated Travis configuration to connect to Sauce Labs [db876f0](https://github.com/advanced-rest-client/authorization-method/commit/db876f00cd60af666767150214dfa132ac52b652) by Pawel
-* temporaily removing Edge from tests [c449f55](https://github.com/advanced-rest-client/authorization-method/commit/c449f55641abcd45688aa0d902edc8eb119eec90) by Pawel
-* finishing tests [9c460b0](https://github.com/advanced-rest-client/authorization-method/commit/9c460b0172a4b38a1f06f1c6fa9d9c7cb25d754e) by Pawel Psztyc
-* adding basic tests for oauth 2 implicit flow [fc11a9f](https://github.com/advanced-rest-client/authorization-method/commit/fc11a9feaa9fd94f529d5b792898a3ba08d8e0a8) by Pawel Psztyc
-* updated Travis configuration to connect to Sauce Labs [27a5d13](https://github.com/advanced-rest-client/authorization-method/commit/27a5d13570e0f793bbe9ec81c784e7da6b9742af) by Pawel Psztyc
-* adding OAuth 1 tests [8ade6e7](https://github.com/advanced-rest-client/authorization-method/commit/8ade6e7099465290cd131c2ce519607d2bf059e4) by Pawel Psztyc
-* adding test command for SL [77ca60b](https://github.com/advanced-rest-client/authorization-method/commit/77ca60bd1472f009240b6cfc9b1cd77691cbc332) by Pawel
-
-
-
-## [0.1.9](https://github.com/advanced-rest-client/authorization-method/compare/0.1.7...0.1.9) (2020-02-13)
-
-### Build
-
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-* bumping version [2ffbf33](https://github.com/advanced-rest-client/authorization-method/commit/2ffbf33757283f193104f99bd2847f7cb632efa1) by Pawel Psztyc
-
-
-### Update
-
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-* adding `baseUri` proeprty to OAuth 2 [2152e7b](https://github.com/advanced-rest-client/authorization-method/commit/2152e7b63100b52bf8f962110f9faab9e025a5ff) by Pawel Psztyc
-* updating dependencies [b633fec](https://github.com/advanced-rest-client/authorization-method/commit/b633fecd2ede7ef2b53eb35be082c17fbe5ca910) by Pawel Psztyc
-
-
-### Features
-
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Testing
-
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.1.10](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.1.10) (2020-02-13)
-
-### Build
-
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Update
-
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Testing
-
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.1.11](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.1.11) (2020-03-04)
-
-### Build
-
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Update
-
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Testing
-
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.1.12](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.1.12) (2020-03-18)
-
-### Build
-
-* bumping version [dabe22a](https://github.com/advanced-rest-client/authorization-method/commit/dabe22a9acddd84a1c1f887e822bd9424916d184) by Pawel Psztyc
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Update
-
-* removing git add from lint staged [e9242aa](https://github.com/advanced-rest-client/authorization-method/commit/e9242aae62dcb2920974a20c581dbc34c2786a4f) by Pawel Psztyc
-* updating dependencies [5fcc633](https://github.com/advanced-rest-client/authorization-method/commit/5fcc633900a495605c92605e5e65c6d52eb404b1) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [af05313](https://github.com/advanced-rest-client/authorization-method/commit/af0531399cb53a8137109adf27cc52a7e7681001) by Ci agent
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Bug Fixes
-
-* fixes #2 - client_secret parameter rendering [787080f](https://github.com/advanced-rest-client/authorization-method/commit/787080f229e24d8103492d54affec3e55de47bc8) by Pawel Psztyc
-
-
-### Testing
-
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.1.13](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.1.13) (2020-04-02)
-
-### Build
-
-* bumping version [bb76bfc](https://github.com/advanced-rest-client/authorization-method/commit/bb76bfc3033a2007bbcbf6b7727e1362096a4de5) by Pawel
-* bumping version [dabe22a](https://github.com/advanced-rest-client/authorization-method/commit/dabe22a9acddd84a1c1f887e822bd9424916d184) by Pawel Psztyc
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Update
-
-* upgrading dependencies [32ba6bd](https://github.com/advanced-rest-client/authorization-method/commit/32ba6bdfbfe62557dcabe7583230f9b7ca64c6a0) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [58a7f15](https://github.com/advanced-rest-client/authorization-method/commit/58a7f156c318b2e40b3bb62e11cb2018474d492a) by Ci agent
-* removing git add from lint staged [e9242aa](https://github.com/advanced-rest-client/authorization-method/commit/e9242aae62dcb2920974a20c581dbc34c2786a4f) by Pawel Psztyc
-* updating dependencies [5fcc633](https://github.com/advanced-rest-client/authorization-method/commit/5fcc633900a495605c92605e5e65c6d52eb404b1) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [af05313](https://github.com/advanced-rest-client/authorization-method/commit/af0531399cb53a8137109adf27cc52a7e7681001) by Ci agent
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Documentation
-
-* upgrading demo page [60eb286](https://github.com/advanced-rest-client/authorization-method/commit/60eb28688d2caf772167e1475639127596974a27) by Pawel
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Bug Fixes
-
-* fixed advanced-rest-client/arc-electron#243 [f5b9c0e](https://github.com/advanced-rest-client/authorization-method/commit/f5b9c0e1f55662650fd14ddd0d85f1e0607b6ebb) by Pawel
-* fixes #2 - client_secret parameter rendering [787080f](https://github.com/advanced-rest-client/authorization-method/commit/787080f229e24d8103492d54affec3e55de47bc8) by Pawel Psztyc
-
-
-### Testing
-
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.1.14](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.1.14) (2020-05-18)
-
-### Build
-
-* bumping version [c12ea12](https://github.com/advanced-rest-client/authorization-method/commit/c12ea1264862a467ef8fe99388a579654623b3c5) by Pawel
-* bumping version [bb76bfc](https://github.com/advanced-rest-client/authorization-method/commit/bb76bfc3033a2007bbcbf6b7727e1362096a4de5) by Pawel
-* bumping version [dabe22a](https://github.com/advanced-rest-client/authorization-method/commit/dabe22a9acddd84a1c1f887e822bd9424916d184) by Pawel Psztyc
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Update
-
-* upgrading to open-wc standard [2324917](https://github.com/advanced-rest-client/authorization-method/commit/23249171f767f11aedc3909d0e5d4d4b3b9d8ae5) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3ddd90b](https://github.com/advanced-rest-client/authorization-method/commit/3ddd90b277159c0d8723f7fe7d97d7bf78debf10) by Ci agent
-* upgrading dependencies [32ba6bd](https://github.com/advanced-rest-client/authorization-method/commit/32ba6bdfbfe62557dcabe7583230f9b7ca64c6a0) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [58a7f15](https://github.com/advanced-rest-client/authorization-method/commit/58a7f156c318b2e40b3bb62e11cb2018474d492a) by Ci agent
-* removing git add from lint staged [e9242aa](https://github.com/advanced-rest-client/authorization-method/commit/e9242aae62dcb2920974a20c581dbc34c2786a4f) by Pawel Psztyc
-* updating dependencies [5fcc633](https://github.com/advanced-rest-client/authorization-method/commit/5fcc633900a495605c92605e5e65c6d52eb404b1) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [af05313](https://github.com/advanced-rest-client/authorization-method/commit/af0531399cb53a8137109adf27cc52a7e7681001) by Ci agent
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Documentation
-
-* upgrading demo page [60eb286](https://github.com/advanced-rest-client/authorization-method/commit/60eb28688d2caf772167e1475639127596974a27) by Pawel
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Bug Fixes
-
-* fixed advanced-rest-client/arc-electron#243 [f5b9c0e](https://github.com/advanced-rest-client/authorization-method/commit/f5b9c0e1f55662650fd14ddd0d85f1e0607b6ebb) by Pawel
-* fixes #2 - client_secret parameter rendering [787080f](https://github.com/advanced-rest-client/authorization-method/commit/787080f229e24d8103492d54affec3e55de47bc8) by Pawel Psztyc
-
-
-### Testing
-
-* restoring all tests [bf1f91a](https://github.com/advanced-rest-client/authorization-method/commit/bf1f91ab49330f501de2582641aa6bb826f8975e) by Pawel
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.1.15](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.1.15) (2020-05-22)
-
-### Build
-
-* bumping version [c54b725](https://github.com/advanced-rest-client/authorization-method/commit/c54b7253de29cc114641a25b2fce9aac075498a0) by Pawel
-* bumping version [c12ea12](https://github.com/advanced-rest-client/authorization-method/commit/c12ea1264862a467ef8fe99388a579654623b3c5) by Pawel
-* bumping version [bb76bfc](https://github.com/advanced-rest-client/authorization-method/commit/bb76bfc3033a2007bbcbf6b7727e1362096a4de5) by Pawel
-* bumping version [dabe22a](https://github.com/advanced-rest-client/authorization-method/commit/dabe22a9acddd84a1c1f887e822bd9424916d184) by Pawel Psztyc
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [2eb1131](https://github.com/advanced-rest-client/authorization-method/commit/2eb113105b2fd085947ea0105ea770e144288c39) by Ci agent
-* upgrading to open-wc standard [2324917](https://github.com/advanced-rest-client/authorization-method/commit/23249171f767f11aedc3909d0e5d4d4b3b9d8ae5) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3ddd90b](https://github.com/advanced-rest-client/authorization-method/commit/3ddd90b277159c0d8723f7fe7d97d7bf78debf10) by Ci agent
-* upgrading dependencies [32ba6bd](https://github.com/advanced-rest-client/authorization-method/commit/32ba6bdfbfe62557dcabe7583230f9b7ca64c6a0) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [58a7f15](https://github.com/advanced-rest-client/authorization-method/commit/58a7f156c318b2e40b3bb62e11cb2018474d492a) by Ci agent
-* removing git add from lint staged [e9242aa](https://github.com/advanced-rest-client/authorization-method/commit/e9242aae62dcb2920974a20c581dbc34c2786a4f) by Pawel Psztyc
-* updating dependencies [5fcc633](https://github.com/advanced-rest-client/authorization-method/commit/5fcc633900a495605c92605e5e65c6d52eb404b1) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [af05313](https://github.com/advanced-rest-client/authorization-method/commit/af0531399cb53a8137109adf27cc52a7e7681001) by Ci agent
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Documentation
-
-* upgrading demo page [60eb286](https://github.com/advanced-rest-client/authorization-method/commit/60eb28688d2caf772167e1475639127596974a27) by Pawel
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Bug Fixes
-
-* restoring compatibility property passing to the elements [5ee7f10](https://github.com/advanced-rest-client/authorization-method/commit/5ee7f10c6cbfbcdaa87d072ed25131fcadeb0083) by Pawel
-* fixed advanced-rest-client/arc-electron#243 [f5b9c0e](https://github.com/advanced-rest-client/authorization-method/commit/f5b9c0e1f55662650fd14ddd0d85f1e0607b6ebb) by Pawel
-* fixes #2 - client_secret parameter rendering [787080f](https://github.com/advanced-rest-client/authorization-method/commit/787080f229e24d8103492d54affec3e55de47bc8) by Pawel Psztyc
-
-
-### Testing
-
-* restoring all tests [bf1f91a](https://github.com/advanced-rest-client/authorization-method/commit/bf1f91ab49330f501de2582641aa6bb826f8975e) by Pawel
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.2.0](https://github.com/advanced-rest-client/authorization-method/compare/0.1.8...0.2.0) (2020-11-10)
-
-### Build
-
-* bumping version [c54b725](https://github.com/advanced-rest-client/authorization-method/commit/c54b7253de29cc114641a25b2fce9aac075498a0) by Pawel
-* bumping version [c12ea12](https://github.com/advanced-rest-client/authorization-method/commit/c12ea1264862a467ef8fe99388a579654623b3c5) by Pawel
-* bumping version [bb76bfc](https://github.com/advanced-rest-client/authorization-method/commit/bb76bfc3033a2007bbcbf6b7727e1362096a4de5) by Pawel
-* bumping version [dabe22a](https://github.com/advanced-rest-client/authorization-method/commit/dabe22a9acddd84a1c1f887e822bd9424916d184) by Pawel Psztyc
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-* bumping version [f5e69f4](https://github.com/advanced-rest-client/authorization-method/commit/f5e69f4fff0a3c31a975a9d72dcb3e1238f67eae) by Pawel
-
-
-### Continuous integration
-
-* removing browsers from the run matrix [505c7f9](https://github.com/advanced-rest-client/authorization-method/commit/505c7f9d35411c6f43fc70e8f9ee619ef2de8010) by Pawel
-
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [d827a43](https://github.com/advanced-rest-client/authorization-method/commit/d827a4361a40005cde49658133bd29b6fe0ec3c9) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [2eb1131](https://github.com/advanced-rest-client/authorization-method/commit/2eb113105b2fd085947ea0105ea770e144288c39) by Ci agent
-* upgrading to open-wc standard [2324917](https://github.com/advanced-rest-client/authorization-method/commit/23249171f767f11aedc3909d0e5d4d4b3b9d8ae5) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3ddd90b](https://github.com/advanced-rest-client/authorization-method/commit/3ddd90b277159c0d8723f7fe7d97d7bf78debf10) by Ci agent
-* upgrading dependencies [32ba6bd](https://github.com/advanced-rest-client/authorization-method/commit/32ba6bdfbfe62557dcabe7583230f9b7ca64c6a0) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [58a7f15](https://github.com/advanced-rest-client/authorization-method/commit/58a7f156c318b2e40b3bb62e11cb2018474d492a) by Ci agent
-* removing git add from lint staged [e9242aa](https://github.com/advanced-rest-client/authorization-method/commit/e9242aae62dcb2920974a20c581dbc34c2786a4f) by Pawel Psztyc
-* updating dependencies [5fcc633](https://github.com/advanced-rest-client/authorization-method/commit/5fcc633900a495605c92605e5e65c6d52eb404b1) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [af05313](https://github.com/advanced-rest-client/authorization-method/commit/af0531399cb53a8137109adf27cc52a7e7681001) by Ci agent
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-* updating dev dependencies [4251226](https://github.com/advanced-rest-client/authorization-method/commit/4251226a5ce92b4d74f5b4818b6e6eca2b0863b2) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3122ae9](https://github.com/advanced-rest-client/authorization-method/commit/3122ae99f5ab0e9fc9f11adfe1bc4de649d4e113) by Ci agent
-
-
-### Documentation
-
-* updating the readme file [cd2f225](https://github.com/advanced-rest-client/authorization-method/commit/cd2f225e5c78a1e0b39e6a56ec2a9cc5777738aa) by Pawel
-* upgrading demo page [60eb286](https://github.com/advanced-rest-client/authorization-method/commit/60eb28688d2caf772167e1475639127596974a27) by Pawel
-
-
-### Features
-
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-* adding bearer authorization method [a98e158](https://github.com/advanced-rest-client/authorization-method/commit/a98e158a9a1d778e00218f0a028c25cc92b2639e) by Pawel
-
-
-### Bug Fixes
-
-* fixes #1 Add support for PKCE [9a6a618](https://github.com/advanced-rest-client/authorization-method/commit/9a6a618a39a6ea5719b75421d3a3f5901eb39ee8) by Pawel
-* restoring compatibility property passing to the elements [5ee7f10](https://github.com/advanced-rest-client/authorization-method/commit/5ee7f10c6cbfbcdaa87d072ed25131fcadeb0083) by Pawel
-* fixed advanced-rest-client/arc-electron#243 [f5b9c0e](https://github.com/advanced-rest-client/authorization-method/commit/f5b9c0e1f55662650fd14ddd0d85f1e0607b6ebb) by Pawel
-* fixes #2 - client_secret parameter rendering [787080f](https://github.com/advanced-rest-client/authorization-method/commit/787080f229e24d8103492d54affec3e55de47bc8) by Pawel Psztyc
-
-
-### Refactor
-
-* updarading to ARC types and events [f73e173](https://github.com/advanced-rest-client/authorization-method/commit/f73e1738042f18331a90aa0328d74c3f6ef2bbdb) by Pawel
-
-
-### Testing
-
-* restoring all tests [bf1f91a](https://github.com/advanced-rest-client/authorization-method/commit/bf1f91ab49330f501de2582641aa6bb826f8975e) by Pawel
-* adding timeout to SL test command [aa8b641](https://github.com/advanced-rest-client/authorization-method/commit/aa8b64109647af51f82e024770c9cde7e5069484) by Pawel
-
-
-
-## [0.2.2](https://github.com/advanced-rest-client/authorization-method/compare/0.1.9...0.2.2) (2020-11-29)
-
-### Build
-
-* bumping version [c54b725](https://github.com/advanced-rest-client/authorization-method/commit/c54b7253de29cc114641a25b2fce9aac075498a0) by Pawel
-* bumping version [c12ea12](https://github.com/advanced-rest-client/authorization-method/commit/c12ea1264862a467ef8fe99388a579654623b3c5) by Pawel
-* bumping version [bb76bfc](https://github.com/advanced-rest-client/authorization-method/commit/bb76bfc3033a2007bbcbf6b7727e1362096a4de5) by Pawel
-* bumping version [dabe22a](https://github.com/advanced-rest-client/authorization-method/commit/dabe22a9acddd84a1c1f887e822bd9424916d184) by Pawel Psztyc
-* bumping version [ad59ed4](https://github.com/advanced-rest-client/authorization-method/commit/ad59ed469e07df22bf1d80bbe684ee041da52727) by Pawel Psztyc
-* bumping version [9570002](https://github.com/advanced-rest-client/authorization-method/commit/9570002f90a905e0dd23532685bcc7b7d3b5402c) by Pawel Psztyc
-
-
-### Continuous integration
-
-* removing browsers from the run matrix [505c7f9](https://github.com/advanced-rest-client/authorization-method/commit/505c7f9d35411c6f43fc70e8f9ee619ef2de8010) by Pawel
-
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [ded2eef](https://github.com/advanced-rest-client/authorization-method/commit/ded2eefd12164318f5c095bc7cb1df68c8269b3c) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [d827a43](https://github.com/advanced-rest-client/authorization-method/commit/d827a4361a40005cde49658133bd29b6fe0ec3c9) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [2eb1131](https://github.com/advanced-rest-client/authorization-method/commit/2eb113105b2fd085947ea0105ea770e144288c39) by Ci agent
-* upgrading to open-wc standard [2324917](https://github.com/advanced-rest-client/authorization-method/commit/23249171f767f11aedc3909d0e5d4d4b3b9d8ae5) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [3ddd90b](https://github.com/advanced-rest-client/authorization-method/commit/3ddd90b277159c0d8723f7fe7d97d7bf78debf10) by Ci agent
-* upgrading dependencies [32ba6bd](https://github.com/advanced-rest-client/authorization-method/commit/32ba6bdfbfe62557dcabe7583230f9b7ca64c6a0) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [58a7f15](https://github.com/advanced-rest-client/authorization-method/commit/58a7f156c318b2e40b3bb62e11cb2018474d492a) by Ci agent
-* removing git add from lint staged [e9242aa](https://github.com/advanced-rest-client/authorization-method/commit/e9242aae62dcb2920974a20c581dbc34c2786a4f) by Pawel Psztyc
-* updating dependencies [5fcc633](https://github.com/advanced-rest-client/authorization-method/commit/5fcc633900a495605c92605e5e65c6d52eb404b1) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [af05313](https://github.com/advanced-rest-client/authorization-method/commit/af0531399cb53a8137109adf27cc52a7e7681001) by Ci agent
-* adding events target mixin [c6cbd56](https://github.com/advanced-rest-client/authorization-method/commit/c6cbd56c42f7bfbda079b0c49a3321b5e80ca63b) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [e41e996](https://github.com/advanced-rest-client/authorization-method/commit/e41e996a000482cd06315346549788c543dc2854) by Ci agent
-* adding types for Bearer type [fd499e7](https://github.com/advanced-rest-client/authorization-method/commit/fd499e7a83881fe807104aea19f7460bdab5e2b3) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [3a23a90](https://github.com/advanced-rest-client/authorization-method/commit/3a23a909802750450226a753bfd9b56134524023) by Ci agent
-
-
-### Documentation
-
-* updating the readme file [cd2f225](https://github.com/advanced-rest-client/authorization-method/commit/cd2f225e5c78a1e0b39e6a56ec2a9cc5777738aa) by Pawel
-* upgrading demo page [60eb286](https://github.com/advanced-rest-client/authorization-method/commit/60eb28688d2caf772167e1475639127596974a27) by Pawel
-
-
-### Features
-
-* adding authorization dialogs [d6dabab](https://github.com/advanced-rest-client/authorization-method/commit/d6dabab88e53b9b97348f2f5d3b809512f6b444b) by Pawel Psztyc
-* marging OAuth 2 settings into one config [5569c40](https://github.com/advanced-rest-client/authorization-method/commit/5569c40ee55db01172ac46c2a733a5ad32e9749a) by Pawel Psztyc
-* adding `clear()` method [ec59488](https://github.com/advanced-rest-client/authorization-method/commit/ec5948832971b69bf14a856b394c18a1a43407a1) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* fixes #1 Add support for PKCE [9a6a618](https://github.com/advanced-rest-client/authorization-method/commit/9a6a618a39a6ea5719b75421d3a3f5901eb39ee8) by Pawel
-* restoring compatibility property passing to the elements [5ee7f10](https://github.com/advanced-rest-client/authorization-method/commit/5ee7f10c6cbfbcdaa87d072ed25131fcadeb0083) by Pawel
-* fixed advanced-rest-client/arc-electron#243 [f5b9c0e](https://github.com/advanced-rest-client/authorization-method/commit/f5b9c0e1f55662650fd14ddd0d85f1e0607b6ebb) by Pawel
-* fixes #2 - client_secret parameter rendering [787080f](https://github.com/advanced-rest-client/authorization-method/commit/787080f229e24d8103492d54affec3e55de47bc8) by Pawel Psztyc
-
-
-### Refactor
-
-* updarading to ARC types and events [f73e173](https://github.com/advanced-rest-client/authorization-method/commit/f73e1738042f18331a90aa0328d74c3f6ef2bbdb) by Pawel
-
-
-### Testing
-
-* restoring all tests [bf1f91a](https://github.com/advanced-rest-client/authorization-method/commit/bf1f91ab49330f501de2582641aa6bb826f8975e) by Pawel
-
-
-
-## [0.2.3](https://github.com/advanced-rest-client/authorization-method/compare/0.2.0...0.2.3) (2021-01-14)
-
-### Build
-
-* bumping version [77a4ee8](https://github.com/advanced-rest-client/authorization-method/commit/77a4ee815c1c48d1a33a57a0faaf94e89444fc4f) by Pawel Psztyc
-
-
-### Update
-
-* cleaning up the dependencies [96b9a54](https://github.com/advanced-rest-client/authorization-method/commit/96b9a54808eab9d757645bcfa8591a84a4525efa) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [267139e](https://github.com/advanced-rest-client/authorization-method/commit/267139ecdd3efa462cb92e201182e3913f32db27) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [ded2eef](https://github.com/advanced-rest-client/authorization-method/commit/ded2eefd12164318f5c095bc7cb1df68c8269b3c) by Ci agent
-
-
-### Features
-
-* hiding redirect URI when not supported grant [4a282e4](https://github.com/advanced-rest-client/authorization-method/commit/4a282e4ccae7beb615390b13cc7038290e04978b) by Pawel Psztyc
-* adding authorization dialogs [d6dabab](https://github.com/advanced-rest-client/authorization-method/commit/d6dabab88e53b9b97348f2f5d3b809512f6b444b) by Pawel Psztyc
-* marging OAuth 2 settings into one config [5569c40](https://github.com/advanced-rest-client/authorization-method/commit/5569c40ee55db01172ac46c2a733a5ad32e9749a) by Pawel Psztyc
-
-
-
-## [0.2.5](https://github.com/advanced-rest-client/authorization-method/compare/0.2.2...0.2.5) (2021-03-09)
-
-### Build
-
-* bump version [4e359e6](https://github.com/advanced-rest-client/authorization-method/commit/4e359e6f23e6c006b2f88249a8dff2e74ec5039b) by Carolina Wright
-* bumping version [ca915d1](https://github.com/advanced-rest-client/authorization-method/commit/ca915d18ab54336918bfa66a72e276164b42b6bd) by Pawel Psztyc
-* bumping version [77a4ee8](https://github.com/advanced-rest-client/authorization-method/commit/77a4ee815c1c48d1a33a57a0faaf94e89444fc4f) by Pawel Psztyc
-
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [ba9ac73](https://github.com/advanced-rest-client/authorization-method/commit/ba9ac7330ed48d7386037299d603cb0ebfd0a995) by Ci agent
-* cleaning up the dependencies [96b9a54](https://github.com/advanced-rest-client/authorization-method/commit/96b9a54808eab9d757645bcfa8591a84a4525efa) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [267139e](https://github.com/advanced-rest-client/authorization-method/commit/267139ecdd3efa462cb92e201182e3913f32db27) by Ci agent
-
-
-### Features
-
-* hiding redirect URI when not supported grant [4a282e4](https://github.com/advanced-rest-client/authorization-method/commit/4a282e4ccae7beb615390b13cc7038290e04978b) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* disabled credentials [af3d622](https://github.com/advanced-rest-client/authorization-method/commit/af3d622548bb203a5105cc96e621352282f43227) by Carolina Wright
-* fixes #9 - client credentials delivery [5de1fc4](https://github.com/advanced-rest-client/authorization-method/commit/5de1fc49ee00bdd93a746ade498c655e0e671ccf) by Pawel Psztyc
-
-
-### Testing
-
-* new property [0514f97](https://github.com/advanced-rest-client/authorization-method/commit/0514f9780d2eb6ba96ad63187687c88b629a8d1a) by Carolina Wright
-
-
diff --git a/package-lock.json b/package-lock.json
index dd6c2c4..1bbcad2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,39 +1,39 @@
{
"name": "@advanced-rest-client/authorization-method",
- "version": "0.2.6",
+ "version": "0.2.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@advanced-rest-client/arc-demo-helper": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-demo-helper/-/arc-demo-helper-2.2.6.tgz",
- "integrity": "sha512-xNJ+253nZUY85/xCJtli7TntmniMXwGklOw9AFQj3UA8TDulT1eTA815z7GdaLzoKfVI7+lGBE+Kvl2kwfe/NQ==",
- "dev": true,
- "requires": {
- "@advanced-rest-client/arc-icons": "^3.2.2",
- "@anypoint-web-components/anypoint-button": "^1.2.0",
- "@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20",
- "@anypoint-web-components/anypoint-item": "^1.1.0",
- "@anypoint-web-components/anypoint-listbox": "^1.1.6",
- "@anypoint-web-components/anypoint-menu-button": "^0.1.4",
- "@anypoint-web-components/anypoint-switch": "^0.1.4",
- "@anypoint-web-components/anypoint-tabs": "^0.1.12",
- "@api-components/amf-helper-mixin": "^4.3.4",
- "@api-components/api-navigation": "^4.2.4",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-demo-helper/-/arc-demo-helper-3.0.0.tgz",
+ "integrity": "sha512-h1in2s4rvCExBWRAhCYE2qE6A/gbuZx6VKz+9k6OVAVpnqbtIMNWpht6FKtFb83ZfACqbEkStasw9FyMicI7fQ==",
+ "dev": true,
+ "requires": {
+ "@advanced-rest-client/arc-icons": "^3.3.3",
+ "@anypoint-web-components/anypoint-button": "^1.2.1",
+ "@anypoint-web-components/anypoint-dropdown-menu": "^0.1.21",
+ "@anypoint-web-components/anypoint-item": "^1.1.2",
+ "@anypoint-web-components/anypoint-listbox": "^1.1.7",
+ "@anypoint-web-components/anypoint-menu-button": "^0.1.5",
+ "@anypoint-web-components/anypoint-switch": "^0.1.10",
+ "@anypoint-web-components/anypoint-tabs": "^0.1.17",
+ "@api-components/amf-helper-mixin": "^4.3.9",
+ "@api-components/api-navigation": "^4.2.8",
"@api-components/raml-aware": "^3.0.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"@polymer/font-roboto": "^3.0.2",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0",
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1",
"prismjs": "^1.23.0"
}
},
"@advanced-rest-client/arc-events": {
- "version": "0.2.14",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-events/-/arc-events-0.2.14.tgz",
- "integrity": "sha512-wP5m2nB1DzhDZX1CI1xR/6jmpPfSmxdjkU+T/g/esxR28ikrWmk05FitAgbkXDRuqr1Roj50r7PnaepqilH+Mw==",
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-events/-/arc-events-0.2.17.tgz",
+ "integrity": "sha512-W0Zj5gaSW60T3nv0nV3u+ylWTireX8Kov2U00APKeiGVmQR6Ht9X6W2VdLhiT4L6hAChQQchhEGcB8N5tKdn4Q==",
"requires": {
- "@advanced-rest-client/arc-types": "^0.2.49"
+ "@advanced-rest-client/arc-types": "^0.2.52"
}
},
"@advanced-rest-client/arc-fit-mixin": {
@@ -74,9 +74,9 @@
}
},
"@advanced-rest-client/arc-types": {
- "version": "0.2.50",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.50.tgz",
- "integrity": "sha512-dM8IMwBFNB63nAOJLJoTTCITNvHOSbPi2YrxhtvLgXE+L4LE/AemxHjlF4cFDBZx9qpmrLgXpGjm3ltIi42d8w=="
+ "version": "0.2.52",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.52.tgz",
+ "integrity": "sha512-TmTudK0A+P8+4yScZXvw3eRN9gqq5C8QWlnEjPKtCHEztZL7BKcymTGIXER/CerWuroLItZ6CSFDSxUM5wq99Q=="
},
"@advanced-rest-client/clipboard-copy": {
"version": "3.1.0",
@@ -131,53 +131,51 @@
}
},
"@anypoint-web-components/anypoint-autocomplete": {
- "version": "0.2.9",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-autocomplete/-/anypoint-autocomplete-0.2.9.tgz",
- "integrity": "sha512-+TWRnOQK2csn+iyqmLI/2cacKlPZARJXlt9GTj57lCIi9+TUs4Ak8Q7XwWVbHlNSw/9nuAGEjXvxwMVpVTd/kQ==",
+ "version": "0.2.10",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-autocomplete/-/anypoint-autocomplete-0.2.10.tgz",
+ "integrity": "sha512-f8bZbQgXJuLRyG1v4nAHqS0Q5jqI3cPs4FmoxSq39oL1H1fxA9/LcdeWQxPiom0x/XcDXub2R7+x/AhEt0oSVw==",
"requires": {
- "@anypoint-web-components/anypoint-dropdown": "^1.1.5",
- "@anypoint-web-components/anypoint-item": "^1.1.0",
- "@anypoint-web-components/anypoint-listbox": "^1.1.6",
- "@polymer/paper-progress": "^3.0.0",
- "@polymer/paper-ripple": "^3.0.2",
- "lit-element": "^2.4.0"
+ "@anypoint-web-components/anypoint-dropdown": "^1.1.6",
+ "@anypoint-web-components/anypoint-item": "^1.1.2",
+ "@anypoint-web-components/anypoint-listbox": "^1.1.7",
+ "lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-button": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.2.0.tgz",
- "integrity": "sha512-z3og4oxSlwo37ISbg4S32/NeOqtJcsEfAk4CQ1c4tJM/TsI+lTFLZHwNELeunRg8yoGGnjhrnrxTbin+YKfYBQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.2.1.tgz",
+ "integrity": "sha512-YQshPA8iNgUr2yBcVOAi4P+yFrid6dSFU+5Uu3PfY2BupnwKCMQqJ3wkcLizQXpMwuaJMXZr/1mXjIFKtx0F2w==",
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@polymer/paper-ripple": "^3.0.2",
- "lit-element": "^2.4.0"
+ "lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-checkbox": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-checkbox/-/anypoint-checkbox-1.1.4.tgz",
- "integrity": "sha512-ZYtA74X2L1vsvAF48U+6ItCfTnymtDZYEPNc3w4zdYqcQD/G05boKtS1HGD6pGuY2K+1eIhXAHDvYyyEheTuvg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-checkbox/-/anypoint-checkbox-1.2.1.tgz",
+ "integrity": "sha512-HoLMfQDBUnEpEp1Qni0lqpcqwSgbZDgpzUgzG5Nrly3T/z9F+ZCm8DdD2cBEW0sAO08U5/SgvItcP4qpsWF6Mw==",
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
- "@anypoint-web-components/anypoint-form-mixins": "^1.2.2",
- "lit-element": "^2.4.0"
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
+ "@anypoint-web-components/anypoint-form-mixins": "^1.3.0",
+ "lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-collapse": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-collapse/-/anypoint-collapse-0.1.1.tgz",
- "integrity": "sha512-SwDejIKoALg2k72SFiMV09vuzkLJjlAM3oa99tIH5UMHl+tDeMBk+L9xCLzyYZCaHO52eP8AKeFftvIrpENWKw==",
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-collapse/-/anypoint-collapse-0.1.2.tgz",
+ "integrity": "sha512-+arHE/rxvtXLs01R9XNrLPWEO5n7f8KcmvKhiq7Er5pqt49O6VbZIcdqEHiuhRigjsObE3/x0SP4OMuDMrO9fw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-control-mixins": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-control-mixins/-/anypoint-control-mixins-1.1.3.tgz",
- "integrity": "sha512-LRhwEav2ZpDBRKiGo3Upu4B0ur/j8+2JxeqHGwxcXc8ORuiJLVxcorURuKhLyvEjk5fP5pI0S0KGIUj66N1KQg==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-control-mixins/-/anypoint-control-mixins-1.2.0.tgz",
+ "integrity": "sha512-EMseskbHaRBJpyV60m6tWCtr1MGMZV/Hc6yD5XO1fH4WCg8kihgqXWeR22Y5qOv7YaALwWwBrG2cDCG8TNyxHw==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
@@ -194,71 +192,71 @@
}
},
"@anypoint-web-components/anypoint-dropdown": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown/-/anypoint-dropdown-1.1.5.tgz",
- "integrity": "sha512-hpj83EjrzI3uoGi6/B96h5cLghZB1YE6sdlNd6Z9tBlnXb1X2/9EuGn0JZGQlRHy++dRiLoM9vfEcn/AiEfYFQ==",
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown/-/anypoint-dropdown-1.1.6.tgz",
+ "integrity": "sha512-pYbyAud5HnkeSiR+jy4pYbf0O+dBySApITzvqw3aAL1P+OiiSuOlHg+ghYL4q4HQCWF5rRhu+Hiv8CrVcS/bkQ==",
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.2.0",
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-dropdown-menu": {
- "version": "0.1.20",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.20.tgz",
- "integrity": "sha512-iqV6KkorsP7vUtNX/zKv3Pxy/oktXbijdjCDjHwzxJ/jzuokJc+Y4VhnLdQ3B0dNUn+D2Mg3lhppy1FwLl6oZg==",
+ "version": "0.1.21",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.21.tgz",
+ "integrity": "sha512-AQJHAFfWAOwSB5iQHjume65udiDva31NSGLWRnCov06VHlph+iO2ztp1iuMZLrJQLFiIYUc+uYFta6gmG8jtVQ==",
"requires": {
- "@anypoint-web-components/anypoint-button": "^1.1.1",
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
- "@anypoint-web-components/anypoint-dropdown": "^1.1.4",
+ "@anypoint-web-components/anypoint-button": "^1.2.0",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
+ "@anypoint-web-components/anypoint-dropdown": "^1.1.5",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-form-mixins": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-form-mixins/-/anypoint-form-mixins-1.2.2.tgz",
- "integrity": "sha512-Z9aC5WZOr58GnabwPhVq8OpZ6Yk6RU/HGX/uC9mP2h5cohTqCCwZBgyDmRE5YzjBidaWR+9mCUPKJsxl9Z9AEA==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-form-mixins/-/anypoint-form-mixins-1.3.0.tgz",
+ "integrity": "sha512-gm+474ZGNQSJcPcGKT1Ixmp3hDtFpfBDn8HawwJV8MxXkTIYdgfz3B6WpKu4VvYLJIlk9GJb4MbbNMK+hJ6XMA==",
"requires": {
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-input": {
- "version": "0.2.24",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-input/-/anypoint-input-0.2.24.tgz",
- "integrity": "sha512-IFxwuolKXBtGDmWGqfmdlJwzGlAJr7fE56tNqMrdqCNHEEJvxcWBxIXiWDfnN7SctuqQDkX1Oz+o9wIe3k2tlw==",
+ "version": "0.2.25",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-input/-/anypoint-input-0.2.25.tgz",
+ "integrity": "sha512-oyxVyNy5T8C9SswUnVfAZNfxUa6o5SAThjnBIDzYJ3Go0QQnYQC6yIajPUa+zOIc+AOelMjmAhtwwwcygOyr0w==",
"requires": {
- "@advanced-rest-client/arc-icons": "^3.1.2",
- "@anypoint-web-components/anypoint-button": "^1.1.1",
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
+ "@advanced-rest-client/arc-icons": "^3.3.3",
+ "@anypoint-web-components/anypoint-button": "^1.2.1",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-item": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.1.0.tgz",
- "integrity": "sha512-a4Lz1p5vpdgxeQ4sTAr23kiV9cvKAQ6aVGXRbrEOVYpXKkBJVlkWPvIJ44i14e6APW9F4kY0nczQayAn83QDfg==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.1.2.tgz",
+ "integrity": "sha512-AD702ZKg6AW+0wUlE/UHMLcVUGlwgDXRjhmtMSH5vp1gGBbg4OzhiUN8/kwLiWIC5O4yyikUBpFmuD09VGQc1A==",
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-listbox": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-listbox/-/anypoint-listbox-1.1.6.tgz",
- "integrity": "sha512-YkQuORirn6k+erAeB1H1OZgFqc7gOPcGaJoH+TuXW8Sb5gdburU8UtdTnO9CvZ/a+pCcIE35EgrdcInBglXGiQ==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-listbox/-/anypoint-listbox-1.1.7.tgz",
+ "integrity": "sha512-F4VueUMEdH8unfJ5Wyqv4QO8Cfl/F1lkq0o7vrKPafYyK455ArIx1CCsgUUUhXAG8+T4WZie5xfnqVRr+uYWpA==",
"requires": {
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-menu-button": {
@@ -316,28 +314,28 @@
}
},
"@anypoint-web-components/anypoint-switch": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.6.tgz",
- "integrity": "sha512-swK0IGTeDzTWSiAKAHaEIhghks0+sxj0cEK6tu6a3+jEBivL3/KfWEV2ow1nS0/zy+Qv6KvdEwjG3CI1el0Z6Q==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.10.tgz",
+ "integrity": "sha512-EXE+6nF52TBOcx8sXDLmVmR9jliZzsG3zsPm6BFbWLofO0E6ZqPy7y6+yhyaIMCyl8M5GZWE9n+w7oyDQvELxQ==",
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
- "@anypoint-web-components/anypoint-form-mixins": "^1.2.2",
- "lit-element": "^2.4.0"
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
+ "@anypoint-web-components/anypoint-form-mixins": "^1.3.0",
+ "lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-tabs": {
- "version": "0.1.13",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.13.tgz",
- "integrity": "sha512-30o7lG8hyXNfZ15SB8RfHNUMgv/X5bteGGn8Xc4OlmDTKsCE9yXZX8bAzccxSyFLmUuC+/VV2/EWAM7q6s2/HQ==",
+ "version": "0.1.17",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.17.tgz",
+ "integrity": "sha512-hBAoU0hjp8GusWKK/F2Urt1OvCn7KgEfOdYUahjb6u242lvUkOaMfP9kD1Qp92fRa9mA/wjL7tsNtnWeZ7hTQQ==",
"dev": true,
"requires": {
- "@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
+ "@advanced-rest-client/arc-resizable-mixin": "^1.2.1",
"@anypoint-web-components/anypoint-button": "^1.2.0",
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.8",
"@polymer/paper-ripple": "^3.0.2",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
}
},
"@anypoint-web-components/validatable-mixin": {
@@ -358,9 +356,9 @@
}
},
"@api-components/amf-helper-mixin": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.7.tgz",
- "integrity": "sha512-lrSwMmcKBWj5HiwgS516WInU3ytS2XOzXSui7maZiQysnqLraO6zDAldcBbgNwHYfuK/DDASoI0znwZOnc7aiw==",
+ "version": "4.3.9",
+ "resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.9.tgz",
+ "integrity": "sha512-IC2rQO+qRUs5T4r7QecV4RFKaphupiH22mLfGk+7UNFl2bYSFfFwiof7BHQXVkZRxEh0/pUlAI94APwk2+MJtg==",
"dev": true
},
"@api-components/api-navigation": {
@@ -405,18 +403,18 @@
}
},
"@babel/helper-validator-identifier": {
- "version": "7.12.11",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
- "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
+ "version": "7.14.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz",
+ "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==",
"dev": true
},
"@babel/highlight": {
- "version": "7.13.10",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz",
- "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==",
+ "version": "7.14.0",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz",
+ "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==",
"dev": true,
"requires": {
- "@babel/helper-validator-identifier": "^7.12.11",
+ "@babel/helper-validator-identifier": "^7.14.0",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
@@ -474,18 +472,18 @@
}
},
"@babel/runtime": {
- "version": "7.13.10",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz",
- "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==",
+ "version": "7.14.0",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz",
+ "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
- "version": "7.13.10",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz",
- "integrity": "sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==",
+ "version": "7.14.0",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.0.tgz",
+ "integrity": "sha512-0R0HTZWHLk6G8jIk0FtoX+AatCtKnswS98VhXwGImFc759PJRp4Tru0PQYZofyijTFUr+gT8Mu7sgXVJLQ0ceg==",
"dev": true,
"requires": {
"core-js-pure": "^3.0.0",
@@ -493,128 +491,127 @@
}
},
"@commitlint/cli": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-11.0.0.tgz",
- "integrity": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==",
- "dev": true,
- "requires": {
- "@babel/runtime": "^7.11.2",
- "@commitlint/format": "^11.0.0",
- "@commitlint/lint": "^11.0.0",
- "@commitlint/load": "^11.0.0",
- "@commitlint/read": "^11.0.0",
- "chalk": "4.1.0",
- "core-js": "^3.6.1",
- "get-stdin": "8.0.0",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-12.1.4.tgz",
+ "integrity": "sha512-ZR1WjXLvqEffYyBPT0XdnSxtt3Ty1TMoujEtseW5o3vPnkA1UNashAMjQVg/oELqfaiAMnDw8SERPMN0e/0kLg==",
+ "dev": true,
+ "requires": {
+ "@commitlint/format": "^12.1.4",
+ "@commitlint/lint": "^12.1.4",
+ "@commitlint/load": "^12.1.4",
+ "@commitlint/read": "^12.1.4",
+ "@commitlint/types": "^12.1.4",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
- "yargs": "^15.1.0"
+ "yargs": "^16.2.0"
}
},
"@commitlint/config-conventional": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-11.0.0.tgz",
- "integrity": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.1.4.tgz",
+ "integrity": "sha512-ZIdzmdy4o4WyqywMEpprRCrehjCSQrHkaRTVZV411GyLigFQHlEBSJITAihLAWe88Qy/8SyoIe5uKvAsV5vRqQ==",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-11.0.0.tgz",
- "integrity": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.1.4.tgz",
+ "integrity": "sha512-MxHIBuAG9M4xl33qUfIeMSasbv3ktK0W+iygldBxZOL4QSYC2Gn66pZAQMnV9o3V+sVFHoAK2XUKqBAYrgbEqw==",
"dev": true,
"requires": {
- "@commitlint/types": "^11.0.0",
+ "@commitlint/types": "^12.1.4",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz",
- "integrity": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.4.tgz",
+ "integrity": "sha512-h2S1j8SXyNeABb27q2Ok2vD1WfxJiXvOttKuRA9Or7LN6OQoC/KtT3844CIhhWNteNMu/wE0gkTqGxDVAnJiHg==",
"dev": true
},
"@commitlint/format": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-11.0.0.tgz",
- "integrity": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-12.1.4.tgz",
+ "integrity": "sha512-h28ucMaoRjVvvgS6Bdf85fa/+ZZ/iu1aeWGCpURnQV7/rrVjkhNSjZwGlCOUd5kDV1EnZ5XdI7L18SUpRjs26g==",
"dev": true,
"requires": {
- "@commitlint/types": "^11.0.0",
+ "@commitlint/types": "^12.1.4",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz",
- "integrity": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.1.4.tgz",
+ "integrity": "sha512-uTu2jQU2SKvtIRVLOzMQo3KxDtO+iJ1p0olmncwrqy4AfPLgwoyCP2CiULq5M7xpR3+dE3hBlZXbZTQbD7ycIw==",
"dev": true,
"requires": {
- "@commitlint/types": "^11.0.0",
- "semver": "7.3.2"
+ "@commitlint/types": "^12.1.4",
+ "semver": "7.3.5"
}
},
"@commitlint/lint": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-11.0.0.tgz",
- "integrity": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-12.1.4.tgz",
+ "integrity": "sha512-1kZ8YDp4to47oIPFELUFGLiLumtPNKJigPFDuHt2+f3Q3IKdQ0uk53n3CPl4uoyso/Og/EZvb1mXjFR/Yce4cA==",
"dev": true,
"requires": {
- "@commitlint/is-ignored": "^11.0.0",
- "@commitlint/parse": "^11.0.0",
- "@commitlint/rules": "^11.0.0",
- "@commitlint/types": "^11.0.0"
+ "@commitlint/is-ignored": "^12.1.4",
+ "@commitlint/parse": "^12.1.4",
+ "@commitlint/rules": "^12.1.4",
+ "@commitlint/types": "^12.1.4"
}
},
"@commitlint/load": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz",
- "integrity": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-12.1.4.tgz",
+ "integrity": "sha512-Keszi0IOjRzKfxT+qES/n+KZyLrxy79RQz8wWgssCboYjKEp+wC+fLCgbiMCYjI5k31CIzIOq/16J7Ycr0C0EA==",
"dev": true,
"requires": {
- "@commitlint/execute-rule": "^11.0.0",
- "@commitlint/resolve-extends": "^11.0.0",
- "@commitlint/types": "^11.0.0",
- "chalk": "4.1.0",
+ "@commitlint/execute-rule": "^12.1.4",
+ "@commitlint/resolve-extends": "^12.1.4",
+ "@commitlint/types": "^12.1.4",
+ "chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0"
}
},
"@commitlint/message": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-11.0.0.tgz",
- "integrity": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-12.1.4.tgz",
+ "integrity": "sha512-6QhalEKsKQ/Y16/cTk5NH4iByz26fqws2ub+AinHPtM7Io0jy4e3rym9iE+TkEqiqWZlUigZnTwbPvRJeSUBaA==",
"dev": true
},
"@commitlint/parse": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-11.0.0.tgz",
- "integrity": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-12.1.4.tgz",
+ "integrity": "sha512-yqKSAsK2V4X/HaLb/yYdrzs6oD/G48Ilt0EJ2Mp6RJeWYxG14w/Out6JrneWnr/cpzemyN5hExOg6+TB19H/Lw==",
"dev": true,
"requires": {
- "conventional-changelog-angular": "^5.0.0",
+ "@commitlint/types": "^12.1.4",
+ "conventional-changelog-angular": "^5.0.11",
"conventional-commits-parser": "^3.0.0"
}
},
"@commitlint/read": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-11.0.0.tgz",
- "integrity": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-12.1.4.tgz",
+ "integrity": "sha512-TnPQSJgD8Aod5Xeo9W4SaYKRZmIahukjcCWJ2s5zb3ZYSmj6C85YD9cR5vlRyrZjj78ItLUV/X4FMWWVIS38Jg==",
"dev": true,
"requires": {
- "@commitlint/top-level": "^11.0.0",
+ "@commitlint/top-level": "^12.1.4",
+ "@commitlint/types": "^12.1.4",
"fs-extra": "^9.0.0",
"git-raw-commits": "^2.0.0"
}
},
"@commitlint/resolve-extends": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz",
- "integrity": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.1.4.tgz",
+ "integrity": "sha512-R9CoUtsXLd6KSCfsZly04grsH6JVnWFmVtWgWs1KdDpdV+G3TSs37tColMFqglpkx3dsWu8dsPD56+D9YnJfqg==",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
@@ -624,27 +621,27 @@
}
},
"@commitlint/rules": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-11.0.0.tgz",
- "integrity": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-12.1.4.tgz",
+ "integrity": "sha512-W8m6ZSjg7RuIsIfzQiFHa48X5mcPXeKT9yjBxVmjHvYfS2FDBf1VxCQ7vO0JTVIdV4ohjZ0eKg/wxxUuZHJAZg==",
"dev": true,
"requires": {
- "@commitlint/ensure": "^11.0.0",
- "@commitlint/message": "^11.0.0",
- "@commitlint/to-lines": "^11.0.0",
- "@commitlint/types": "^11.0.0"
+ "@commitlint/ensure": "^12.1.4",
+ "@commitlint/message": "^12.1.4",
+ "@commitlint/to-lines": "^12.1.4",
+ "@commitlint/types": "^12.1.4"
}
},
"@commitlint/to-lines": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-11.0.0.tgz",
- "integrity": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.1.4.tgz",
+ "integrity": "sha512-TParumvbi8bdx3EdLXz2MaX+e15ZgoCqNUgqHsRLwyqLUTRbqCVkzrfadG1UcMQk8/d5aMbb327ZKG3Q4BRorw==",
"dev": true
},
"@commitlint/top-level": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-11.0.0.tgz",
- "integrity": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==",
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.1.4.tgz",
+ "integrity": "sha512-d4lTJrOT/dXlpY+NIt4CUl77ciEzYeNVc0VFgUQ6VA+b1rqYD2/VWFjBlWVOrklxtSDeKyuEhs36RGrppEFAvg==",
"dev": true,
"requires": {
"find-up": "^5.0.0"
@@ -690,10 +687,13 @@
}
},
"@commitlint/types": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz",
- "integrity": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==",
- "dev": true
+ "version": "12.1.4",
+ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-12.1.4.tgz",
+ "integrity": "sha512-KRIjdnWNUx6ywz+SJvjmNCbQKcKP6KArhjZhY2l+CWKxak0d77SOjggkMwFTiSgLODOwmuLTbarR2ZfWPiPMlw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0"
+ }
},
"@emmetio/extract-abbreviation": {
"version": "0.1.6",
@@ -702,9 +702,9 @@
"dev": true
},
"@eslint/eslintrc": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz",
- "integrity": "sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==",
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.1.tgz",
+ "integrity": "sha512-5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
@@ -785,9 +785,9 @@
"integrity": "sha512-UfdK1MPnR6T7f3svzzYBfu3qBkkZ/KsPhcpc3JYhsUY4hbpwNF9wEQtD4Z+/mRqMTJrKg++YSxIxE0FBhY3RIw=="
},
"@open-wc/eslint-config": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/@open-wc/eslint-config/-/eslint-config-4.2.0.tgz",
- "integrity": "sha512-+HyzbR2tJ+8KSbv/ytxMk5SIcO306ilVQtNchcN71SnHsNSE2dWnFOMy9cG2rYZ9zjx7RXgmEiS/2ta/RdMQ5A==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/@open-wc/eslint-config/-/eslint-config-4.3.0.tgz",
+ "integrity": "sha512-kCxFWQ1AR4meTmWJGnK36LJYqDJeFGjlj6n4vLjAW3/c1VUyYQKL90vrNKy/OHS9kTjc9dcH5D64myAbNx6r1w==",
"dev": true,
"requires": {
"eslint": "^7.6.0",
@@ -820,9 +820,9 @@
}
},
"@open-wc/testing": {
- "version": "2.5.32",
- "resolved": "https://registry.npmjs.org/@open-wc/testing/-/testing-2.5.32.tgz",
- "integrity": "sha512-vl8VwTG3CVLwLcd1mpts8D9xPptc6xPL/9AHEbQxX1IQsFBEiFQdARSp1+V/i7gK2+peXeotqrZ5NvoHxl/lLw==",
+ "version": "2.5.33",
+ "resolved": "https://registry.npmjs.org/@open-wc/testing/-/testing-2.5.33.tgz",
+ "integrity": "sha512-+EJNs0i+VV4nE+BrG70l2DNGXOZTSrluruaaU06HUSk57ZlKa+kIxWmkLxCOLlbgnQgrPrQWxbs3lgB1tIx/YA==",
"dev": true,
"requires": {
"@open-wc/chai-dom-equals": "^0.12.36",
@@ -830,13 +830,13 @@
"@open-wc/testing-helpers": "^1.8.12",
"@types/chai": "^4.2.11",
"@types/chai-dom": "^0.0.9",
- "@types/mocha": "^5.0.0",
+ "@types/mocha": "^5.2.7",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"chai-a11y-axe": "^1.3.1",
"chai-dom": "^1.8.1",
"mocha": "^6.2.2",
- "sinon-chai": "^3.3.0"
+ "sinon-chai": "^3.5.0"
}
},
"@open-wc/testing-helpers": {
@@ -856,9 +856,9 @@
"integrity": "sha512-tx5TauYSmzsIvmSqepUPDYbs4/Ejz2XbZ1IkD7JEGqkdNUJlh+9KU85G56Tfdk/xjEZ8zorFfN09OSwiMrIQWA=="
},
"@polymer/iron-a11y-announcer": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@polymer/iron-a11y-announcer/-/iron-a11y-announcer-3.1.0.tgz",
- "integrity": "sha512-lc5i4NKB8kSQHH0Hwu8WS3ym93m+J69OHJWSSBxwd17FI+h2wmgxDzeG9LI4ojMMck17/uc2pLe7g/UHt5/K/A==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@polymer/iron-a11y-announcer/-/iron-a11y-announcer-3.2.0.tgz",
+ "integrity": "sha512-We+hyaFHcg7Ke8ovsoxUpYEXFIJLHxMCDaLehTB4dELS+C+K0zMnGSiqQvb/YzGS+nSYpAfkQIyg1msOCdHMtA==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
@@ -907,14 +907,6 @@
"@polymer/polymer": "^3.0.0"
}
},
- "@polymer/iron-range-behavior": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-range-behavior/-/iron-range-behavior-3.0.1.tgz",
- "integrity": "sha512-+jtL9v45M/T1RJleWyQaNH84S9/mIIR+AjNbYIttbKGp1eG+98j8MDWe7LXNtg79V2LQnE/+VS82cBeELyGVeg==",
- "requires": {
- "@polymer/polymer": "^3.0.0"
- }
- },
"@polymer/iron-resizable-behavior": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-resizable-behavior/-/iron-resizable-behavior-3.0.1.tgz",
@@ -932,17 +924,6 @@
"@polymer/polymer": "^3.0.0"
}
},
- "@polymer/paper-progress": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/paper-progress/-/paper-progress-3.0.1.tgz",
- "integrity": "sha512-5nguG+tmnyoaWKVNG8Smtno2uLSPBgEsT3f20JY8yJTjUBYWaqa8E3l5RLkTRXgA4x9OnvLb8/CdlQWXQIogBg==",
- "requires": {
- "@polymer/iron-flex-layout": "^3.0.0-pre.26",
- "@polymer/iron-range-behavior": "^3.0.0-pre.26",
- "@polymer/paper-styles": "^3.0.0-pre.26",
- "@polymer/polymer": "^3.0.0"
- }
- },
"@polymer/paper-ripple": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@polymer/paper-ripple/-/paper-ripple-3.0.2.tgz",
@@ -1016,27 +997,27 @@
}
},
"@sinonjs/commons": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz",
- "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==",
+ "version": "1.8.3",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz",
+ "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==",
"dev": true,
"requires": {
"type-detect": "4.0.8"
}
},
"@sinonjs/fake-timers": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
- "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz",
+ "integrity": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.7.0"
}
},
"@sinonjs/samsam": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz",
- "integrity": "sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==",
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.0.2.tgz",
+ "integrity": "sha512-jxPRPp9n93ci7b8hMfJOFDPRLFYadN6FSpeROFTR4UNF4i5b+EK6m4QXPO46BDhFgRy1JuS87zAnFOzCUwMJcQ==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.6.0",
@@ -1070,9 +1051,9 @@
}
},
"@types/chai": {
- "version": "4.2.16",
- "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.2.16.tgz",
- "integrity": "sha512-vI5iOAsez9+roLS3M3+Xx7w+WRuDtSmF8bQkrbcIJ2sC1PcDgVoA0WGpa+bIrJ+y8zqY2oi//fUctkxtIcXJCw==",
+ "version": "4.2.18",
+ "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.2.18.tgz",
+ "integrity": "sha512-rS27+EkB/RE1Iz3u0XtVL5q36MGDWbgYe7zWiodyKNUnthxY0rukK5V36eiUCtCisB7NN8zKYH6DO2M37qxFEQ==",
"dev": true
},
"@types/chai-dom": {
@@ -1146,9 +1127,9 @@
"dev": true
},
"@types/express": {
- "version": "4.17.11",
- "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz",
- "integrity": "sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg==",
+ "version": "4.17.12",
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.12.tgz",
+ "integrity": "sha512-pTYas6FrP15B1Oa0bkN5tQMNqOcVXa9j4FTFtO8DWI9kppKib+6NJtfTOOLcwxuuYvcX2+dVG6et1SxW/Kc17Q==",
"dev": true,
"requires": {
"@types/body-parser": "*",
@@ -1158,9 +1139,9 @@
}
},
"@types/express-serve-static-core": {
- "version": "4.17.19",
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz",
- "integrity": "sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==",
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.21.tgz",
+ "integrity": "sha512-gwCiEZqW6f7EoR8TTEfalyEhb1zA5jQJnRngr97+3pzMaO1RKoI1w2bw07TK72renMUVWcWS5mLI6rk1NqN0nA==",
"dev": true,
"requires": {
"@types/node": "*",
@@ -1196,9 +1177,9 @@
}
},
"@types/istanbul-reports": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
- "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
+ "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
"dev": true,
"requires": {
"@types/istanbul-lib-report": "*"
@@ -1217,9 +1198,9 @@
"dev": true
},
"@types/koa": {
- "version": "2.13.1",
- "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.13.1.tgz",
- "integrity": "sha512-Qbno7FWom9nNqu0yHZ6A0+RWt4mrYBhw3wpBAQ3+IuzGcLlfeYkzZrnMq5wsxulN2np8M4KKeUpTodsOsSad5Q==",
+ "version": "2.13.3",
+ "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.13.3.tgz",
+ "integrity": "sha512-TaujBV+Dhe/FvmSMZJtCFBms+bqQacgUebk/M2C2tq8iGmHE/DDf4DcW2Hc7NqusVZmy5xzrWOjtdPKNP+fTfw==",
"dev": true,
"requires": {
"@types/accepts": "*",
@@ -1260,9 +1241,9 @@
"dev": true
},
"@types/node": {
- "version": "14.14.37",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz",
- "integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==",
+ "version": "15.12.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-15.12.0.tgz",
+ "integrity": "sha512-+aHJvoCsVhO2ZCuT4o5JtcPrCPyDE3+1nvbDprYes+pPkEsbjH7AGUCNtjMOXS0fqH14t+B7yLzaqSz92FPWyw==",
"dev": true
},
"@types/normalize-package-data": {
@@ -1318,12 +1299,12 @@
}
},
"@types/sinon": {
- "version": "9.0.11",
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.11.tgz",
- "integrity": "sha512-PwP4UY33SeeVKodNE37ZlOsR9cReypbMJOhZ7BVE0lB+Hix3efCOxiJWiE5Ia+yL9Cn2Ch72EjFTRze8RZsNtg==",
+ "version": "10.0.2",
+ "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.2.tgz",
+ "integrity": "sha512-BHn8Bpkapj8Wdfxvh2jWIUoaYB/9/XhsL0oOvBfRagJtKlSl9NWPcFOz2lRukI9szwGxFtYZCTejJSqsGDbdmw==",
"dev": true,
"requires": {
- "@types/sinonjs__fake-timers": "*"
+ "@sinonjs/fake-timers": "^7.1.0"
}
},
"@types/sinon-chai": {
@@ -1336,12 +1317,6 @@
"@types/sinon": "*"
}
},
- "@types/sinonjs__fake-timers": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.2.tgz",
- "integrity": "sha512-dIPoZ3g5gcx9zZEszaxLSVTvMReD3xxyyDnQUjA6IYDG9Ba2AV0otMPs+77sG9ojB4Qr2N2Vk5RnKeuA0X/0bg==",
- "dev": true
- },
"@types/uuid": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.0.tgz",
@@ -1349,9 +1324,9 @@
"dev": true
},
"@types/ws": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.1.tgz",
- "integrity": "sha512-ISCK1iFnR+jYv7+jLNX0wDqesZ/5RAeY3wUx6QaphmocphU61h+b+PHjS18TF4WIPTu/MMzxIq2PHr32o2TS5Q==",
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.4.tgz",
+ "integrity": "sha512-d/7W23JAXPodQNbOZNXvl2K+bqAQrCMwlh/nuQsPSQk6Fq0opHoPrUw43aHsvSbIiQPr8Of2hkFbnz1XBFVyZQ==",
"dev": true,
"requires": {
"@types/node": "*"
@@ -1368,9 +1343,9 @@
}
},
"@web/browser-logs": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/@web/browser-logs/-/browser-logs-0.2.1.tgz",
- "integrity": "sha512-nSfRl/+7XQOtXBBJ9FMdXAb1bzytud1LeJAJmBX4bsfMDDcfrr4vNhiX4OnQ5tBYsXoiQse8ZvwngFM2O6PD3A==",
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@web/browser-logs/-/browser-logs-0.2.3.tgz",
+ "integrity": "sha512-Ylp/5S07j1P/mO2EsCBMGJ8piwh2RWh9h4G/b1gapQvq85XaphjMA2S/dug4DOHJ15OdhMqbgVJPQ5edLXnW4w==",
"dev": true,
"requires": {
"errorstacks": "^2.2.0"
@@ -1383,31 +1358,20 @@
"dev": true,
"requires": {
"semver": "^7.3.4"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
}
},
"@web/dev-server": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/@web/dev-server/-/dev-server-0.1.10.tgz",
- "integrity": "sha512-5Pj2GPNKO6Uq2aQCq1+/fkXdZ5guALevUb6M324oiTr1srBXHod6QunbzqXovO5Bcgmo79ZOneHMgoQNwxtIYA==",
+ "version": "0.1.17",
+ "resolved": "https://registry.npmjs.org/@web/dev-server/-/dev-server-0.1.17.tgz",
+ "integrity": "sha512-2gdOjkQp97uaORkOL8X90f4retqZ2lA9YqHDljpf4SFg0JWoY8X7EJA9XQG1jJ2x46oQ5zqJX7AiSWc47B2k6A==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.11",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/command-line-args": "^5.0.0",
"@web/config-loader": "^0.1.3",
- "@web/dev-server-core": "^0.3.8",
- "@web/dev-server-rollup": "^0.3.2",
+ "@web/dev-server-core": "^0.3.12",
+ "@web/dev-server-rollup": "^0.3.3",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
@@ -1428,9 +1392,9 @@
}
},
"@web/dev-server-core": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.3.8.tgz",
- "integrity": "sha512-Qbo2ZVUopmjEP8ZDc8v0N/nTW9LbmycuC+uoTwp62PfHfqSN9RgXGzuGMmp5sBPRXi/E1oi1GQ+lMoDWXLjKYA==",
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.3.13.tgz",
+ "integrity": "sha512-bGJHPeFRWATNfuL9Pp2LfqhnmqhBCc5eOO5AWQa0X+WQAwHiFo6xZNfsvsnJ1gvxXgsE4jKBAGu9lQRisvFRFA==",
"dev": true,
"requires": {
"@types/koa": "^2.11.6",
@@ -1454,9 +1418,9 @@
}
},
"@web/dev-server-rollup": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.3.2.tgz",
- "integrity": "sha512-c5ROnMAUrOJPXTQFFXZiOy0ta4Y5yXLA2QkD71htNhIcqeOI4yx6ueDtuFqovRxVI0qcWGk46UdfZ0UGT/9MIg==",
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.3.4.tgz",
+ "integrity": "sha512-QFaqHpJXri1TuN1yN0N670bxF5noC1RtIHPhoM5Sp6YX7v3610Z/fq465V7fNaeHnTNN7dIUmNkK9vqLIrsYTg==",
"dev": true,
"requires": {
"@web/dev-server-core": "^0.3.3",
@@ -1485,17 +1449,17 @@
}
},
"@web/test-runner": {
- "version": "0.12.18",
- "resolved": "https://registry.npmjs.org/@web/test-runner/-/test-runner-0.12.18.tgz",
- "integrity": "sha512-TfDuqM+4DfIxb4GzTlOoA4JEX15IXDkuVNzHYphChJCVkK+3GJxl173z0ZVjiUYXfudVM8LrKwR72XY3piv/8w==",
+ "version": "0.13.5",
+ "resolved": "https://registry.npmjs.org/@web/test-runner/-/test-runner-0.13.5.tgz",
+ "integrity": "sha512-S1/fAE1aIJEbKSptinP/m8jvl4PA+RCF2tt7EAyvvucpSzeKo05prht2NLgoJhZJGhSvgdw1BCayOVNXMFfB9A==",
"dev": true,
"requires": {
- "@web/browser-logs": "^0.2.0",
+ "@web/browser-logs": "^0.2.2",
"@web/config-loader": "^0.1.3",
- "@web/dev-server": "^0.1.8",
- "@web/test-runner-chrome": "^0.9.4",
- "@web/test-runner-commands": "^0.4.1",
- "@web/test-runner-core": "^0.10.13",
+ "@web/dev-server": "^0.1.17",
+ "@web/test-runner-chrome": "^0.10.0",
+ "@web/test-runner-commands": "^0.5.0",
+ "@web/test-runner-core": "^0.10.17",
"@web/test-runner-mocha": "^0.7.2",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
@@ -1523,30 +1487,39 @@
}
},
"@web/test-runner-chrome": {
- "version": "0.9.4",
- "resolved": "https://registry.npmjs.org/@web/test-runner-chrome/-/test-runner-chrome-0.9.4.tgz",
- "integrity": "sha512-Ymfp0HqQvELFITdwhdicuzndLY5loePpbDj6teXKKNTILph0ExWl3R3NMPG7pD40pB84GGd9i8wkz9yvyN30Zg==",
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-chrome/-/test-runner-chrome-0.10.0.tgz",
+ "integrity": "sha512-pCRDkVXznkpHCGwhka8AxMTq7fAufujhknJilNxopXcGXANfy9jkMPUUwWYmkJg2w+zDoz9vnlcHPGPX7j3EkQ==",
"dev": true,
"requires": {
"@web/test-runner-core": "^0.10.8",
"@web/test-runner-coverage-v8": "^0.4.5",
"chrome-launcher": "^0.13.4",
- "puppeteer-core": "^5.5.0"
+ "puppeteer-core": "^8.0.0"
}
},
"@web/test-runner-commands": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@web/test-runner-commands/-/test-runner-commands-0.4.1.tgz",
- "integrity": "sha512-y1U9+jucQ1ZB9YRgMFIjXTUSu/in54yt4Lf4GcY9fHoSyGVWDub085ARWipmagsD9SRN1QnIYTkMk+jRa/EiLQ==",
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-commands/-/test-runner-commands-0.5.0.tgz",
+ "integrity": "sha512-yVYJ869/csbDgCNrN2cEwFoX8ZfdAeCXC72CgddKO3jBut2OsFaEy4RWe1uP9Pz9vffiAlV3st3IsnWwTHMLYQ==",
"dev": true,
"requires": {
- "@web/test-runner-core": "^0.10.8"
+ "@web/test-runner-core": "^0.10.14",
+ "mkdirp": "^1.0.4"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "dev": true
+ }
}
},
"@web/test-runner-core": {
- "version": "0.10.13",
- "resolved": "https://registry.npmjs.org/@web/test-runner-core/-/test-runner-core-0.10.13.tgz",
- "integrity": "sha512-w6seztsj/UKUz9HP5KeMZ1JdUadt293SplsrKKaUJTZDMLO8+xvyo+vpt1Mv7zICu0wyuQN0AdD3GjKKX6dFHw==",
+ "version": "0.10.17",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-core/-/test-runner-core-0.10.17.tgz",
+ "integrity": "sha512-T8yLQ6W4tHwREEYlAvAMYXpNkRE4XBynuWQQVq1qf5hf/IFNdYkOVELkgsHevtYLRElxi9/wHeRrn1SkDgj0Ug==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.11",
@@ -1557,14 +1530,14 @@
"@types/istanbul-reports": "^3.0.0",
"@types/uuid": "^8.3.0",
"@web/browser-logs": "^0.2.1",
- "@web/dev-server-core": "^0.3.6",
+ "@web/dev-server-core": "^0.3.12",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"cli-cursor": "^3.1.0",
"co-body": "^6.1.0",
"convert-source-map": "^1.7.0",
"debounce": "^1.2.0",
- "dependency-graph": "^0.10.0",
+ "dependency-graph": "^0.11.0",
"globby": "^11.0.1",
"ip": "^1.1.5",
"istanbul-lib-coverage": "^3.0.0",
@@ -1608,14 +1581,14 @@
}
},
"@web/test-runner-playwright": {
- "version": "0.8.4",
- "resolved": "https://registry.npmjs.org/@web/test-runner-playwright/-/test-runner-playwright-0.8.4.tgz",
- "integrity": "sha512-9RCez2kB0AocMasrUsmx/yW7FGSjBI9aEtjYzkFvRJF21IsEyjCrmmGPdBIa75a/gU2ydPaw0EQW4TDF5L4yRw==",
+ "version": "0.8.6",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-playwright/-/test-runner-playwright-0.8.6.tgz",
+ "integrity": "sha512-GjjCd5MtCxmCsNlfe4HmmRyTg1S1SMAn0+i+2yhG9pvYwSJWLmLqN4AE39ZhlhuPh79spSVU889F6CGEXZGXPg==",
"dev": true,
"requires": {
"@web/test-runner-core": "^0.10.8",
"@web/test-runner-coverage-v8": "^0.4.5",
- "playwright": "^1.7.1"
+ "playwright": "^1.8.1"
}
},
"@webcomponents/shadycss": {
@@ -1656,10 +1629,13 @@
"dev": true
},
"agent-base": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz",
- "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==",
- "dev": true
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "dev": true,
+ "requires": {
+ "debug": "4"
+ }
},
"aggregate-error": {
"version": "3.1.0",
@@ -1838,9 +1814,9 @@
"dev": true
},
"axe-core": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.4.tgz",
- "integrity": "sha512-Pdgfv6iP0gNx9ejRGa3zE7Xgkj/iclXqLfe7BnatdZz0QnLZ3jrRHUVH8wNSdN68w05Sk3ShGTb3ydktMTooig==",
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.2.2.tgz",
+ "integrity": "sha512-OKRkKM4ojMEZRJ5UNJHmq9tht7cEnRnqKG6KyB/trYws00Xtkv12mHtlJ0SK7cmuNbrU8dPUova3ELTuilfBbw==",
"dev": true
},
"axobject-query": {
@@ -2004,9 +1980,9 @@
"dev": true
},
"chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz",
+ "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==",
"dev": true,
"requires": {
"ansi-styles": "^4.1.0",
@@ -2106,14 +2082,14 @@
}
},
"cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"dev": true,
"requires": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "wrap-ansi": "^7.0.0"
}
},
"clone": {
@@ -2155,6 +2131,12 @@
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true
},
+ "colorette": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz",
+ "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==",
+ "dev": true
+ },
"command-line-args": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz",
@@ -2189,9 +2171,9 @@
}
},
"array-back": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.1.tgz",
- "integrity": "sha512-Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz",
+ "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==",
"dev": true
},
"chalk": {
@@ -2271,12 +2253,6 @@
"integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==",
"dev": true
},
- "contains-path": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
- "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
- "dev": true
- },
"content-disposition": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
@@ -2311,9 +2287,9 @@
}
},
"conventional-changelog-conventionalcommits": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.5.0.tgz",
- "integrity": "sha512-buge9xDvjjOxJlyxUnar/+6i/aVEVGA7EEh4OafBCXPlLUQPGbRUBhBUveWRxzvR8TEjhKEP4BdepnpG2FSZXw==",
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.0.tgz",
+ "integrity": "sha512-sj9tj3z5cnHaSJCYObA9nISf7eq/YjscLPoq6nmew4SiOjxqL2KRpK20fjnjVbpNDjJ2HR3MoVcWKXwbVvzS0A==",
"dev": true,
"requires": {
"compare-func": "^2.0.0",
@@ -2363,16 +2339,10 @@
"keygrip": "~1.1.0"
}
},
- "core-js": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.10.0.tgz",
- "integrity": "sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==",
- "dev": true
- },
"core-js-pure": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.10.0.tgz",
- "integrity": "sha512-CC582enhrFZStO4F8lGI7QL3SYx7/AIRc+IdSi3btrQGrVsTawo5K/crmKbRrQ+MOMhNX4v+PATn0k2NN6wI7A==",
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.13.1.tgz",
+ "integrity": "sha512-wVlh0IAi2t1iOEh16y4u1TRk6ubd4KvLE8dlMi+3QUI6SfKphQUh7tAwihGGSQ8affxEXpVIPpOdf9kjR4v4Pw==",
"dev": true
},
"cosmiconfig": {
@@ -2533,9 +2503,9 @@
"dev": true
},
"dependency-graph": {
- "version": "0.10.0",
- "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.10.0.tgz",
- "integrity": "sha512-c9amUgpgxSi1bE5/sbLwcs5diLD0ygCQYmhfM5H1s5VH1mCsYkcmAL3CcNdv4kdSw6JuMoHeDGzLgj/gAXdWVg==",
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz",
+ "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==",
"dev": true
},
"destroy": {
@@ -2545,9 +2515,9 @@
"dev": true
},
"devtools-protocol": {
- "version": "0.0.818844",
- "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.818844.tgz",
- "integrity": "sha512-AD1hi7iVJ8OD0aMLQU5VK0XH9LDlA1+BcPIgrAxPfaibx2DbWucuyOhc4oyQCbnvDDO68nN6/LcKfqTP343Jjg==",
+ "version": "0.0.854822",
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.854822.tgz",
+ "integrity": "sha512-xd4D8kHQtB0KtWW0c9xBZD5LVtm9chkMOfs/3Yn01RhT/sFIsVtzTtypfKoFfWBaL+7xCYLxjOLkhwPXaX/Kcg==",
"dev": true
},
"diff": {
@@ -2575,13 +2545,13 @@
}
},
"dom-serializer": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz",
- "integrity": "sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
+ "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
"dev": true,
"requires": {
"domelementtype": "^2.0.1",
- "domhandler": "^4.0.0",
+ "domhandler": "^4.2.0",
"entities": "^2.0.0"
}
},
@@ -2611,23 +2581,23 @@
"dev": true
},
"domhandler": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.1.0.tgz",
- "integrity": "sha512-/6/kmsGlMY4Tup/nGVutdrK9yQi4YjWVcVeoQmixpzjOUK1U7pQkvAPHBJeUxOgxF0J8f8lwCJSlCfD0V4CMGQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz",
+ "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==",
"dev": true,
"requires": {
"domelementtype": "^2.2.0"
}
},
"domutils": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.5.1.tgz",
- "integrity": "sha512-hO1XwHMGAthA/1KL7c83oip/6UWo3FlUNIuWiWKltoiQ5oCOiqths8KknvY2jpOohUoUgnwa/+Rm7UpwpSbY/Q==",
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz",
+ "integrity": "sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==",
"dev": true,
"requires": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
- "domhandler": "^4.1.0"
+ "domhandler": "^4.2.0"
}
},
"dot-prop": {
@@ -2697,9 +2667,9 @@
"dev": true
},
"es-abstract": {
- "version": "1.18.0",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz",
- "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==",
+ "version": "1.18.3",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz",
+ "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
@@ -2710,14 +2680,14 @@
"has-symbols": "^1.0.2",
"is-callable": "^1.2.3",
"is-negative-zero": "^2.0.1",
- "is-regex": "^1.1.2",
- "is-string": "^1.0.5",
- "object-inspect": "^1.9.0",
+ "is-regex": "^1.1.3",
+ "is-string": "^1.0.6",
+ "object-inspect": "^1.10.3",
"object-keys": "^1.1.1",
"object.assign": "^4.1.2",
"string.prototype.trimend": "^1.0.4",
"string.prototype.trimstart": "^1.0.4",
- "unbox-primitive": "^1.0.0"
+ "unbox-primitive": "^1.0.1"
}
},
"es-module-lexer": {
@@ -2737,6 +2707,12 @@
"is-symbol": "^1.0.2"
}
},
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "dev": true
+ },
"escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -2750,25 +2726,27 @@
"dev": true
},
"eslint": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz",
- "integrity": "sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.27.0.tgz",
+ "integrity": "sha512-JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA==",
"dev": true,
"requires": {
"@babel/code-frame": "7.12.11",
- "@eslint/eslintrc": "^0.4.0",
+ "@eslint/eslintrc": "^0.4.1",
"ajv": "^6.10.0",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"debug": "^4.0.1",
"doctrine": "^3.0.0",
"enquirer": "^2.3.5",
+ "escape-string-regexp": "^4.0.0",
"eslint-scope": "^5.1.1",
"eslint-utils": "^2.1.0",
"eslint-visitor-keys": "^2.0.0",
"espree": "^7.3.1",
"esquery": "^1.4.0",
"esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
"file-entry-cache": "^6.0.1",
"functional-red-black-tree": "^1.0.1",
"glob-parent": "^5.0.0",
@@ -2780,7 +2758,7 @@
"js-yaml": "^3.13.1",
"json-stable-stringify-without-jsonify": "^1.0.1",
"levn": "^0.4.1",
- "lodash": "^4.17.21",
+ "lodash.merge": "^4.6.2",
"minimatch": "^3.0.4",
"natural-compare": "^1.4.0",
"optionator": "^0.9.1",
@@ -2789,7 +2767,7 @@
"semver": "^7.2.1",
"strip-ansi": "^6.0.0",
"strip-json-comments": "^3.1.0",
- "table": "^6.0.4",
+ "table": "^6.0.9",
"text-table": "^0.2.0",
"v8-compile-cache": "^2.0.3"
},
@@ -2802,6 +2780,12 @@
"requires": {
"@babel/highlight": "^7.10.4"
}
+ },
+ "escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true
}
}
},
@@ -2817,9 +2801,9 @@
}
},
"eslint-config-prettier": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz",
- "integrity": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==",
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz",
+ "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==",
"dev": true
},
"eslint-import-resolver-node": {
@@ -2850,29 +2834,23 @@
}
},
"eslint-module-utils": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz",
- "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==",
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz",
+ "integrity": "sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==",
"dev": true,
"requires": {
- "debug": "^2.6.9",
+ "debug": "^3.2.7",
"pkg-dir": "^2.0.0"
},
"dependencies": {
"debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"requires": {
- "ms": "2.0.0"
+ "ms": "^2.1.1"
}
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
}
}
},
@@ -2886,23 +2864,25 @@
}
},
"eslint-plugin-import": {
- "version": "2.22.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz",
- "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==",
+ "version": "2.23.4",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz",
+ "integrity": "sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==",
"dev": true,
"requires": {
- "array-includes": "^3.1.1",
- "array.prototype.flat": "^1.2.3",
- "contains-path": "^0.1.0",
+ "array-includes": "^3.1.3",
+ "array.prototype.flat": "^1.2.4",
"debug": "^2.6.9",
- "doctrine": "1.5.0",
+ "doctrine": "^2.1.0",
"eslint-import-resolver-node": "^0.3.4",
- "eslint-module-utils": "^2.6.0",
+ "eslint-module-utils": "^2.6.1",
+ "find-up": "^2.0.0",
"has": "^1.0.3",
+ "is-core-module": "^2.4.0",
"minimatch": "^3.0.4",
- "object.values": "^1.1.1",
- "read-pkg-up": "^2.0.0",
- "resolve": "^1.17.0",
+ "object.values": "^1.1.3",
+ "pkg-up": "^2.0.0",
+ "read-pkg-up": "^3.0.0",
+ "resolve": "^1.20.0",
"tsconfig-paths": "^3.9.0"
},
"dependencies": {
@@ -2916,13 +2896,12 @@
}
},
"doctrine": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
- "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"dev": true,
"requires": {
- "esutils": "^2.0.2",
- "isarray": "^1.0.0"
+ "esutils": "^2.0.2"
}
},
"find-up": {
@@ -2935,9 +2914,9 @@
}
},
"hosted-git-info": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
- "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
"dev": true
},
"locate-path": {
@@ -2999,33 +2978,33 @@
"dev": true
},
"path-type": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
- "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
"dev": true,
"requires": {
- "pify": "^2.0.0"
+ "pify": "^3.0.0"
}
},
"read-pkg": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
- "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
+ "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
"dev": true,
"requires": {
- "load-json-file": "^2.0.0",
+ "load-json-file": "^4.0.0",
"normalize-package-data": "^2.3.2",
- "path-type": "^2.0.0"
+ "path-type": "^3.0.0"
}
},
"read-pkg-up": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
- "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz",
+ "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=",
"dev": true,
"requires": {
"find-up": "^2.0.0",
- "read-pkg": "^2.0.0"
+ "read-pkg": "^3.0.0"
}
},
"semver": {
@@ -3037,9 +3016,9 @@
}
},
"eslint-plugin-lit": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-1.3.0.tgz",
- "integrity": "sha512-fy6Lr5vYI3kvCYaDXA20lwyKAp1keS9UjR5ntj8U2TeV+1yUta3S7xxXe+rABKRPbcNzi1ZvQLE1LmNKc9yr4Q==",
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-1.4.1.tgz",
+ "integrity": "sha512-7UIbjSa1DGH7ZaDhmGZPHWm17kOjCrGP4VAKNjR0wZVdQLuRKXE+LqXysQ1L3O12hBnExkMG2J9swXpQvuCuXA==",
"dev": true,
"requires": {
"parse5": "^6.0.1",
@@ -3087,9 +3066,9 @@
}
},
"eslint-plugin-no-only-tests": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-2.4.0.tgz",
- "integrity": "sha512-azP9PwQYfGtXJjW273nIxQH9Ygr+5/UyeW2wEjYoDtVYPI+WPKwbj0+qcAKYUXFZLRumq4HKkFaoDBAwBoXImQ==",
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-2.6.0.tgz",
+ "integrity": "sha512-T9SmE/g6UV1uZo1oHAqOvL86XWl7Pl2EpRpnLI8g/bkJu+h7XBCB+1LnubRZ2CUQXj805vh4/CYZdnqtVaEo2Q==",
"dev": true
},
"eslint-plugin-wc": {
@@ -3136,9 +3115,9 @@
}
},
"eslint-visitor-keys": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz",
- "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
"dev": true
},
"espree": {
@@ -3225,31 +3204,20 @@
"dev": true
},
"execa": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
- "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.0.tgz",
+ "integrity": "sha512-CkdUB7s2y6S+d4y+OM/+ZtQcJCiKUCth4cNImGMqrt2zEVtW2rfHGspQBE1GDo6LjeNIQmTPKXqTCKjqFKyu3A==",
"dev": true,
"requires": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
- },
- "dependencies": {
- "get-stream": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
- "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
- "dev": true,
- "requires": {
- "pump": "^3.0.0"
- }
- }
}
},
"extract-zip": {
@@ -3325,15 +3293,6 @@
"pend": "~1.2.0"
}
},
- "figures": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
- "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
- "dev": true,
- "requires": {
- "escape-string-regexp": "^1.0.5"
- }
- },
"file-entry-cache": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
@@ -3475,15 +3434,15 @@
"dev": true
},
"get-stdin": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
- "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==",
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
+ "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
"dev": true
},
"get-stream": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz",
- "integrity": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"dev": true
},
"git-raw-commits": {
@@ -3500,9 +3459,9 @@
}
},
"glob": {
- "version": "7.1.6",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "version": "7.1.7",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dev": true,
"requires": {
"fs.realpath": "^1.0.0",
@@ -3532,9 +3491,9 @@
}
},
"globals": {
- "version": "13.7.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz",
- "integrity": "sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==",
+ "version": "13.9.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz",
+ "integrity": "sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==",
"dev": true,
"requires": {
"type-fest": "^0.20.2"
@@ -3664,14 +3623,14 @@
"dev": true
},
"htmlparser2": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz",
- "integrity": "sha512-GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w==",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
+ "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
"dev": true,
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^4.0.0",
- "domutils": "^2.4.4",
+ "domutils": "^2.5.2",
"entities": "^2.0.0"
}
},
@@ -3734,25 +3693,25 @@
}
},
"https-proxy-agent": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz",
- "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
+ "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
"dev": true,
"requires": {
- "agent-base": "5",
+ "agent-base": "6",
"debug": "4"
}
},
"human-signals": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
- "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"dev": true
},
"husky": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/husky/-/husky-5.2.0.tgz",
- "integrity": "sha512-AM8T/auHXRBxlrfPVLKP6jt49GCM2Zz47m8G3FOMsLmTv8Dj/fKVWE0Rh2d4Qrvmy131xEsdQnb3OXRib67PGg==",
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/husky/-/husky-6.0.0.tgz",
+ "integrity": "sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ==",
"dev": true
},
"iconv-lite": {
@@ -3853,9 +3812,9 @@
"dev": true
},
"is-bigint": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz",
- "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz",
+ "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==",
"dev": true
},
"is-binary-path": {
@@ -3868,12 +3827,12 @@
}
},
"is-boolean-object": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz",
- "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz",
+ "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0"
+ "call-bind": "^1.0.2"
}
},
"is-buffer": {
@@ -3889,24 +3848,24 @@
"dev": true
},
"is-core-module": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz",
- "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz",
+ "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==",
"dev": true,
"requires": {
"has": "^1.0.3"
}
},
"is-date-object": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
- "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz",
+ "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==",
"dev": true
},
"is-docker": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.0.tgz",
- "integrity": "sha512-K4GwB4i/HzhAzwP/XSlspzRdFTI9N8OxJOyOU7Y5Rz+p+WBokXWVWblaJeBkggthmoSV0OoGTH5thJNvplpkvQ==",
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"dev": true
},
"is-extglob": {
@@ -3928,9 +3887,9 @@
"dev": true
},
"is-generator-function": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz",
- "integrity": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==",
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz",
+ "integrity": "sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==",
"dev": true
},
"is-glob": {
@@ -3961,9 +3920,9 @@
"dev": true
},
"is-number-object": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz",
- "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz",
+ "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==",
"dev": true
},
"is-obj": {
@@ -3985,13 +3944,13 @@
"dev": true
},
"is-regex": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz",
- "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz",
+ "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "has-symbols": "^1.0.1"
+ "has-symbols": "^1.0.2"
}
},
"is-regexp": {
@@ -4007,18 +3966,18 @@
"dev": true
},
"is-string": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
- "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz",
+ "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==",
"dev": true
},
"is-symbol": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
- "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
"dev": true,
"requires": {
- "has-symbols": "^1.0.1"
+ "has-symbols": "^1.0.2"
}
},
"is-text-path": {
@@ -4052,15 +4011,15 @@
}
},
"isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+ "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
"dev": true
},
"isbinaryfile": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.6.tgz",
- "integrity": "sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==",
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.8.tgz",
+ "integrity": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==",
"dev": true
},
"isexe": {
@@ -4124,6 +4083,12 @@
"esprima": "^4.0.0"
}
},
+ "json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true
+ },
"json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
@@ -4174,9 +4139,9 @@
"dev": true
},
"jsrsasign": {
- "version": "10.1.13",
- "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-10.1.13.tgz",
- "integrity": "sha512-EKifn2DocDxU2fWVqTJgFYjZUcL4fTUtfgN5OQP4t4i/WOioios8wq350E1aJFxCLmtdxGNqhLX3O0tdVqJoFg==",
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-10.3.0.tgz",
+ "integrity": "sha512-irDIKKFW++EAELgP3fjFi5/Fn0XEyfuQTTgpbeFwCGkV6tRIYZl3uraRea2HTXWCstcSZuDaCbdAhU1n+075Bg==",
"dev": true
},
"just-extend": {
@@ -4360,28 +4325,34 @@
"dev": true
},
"lint-staged": {
- "version": "10.5.4",
- "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.4.tgz",
- "integrity": "sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==",
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-11.0.0.tgz",
+ "integrity": "sha512-3rsRIoyaE8IphSUtO1RVTFl1e0SLBtxxUOPBtHxQgBHS5/i6nqvjcUfNioMa4BU9yGnPzbO+xkfLtXtxBpCzjw==",
"dev": true,
"requires": {
- "chalk": "^4.1.0",
+ "chalk": "^4.1.1",
"cli-truncate": "^2.1.0",
- "commander": "^6.2.0",
+ "commander": "^7.2.0",
"cosmiconfig": "^7.0.0",
- "debug": "^4.2.0",
+ "debug": "^4.3.1",
"dedent": "^0.7.0",
"enquirer": "^2.3.6",
- "execa": "^4.1.0",
- "listr2": "^3.2.2",
- "log-symbols": "^4.0.0",
- "micromatch": "^4.0.2",
+ "execa": "^5.0.0",
+ "listr2": "^3.8.2",
+ "log-symbols": "^4.1.0",
+ "micromatch": "^4.0.4",
"normalize-path": "^3.0.0",
"please-upgrade-node": "^3.2.0",
"string-argv": "0.3.1",
"stringify-object": "^3.3.0"
},
"dependencies": {
+ "commander": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+ "dev": true
+ },
"log-symbols": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
@@ -4395,67 +4366,53 @@
}
},
"listr2": {
- "version": "3.6.2",
- "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.6.2.tgz",
- "integrity": "sha512-B2vlu7Zx/2OAMVUovJ7Tv1kQ2v2oXd0nZKzkSAcRCej269d8gkS/gupDEdNl23KQ3ZjVD8hQmifrrBFbx8F9LA==",
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.9.0.tgz",
+ "integrity": "sha512-+JxQt7Vi4WEWgJsxmOEX9lDbCumrb3mrEYIeE1VI7I4lf2rXE4v9pq3RMVNp+a9s6mCgc/IsF0ppHsLrx2BEAw==",
"dev": true,
"requires": {
- "chalk": "^4.1.0",
"cli-truncate": "^2.1.0",
- "figures": "^3.2.0",
- "indent-string": "^4.0.0",
+ "colorette": "^1.2.2",
"log-update": "^4.0.0",
"p-map": "^4.0.0",
"rxjs": "^6.6.7",
"through": "^2.3.8",
"wrap-ansi": "^7.0.0"
- },
- "dependencies": {
- "wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- }
- }
}
},
"lit-element": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.4.0.tgz",
- "integrity": "sha512-pBGLglxyhq/Prk2H91nA0KByq/hx/wssJBQFiYqXhGDvEnY31PRGYf1RglVzyLeRysu0IHm2K0P196uLLWmwFg==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz",
+ "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==",
"requires": {
"lit-html": "^1.1.1"
}
},
"lit-html": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.3.0.tgz",
- "integrity": "sha512-0Q1bwmaFH9O14vycPHw8C/IeHMk/uSDldVLIefu/kfbTBGIc44KGH6A8p1bDfxUfHdc8q6Ct7kQklWoHgr4t1Q=="
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz",
+ "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA=="
},
"load-json-file": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
- "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
+ "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
"dev": true,
"requires": {
"graceful-fs": "^4.1.2",
- "parse-json": "^2.2.0",
- "pify": "^2.0.0",
+ "parse-json": "^4.0.0",
+ "pify": "^3.0.0",
"strip-bom": "^3.0.0"
},
"dependencies": {
"parse-json": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
- "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
"dev": true,
"requires": {
- "error-ex": "^1.2.0"
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
}
}
}
@@ -4487,18 +4444,18 @@
"integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=",
"dev": true
},
- "lodash.flatten": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz",
- "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=",
- "dev": true
- },
"lodash.get": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
"integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=",
"dev": true
},
+ "lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true
+ },
"lodash.truncate": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz",
@@ -4566,6 +4523,19 @@
"cli-cursor": "^3.1.0",
"slice-ansi": "^4.0.0",
"wrap-ansi": "^6.2.0"
+ },
+ "dependencies": {
+ "wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ }
}
},
"loud-rejection": {
@@ -4611,9 +4581,9 @@
"dev": true
},
"marky": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.1.tgz",
- "integrity": "sha512-md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.2.tgz",
+ "integrity": "sha512-k1dB2HNeaNyORco8ulVEhctyEGkKHb2YWAhDsxeFlW2nROIirsctBYzKwwS3Vza+sKTS1zO4Z+n9/+9WbGLIxQ==",
"dev": true
},
"media-typer": {
@@ -4654,13 +4624,13 @@
"dev": true
},
"micromatch": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
- "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
+ "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
"dev": true,
"requires": {
"braces": "^3.0.1",
- "picomatch": "^2.0.5"
+ "picomatch": "^2.2.3"
}
},
"mime": {
@@ -4670,18 +4640,18 @@
"dev": true
},
"mime-db": {
- "version": "1.47.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz",
- "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==",
+ "version": "1.48.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz",
+ "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==",
"dev": true
},
"mime-types": {
- "version": "2.1.30",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz",
- "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==",
+ "version": "2.1.31",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz",
+ "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==",
"dev": true,
"requires": {
- "mime-db": "1.47.0"
+ "mime-db": "1.48.0"
}
},
"mimic-fn": {
@@ -5004,6 +4974,12 @@
"strip-ansi": "^5.0.0"
}
},
+ "y18n": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "dev": true
+ },
"yargs": {
"version": "13.3.2",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
@@ -5053,13 +5029,13 @@
"dev": true
},
"nise": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/nise/-/nise-4.1.0.tgz",
- "integrity": "sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.0.tgz",
+ "integrity": "sha512-W5WlHu+wvo3PaKLsJJkgPup2LrsXCcm7AWwyNZkUnn5rwPkuPBi3Iwk5SQtN0mv+K65k7nKKjwNQ30wg3wLAQQ==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.7.0",
- "@sinonjs/fake-timers": "^6.0.0",
+ "@sinonjs/fake-timers": "^7.0.4",
"@sinonjs/text-encoding": "^0.7.1",
"just-extend": "^4.0.2",
"path-to-regexp": "^1.7.0"
@@ -5099,17 +5075,6 @@
"resolve": "^1.20.0",
"semver": "^7.3.4",
"validate-npm-package-license": "^3.0.1"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
}
},
"normalize-path": {
@@ -5134,9 +5099,9 @@
"dev": true
},
"object-inspect": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
- "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
+ "version": "1.10.3",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz",
+ "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==",
"dev": true
},
"object-keys": {
@@ -5158,15 +5123,14 @@
}
},
"object.entries": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz",
- "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==",
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.4.tgz",
+ "integrity": "sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0",
+ "call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "has": "^1.0.3"
+ "es-abstract": "^1.18.2"
}
},
"object.getownpropertydescriptors": {
@@ -5181,15 +5145,14 @@
}
},
"object.values": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz",
- "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==",
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz",
+ "integrity": "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2",
- "has": "^1.0.3"
+ "es-abstract": "^1.18.2"
}
},
"on-finished": {
@@ -5226,9 +5189,9 @@
"dev": true
},
"open": {
- "version": "8.0.5",
- "resolved": "https://registry.npmjs.org/open/-/open-8.0.5.tgz",
- "integrity": "sha512-hkPXCz7gijWp2GoWqsQ4O/5p7F6d5pIQ/+9NyeWG1nABJ4zvLi9kJRv1a44kVf5p13wK0WMoiRA+Xey68yOytA==",
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/open/-/open-8.2.0.tgz",
+ "integrity": "sha512-O8uInONB4asyY3qUcEytpgwxQG3O0fJ/hlssoUHsBboOIRVZzT6Wq+Rwj5nffbeUhOdMjpXeISpDDzHCMRDuOQ==",
"dev": true,
"requires": {
"define-lazy-prop": "^2.0.0",
@@ -5344,9 +5307,9 @@
"dev": true
},
"path-parse": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
"dev": true
},
"path-to-regexp": {
@@ -5356,14 +5319,6 @@
"dev": true,
"requires": {
"isarray": "0.0.1"
- },
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
- "dev": true
- }
}
},
"path-type": {
@@ -5385,15 +5340,15 @@
"dev": true
},
"picomatch": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
- "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
+ "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
"dev": true
},
"pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
"dev": true
},
"pinkie": {
@@ -5471,10 +5426,70 @@
}
}
},
+ "pkg-up": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
+ "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ }
+ }
+ },
"playwright": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.10.0.tgz",
- "integrity": "sha512-b7SGBcCPq4W3pb4ImEDmNXtO0ZkJbZMuWiShsaNJd+rGfY/6fqwgllsAojmxGSgFmijYw7WxCoPiAIEDIH16Kw==",
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.11.1.tgz",
+ "integrity": "sha512-UuMrYuvzttbJXUD7sTVcQBsGRojelGepvuQPD+QtVm/n5zyKvkiUErU/DGRXfX8VDZRdQ5D6qVqZndrydC2b4w==",
"dev": true,
"requires": {
"commander": "^6.1.0",
@@ -5489,28 +5504,8 @@
"proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
"stack-utils": "^2.0.3",
- "ws": "^7.3.1"
- },
- "dependencies": {
- "agent-base": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
- "dev": true,
- "requires": {
- "debug": "4"
- }
- },
- "https-proxy-agent": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
- "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
- "dev": true,
- "requires": {
- "agent-base": "6",
- "debug": "4"
- }
- }
+ "ws": "^7.3.1",
+ "yazl": "^2.5.1"
}
},
"please-upgrade-node": {
@@ -5614,19 +5609,19 @@
"dev": true
},
"puppeteer-core": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-5.5.0.tgz",
- "integrity": "sha512-tlA+1n+ziW/Db03hVV+bAecDKse8ihFRXYiEypBe9IlLRvOCzYFG6qrCMBYK34HO/Q/Ecjc+tvkHRAfLVH+NgQ==",
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-8.0.0.tgz",
+ "integrity": "sha512-kRTiGh42+4eiw9tl489p//8Zpg3LWmz0K3mOpv0qj5PsCV7jE43SLIi0E50suLh8OghXsFhJFoE98vEmXUnDew==",
"dev": true,
"requires": {
"debug": "^4.1.0",
- "devtools-protocol": "0.0.818844",
+ "devtools-protocol": "0.0.854822",
"extract-zip": "^2.0.0",
- "https-proxy-agent": "^4.0.0",
+ "https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.1",
"pkg-dir": "^4.2.0",
"progress": "^2.0.1",
- "proxy-from-env": "^1.0.0",
+ "proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
"tar-fs": "^2.0.0",
"unbzip2-stream": "^1.3.3",
@@ -5717,9 +5712,9 @@
},
"dependencies": {
"hosted-git-info": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
- "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
"dev": true
},
"normalize-package-data": {
@@ -5947,9 +5942,9 @@
}
},
"rollup": {
- "version": "2.44.0",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.44.0.tgz",
- "integrity": "sha512-rGSF4pLwvuaH/x4nAS+zP6UNn5YUDWf/TeEU5IoXSZKBbKRNTCI3qMnYXKZgrC0D2KzS2baiOZt1OlqhMu5rnQ==",
+ "version": "2.50.6",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.50.6.tgz",
+ "integrity": "sha512-6c5CJPLVgo0iNaZWWliNu1Kl43tjP9LZcp6D/tkf2eLH2a9/WeHxg9vfTFl8QV/2SOyaJX37CEm9XuGM0rviUg==",
"dev": true,
"requires": {
"fsevents": "~2.3.1"
@@ -5993,10 +5988,13 @@
"optional": true
},
"semver": {
- "version": "7.3.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
- "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
- "dev": true
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
},
"semver-compare": {
"version": "1.0.0",
@@ -6049,31 +6047,31 @@
"dev": true
},
"sinon": {
- "version": "9.2.4",
- "resolved": "https://registry.npmjs.org/sinon/-/sinon-9.2.4.tgz",
- "integrity": "sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==",
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/sinon/-/sinon-11.1.1.tgz",
+ "integrity": "sha512-ZSSmlkSyhUWbkF01Z9tEbxZLF/5tRC9eojCdFh33gtQaP7ITQVaMWQHGuFM7Cuf/KEfihuh1tTl3/ABju3AQMg==",
"dev": true,
"requires": {
- "@sinonjs/commons": "^1.8.1",
- "@sinonjs/fake-timers": "^6.0.1",
- "@sinonjs/samsam": "^5.3.1",
- "diff": "^4.0.2",
- "nise": "^4.0.4",
- "supports-color": "^7.1.0"
+ "@sinonjs/commons": "^1.8.3",
+ "@sinonjs/fake-timers": "^7.1.0",
+ "@sinonjs/samsam": "^6.0.2",
+ "diff": "^5.0.0",
+ "nise": "^5.1.0",
+ "supports-color": "^7.2.0"
},
"dependencies": {
"diff": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
- "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
+ "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
"dev": true
}
}
},
"sinon-chai": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/sinon-chai/-/sinon-chai-3.6.0.tgz",
- "integrity": "sha512-bk2h+0xyKnmvazAnc7HE5esttqmCerSMcBtuB2PS2T4tG6x8woXAxZeJaOJWD+8reXHngnXn0RtIbfEW9OTHFg==",
+ "version": "3.7.0",
+ "resolved": "https://registry.npmjs.org/sinon-chai/-/sinon-chai-3.7.0.tgz",
+ "integrity": "sha512-mf5NURdUaSdnatJx3uhoBOrY9dtL19fiOtAdT1Azxg3+lNJFiuN0uzaU3xX1LeAfL17kHQhTAJgpsfhbMJMY2g==",
"dev": true
},
"slash": {
@@ -6126,9 +6124,9 @@
}
},
"spdx-license-ids": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz",
- "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==",
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz",
+ "integrity": "sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==",
"dev": true
},
"split2": {
@@ -6280,26 +6278,23 @@
}
},
"table": {
- "version": "6.0.9",
- "resolved": "https://registry.npmjs.org/table/-/table-6.0.9.tgz",
- "integrity": "sha512-F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ==",
+ "version": "6.7.1",
+ "resolved": "https://registry.npmjs.org/table/-/table-6.7.1.tgz",
+ "integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==",
"dev": true,
"requires": {
"ajv": "^8.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
"lodash.clonedeep": "^4.5.0",
- "lodash.flatten": "^4.4.0",
"lodash.truncate": "^4.4.2",
"slice-ansi": "^4.0.0",
- "string-width": "^4.2.0"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0"
},
"dependencies": {
"ajv": {
- "version": "8.0.5",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.0.5.tgz",
- "integrity": "sha512-RkiLa/AeJx7+9OvniQ/qeWu0w74A8DiPPBclQ6ji3ZQkv5KamO+QGpqmi7O4JIw3rHGUXZ6CoP9tsAkn3gyazg==",
+ "version": "8.5.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.5.0.tgz",
+ "integrity": "sha512-Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
@@ -6329,9 +6324,9 @@
},
"dependencies": {
"array-back": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.1.tgz",
- "integrity": "sha512-Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz",
+ "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==",
"dev": true
},
"typical": {
@@ -6417,18 +6412,18 @@
"dev": true
},
"tr46": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz",
- "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
+ "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
"dev": true,
"requires": {
"punycode": "^2.1.1"
}
},
"trim-newlines": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.0.tgz",
- "integrity": "sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==",
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz",
+ "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==",
"dev": true
},
"trim-off-newlines": {
@@ -6493,9 +6488,9 @@
}
},
"typescript": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.3.tgz",
- "integrity": "sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==",
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.2.tgz",
+ "integrity": "sha512-zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw==",
"dev": true
},
"typescript-lit-html-plugin": {
@@ -6596,9 +6591,9 @@
"dev": true
},
"v8-to-istanbul": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.1.tgz",
- "integrity": "sha512-p0BB09E5FRjx0ELN6RgusIPsSPhtgexSRcKETybEs6IGOTXJSZqfwxp7r//55nnu0f1AxltY5VvdVqy2vZf9AA==",
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz",
+ "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==",
"dev": true,
"requires": {
"@types/istanbul-lib-coverage": "^2.0.1",
@@ -6643,16 +6638,10 @@
"pinkie-promise": "^2.0.0"
}
},
- "get-stdin": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
- "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
- "dev": true
- },
"hosted-git-info": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
- "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
"dev": true
},
"indent-string": {
@@ -6742,6 +6731,12 @@
"pinkie-promise": "^2.0.0"
}
},
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ },
"read-pkg": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
@@ -6983,9 +6978,9 @@
}
},
"wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dev": true,
"requires": {
"ansi-styles": "^4.0.0",
@@ -7000,15 +6995,15 @@
"dev": true
},
"ws": {
- "version": "7.4.4",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz",
- "integrity": "sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw==",
+ "version": "7.4.6",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
+ "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
"dev": true
},
"y18n": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
- "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
"dev": true
},
"yallist": {
@@ -7024,34 +7019,18 @@
"dev": true
},
"yargs": {
- "version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"dev": true,
"requires": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
"string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "dependencies": {
- "yargs-parser": {
- "version": "18.1.3",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
- "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- }
- }
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
}
},
"yargs-parser": {
@@ -7189,6 +7168,12 @@
"strip-ansi": "^5.0.0"
}
},
+ "y18n": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "dev": true
+ },
"yargs": {
"version": "13.3.2",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
@@ -7229,6 +7214,15 @@
"fd-slicer": "~1.1.0"
}
},
+ "yazl": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz",
+ "integrity": "sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==",
+ "dev": true,
+ "requires": {
+ "buffer-crc32": "~0.2.3"
+ }
+ },
"ylru": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ylru/-/ylru-1.2.1.tgz",
diff --git a/package.json b/package.json
index f42177f..30f9d3b 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@advanced-rest-client/authorization-method",
"description": "An element to render an UI for various authorization methods",
- "version": "0.2.6",
+ "version": "0.2.7",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
@@ -14,10 +14,13 @@
"basic",
"ntlm"
],
- "authors": [
- "Pawel Psztyc"
- ],
+ "author": {
+ "name": "Pawel Uchida-Psztyc",
+ "email": "arc@mulesoft.com"
+ },
"contributors": [
+ "Carolina Wright",
+ "Yury (deiteris)",
"Your name can be here!"
],
"repository": {
@@ -29,49 +32,49 @@
"email": "arc@mulesoft.com"
},
"dependencies": {
- "@advanced-rest-client/arc-events": "^0.2.14",
+ "@advanced-rest-client/arc-events": "^0.2.17",
"@advanced-rest-client/arc-icons": "^3.3.0",
- "@advanced-rest-client/arc-types": "^0.2.49",
+ "@advanced-rest-client/arc-types": "^0.2.52",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@advanced-rest-client/oauth2-scope-selector": "^4.0.0",
- "@anypoint-web-components/anypoint-button": "^1.2.0",
- "@anypoint-web-components/anypoint-checkbox": "^1.1.3",
+ "@anypoint-web-components/anypoint-button": "^1.2.1",
+ "@anypoint-web-components/anypoint-checkbox": "^1.2.1",
"@anypoint-web-components/anypoint-dialog": "^0.1.7",
- "@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20",
- "@anypoint-web-components/anypoint-input": "^0.2.24",
- "@anypoint-web-components/anypoint-item": "^1.1.0",
- "@anypoint-web-components/anypoint-listbox": "^1.1.6",
- "@anypoint-web-components/anypoint-switch": "^0.1.4",
+ "@anypoint-web-components/anypoint-dropdown-menu": "^0.1.21",
+ "@anypoint-web-components/anypoint-input": "^0.2.25",
+ "@anypoint-web-components/anypoint-item": "^1.1.2",
+ "@anypoint-web-components/anypoint-listbox": "^1.1.7",
+ "@anypoint-web-components/anypoint-switch": "^0.1.10",
"@open-wc/dedupe-mixin": "^1.3.0",
"@polymer/paper-spinner": "^3.0.2",
- "lit-element": "^2.4.0",
- "lit-html": "^1.3.0"
+ "lit-element": "^2.5.1",
+ "lit-html": "^1.4.1"
},
"peerDependencies": {
"cryptojslib": "^3.1.2",
"jsrsasign": "^10.0.5"
},
"devDependencies": {
- "@advanced-rest-client/arc-demo-helper": "^2.2.5",
+ "@advanced-rest-client/arc-demo-helper": "^3.0.0",
"@advanced-rest-client/oauth-authorization": "^5.0.5",
"@anypoint-web-components/anypoint-radio-button": "^0.1.6",
- "@commitlint/cli": "^11.0.0",
- "@commitlint/config-conventional": "^11.0.0",
- "@open-wc/eslint-config": "^4.2.0",
- "@open-wc/testing": "^2.5.32",
+ "@commitlint/cli": "^12.1.4",
+ "@commitlint/config-conventional": "^12.1.4",
+ "@open-wc/eslint-config": "^4.3.0",
+ "@open-wc/testing": "^2.5.33",
"@polymer/iron-test-helpers": "^3.0.0",
- "@web/dev-server": "^0.1.7",
- "@web/test-runner": "^0.12.15",
- "@web/test-runner-playwright": "^0.8.4",
+ "@web/dev-server": "^0.1.17",
+ "@web/test-runner": "^0.13.5",
+ "@web/test-runner-playwright": "^0.8.6",
"cryptojslib": "^3.1.2",
- "eslint": "^7.19.0",
- "eslint-config-prettier": "^7.2.0",
- "husky": "^5.0.9",
- "jsrsasign": "^10.1.8",
- "lint-staged": "^10.5.4",
- "sinon": "^9.2.4",
- "typescript": "^4.1.4",
+ "eslint": "^7.27.0",
+ "eslint-config-prettier": "^8.3.0",
+ "husky": "^6.0.0",
+ "jsrsasign": "^10.3.0",
+ "lint-staged": "^11.0.0",
+ "sinon": "^11.1.1",
+ "typescript": "^4.3.2",
"typescript-lit-html-plugin": "^0.9.0"
},
"scripts": {
diff --git a/polymer.json b/polymer.json
deleted file mode 100644
index 6111e49..0000000
--- a/polymer.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "npm": true,
- "lint": {
- "rules": [
- "polymer-3"
- ]
- }
-}