-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed: `Notiflix.Block.*`: The custom class name option was not being set correctly. The temporary position class name for the reference element was not being removed if it was being used with a custom class name. [#45](#45)
- Loading branch information
Showing
28 changed files
with
146 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2021 | ||
}, | ||
"rules": { | ||
"comma-dangle": [ | ||
"error", | ||
"always-multiline" | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
], | ||
"indent": [ | ||
"error", | ||
2, | ||
{ | ||
"ignoredNodes": [ | ||
"TemplateLiteral" | ||
] | ||
} | ||
], | ||
"quotes": [ | ||
2, | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": true | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ | |
|
||
[npm-version-badge]: https://img.shields.io/npm/v/notiflix.svg | ||
[npm-version-url]: https://www.npmjs.com/package/notiflix | ||
[dep-badge]: https://david-dm.org/notiflix/Notiflix.svg | ||
[dep-url]: https://david-dm.org/notiflix/Notiflix.svg | ||
[synk-badge]: https://snyk.io/test/github/notiflix/Notiflix/badge.svg?targetFile=package.json | ||
[synk-url]: https://snyk.io/test/github/notiflix/Notiflix?targetFile=package.json | ||
[typescript-badge]: https://badgen.net/badge/icon/Typed?icon=typescript&label&labelColor=3178c6&color=555 | ||
|
@@ -19,12 +17,11 @@ | |
[downloads-url]: https://npmjs.org/package/notiflix | ||
[jsdelivr-badge]: https://data.jsdelivr.com/v1/package/npm/notiflix/badge?style=rounded | ||
[jsdelivr-url]: https://www.jsdelivr.com/package/npm/notiflix | ||
[size-badge]: https://img.badgesize.io/https://cdn.jsdelivr.net/npm/[email protected].2/dist/notiflix-aio-3.2.2.min.js?compression=gzip | ||
[size-url]: https://cdn.jsdelivr.net/npm/[email protected].2/dist/notiflix-aio-3.2.2.min.js | ||
[size-badge]: https://img.badgesize.io/https://cdn.jsdelivr.net/npm/[email protected].3/dist/notiflix-aio-3.2.3.min.js?compression=gzip | ||
[size-url]: https://cdn.jsdelivr.net/npm/[email protected].3/dist/notiflix-aio-3.2.3.min.js | ||
[lic-badge]: https://img.shields.io/github/license/notiflix/Notiflix.svg | ||
[lic-url]: https://github.com/notiflix/Notiflix/blob/main/LICENSE | ||
|
||
<!-- [![Dependencies][dep-badge]][dep-url] --> | ||
[![npm version][npm-version-badge]][npm-version-url] | ||
[![Known Vulnerabilities][synk-badge]][synk-url] | ||
[![TypeScript][typescript-badge]][typescript-url] | ||
|
@@ -39,7 +36,7 @@ Notiflix is a JavaScript library for client-side non-blocking notifications, pop | |
|
||
### Current Version | ||
|
||
3.2.2 [*](https://github.com/notiflix/Notiflix/blob/main/CHANGELOG.md "CHANGELOG") | ||
3.2.3 [*](https://github.com/notiflix/Notiflix/blob/main/CHANGELOG.md "CHANGELOG") | ||
|
||
### Browser Compatibility | ||
|
||
|
@@ -100,27 +97,27 @@ import { Block } from 'notiflix/build/notiflix-block-aio'; | |
|
||
#### CSS and JS | ||
```html | ||
<link rel="stylesheet" href="dist/notiflix-3.2.2.min.css" /> | ||
<link rel="stylesheet" href="dist/notiflix-3.2.3.min.css" /> | ||
|
||
<script src="dist/notiflix-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-3.2.3.min.js"></script> | ||
``` | ||
|
||
#### or only JS (All in One - Internal CSS) | ||
```html | ||
<script src="dist/notiflix-aio-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-aio-3.2.3.min.js"></script> | ||
``` | ||
|
||
#### or only Modules JS (All in One - Internal CSS) | ||
```html | ||
<script src="dist/notiflix-notify-aio-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-notify-aio-3.2.3.min.js"></script> | ||
|
||
<script src="dist/notiflix-report-aio-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-report-aio-3.2.3.min.js"></script> | ||
|
||
<script src="dist/notiflix-confirm-aio-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-confirm-aio-3.2.3.min.js"></script> | ||
|
||
<script src="dist/notiflix-loading-aio-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-loading-aio-3.2.3.min.js"></script> | ||
|
||
<script src="dist/notiflix-block-aio-3.2.2.min.js"></script> | ||
<script src="dist/notiflix-block-aio-3.2.3.min.js"></script> | ||
``` | ||
|
||
--------- | ||
|
@@ -772,7 +769,7 @@ Notiflix.Block.init({ | |
--------- | ||
|
||
### Copyright | ||
Copyright © 2019 - 2021 Notiflix | ||
Copyright © 2019 - 2022 Notiflix | ||
|
||
### License | ||
MIT license - https://opensource.org/licenses/MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
dist/notiflix-aio-3.2.2.min.js → dist/notiflix-aio-3.2.3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
dist/notiflix-block-aio-3.2.2.min.js → dist/notiflix-block-aio-3.2.3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
dist/notiflix-confirm-aio-3.2.2.min.js → dist/notiflix-confirm-aio-3.2.3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
dist/notiflix-loading-aio-3.2.2.min.js → dist/notiflix-loading-aio-3.2.3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
dist/notiflix-notify-aio-3.2.2.min.js → dist/notiflix-notify-aio-3.2.3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
dist/notiflix-report-aio-3.2.2.min.js → dist/notiflix-report-aio-3.2.3.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.