Skip to content

Commit

Permalink
chore: fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Cornille committed Apr 20, 2022
1 parent 44dc11f commit 2c5bd27
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = {
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
},
},
],
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

- Nothing yet!

## [1.4.0] - 2022-20-04

### Added

- add more options to style the buttons

### Changed

- Updated (dev)dependencies to latest versions

## [1.3.0] - 2021-11-05

### Added
Expand Down
1 change: 1 addition & 0 deletions src/utils/dom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ export const setVisible = (value: boolean) => {
}
container.setAttribute('aria-hidden', 'true');
container.classList.remove('visible');
/* istanbul ignore next */
setTimeout(() => (container.style.display = 'none'), 250);
};

0 comments on commit 2c5bd27

Please sign in to comment.